| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Unicode implementation based on original code by Fredrik Lundh, | 
					
						
							| 
									
										
										
										
											2000-05-09 19:54:43 +00:00
										 |  |  | modified by Marc-Andre Lemburg <mal@lemburg.com> according to the | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | Unicode Integration Proposal (see file Misc/unicode.txt). | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 08:54:28 +00:00
										 |  |  | Major speed upgrades to the method implementations at the Reykjavik | 
					
						
							|  |  |  | NeedForSpeed sprint, by Fredrik Lundh and Andrew Dalke. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-03 16:24:25 +00:00
										 |  |  | Copyright (c) Corporation for National Research Initiatives. | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-19 09:45:02 +00:00
										 |  |  | -------------------------------------------------------------------- | 
					
						
							|  |  |  | The original string type implementation is: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Copyright (c) 1999 by Secret Labs AB | 
					
						
							|  |  |  |     Copyright (c) 1999 by Fredrik Lundh | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | By obtaining, using, and/or copying this software and/or its | 
					
						
							|  |  |  | associated documentation, you agree that you have read, understood, | 
					
						
							|  |  |  | and will comply with the following terms and conditions: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Permission to use, copy, modify, and distribute this software and its | 
					
						
							|  |  |  | associated documentation for any purpose and without fee is hereby | 
					
						
							|  |  |  | granted, provided that the above copyright notice appears in all | 
					
						
							|  |  |  | copies, and that both that copyright notice and this permission notice | 
					
						
							|  |  |  | appear in supporting documentation, and that the name of Secret Labs | 
					
						
							|  |  |  | AB or the author not be used in advertising or publicity pertaining to | 
					
						
							|  |  |  | distribution of the software without specific, written prior | 
					
						
							|  |  |  | permission. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO | 
					
						
							|  |  |  | THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND | 
					
						
							|  |  |  | FITNESS.  IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR BE LIABLE FOR | 
					
						
							|  |  |  | ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
					
						
							|  |  |  | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
					
						
							|  |  |  | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT | 
					
						
							|  |  |  | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
					
						
							|  |  |  | -------------------------------------------------------------------- | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-19 09:45:02 +00:00
										 |  |  | */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-14 09:08:42 +00:00
										 |  |  | #define PY_SSIZE_T_CLEAN
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | #include "Python.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "unicodeobject.h"
 | 
					
						
							| 
									
										
										
										
											2000-06-30 14:58:20 +00:00
										 |  |  | #include "ucnhash.h"
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-30 15:26:10 +00:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											2000-03-28 02:01:52 +00:00
										 |  |  | #include <windows.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2000-04-10 13:51:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | /* Limit for the Unicode object free list */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-06 13:33:44 +00:00
										 |  |  | #define PyUnicode_MAXFREELIST       1024
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Limit for the Unicode object free list stay alive optimization.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    The implementation will keep allocated Unicode memory intact for | 
					
						
							|  |  |  |    all objects on the free list having a size less than this | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |    limit. This reduces malloc() overhead for small Unicode objects. | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-06 13:33:44 +00:00
										 |  |  |    At worst this will result in PyUnicode_MAXFREELIST * | 
					
						
							| 
									
										
										
										
											2000-04-10 13:51:10 +00:00
										 |  |  |    (sizeof(PyUnicodeObject) + KEEPALIVE_SIZE_LIMIT + | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |    malloc()-overhead) bytes of unused garbage. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Setting the limit to 0 effectively turns the feature off. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-10 13:51:10 +00:00
										 |  |  |    Note: This is an experimental feature ! If you get core dumps when | 
					
						
							|  |  |  |    using Unicode objects, turn this feature off. | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-10 13:51:10 +00:00
										 |  |  | #define KEEPALIVE_SIZE_LIMIT       9
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Endianness switches; defaults to little endian */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef WORDS_BIGENDIAN
 | 
					
						
							|  |  |  | # define BYTEORDER_IS_BIG_ENDIAN
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | # define BYTEORDER_IS_LITTLE_ENDIAN
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-08 17:54:00 +00:00
										 |  |  | /* --- Globals ------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    The globals are initialized by the _PyUnicode_Init() API and should | 
					
						
							|  |  |  |    not be used before calling that API. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-13 02:06:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | /* Free list for Unicode objects */ | 
					
						
							| 
									
										
										
										
											2008-02-06 13:33:44 +00:00
										 |  |  | static PyUnicodeObject *free_list; | 
					
						
							|  |  |  | static int numfree; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  | /* The empty Unicode object is shared to improve performance. */ | 
					
						
							|  |  |  | static PyUnicodeObject *unicode_empty; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Single character Unicode strings in the Latin-1 range are being
 | 
					
						
							|  |  |  |    shared as well. */ | 
					
						
							|  |  |  | static PyUnicodeObject *unicode_latin1[256]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-09 19:53:39 +00:00
										 |  |  | /* Default encoding to use and assume when NULL is passed as encoding
 | 
					
						
							|  |  |  |    parameter; it is initialized by _PyUnicode_Init(). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Always use the PyUnicode_SetDefaultEncoding() and | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |    PyUnicode_GetDefaultEncoding() APIs to access this global. | 
					
						
							| 
									
										
										
										
											2000-05-09 19:53:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | static char unicode_default_encoding[100]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  | /* Fast detection of the most frequent whitespace characters */ | 
					
						
							|  |  |  | const unsigned char _Py_ascii_whitespace[] = { | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | //     case 0x0009: /* HORIZONTAL TABULATION */
 | 
					
						
							|  |  |  | //     case 0x000A: /* LINE FEED */
 | 
					
						
							|  |  |  | //     case 0x000B: /* VERTICAL TABULATION */
 | 
					
						
							|  |  |  | //     case 0x000C: /* FORM FEED */
 | 
					
						
							|  |  |  | //     case 0x000D: /* CARRIAGE RETURN */
 | 
					
						
							|  |  |  | 	0, 1, 1, 1, 1, 1, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | //     case 0x001C: /* FILE SEPARATOR */
 | 
					
						
							|  |  |  | //     case 0x001D: /* GROUP SEPARATOR */
 | 
					
						
							|  |  |  | //     case 0x001E: /* RECORD SEPARATOR */
 | 
					
						
							|  |  |  | //     case 0x001F: /* UNIT SEPARATOR */
 | 
					
						
							|  |  |  | 	0, 0, 0, 0, 1, 1, 1, 1, | 
					
						
							|  |  |  | //     case 0x0020: /* SPACE */
 | 
					
						
							|  |  |  | 	1, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Same for linebreaks */ | 
					
						
							|  |  |  | static unsigned char ascii_linebreak[] = { | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | //         0x000A, /* LINE FEED */
 | 
					
						
							|  |  |  | //         0x000D, /* CARRIAGE RETURN */
 | 
					
						
							|  |  |  | 	0, 0, 1, 0, 0, 1, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | //         0x001C, /* FILE SEPARATOR */
 | 
					
						
							|  |  |  | //         0x001D, /* GROUP SEPARATOR */
 | 
					
						
							|  |  |  | //         0x001E, /* RECORD SEPARATOR */
 | 
					
						
							|  |  |  | 	0, 0, 0, 0, 1, 1, 1, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	0, 0, 0, 0, 0, 0, 0, 0 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-06-27 06:28:56 +00:00
										 |  |  | Py_UNICODE | 
					
						
							| 
									
										
										
										
											2001-07-20 17:39:11 +00:00
										 |  |  | PyUnicode_GetMax(void) | 
					
						
							| 
									
										
										
										
											2001-06-27 06:28:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2001-06-27 18:59:43 +00:00
										 |  |  | #ifdef Py_UNICODE_WIDE
 | 
					
						
							| 
									
										
										
										
											2001-06-27 06:28:56 +00:00
										 |  |  | 	return 0x10FFFF; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	/* This is actually an illegal character, so it should
 | 
					
						
							|  |  |  | 	   not be passed to unichr. */ | 
					
						
							|  |  |  | 	return 0xFFFF; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-23 18:44:25 +00:00
										 |  |  | /* --- Bloom Filters ----------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* stuff to implement simple "bloom filters" for Unicode characters.
 | 
					
						
							|  |  |  |    to keep things simple, we use a single bitmask, using the least 5 | 
					
						
							|  |  |  |    bits from each unicode characters as the bit index. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* the linebreak mask is set up by Unicode_Init below */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define BLOOM_MASK unsigned long
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static BLOOM_MASK bloom_linebreak; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define BLOOM(mask, ch) ((mask & (1 << ((ch) & 0x1F))))
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  | #define BLOOM_LINEBREAK(ch) \
 | 
					
						
							|  |  |  |     ((ch) < 128U ? ascii_linebreak[(ch)] : \ | 
					
						
							|  |  |  |     (BLOOM(bloom_linebreak, (ch)) && Py_UNICODE_ISLINEBREAK(ch))) | 
					
						
							| 
									
										
										
										
											2006-05-23 18:44:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-27 14:58:20 +00:00
										 |  |  | Py_LOCAL_INLINE(BLOOM_MASK) make_bloom_mask(Py_UNICODE* ptr, Py_ssize_t len) | 
					
						
							| 
									
										
										
										
											2006-05-23 18:44:25 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     /* calculate simple bloom-style bitmask for a given unicode string */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     long mask; | 
					
						
							|  |  |  |     Py_ssize_t i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     mask = 0; | 
					
						
							|  |  |  |     for (i = 0; i < len; i++) | 
					
						
							|  |  |  |         mask |= (1 << (ptr[i] & 0x1F)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return mask; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-27 14:58:20 +00:00
										 |  |  | Py_LOCAL_INLINE(int) unicode_member(Py_UNICODE chr, Py_UNICODE* set, Py_ssize_t setlen) | 
					
						
							| 
									
										
										
										
											2006-05-23 18:44:25 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     Py_ssize_t i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < setlen; i++) | 
					
						
							|  |  |  |         if (set[i] == chr) | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-23 19:47:35 +00:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2006-05-23 18:44:25 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define BLOOM_MEMBER(mask, chr, set, setlen)\
 | 
					
						
							|  |  |  |     BLOOM(mask, chr) && unicode_member(chr, set, setlen) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | /* --- Unicode Object ----------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  | int unicode_resize(register PyUnicodeObject *unicode, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |                       Py_ssize_t length) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     void *oldstr; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-10 13:51:10 +00:00
										 |  |  |     /* Shortcut if there's nothing much to do. */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (unicode->length == length) | 
					
						
							| 
									
										
										
										
											2000-04-10 13:51:10 +00:00
										 |  |  | 	goto reset; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  |     /* Resizing shared object (unicode_empty or single character
 | 
					
						
							|  |  |  |        objects) in-place is not allowed. Use PyUnicode_Resize() | 
					
						
							|  |  |  |        instead ! */ | 
					
						
							| 
									
										
										
										
											2006-05-26 08:54:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-13 06:06:08 +00:00
										 |  |  |     if (unicode == unicode_empty ||  | 
					
						
							|  |  |  | 	(unicode->length == 1 &&  | 
					
						
							|  |  |  | 	 unicode->str[0] < 256U && | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  | 	 unicode_latin1[unicode->str[0]] == unicode)) { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         PyErr_SetString(PyExc_SystemError, | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  |                         "can't resize shared unicode objects"); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 08:54:28 +00:00
										 |  |  |     /* We allocate one more byte to make sure the string is Ux0000 terminated.
 | 
					
						
							|  |  |  |        The overallocation is also used by fastsearch, which assumes that it's | 
					
						
							| 
									
										
										
										
											2006-05-26 19:51:10 +00:00
										 |  |  |        safe to look at str[length] (without making any assumptions about what | 
					
						
							| 
									
										
										
										
											2006-05-26 08:54:28 +00:00
										 |  |  |        it contains). */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     oldstr = unicode->str; | 
					
						
							|  |  |  |     PyMem_RESIZE(unicode->str, Py_UNICODE, length + 1); | 
					
						
							|  |  |  |     if (!unicode->str) { | 
					
						
							| 
									
										
										
										
											2006-04-11 07:42:36 +00:00
										 |  |  | 	unicode->str = (Py_UNICODE *)oldstr; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         PyErr_NoMemory(); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     unicode->str[length] = 0; | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |     unicode->length = length; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-10 13:51:10 +00:00
										 |  |  |  reset: | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     /* Reset the object caches */ | 
					
						
							| 
									
										
										
										
											2000-08-03 18:46:08 +00:00
										 |  |  |     if (unicode->defenc) { | 
					
						
							|  |  |  |         Py_DECREF(unicode->defenc); | 
					
						
							|  |  |  |         unicode->defenc = NULL; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     unicode->hash = -1; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* We allocate one more byte to make sure the string is
 | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |    Ux0000 terminated -- XXX is this needed ? | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    XXX This allocator could further be enhanced by assuring that the | 
					
						
							|  |  |  |        free list never reduces its size below 1. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | PyUnicodeObject *_PyUnicode_New(Py_ssize_t length) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     register PyUnicodeObject *unicode; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-27 11:04:36 +00:00
										 |  |  |     /* Optimization for empty strings */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (length == 0 && unicode_empty != NULL) { | 
					
						
							|  |  |  |         Py_INCREF(unicode_empty); | 
					
						
							|  |  |  |         return unicode_empty; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Unicode freelist & memory allocation */ | 
					
						
							| 
									
										
										
										
											2008-02-06 13:33:44 +00:00
										 |  |  |     if (free_list) { | 
					
						
							|  |  |  |         unicode = free_list; | 
					
						
							|  |  |  |         free_list = *(PyUnicodeObject **)unicode; | 
					
						
							|  |  |  |         numfree--; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	if (unicode->str) { | 
					
						
							| 
									
										
										
										
											2000-04-10 13:51:10 +00:00
										 |  |  | 	    /* Keep-Alive optimization: we only upsize the buffer,
 | 
					
						
							|  |  |  | 	       never downsize it. */ | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 	    if ((unicode->length < length) && | 
					
						
							| 
									
										
										
										
											2003-09-16 03:41:45 +00:00
										 |  |  |                 unicode_resize(unicode, length) < 0) { | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | 		PyMem_DEL(unicode->str); | 
					
						
							| 
									
										
										
										
											2000-04-27 20:13:50 +00:00
										 |  |  | 		goto onError; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    } | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-06-14 17:52:02 +00:00
										 |  |  |         else { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    unicode->str = PyMem_NEW(Py_UNICODE, length + 1); | 
					
						
							| 
									
										
										
										
											2001-06-14 17:52:02 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         PyObject_INIT(unicode, &PyUnicode_Type); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							| 
									
										
										
										
											2002-04-12 03:07:20 +00:00
										 |  |  |         unicode = PyObject_New(PyUnicodeObject, &PyUnicode_Type); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         if (unicode == NULL) | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  | 	unicode->str = PyMem_NEW(Py_UNICODE, length + 1); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-27 20:13:50 +00:00
										 |  |  |     if (!unicode->str) { | 
					
						
							|  |  |  | 	PyErr_NoMemory(); | 
					
						
							| 
									
										
										
										
											2000-03-20 16:36:48 +00:00
										 |  |  | 	goto onError; | 
					
						
							| 
									
										
										
										
											2000-04-27 20:13:50 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-09-16 19:41:39 +00:00
										 |  |  |     /* Initialize the first element to guard against cases where
 | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |      * the caller fails before initializing str -- unicode_resize() | 
					
						
							|  |  |  |      * reads str[0], and the Keep-Alive optimization can keep memory | 
					
						
							|  |  |  |      * allocated for str alive across a call to unicode_dealloc(unicode). | 
					
						
							|  |  |  |      * We don't want unicode_resize to read uninitialized memory in | 
					
						
							|  |  |  |      * that case. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2003-09-16 19:41:39 +00:00
										 |  |  |     unicode->str[0] = 0; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     unicode->str[length] = 0; | 
					
						
							| 
									
										
										
										
											2006-04-13 07:24:50 +00:00
										 |  |  |     unicode->length = length; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     unicode->hash = -1; | 
					
						
							| 
									
										
										
										
											2000-08-03 18:46:08 +00:00
										 |  |  |     unicode->defenc = NULL; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return unicode; | 
					
						
							| 
									
										
										
										
											2000-03-20 16:36:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							|  |  |  |     _Py_ForgetReference((PyObject *)unicode); | 
					
						
							| 
									
										
										
										
											2002-04-12 03:07:20 +00:00
										 |  |  |     PyObject_Del(unicode); | 
					
						
							| 
									
										
										
										
											2000-03-20 16:36:48 +00:00
										 |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static | 
					
						
							| 
									
										
										
										
											2001-10-05 20:51:39 +00:00
										 |  |  | void unicode_dealloc(register PyUnicodeObject *unicode) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2001-12-06 20:03:56 +00:00
										 |  |  |     if (PyUnicode_CheckExact(unicode) && | 
					
						
							| 
									
										
										
										
											2008-02-06 13:33:44 +00:00
										 |  |  | 	numfree < PyUnicode_MAXFREELIST) { | 
					
						
							| 
									
										
										
										
											2000-04-10 13:51:10 +00:00
										 |  |  |         /* Keep-Alive optimization */ | 
					
						
							|  |  |  | 	if (unicode->length >= KEEPALIVE_SIZE_LIMIT) { | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | 	    PyMem_DEL(unicode->str); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    unicode->str = NULL; | 
					
						
							|  |  |  | 	    unicode->length = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2000-08-03 18:46:08 +00:00
										 |  |  | 	if (unicode->defenc) { | 
					
						
							|  |  |  | 	    Py_DECREF(unicode->defenc); | 
					
						
							|  |  |  | 	    unicode->defenc = NULL; | 
					
						
							| 
									
										
										
										
											2000-04-10 13:51:10 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	/* Add to free list */ | 
					
						
							| 
									
										
										
										
											2008-02-06 13:33:44 +00:00
										 |  |  |         *(PyUnicodeObject **)unicode = free_list; | 
					
						
							|  |  |  |         free_list = unicode; | 
					
						
							|  |  |  |         numfree++; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | 	PyMem_DEL(unicode->str); | 
					
						
							| 
									
										
										
										
											2000-08-03 18:46:08 +00:00
										 |  |  | 	Py_XDECREF(unicode->defenc); | 
					
						
							| 
									
										
										
										
											2007-12-19 02:37:44 +00:00
										 |  |  | 	Py_TYPE(unicode)->tp_free((PyObject *)unicode); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | int PyUnicode_Resize(PyObject **unicode, Py_ssize_t length) | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     register PyUnicodeObject *v; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Argument checks */ | 
					
						
							|  |  |  |     if (unicode == NULL) { | 
					
						
							|  |  |  | 	PyErr_BadInternalCall(); | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     v = (PyUnicodeObject *)*unicode; | 
					
						
							| 
									
										
										
										
											2007-12-19 02:37:44 +00:00
										 |  |  |     if (v == NULL || !PyUnicode_Check(v) || Py_REFCNT(v) != 1 || length < 0) { | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  | 	PyErr_BadInternalCall(); | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Resizing unicode_empty and single character objects is not
 | 
					
						
							|  |  |  |        possible since these are being shared. We simply return a fresh | 
					
						
							|  |  |  |        copy with the same Unicode content. */ | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |     if (v->length != length && | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  | 	(v == unicode_empty || v->length == 1)) { | 
					
						
							|  |  |  | 	PyUnicodeObject *w = _PyUnicode_New(length); | 
					
						
							|  |  |  | 	if (w == NULL) | 
					
						
							|  |  |  | 	    return -1; | 
					
						
							|  |  |  | 	Py_UNICODE_COPY(w->str, v->str, | 
					
						
							|  |  |  | 			length < v->length ? length : v->length); | 
					
						
							| 
									
										
										
										
											2003-03-09 07:30:43 +00:00
										 |  |  | 	Py_DECREF(*unicode); | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  | 	*unicode = (PyObject *)w; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Note that we don't have to modify *unicode for unshared Unicode
 | 
					
						
							|  |  |  |        objects, since we can modify them in-place. */ | 
					
						
							|  |  |  |     return unicode_resize(v, length); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Internal API for use in unicodeobject.c only ! */ | 
					
						
							|  |  |  | #define _PyUnicode_Resize(unicodevar, length) \
 | 
					
						
							|  |  |  |         PyUnicode_Resize(((PyObject **)(unicodevar)), length) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | PyObject *PyUnicode_FromUnicode(const Py_UNICODE *u, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 				Py_ssize_t size) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     PyUnicodeObject *unicode; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  |     /* If the Unicode data is known at construction time, we can apply
 | 
					
						
							|  |  |  |        some optimizations which share commonly used objects. */ | 
					
						
							|  |  |  |     if (u != NULL) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Optimization for empty strings */ | 
					
						
							|  |  |  | 	if (size == 0 && unicode_empty != NULL) { | 
					
						
							|  |  |  | 	    Py_INCREF(unicode_empty); | 
					
						
							|  |  |  | 	    return (PyObject *)unicode_empty; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Single character Unicode objects in the Latin-1 range are
 | 
					
						
							|  |  |  | 	   shared when using this constructor */ | 
					
						
							|  |  |  | 	if (size == 1 && *u < 256) { | 
					
						
							|  |  |  | 	    unicode = unicode_latin1[*u]; | 
					
						
							|  |  |  | 	    if (!unicode) { | 
					
						
							|  |  |  | 		unicode = _PyUnicode_New(1); | 
					
						
							|  |  |  | 		if (!unicode) | 
					
						
							|  |  |  | 		    return NULL; | 
					
						
							| 
									
										
										
										
											2001-06-07 12:26:56 +00:00
										 |  |  | 		unicode->str[0] = *u; | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  | 		unicode_latin1[*u] = unicode; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    Py_INCREF(unicode); | 
					
						
							|  |  |  | 	    return (PyObject *)unicode; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     unicode = _PyUnicode_New(size); | 
					
						
							|  |  |  |     if (!unicode) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Copy the Unicode data into the new object */ | 
					
						
							|  |  |  |     if (u != NULL) | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  | 	Py_UNICODE_COPY(unicode->str, u, size); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return (PyObject *)unicode; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-25 12:18:43 +00:00
										 |  |  | PyObject *PyUnicode_FromStringAndSize(const char *u, Py_ssize_t size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyUnicodeObject *unicode; | 
					
						
							|  |  |  |     /* If the Unicode data is known at construction time, we can apply
 | 
					
						
							|  |  |  |        some optimizations which share commonly used objects. | 
					
						
							|  |  |  |        Also, this means the input must be UTF-8, so fall back to the | 
					
						
							|  |  |  |        UTF-8 decoder at the end. */ | 
					
						
							|  |  |  |     if (u != NULL) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Optimization for empty strings */ | 
					
						
							|  |  |  | 	if (size == 0 && unicode_empty != NULL) { | 
					
						
							|  |  |  | 	    Py_INCREF(unicode_empty); | 
					
						
							|  |  |  | 	    return (PyObject *)unicode_empty; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Single characters are shared when using this constructor.
 | 
					
						
							|  |  |  |            Restrict to ASCII, since the input must be UTF-8. */ | 
					
						
							|  |  |  | 	if (size == 1 && Py_CHARMASK(*u) < 128) { | 
					
						
							|  |  |  | 	    unicode = unicode_latin1[Py_CHARMASK(*u)]; | 
					
						
							|  |  |  | 	    if (!unicode) { | 
					
						
							|  |  |  | 		unicode = _PyUnicode_New(1); | 
					
						
							|  |  |  | 		if (!unicode) | 
					
						
							|  |  |  | 		    return NULL; | 
					
						
							|  |  |  | 		unicode->str[0] = Py_CHARMASK(*u); | 
					
						
							|  |  |  | 		unicode_latin1[Py_CHARMASK(*u)] = unicode; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    Py_INCREF(unicode); | 
					
						
							|  |  |  | 	    return (PyObject *)unicode; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return PyUnicode_DecodeUTF8(u, size, NULL); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     unicode = _PyUnicode_New(size); | 
					
						
							|  |  |  |     if (!unicode) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return (PyObject *)unicode; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_FromString(const char *u) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     size_t size = strlen(u); | 
					
						
							|  |  |  |     if (size > PY_SSIZE_T_MAX) { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_OverflowError, "input too long"); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return PyUnicode_FromStringAndSize(u, size); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | #ifdef HAVE_WCHAR_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_FromWideChar(register const wchar_t *w, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 				 Py_ssize_t size) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     PyUnicodeObject *unicode; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (w == NULL) { | 
					
						
							|  |  |  | 	PyErr_BadInternalCall(); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     unicode = _PyUnicode_New(size); | 
					
						
							|  |  |  |     if (!unicode) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Copy the wchar_t data into the new object */ | 
					
						
							|  |  |  | #ifdef HAVE_USABLE_WCHAR_T
 | 
					
						
							|  |  |  |     memcpy(unicode->str, w, size * sizeof(wchar_t)); | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     { | 
					
						
							|  |  |  | 	register Py_UNICODE *u; | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  | 	register Py_ssize_t i; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	u = PyUnicode_AS_UNICODE(unicode); | 
					
						
							| 
									
										
										
										
											2004-10-15 07:45:05 +00:00
										 |  |  | 	for (i = size; i > 0; i--) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    *u++ = *w++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return (PyObject *)unicode; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-25 12:18:43 +00:00
										 |  |  | static void | 
					
						
							|  |  |  | makefmt(char *fmt, int longflag, int size_tflag, int zeropad, int width, int precision, char c) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	*fmt++ = '%'; | 
					
						
							|  |  |  | 	if (width) { | 
					
						
							|  |  |  | 		if (zeropad) | 
					
						
							|  |  |  | 			*fmt++ = '0'; | 
					
						
							|  |  |  | 		fmt += sprintf(fmt, "%d", width); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (precision) | 
					
						
							|  |  |  | 		fmt += sprintf(fmt, ".%d", precision); | 
					
						
							|  |  |  | 	if (longflag) | 
					
						
							|  |  |  | 		*fmt++ = 'l'; | 
					
						
							|  |  |  | 	else if (size_tflag) { | 
					
						
							|  |  |  | 		char *f = PY_FORMAT_SIZE_T; | 
					
						
							|  |  |  | 		while (*f) | 
					
						
							|  |  |  | 			*fmt++ = *f++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	*fmt++ = c; | 
					
						
							|  |  |  | 	*fmt = '\0'; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define appendstring(string) {for (copy = string;*copy;) *s++ = *copy++;}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyUnicode_FromFormatV(const char *format, va_list vargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	va_list count; | 
					
						
							|  |  |  | 	Py_ssize_t callcount = 0; | 
					
						
							|  |  |  | 	PyObject **callresults = NULL; | 
					
						
							|  |  |  | 	PyObject **callresult = NULL; | 
					
						
							|  |  |  | 	Py_ssize_t n = 0; | 
					
						
							|  |  |  | 	int width = 0; | 
					
						
							|  |  |  | 	int precision = 0; | 
					
						
							|  |  |  | 	int zeropad; | 
					
						
							|  |  |  | 	const char* f; | 
					
						
							|  |  |  | 	Py_UNICODE *s; | 
					
						
							|  |  |  | 	PyObject *string; | 
					
						
							|  |  |  | 	/* used by sprintf */ | 
					
						
							|  |  |  | 	char buffer[21]; | 
					
						
							|  |  |  | 	/* use abuffer instead of buffer, if we need more space
 | 
					
						
							|  |  |  | 	 * (which can happen if there's a format specifier with width). */ | 
					
						
							|  |  |  | 	char *abuffer = NULL; | 
					
						
							|  |  |  | 	char *realbuffer; | 
					
						
							|  |  |  | 	Py_ssize_t abuffersize = 0; | 
					
						
							|  |  |  | 	char fmt[60]; /* should be enough for %0width.precisionld */ | 
					
						
							|  |  |  | 	const char *copy; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef VA_LIST_IS_ARRAY
 | 
					
						
							|  |  |  | 	Py_MEMCPY(count, vargs, sizeof(va_list)); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #ifdef  __va_copy
 | 
					
						
							|  |  |  | 	__va_copy(count, vargs); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	count = vargs; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	/* step 1: count the number of %S/%R format specifications
 | 
					
						
							|  |  |  | 	 * (we call PyObject_Str()/PyObject_Repr() for these objects | 
					
						
							|  |  |  | 	 * once during step 3 and put the result in an array) */ | 
					
						
							|  |  |  | 	for (f = format; *f; f++) { | 
					
						
							|  |  |  | 		if (*f == '%' && (*(f+1)=='S' || *(f+1)=='R')) | 
					
						
							|  |  |  | 			++callcount; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* step 2: allocate memory for the results of
 | 
					
						
							|  |  |  | 	 * PyObject_Str()/PyObject_Repr() calls */ | 
					
						
							|  |  |  | 	if (callcount) { | 
					
						
							|  |  |  | 		callresults = PyMem_Malloc(sizeof(PyObject *)*callcount); | 
					
						
							|  |  |  | 		if (!callresults) { | 
					
						
							|  |  |  | 			PyErr_NoMemory(); | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		callresult = callresults; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* step 3: figure out how large a buffer we need */ | 
					
						
							|  |  |  | 	for (f = format; *f; f++) { | 
					
						
							|  |  |  | 		if (*f == '%') { | 
					
						
							|  |  |  | 			const char* p = f; | 
					
						
							|  |  |  | 			width = 0; | 
					
						
							|  |  |  | 			while (isdigit(*f)) | 
					
						
							|  |  |  | 				width = (width*10) + *f++ - '0'; | 
					
						
							|  |  |  | 			while (*++f && *f != '%' && !isalpha(*f)) | 
					
						
							|  |  |  | 				; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			/* skip the 'l' or 'z' in {%ld, %zd, %lu, %zu} since
 | 
					
						
							|  |  |  | 			 * they don't affect the amount of space we reserve. | 
					
						
							|  |  |  | 			 */ | 
					
						
							|  |  |  | 			if ((*f == 'l' || *f == 'z') && | 
					
						
							|  |  |  | 					(f[1] == 'd' || f[1] == 'u')) | 
					
						
							|  |  |  |                                 ++f; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			switch (*f) { | 
					
						
							|  |  |  | 			case 'c': | 
					
						
							|  |  |  | 				(void)va_arg(count, int); | 
					
						
							|  |  |  | 				/* fall through... */ | 
					
						
							|  |  |  | 			case '%': | 
					
						
							|  |  |  | 				n++; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			case 'd': case 'u': case 'i': case 'x': | 
					
						
							|  |  |  | 				(void) va_arg(count, int); | 
					
						
							|  |  |  | 				/* 20 bytes is enough to hold a 64-bit
 | 
					
						
							|  |  |  | 				   integer.  Decimal takes the most space. | 
					
						
							|  |  |  | 				   This isn't enough for octal. | 
					
						
							|  |  |  | 				   If a width is specified we need more | 
					
						
							|  |  |  | 				   (which we allocate later). */ | 
					
						
							|  |  |  | 				if (width < 20) | 
					
						
							|  |  |  | 					width = 20; | 
					
						
							|  |  |  | 				n += width; | 
					
						
							|  |  |  | 				if (abuffersize < width) | 
					
						
							|  |  |  | 					abuffersize = width; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			case 's': | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				/* UTF-8 */ | 
					
						
							|  |  |  | 				unsigned char*s; | 
					
						
							|  |  |  | 				s = va_arg(count, unsigned char*); | 
					
						
							|  |  |  | 				while (*s) { | 
					
						
							|  |  |  | 					if (*s < 128) { | 
					
						
							|  |  |  | 						n++; s++; | 
					
						
							|  |  |  | 					} else if (*s < 0xc0) { | 
					
						
							|  |  |  | 						/* invalid UTF-8 */ | 
					
						
							|  |  |  | 						n++; s++; | 
					
						
							|  |  |  | 					} else if (*s < 0xc0) { | 
					
						
							|  |  |  | 						n++; | 
					
						
							|  |  |  | 						s++; if(!*s)break; | 
					
						
							|  |  |  | 						s++; | 
					
						
							|  |  |  | 					} else if (*s < 0xe0) { | 
					
						
							|  |  |  | 						n++; | 
					
						
							|  |  |  | 						s++; if(!*s)break; | 
					
						
							|  |  |  | 						s++; if(!*s)break; | 
					
						
							|  |  |  | 						s++; | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						#ifdef Py_UNICODE_WIDE
 | 
					
						
							|  |  |  | 						n++; | 
					
						
							|  |  |  | 						#else
 | 
					
						
							|  |  |  | 						n+=2; | 
					
						
							|  |  |  | 						#endif
 | 
					
						
							|  |  |  | 						s++; if(!*s)break; | 
					
						
							|  |  |  | 						s++; if(!*s)break; | 
					
						
							|  |  |  | 						s++; if(!*s)break; | 
					
						
							|  |  |  | 						s++; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			case 'U': | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				PyObject *obj = va_arg(count, PyObject *); | 
					
						
							|  |  |  | 				assert(obj && PyUnicode_Check(obj)); | 
					
						
							|  |  |  | 				n += PyUnicode_GET_SIZE(obj); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			case 'V': | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				PyObject *obj = va_arg(count, PyObject *); | 
					
						
							|  |  |  | 				const char *str = va_arg(count, const char *); | 
					
						
							|  |  |  | 				assert(obj || str); | 
					
						
							|  |  |  | 				assert(!obj || PyUnicode_Check(obj)); | 
					
						
							|  |  |  | 				if (obj) | 
					
						
							|  |  |  | 					n += PyUnicode_GET_SIZE(obj); | 
					
						
							|  |  |  | 				else | 
					
						
							|  |  |  | 					n += strlen(str); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			case 'S': | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				PyObject *obj = va_arg(count, PyObject *); | 
					
						
							|  |  |  | 				PyObject *str; | 
					
						
							|  |  |  | 				assert(obj); | 
					
						
							|  |  |  | 				str = PyObject_Str(obj); | 
					
						
							|  |  |  | 				if (!str) | 
					
						
							|  |  |  | 					goto fail; | 
					
						
							|  |  |  | 				n += PyUnicode_GET_SIZE(str); | 
					
						
							|  |  |  | 				/* Remember the str and switch to the next slot */ | 
					
						
							|  |  |  | 				*callresult++ = str; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			case 'R': | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				PyObject *obj = va_arg(count, PyObject *); | 
					
						
							|  |  |  | 				PyObject *repr; | 
					
						
							|  |  |  | 				assert(obj); | 
					
						
							|  |  |  | 				repr = PyObject_Repr(obj); | 
					
						
							|  |  |  | 				if (!repr) | 
					
						
							|  |  |  | 					goto fail; | 
					
						
							|  |  |  | 				n += PyUnicode_GET_SIZE(repr); | 
					
						
							|  |  |  | 				/* Remember the repr and switch to the next slot */ | 
					
						
							|  |  |  | 				*callresult++ = repr; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			case 'p': | 
					
						
							|  |  |  | 				(void) va_arg(count, int); | 
					
						
							|  |  |  | 				/* maximum 64-bit pointer representation:
 | 
					
						
							|  |  |  | 				 * 0xffffffffffffffff | 
					
						
							|  |  |  | 				 * so 19 characters is enough. | 
					
						
							|  |  |  | 				 * XXX I count 18 -- what's the extra for? | 
					
						
							|  |  |  | 				 */ | 
					
						
							|  |  |  | 				n += 19; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			default: | 
					
						
							|  |  |  | 				/* if we stumble upon an unknown
 | 
					
						
							|  |  |  | 				   formatting code, copy the rest of | 
					
						
							|  |  |  | 				   the format string to the output | 
					
						
							|  |  |  | 				   string. (we cannot just skip the | 
					
						
							|  |  |  | 				   code, since there's no way to know | 
					
						
							|  |  |  | 				   what's in the argument list) */ | 
					
						
							|  |  |  | 				n += strlen(p); | 
					
						
							|  |  |  | 				goto expand; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} else | 
					
						
							|  |  |  | 			n++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |  expand: | 
					
						
							|  |  |  | 	if (abuffersize > 20) { | 
					
						
							|  |  |  | 		abuffer = PyMem_Malloc(abuffersize); | 
					
						
							|  |  |  | 		if (!abuffer) { | 
					
						
							|  |  |  | 			PyErr_NoMemory(); | 
					
						
							|  |  |  | 			goto fail; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		realbuffer = abuffer; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		realbuffer = buffer; | 
					
						
							|  |  |  | 	/* step 4: fill the buffer */ | 
					
						
							|  |  |  | 	/* Since we've analyzed how much space we need for the worst case,
 | 
					
						
							|  |  |  | 	   we don't have to resize the string. | 
					
						
							|  |  |  | 	   There can be no errors beyond this point. */ | 
					
						
							|  |  |  | 	string = PyUnicode_FromUnicode(NULL, n); | 
					
						
							|  |  |  | 	if (!string) | 
					
						
							|  |  |  | 		goto fail; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	s = PyUnicode_AS_UNICODE(string); | 
					
						
							|  |  |  | 	callresult = callresults; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (f = format; *f; f++) { | 
					
						
							|  |  |  | 		if (*f == '%') { | 
					
						
							|  |  |  | 			const char* p = f++; | 
					
						
							|  |  |  | 			int longflag = 0; | 
					
						
							|  |  |  | 			int size_tflag = 0; | 
					
						
							|  |  |  | 			zeropad = (*f == '0'); | 
					
						
							|  |  |  | 			/* parse the width.precision part */ | 
					
						
							|  |  |  | 			width = 0; | 
					
						
							|  |  |  | 			while (isdigit(*f)) | 
					
						
							|  |  |  | 				width = (width*10) + *f++ - '0'; | 
					
						
							|  |  |  | 			precision = 0; | 
					
						
							|  |  |  | 			if (*f == '.') { | 
					
						
							|  |  |  | 				f++; | 
					
						
							|  |  |  | 				while (isdigit(*f)) | 
					
						
							|  |  |  | 					precision = (precision*10) + *f++ - '0'; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			/* handle the long flag, but only for %ld and %lu.
 | 
					
						
							|  |  |  | 			   others can be added when necessary. */ | 
					
						
							|  |  |  | 			if (*f == 'l' && (f[1] == 'd' || f[1] == 'u')) { | 
					
						
							|  |  |  | 				longflag = 1; | 
					
						
							|  |  |  | 				++f; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			/* handle the size_t flag. */ | 
					
						
							|  |  |  | 			if (*f == 'z' && (f[1] == 'd' || f[1] == 'u')) { | 
					
						
							|  |  |  | 				size_tflag = 1; | 
					
						
							|  |  |  | 				++f; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			switch (*f) { | 
					
						
							|  |  |  | 			case 'c': | 
					
						
							|  |  |  | 				*s++ = va_arg(vargs, int); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			case 'd': | 
					
						
							|  |  |  | 				makefmt(fmt, longflag, size_tflag, zeropad, width, precision, 'd'); | 
					
						
							|  |  |  | 				if (longflag) | 
					
						
							|  |  |  | 					sprintf(realbuffer, fmt, va_arg(vargs, long)); | 
					
						
							|  |  |  | 				else if (size_tflag) | 
					
						
							|  |  |  | 					sprintf(realbuffer, fmt, va_arg(vargs, Py_ssize_t)); | 
					
						
							|  |  |  | 				else | 
					
						
							|  |  |  | 					sprintf(realbuffer, fmt, va_arg(vargs, int)); | 
					
						
							|  |  |  | 				appendstring(realbuffer); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			case 'u': | 
					
						
							|  |  |  | 				makefmt(fmt, longflag, size_tflag, zeropad, width, precision, 'u'); | 
					
						
							|  |  |  | 				if (longflag) | 
					
						
							|  |  |  | 					sprintf(realbuffer, fmt, va_arg(vargs, unsigned long)); | 
					
						
							|  |  |  | 				else if (size_tflag) | 
					
						
							|  |  |  | 					sprintf(realbuffer, fmt, va_arg(vargs, size_t)); | 
					
						
							|  |  |  | 				else | 
					
						
							|  |  |  | 					sprintf(realbuffer, fmt, va_arg(vargs, unsigned int)); | 
					
						
							|  |  |  | 				appendstring(realbuffer); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			case 'i': | 
					
						
							|  |  |  | 				makefmt(fmt, 0, 0, zeropad, width, precision, 'i'); | 
					
						
							|  |  |  | 				sprintf(realbuffer, fmt, va_arg(vargs, int)); | 
					
						
							|  |  |  | 				appendstring(realbuffer); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			case 'x': | 
					
						
							|  |  |  | 				makefmt(fmt, 0, 0, zeropad, width, precision, 'x'); | 
					
						
							|  |  |  | 				sprintf(realbuffer, fmt, va_arg(vargs, int)); | 
					
						
							|  |  |  | 				appendstring(realbuffer); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			case 's': | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				/* Parameter must be UTF-8 encoded.
 | 
					
						
							|  |  |  | 				   In case of encoding errors, use | 
					
						
							|  |  |  | 				   the replacement character. */ | 
					
						
							|  |  |  | 				PyObject *u; | 
					
						
							|  |  |  | 				p = va_arg(vargs, char*); | 
					
						
							|  |  |  | 				u = PyUnicode_DecodeUTF8(p, strlen(p),  | 
					
						
							|  |  |  | 							 "replace"); | 
					
						
							|  |  |  | 				if (!u) | 
					
						
							|  |  |  | 					goto fail; | 
					
						
							|  |  |  | 				Py_UNICODE_COPY(s, PyUnicode_AS_UNICODE(u), | 
					
						
							|  |  |  | 						PyUnicode_GET_SIZE(u)); | 
					
						
							|  |  |  | 				s += PyUnicode_GET_SIZE(u); | 
					
						
							|  |  |  | 				Py_DECREF(u); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			case 'U': | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				PyObject *obj = va_arg(vargs, PyObject *); | 
					
						
							|  |  |  | 				Py_ssize_t size = PyUnicode_GET_SIZE(obj); | 
					
						
							|  |  |  | 				Py_UNICODE_COPY(s, PyUnicode_AS_UNICODE(obj), size); | 
					
						
							|  |  |  | 				s += size; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			case 'V': | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				PyObject *obj = va_arg(vargs, PyObject *); | 
					
						
							|  |  |  | 				const char *str = va_arg(vargs, const char *); | 
					
						
							|  |  |  | 				if (obj) { | 
					
						
							|  |  |  | 					Py_ssize_t size = PyUnicode_GET_SIZE(obj); | 
					
						
							|  |  |  | 					Py_UNICODE_COPY(s, PyUnicode_AS_UNICODE(obj), size); | 
					
						
							|  |  |  | 					s += size; | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					appendstring(str); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			case 'S': | 
					
						
							|  |  |  | 			case 'R': | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				Py_UNICODE *ucopy; | 
					
						
							|  |  |  | 				Py_ssize_t usize; | 
					
						
							|  |  |  | 				Py_ssize_t upos; | 
					
						
							|  |  |  | 				/* unused, since we already have the result */ | 
					
						
							|  |  |  | 				(void) va_arg(vargs, PyObject *); | 
					
						
							|  |  |  | 				ucopy = PyUnicode_AS_UNICODE(*callresult); | 
					
						
							|  |  |  | 				usize = PyUnicode_GET_SIZE(*callresult); | 
					
						
							|  |  |  | 				for (upos = 0; upos<usize;) | 
					
						
							|  |  |  | 					*s++ = ucopy[upos++]; | 
					
						
							|  |  |  | 				/* We're done with the unicode()/repr() => forget it */ | 
					
						
							|  |  |  | 				Py_DECREF(*callresult); | 
					
						
							|  |  |  | 				/* switch to next unicode()/repr() result */ | 
					
						
							|  |  |  | 				++callresult; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			case 'p': | 
					
						
							|  |  |  | 				sprintf(buffer, "%p", va_arg(vargs, void*)); | 
					
						
							|  |  |  | 				/* %p is ill-defined:  ensure leading 0x. */ | 
					
						
							|  |  |  | 				if (buffer[1] == 'X') | 
					
						
							|  |  |  | 					buffer[1] = 'x'; | 
					
						
							|  |  |  | 				else if (buffer[1] != 'x') { | 
					
						
							|  |  |  | 					memmove(buffer+2, buffer, strlen(buffer)+1); | 
					
						
							|  |  |  | 					buffer[0] = '0'; | 
					
						
							|  |  |  | 					buffer[1] = 'x'; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				appendstring(buffer); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			case '%': | 
					
						
							|  |  |  | 				*s++ = '%'; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			default: | 
					
						
							|  |  |  | 				appendstring(p); | 
					
						
							|  |  |  | 				goto end; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} else | 
					
						
							|  |  |  | 			*s++ = *f; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  end: | 
					
						
							|  |  |  | 	if (callresults) | 
					
						
							|  |  |  | 		PyMem_Free(callresults); | 
					
						
							|  |  |  | 	if (abuffer) | 
					
						
							|  |  |  | 		PyMem_Free(abuffer); | 
					
						
							|  |  |  | 	_PyUnicode_Resize(&string, s - PyUnicode_AS_UNICODE(string)); | 
					
						
							|  |  |  | 	return string; | 
					
						
							|  |  |  |  fail: | 
					
						
							|  |  |  | 	if (callresults) { | 
					
						
							|  |  |  | 		PyObject **callresult2 = callresults; | 
					
						
							|  |  |  | 		while (callresult2 < callresult) { | 
					
						
							|  |  |  | 			Py_DECREF(*callresult2); | 
					
						
							|  |  |  | 			++callresult2; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		PyMem_Free(callresults); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (abuffer) | 
					
						
							|  |  |  | 		PyMem_Free(abuffer); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #undef appendstring
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyUnicode_FromFormat(const char *format, ...) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject* ret; | 
					
						
							|  |  |  | 	va_list vargs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef HAVE_STDARG_PROTOTYPES
 | 
					
						
							|  |  |  | 	va_start(vargs, format); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	va_start(vargs); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	ret = PyUnicode_FromFormatV(format, vargs); | 
					
						
							|  |  |  | 	va_end(vargs); | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | Py_ssize_t PyUnicode_AsWideChar(PyUnicodeObject *unicode, | 
					
						
							|  |  |  | 				wchar_t *w, | 
					
						
							|  |  |  | 				Py_ssize_t size) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     if (unicode == NULL) { | 
					
						
							|  |  |  | 	PyErr_BadInternalCall(); | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-11-22 13:02:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* If possible, try to copy the 0-termination as well */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (size > PyUnicode_GET_SIZE(unicode)) | 
					
						
							| 
									
										
										
										
											2004-11-22 13:02:31 +00:00
										 |  |  | 	size = PyUnicode_GET_SIZE(unicode) + 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | #ifdef HAVE_USABLE_WCHAR_T
 | 
					
						
							|  |  |  |     memcpy(w, unicode->str, size * sizeof(wchar_t)); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  | 	register Py_UNICODE *u; | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  | 	register Py_ssize_t i; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	u = PyUnicode_AS_UNICODE(unicode); | 
					
						
							| 
									
										
										
										
											2004-10-15 07:45:05 +00:00
										 |  |  | 	for (i = size; i > 0; i--) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    *w++ = *u++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-11-22 13:02:31 +00:00
										 |  |  |     if (size > PyUnicode_GET_SIZE(unicode)) | 
					
						
							|  |  |  |         return PyUnicode_GET_SIZE(unicode); | 
					
						
							|  |  |  |     else | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-11 12:23:04 +00:00
										 |  |  | PyObject *PyUnicode_FromOrdinal(int ordinal) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-04-06 07:24:51 +00:00
										 |  |  |     Py_UNICODE s[1]; | 
					
						
							| 
									
										
										
										
											2002-08-11 12:23:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef Py_UNICODE_WIDE
 | 
					
						
							|  |  |  |     if (ordinal < 0 || ordinal > 0x10ffff) { | 
					
						
							|  |  |  | 	PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 			"unichr() arg not in range(0x110000) " | 
					
						
							|  |  |  | 			"(wide Python build)"); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     if (ordinal < 0 || ordinal > 0xffff) { | 
					
						
							|  |  |  | 	PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 			"unichr() arg not in range(0x10000) " | 
					
						
							|  |  |  | 			"(narrow Python build)"); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-04-06 07:24:51 +00:00
										 |  |  |     s[0] = (Py_UNICODE)ordinal; | 
					
						
							|  |  |  |     return PyUnicode_FromUnicode(s, 1); | 
					
						
							| 
									
										
										
										
											2002-08-11 12:23:04 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | PyObject *PyUnicode_FromObject(register PyObject *obj) | 
					
						
							| 
									
										
										
										
											2000-07-07 13:46:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2001-10-19 02:01:31 +00:00
										 |  |  |     /* XXX Perhaps we should make this API an alias of
 | 
					
						
							|  |  |  |            PyObject_Unicode() instead ?! */ | 
					
						
							|  |  |  |     if (PyUnicode_CheckExact(obj)) { | 
					
						
							|  |  |  | 	Py_INCREF(obj); | 
					
						
							|  |  |  | 	return obj; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (PyUnicode_Check(obj)) { | 
					
						
							|  |  |  | 	/* For a Unicode subtype that's not a Unicode object,
 | 
					
						
							|  |  |  | 	   return a true Unicode object with the same data. */ | 
					
						
							|  |  |  | 	return PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(obj), | 
					
						
							|  |  |  | 				     PyUnicode_GET_SIZE(obj)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-07-07 13:46:42 +00:00
										 |  |  |     return PyUnicode_FromEncodedObject(obj, NULL, "strict"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_FromEncodedObject(register PyObject *obj, | 
					
						
							|  |  |  | 				      const char *encoding, | 
					
						
							|  |  |  | 				      const char *errors) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2001-09-20 12:53:16 +00:00
										 |  |  |     const char *s = NULL; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t len; | 
					
						
							| 
									
										
										
										
											2000-07-07 13:46:42 +00:00
										 |  |  |     PyObject *v; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (obj == NULL) { | 
					
						
							|  |  |  | 	PyErr_BadInternalCall(); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-07-07 13:46:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-10-19 02:01:31 +00:00
										 |  |  | #if 0
 | 
					
						
							|  |  |  |     /* For b/w compatibility we also accept Unicode objects provided
 | 
					
						
							| 
									
										
										
										
											2001-10-19 12:02:29 +00:00
										 |  |  |        that no encodings is given and then redirect to | 
					
						
							|  |  |  |        PyObject_Unicode() which then applies the additional logic for | 
					
						
							|  |  |  |        Unicode subclasses. | 
					
						
							| 
									
										
										
										
											2001-10-19 02:01:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |        NOTE: This API should really only be used for object which | 
					
						
							|  |  |  |              represent *encoded* Unicode ! | 
					
						
							| 
									
										
										
										
											2001-09-20 12:53:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-10-19 02:01:31 +00:00
										 |  |  |     */ | 
					
						
							| 
									
										
										
										
											2001-09-20 12:53:16 +00:00
										 |  |  | 	if (PyUnicode_Check(obj)) { | 
					
						
							|  |  |  | 	    if (encoding) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 				"decoding Unicode is not supported"); | 
					
						
							| 
									
										
										
										
											2001-10-19 02:01:31 +00:00
										 |  |  | 	    return NULL; | 
					
						
							| 
									
										
										
										
											2001-09-20 12:53:16 +00:00
										 |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2001-10-19 02:01:31 +00:00
										 |  |  | 	return PyObject_Unicode(obj); | 
					
						
							| 
									
										
										
										
											2001-09-20 12:53:16 +00:00
										 |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2001-10-19 02:01:31 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  |     if (PyUnicode_Check(obj)) { | 
					
						
							|  |  |  | 	PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 			"decoding Unicode is not supported"); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2000-07-07 13:46:42 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-10-19 02:01:31 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Coerce object */ | 
					
						
							|  |  |  |     if (PyString_Check(obj)) { | 
					
						
							| 
									
										
										
										
											2001-09-20 12:53:16 +00:00
										 |  |  | 	    s = PyString_AS_STRING(obj); | 
					
						
							|  |  |  | 	    len = PyString_GET_SIZE(obj); | 
					
						
							|  |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2001-10-19 02:01:31 +00:00
										 |  |  |     else if (PyObject_AsCharBuffer(obj, &s, &len)) { | 
					
						
							|  |  |  | 	/* Overwrite the error message with something more useful in
 | 
					
						
							|  |  |  | 	   case of a TypeError. */ | 
					
						
							|  |  |  | 	if (PyErr_ExceptionMatches(PyExc_TypeError)) | 
					
						
							| 
									
										
										
										
											2001-09-20 12:53:16 +00:00
										 |  |  | 	PyErr_Format(PyExc_TypeError, | 
					
						
							| 
									
										
										
										
											2001-10-19 02:01:31 +00:00
										 |  |  | 			 "coercing to Unicode: need string or buffer, " | 
					
						
							|  |  |  | 			 "%.80s found", | 
					
						
							| 
									
										
										
										
											2007-12-19 02:37:44 +00:00
										 |  |  | 		     Py_TYPE(obj)->tp_name); | 
					
						
							| 
									
										
										
										
											2000-07-07 13:46:42 +00:00
										 |  |  | 	goto onError; | 
					
						
							| 
									
										
										
										
											2000-04-05 20:11:21 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-07 13:46:42 +00:00
										 |  |  |     /* Convert to Unicode */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (len == 0) { | 
					
						
							|  |  |  | 	Py_INCREF(unicode_empty); | 
					
						
							| 
									
										
										
										
											2000-07-07 13:46:42 +00:00
										 |  |  | 	v = (PyObject *)unicode_empty; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2000-07-07 13:46:42 +00:00
										 |  |  | 	v = PyUnicode_Decode(s, len, encoding, errors); | 
					
						
							| 
									
										
										
										
											2001-01-17 17:09:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-07 13:46:42 +00:00
										 |  |  |     return v; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							|  |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_Decode(const char *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			   Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 			   const char *encoding, | 
					
						
							|  |  |  | 			   const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *buffer = NULL, *unicode; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (encoding == NULL) | 
					
						
							| 
									
										
										
										
											2000-05-09 19:53:39 +00:00
										 |  |  | 	encoding = PyUnicode_GetDefaultEncoding(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Shortcuts for common default encodings */ | 
					
						
							|  |  |  |     if (strcmp(encoding, "utf-8") == 0) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         return PyUnicode_DecodeUTF8(s, size, errors); | 
					
						
							| 
									
										
										
										
											2000-05-09 19:53:39 +00:00
										 |  |  |     else if (strcmp(encoding, "latin-1") == 0) | 
					
						
							|  |  |  |         return PyUnicode_DecodeLatin1(s, size, errors); | 
					
						
							| 
									
										
										
										
											2003-07-01 00:13:27 +00:00
										 |  |  | #if defined(MS_WINDOWS) && defined(HAVE_USABLE_WCHAR_T)
 | 
					
						
							|  |  |  |     else if (strcmp(encoding, "mbcs") == 0) | 
					
						
							|  |  |  |         return PyUnicode_DecodeMBCS(s, size, errors); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2000-05-09 19:53:39 +00:00
										 |  |  |     else if (strcmp(encoding, "ascii") == 0) | 
					
						
							|  |  |  |         return PyUnicode_DecodeASCII(s, size, errors); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Decode via the codec registry */ | 
					
						
							|  |  |  |     buffer = PyBuffer_FromMemory((void *)s, size); | 
					
						
							|  |  |  |     if (buffer == NULL) | 
					
						
							|  |  |  |         goto onError; | 
					
						
							|  |  |  |     unicode = PyCodec_Decode(buffer, encoding, errors); | 
					
						
							|  |  |  |     if (unicode == NULL) | 
					
						
							|  |  |  |         goto onError; | 
					
						
							|  |  |  |     if (!PyUnicode_Check(unicode)) { | 
					
						
							|  |  |  |         PyErr_Format(PyExc_TypeError, | 
					
						
							| 
									
										
										
										
											2000-04-10 12:46:51 +00:00
										 |  |  |                      "decoder did not return an unicode object (type=%.400s)", | 
					
						
							| 
									
										
										
										
											2007-12-19 02:37:44 +00:00
										 |  |  |                      Py_TYPE(unicode)->tp_name); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         Py_DECREF(unicode); | 
					
						
							|  |  |  |         goto onError; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     Py_DECREF(buffer); | 
					
						
							|  |  |  |     return unicode; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |  onError: | 
					
						
							|  |  |  |     Py_XDECREF(buffer); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-08 17:57:32 +00:00
										 |  |  | PyObject *PyUnicode_AsDecodedObject(PyObject *unicode, | 
					
						
							|  |  |  |                                     const char *encoding, | 
					
						
							|  |  |  |                                     const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *v; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PyUnicode_Check(unicode)) { | 
					
						
							|  |  |  |         PyErr_BadArgument(); | 
					
						
							|  |  |  |         goto onError; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (encoding == NULL) | 
					
						
							|  |  |  | 	encoding = PyUnicode_GetDefaultEncoding(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Decode via the codec registry */ | 
					
						
							|  |  |  |     v = PyCodec_Decode(unicode, encoding, errors); | 
					
						
							|  |  |  |     if (v == NULL) | 
					
						
							|  |  |  |         goto onError; | 
					
						
							|  |  |  |     return v; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | PyObject *PyUnicode_Encode(const Py_UNICODE *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			   Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 			   const char *encoding, | 
					
						
							|  |  |  | 			   const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *v, *unicode; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     unicode = PyUnicode_FromUnicode(s, size); | 
					
						
							|  |  |  |     if (unicode == NULL) | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     v = PyUnicode_AsEncodedString(unicode, encoding, errors); | 
					
						
							|  |  |  |     Py_DECREF(unicode); | 
					
						
							|  |  |  |     return v; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-08 17:57:32 +00:00
										 |  |  | PyObject *PyUnicode_AsEncodedObject(PyObject *unicode, | 
					
						
							|  |  |  |                                     const char *encoding, | 
					
						
							|  |  |  |                                     const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *v; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PyUnicode_Check(unicode)) { | 
					
						
							|  |  |  |         PyErr_BadArgument(); | 
					
						
							|  |  |  |         goto onError; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (encoding == NULL) | 
					
						
							|  |  |  | 	encoding = PyUnicode_GetDefaultEncoding(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Encode via the codec registry */ | 
					
						
							|  |  |  |     v = PyCodec_Encode(unicode, encoding, errors); | 
					
						
							|  |  |  |     if (v == NULL) | 
					
						
							|  |  |  |         goto onError; | 
					
						
							|  |  |  |     return v; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | PyObject *PyUnicode_AsEncodedString(PyObject *unicode, | 
					
						
							|  |  |  |                                     const char *encoding, | 
					
						
							|  |  |  |                                     const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *v; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (!PyUnicode_Check(unicode)) { | 
					
						
							|  |  |  |         PyErr_BadArgument(); | 
					
						
							|  |  |  |         goto onError; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-05-09 19:53:39 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |     if (encoding == NULL) | 
					
						
							| 
									
										
										
										
											2000-05-09 19:53:39 +00:00
										 |  |  | 	encoding = PyUnicode_GetDefaultEncoding(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Shortcuts for common default encodings */ | 
					
						
							|  |  |  |     if (errors == NULL) { | 
					
						
							|  |  |  | 	if (strcmp(encoding, "utf-8") == 0) | 
					
						
							| 
									
										
										
										
											2001-05-29 17:13:15 +00:00
										 |  |  | 	    return PyUnicode_AsUTF8String(unicode); | 
					
						
							| 
									
										
										
										
											2000-05-09 19:53:39 +00:00
										 |  |  | 	else if (strcmp(encoding, "latin-1") == 0) | 
					
						
							|  |  |  | 	    return PyUnicode_AsLatin1String(unicode); | 
					
						
							| 
									
										
										
										
											2003-07-01 00:13:27 +00:00
										 |  |  | #if defined(MS_WINDOWS) && defined(HAVE_USABLE_WCHAR_T)
 | 
					
						
							|  |  |  | 	else if (strcmp(encoding, "mbcs") == 0) | 
					
						
							|  |  |  | 	    return PyUnicode_AsMBCSString(unicode); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2000-05-09 19:53:39 +00:00
										 |  |  | 	else if (strcmp(encoding, "ascii") == 0) | 
					
						
							|  |  |  | 	    return PyUnicode_AsASCIIString(unicode); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Encode via the codec registry */ | 
					
						
							|  |  |  |     v = PyCodec_Encode(unicode, encoding, errors); | 
					
						
							|  |  |  |     if (v == NULL) | 
					
						
							|  |  |  |         goto onError; | 
					
						
							|  |  |  |     if (!PyString_Check(v)) { | 
					
						
							|  |  |  |         PyErr_Format(PyExc_TypeError, | 
					
						
							| 
									
										
										
										
											2000-04-10 12:46:51 +00:00
										 |  |  |                      "encoder did not return a string object (type=%.400s)", | 
					
						
							| 
									
										
										
										
											2007-12-19 02:37:44 +00:00
										 |  |  |                      Py_TYPE(v)->tp_name); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         Py_DECREF(v); | 
					
						
							|  |  |  |         goto onError; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return v; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |  onError: | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-03 18:46:08 +00:00
										 |  |  | PyObject *_PyUnicode_AsDefaultEncodedString(PyObject *unicode, | 
					
						
							|  |  |  | 					    const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *v = ((PyUnicodeObject *)unicode)->defenc; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (v) | 
					
						
							|  |  |  |         return v; | 
					
						
							|  |  |  |     v = PyUnicode_AsEncodedString(unicode, NULL, errors); | 
					
						
							|  |  |  |     if (v && errors == NULL) | 
					
						
							|  |  |  |         ((PyUnicodeObject *)unicode)->defenc = v; | 
					
						
							|  |  |  |     return v; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | Py_UNICODE *PyUnicode_AsUnicode(PyObject *unicode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!PyUnicode_Check(unicode)) { | 
					
						
							|  |  |  |         PyErr_BadArgument(); | 
					
						
							|  |  |  |         goto onError; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return PyUnicode_AS_UNICODE(unicode); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | Py_ssize_t PyUnicode_GetSize(PyObject *unicode) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     if (!PyUnicode_Check(unicode)) { | 
					
						
							|  |  |  |         PyErr_BadArgument(); | 
					
						
							|  |  |  |         goto onError; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return PyUnicode_GET_SIZE(unicode); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							|  |  |  |     return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-22 19:25:51 +00:00
										 |  |  | const char *PyUnicode_GetDefaultEncoding(void) | 
					
						
							| 
									
										
										
										
											2000-05-09 19:53:39 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     return unicode_default_encoding; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int PyUnicode_SetDefaultEncoding(const char *encoding) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *v; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-09 19:53:39 +00:00
										 |  |  |     /* Make sure the encoding is valid. As side effect, this also
 | 
					
						
							|  |  |  |        loads the encoding into the codec registry cache. */ | 
					
						
							|  |  |  |     v = _PyCodec_Lookup(encoding); | 
					
						
							|  |  |  |     if (v == NULL) | 
					
						
							|  |  |  | 	goto onError; | 
					
						
							|  |  |  |     Py_DECREF(v); | 
					
						
							|  |  |  |     strncpy(unicode_default_encoding, | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 	    encoding, | 
					
						
							| 
									
										
										
										
											2000-05-09 19:53:39 +00:00
										 |  |  | 	    sizeof(unicode_default_encoding)); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							|  |  |  |     return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | /* error handling callback helper:
 | 
					
						
							|  |  |  |    build arguments, call the callback and check the arguments, | 
					
						
							| 
									
										
										
										
											2005-10-28 14:39:47 +00:00
										 |  |  |    if no exception occurred, copy the replacement to the output | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |    and adjust various state variables. | 
					
						
							|  |  |  |    return 0 on success, -1 on error | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static | 
					
						
							|  |  |  | int unicode_decode_call_errorhandler(const char *errors, PyObject **errorHandler, | 
					
						
							|  |  |  |                  const char *encoding, const char *reason, | 
					
						
							| 
									
										
										
										
											2007-08-30 15:30:09 +00:00
										 |  |  |                  const char *input, Py_ssize_t insize, Py_ssize_t *startinpos, | 
					
						
							|  |  |  |                  Py_ssize_t *endinpos, PyObject **exceptionObject, const char **inptr, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |                  PyObject **output, Py_ssize_t *outpos, Py_UNICODE **outptr) | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     static char *argparse = "O!n;decoding error handler must return (unicode, int) tuple"; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     PyObject *restuple = NULL; | 
					
						
							|  |  |  |     PyObject *repunicode = NULL; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t outsize = PyUnicode_GET_SIZE(*output); | 
					
						
							|  |  |  |     Py_ssize_t requiredsize; | 
					
						
							|  |  |  |     Py_ssize_t newpos; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_UNICODE *repptr; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t repsize; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     int res = -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (*errorHandler == NULL) { | 
					
						
							|  |  |  | 	*errorHandler = PyCodec_LookupError(errors); | 
					
						
							|  |  |  | 	if (*errorHandler == NULL) | 
					
						
							|  |  |  | 	   goto onError; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (*exceptionObject == NULL) { | 
					
						
							|  |  |  |     	*exceptionObject = PyUnicodeDecodeError_Create( | 
					
						
							|  |  |  | 	    encoding, input, insize, *startinpos, *endinpos, reason); | 
					
						
							|  |  |  | 	if (*exceptionObject == NULL) | 
					
						
							|  |  |  | 	   goto onError; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  | 	if (PyUnicodeDecodeError_SetStart(*exceptionObject, *startinpos)) | 
					
						
							|  |  |  | 	    goto onError; | 
					
						
							|  |  |  | 	if (PyUnicodeDecodeError_SetEnd(*exceptionObject, *endinpos)) | 
					
						
							|  |  |  | 	    goto onError; | 
					
						
							|  |  |  | 	if (PyUnicodeDecodeError_SetReason(*exceptionObject, reason)) | 
					
						
							|  |  |  | 	    goto onError; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     restuple = PyObject_CallFunctionObjArgs(*errorHandler, *exceptionObject, NULL); | 
					
						
							|  |  |  |     if (restuple == NULL) | 
					
						
							|  |  |  | 	goto onError; | 
					
						
							|  |  |  |     if (!PyTuple_Check(restuple)) { | 
					
						
							|  |  |  | 	PyErr_Format(PyExc_TypeError, &argparse[4]); | 
					
						
							|  |  |  | 	goto onError; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!PyArg_ParseTuple(restuple, argparse, &PyUnicode_Type, &repunicode, &newpos)) | 
					
						
							|  |  |  | 	goto onError; | 
					
						
							|  |  |  |     if (newpos<0) | 
					
						
							| 
									
										
										
										
											2003-01-31 17:19:08 +00:00
										 |  |  | 	newpos = insize+newpos; | 
					
						
							|  |  |  |     if (newpos<0 || newpos>insize) { | 
					
						
							| 
									
										
										
										
											2006-02-16 06:54:25 +00:00
										 |  |  | 	PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", newpos); | 
					
						
							| 
									
										
										
										
											2003-01-31 17:19:08 +00:00
										 |  |  | 	goto onError; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* need more space? (at least enough for what we
 | 
					
						
							|  |  |  |        have+the replacement+the rest of the string (starting | 
					
						
							|  |  |  |        at the new input position), so we won't have to check space | 
					
						
							|  |  |  |        when there are no errors in the rest of the string) */ | 
					
						
							|  |  |  |     repptr = PyUnicode_AS_UNICODE(repunicode); | 
					
						
							|  |  |  |     repsize = PyUnicode_GET_SIZE(repunicode); | 
					
						
							|  |  |  |     requiredsize = *outpos + repsize + insize-newpos; | 
					
						
							|  |  |  |     if (requiredsize > outsize) { | 
					
						
							|  |  |  | 	if (requiredsize<2*outsize) | 
					
						
							|  |  |  | 	    requiredsize = 2*outsize; | 
					
						
							| 
									
										
										
										
											2003-09-16 03:41:45 +00:00
										 |  |  | 	if (PyUnicode_Resize(output, requiredsize) < 0) | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    goto onError; | 
					
						
							|  |  |  | 	*outptr = PyUnicode_AS_UNICODE(*output) + *outpos; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     *endinpos = newpos; | 
					
						
							|  |  |  |     *inptr = input + newpos; | 
					
						
							|  |  |  |     Py_UNICODE_COPY(*outptr, repptr, repsize); | 
					
						
							|  |  |  |     *outptr += repsize; | 
					
						
							|  |  |  |     *outpos += repsize; | 
					
						
							|  |  |  |     /* we made it! */ | 
					
						
							|  |  |  |     res = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     onError: | 
					
						
							|  |  |  |     Py_XDECREF(restuple); | 
					
						
							|  |  |  |     return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  | /* --- UTF-7 Codec -------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* see RFC2152 for details */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | static | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  | char utf7_special[128] = { | 
					
						
							|  |  |  |     /* indicate whether a UTF-7 character is special i.e. cannot be directly
 | 
					
						
							|  |  |  |        encoded: | 
					
						
							|  |  |  | 	   0 - not special | 
					
						
							|  |  |  | 	   1 - special | 
					
						
							|  |  |  | 	   2 - whitespace (optional) | 
					
						
							|  |  |  | 	   3 - RFC2152 Set O (optional) */ | 
					
						
							|  |  |  |     1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 2, 1, 1, | 
					
						
							|  |  |  |     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 
					
						
							|  |  |  |     2, 3, 3, 3, 3, 3, 3, 0, 0, 0, 3, 1, 0, 0, 0, 1, | 
					
						
							|  |  |  |     0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, | 
					
						
							|  |  |  |     3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  |     0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 3, 3, 3, | 
					
						
							|  |  |  |     3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  |     0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 1, 1, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-19 22:33:31 +00:00
										 |  |  | /* Note: The comparison (c) <= 0 is a trick to work-around gcc
 | 
					
						
							|  |  |  |    warnings about the comparison always being false; since | 
					
						
							|  |  |  |    utf7_special[0] is 1, we can safely make that one comparison | 
					
						
							|  |  |  |    true  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  | #define SPECIAL(c, encodeO, encodeWS) \
 | 
					
						
							| 
									
										
										
										
											2005-10-19 22:33:31 +00:00
										 |  |  |     ((c) > 127 || (c) <= 0 || utf7_special[(c)] == 1 || \ | 
					
						
							| 
									
										
										
										
											2005-10-19 22:39:02 +00:00
										 |  |  |      (encodeWS && (utf7_special[(c)] == 2)) || \ | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |      (encodeO && (utf7_special[(c)] == 3))) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-19 22:33:31 +00:00
										 |  |  | #define B64(n)  \
 | 
					
						
							|  |  |  |     ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"[(n) & 0x3f]) | 
					
						
							|  |  |  | #define B64CHAR(c) \
 | 
					
						
							|  |  |  |     (isalnum(c) || (c) == '+' || (c) == '/') | 
					
						
							|  |  |  | #define UB64(c) \
 | 
					
						
							|  |  |  |     ((c) == '+' ? 62 : (c) == '/' ? 63 : (c) >= 'a' ?                   \ | 
					
						
							|  |  |  |      (c) - 71 : (c) >= 'A' ? (c) - 65 : (c) + 4 ) | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-19 22:39:02 +00:00
										 |  |  | #define ENCODE(out, ch, bits)                   \
 | 
					
						
							|  |  |  |     while (bits >= 6) {                         \ | 
					
						
							|  |  |  |         *out++ = B64(ch >> (bits-6));           \ | 
					
						
							|  |  |  |         bits -= 6;                              \ | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-19 22:39:02 +00:00
										 |  |  | #define DECODE(out, ch, bits, surrogate)                                \
 | 
					
						
							|  |  |  |     while (bits >= 16) {                                                \ | 
					
						
							|  |  |  |         Py_UNICODE outCh = (Py_UNICODE) ((ch >> (bits-16)) & 0xffff);   \ | 
					
						
							|  |  |  |         bits -= 16;                                                     \ | 
					
						
							|  |  |  |         if (surrogate) {                                                \ | 
					
						
							| 
									
										
										
										
											2005-10-19 22:33:31 +00:00
										 |  |  |             /* We have already generated an error for the high surrogate \
 | 
					
						
							|  |  |  |                so let's not bother seeing if the low surrogate is correct or not */ \ | 
					
						
							| 
									
										
										
										
											2005-10-19 22:39:02 +00:00
										 |  |  |             surrogate = 0;                                              \ | 
					
						
							|  |  |  |         } else if (0xDC00 <= outCh && outCh <= 0xDFFF) {                \ | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |             /* This is a surrogate pair. Unfortunately we can't represent \
 | 
					
						
							| 
									
										
										
										
											2005-10-19 22:39:02 +00:00
										 |  |  |                it in a 16-bit character */                              \ | 
					
						
							|  |  |  |             surrogate = 1;                                              \ | 
					
						
							|  |  |  |             errmsg = "code pairs are not supported";                    \ | 
					
						
							|  |  |  |             goto utf7Error;                                             \ | 
					
						
							|  |  |  |         } else {                                                        \ | 
					
						
							|  |  |  |             *out++ = outCh;                                             \ | 
					
						
							|  |  |  |         }                                                               \ | 
					
						
							| 
									
										
										
										
											2005-10-19 22:33:31 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_DecodeUTF7(const char *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			       Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  | 			       const char *errors) | 
					
						
							| 
									
										
										
										
											2007-11-20 23:31:27 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     return PyUnicode_DecodeUTF7Stateful(s, size, errors, NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_DecodeUTF7Stateful(const char *s, | 
					
						
							|  |  |  | 			       Py_ssize_t size, | 
					
						
							|  |  |  | 			       const char *errors, | 
					
						
							|  |  |  | 			       Py_ssize_t *consumed) | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     const char *starts = s; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t startinpos; | 
					
						
							|  |  |  |     Py_ssize_t endinpos; | 
					
						
							|  |  |  |     Py_ssize_t outpos; | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |     const char *e; | 
					
						
							|  |  |  |     PyUnicodeObject *unicode; | 
					
						
							|  |  |  |     Py_UNICODE *p; | 
					
						
							|  |  |  |     const char *errmsg = ""; | 
					
						
							|  |  |  |     int inShift = 0; | 
					
						
							|  |  |  |     unsigned int bitsleft = 0; | 
					
						
							|  |  |  |     unsigned long charsleft = 0; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     int surrogate = 0; | 
					
						
							|  |  |  |     PyObject *errorHandler = NULL; | 
					
						
							|  |  |  |     PyObject *exc = NULL; | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     unicode = _PyUnicode_New(size); | 
					
						
							|  |  |  |     if (!unicode) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2007-11-20 23:31:27 +00:00
										 |  |  |     if (size == 0) { | 
					
						
							|  |  |  |         if (consumed) | 
					
						
							|  |  |  |             *consumed = 0; | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |         return (PyObject *)unicode; | 
					
						
							| 
									
										
										
										
											2007-11-20 23:31:27 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     p = unicode->str; | 
					
						
							|  |  |  |     e = s + size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (s < e) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |         Py_UNICODE ch; | 
					
						
							|  |  |  |         restart: | 
					
						
							|  |  |  |         ch = *s; | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (inShift) { | 
					
						
							|  |  |  |             if ((ch == '-') || !B64CHAR(ch)) { | 
					
						
							|  |  |  |                 inShift = 0; | 
					
						
							|  |  |  |                 s++; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |                 /* p, charsleft, bitsleft, surrogate = */ DECODE(p, charsleft, bitsleft, surrogate); | 
					
						
							|  |  |  |                 if (bitsleft >= 6) { | 
					
						
							|  |  |  |                     /* The shift sequence has a partial character in it. If
 | 
					
						
							|  |  |  |                        bitsleft < 6 then we could just classify it as padding | 
					
						
							|  |  |  |                        but that is not the case here */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     errmsg = "partial character in shift sequence"; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |                     goto utf7Error; | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |                 /* According to RFC2152 the remaining bits should be zero. We
 | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |                    choose to signal an error/insert a replacement character | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |                    here so indicate the potential of a misencoded character. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 /* On x86, a << b == a << (b%32) so make sure that bitsleft != 0 */ | 
					
						
							|  |  |  |                 if (bitsleft && charsleft << (sizeof(charsleft) * 8 - bitsleft)) { | 
					
						
							|  |  |  |                     errmsg = "non-zero padding bits in shift sequence"; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |                     goto utf7Error; | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 if (ch == '-') { | 
					
						
							|  |  |  |                     if ((s < e) && (*(s) == '-')) { | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |                         *p++ = '-'; | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |                         inShift = 1; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } else if (SPECIAL(ch,0,0)) { | 
					
						
							|  |  |  |                     errmsg = "unexpected special character"; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 	                goto utf7Error; | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |                 } else  { | 
					
						
							|  |  |  |                     *p++ = ch; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 charsleft = (charsleft << 6) | UB64(ch); | 
					
						
							|  |  |  |                 bitsleft += 6; | 
					
						
							|  |  |  |                 s++; | 
					
						
							|  |  |  |                 /* p, charsleft, bitsleft, surrogate = */ DECODE(p, charsleft, bitsleft, surrogate); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else if ( ch == '+' ) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |             startinpos = s-starts; | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |             s++; | 
					
						
							|  |  |  |             if (s < e && *s == '-') { | 
					
						
							|  |  |  |                 s++; | 
					
						
							|  |  |  |                 *p++ = '+'; | 
					
						
							|  |  |  |             } else | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 inShift = 1; | 
					
						
							|  |  |  |                 bitsleft = 0; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else if (SPECIAL(ch,0,0)) { | 
					
						
							| 
									
										
										
										
											2007-08-30 15:34:55 +00:00
										 |  |  |             startinpos = s-starts; | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |             errmsg = "unexpected special character"; | 
					
						
							|  |  |  |             s++; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 	        goto utf7Error; | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         else { | 
					
						
							|  |  |  |             *p++ = ch; | 
					
						
							|  |  |  |             s++; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         continue; | 
					
						
							|  |  |  |     utf7Error: | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |         outpos = p-PyUnicode_AS_UNICODE(unicode); | 
					
						
							|  |  |  |         endinpos = s-starts; | 
					
						
							|  |  |  |         if (unicode_decode_call_errorhandler( | 
					
						
							|  |  |  |              errors, &errorHandler, | 
					
						
							|  |  |  |              "utf7", errmsg, | 
					
						
							|  |  |  |              starts, size, &startinpos, &endinpos, &exc, &s, | 
					
						
							|  |  |  |              (PyObject **)&unicode, &outpos, &p)) | 
					
						
							|  |  |  |         goto onError; | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-20 23:31:27 +00:00
										 |  |  |     if (inShift && !consumed) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |         outpos = p-PyUnicode_AS_UNICODE(unicode); | 
					
						
							|  |  |  |         endinpos = size; | 
					
						
							|  |  |  |         if (unicode_decode_call_errorhandler( | 
					
						
							|  |  |  |              errors, &errorHandler, | 
					
						
							|  |  |  |              "utf7", "unterminated shift sequence", | 
					
						
							|  |  |  |              starts, size, &startinpos, &endinpos, &exc, &s, | 
					
						
							|  |  |  |              (PyObject **)&unicode, &outpos, &p)) | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |             goto onError; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |         if (s < e) | 
					
						
							|  |  |  |            goto restart; | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-11-20 23:31:27 +00:00
										 |  |  |     if (consumed) { | 
					
						
							|  |  |  |         if(inShift) | 
					
						
							|  |  |  |             *consumed = startinpos; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             *consumed = s-starts; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-16 03:41:45 +00:00
										 |  |  |     if (_PyUnicode_Resize(&unicode, p - PyUnicode_AS_UNICODE(unicode)) < 0) | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |         goto onError; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |     return (PyObject *)unicode; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | onError: | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |     Py_DECREF(unicode); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_EncodeUTF7(const Py_UNICODE *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |                    Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |                    int encodeSetO, | 
					
						
							|  |  |  |                    int encodeWhiteSpace, | 
					
						
							|  |  |  |                    const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *v; | 
					
						
							|  |  |  |     /* It might be possible to tighten this worst case */ | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t cbAllocated = 5 * size; | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |     int inShift = 0; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t i = 0; | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |     unsigned int bitsleft = 0; | 
					
						
							|  |  |  |     unsigned long charsleft = 0; | 
					
						
							|  |  |  |     char * out; | 
					
						
							|  |  |  |     char * start; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (size == 0) | 
					
						
							|  |  |  | 		return PyString_FromStringAndSize(NULL, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     v = PyString_FromStringAndSize(NULL, cbAllocated); | 
					
						
							|  |  |  |     if (v == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     start = out = PyString_AS_STRING(v); | 
					
						
							|  |  |  |     for (;i < size; ++i) { | 
					
						
							|  |  |  |         Py_UNICODE ch = s[i]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!inShift) { | 
					
						
							| 
									
										
										
										
											2004-01-03 19:35:43 +00:00
										 |  |  |             if (ch == '+') { | 
					
						
							|  |  |  |                 *out++ = '+'; | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |                 *out++ = '-'; | 
					
						
							|  |  |  |             } else if (SPECIAL(ch, encodeSetO, encodeWhiteSpace)) { | 
					
						
							|  |  |  |                 charsleft = ch; | 
					
						
							|  |  |  |                 bitsleft = 16; | 
					
						
							|  |  |  |                 *out++ = '+'; | 
					
						
							| 
									
										
										
										
											2004-01-03 19:35:43 +00:00
										 |  |  |                 /* out, charsleft, bitsleft = */ ENCODE(out, charsleft, bitsleft); | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |                 inShift = bitsleft > 0; | 
					
						
							| 
									
										
										
										
											2004-01-03 19:35:43 +00:00
										 |  |  |             } else { | 
					
						
							|  |  |  |                 *out++ = (char) ch; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |             if (!SPECIAL(ch, encodeSetO, encodeWhiteSpace)) { | 
					
						
							|  |  |  |                 *out++ = B64(charsleft << (6-bitsleft)); | 
					
						
							|  |  |  |                 charsleft = 0; | 
					
						
							|  |  |  |                 bitsleft = 0; | 
					
						
							|  |  |  |                 /* Characters not in the BASE64 set implicitly unshift the sequence
 | 
					
						
							|  |  |  |                    so no '-' is required, except if the character is itself a '-' */ | 
					
						
							|  |  |  |                 if (B64CHAR(ch) || ch == '-') { | 
					
						
							|  |  |  |                     *out++ = '-'; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 inShift = 0; | 
					
						
							|  |  |  |                 *out++ = (char) ch; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 bitsleft += 16; | 
					
						
							|  |  |  |                 charsleft = (charsleft << 16) | ch; | 
					
						
							|  |  |  |                 /* out, charsleft, bitsleft = */ ENCODE(out, charsleft, bitsleft); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 /* If the next character is special then we dont' need to terminate
 | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |                    the shift sequence. If the next character is not a BASE64 character | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |                    or '-' then the shift sequence will be terminated implicitly and we | 
					
						
							|  |  |  |                    don't have to insert a '-'. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 if (bitsleft == 0) { | 
					
						
							|  |  |  |                     if (i + 1 < size) { | 
					
						
							|  |  |  |                         Py_UNICODE ch2 = s[i+1]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         if (SPECIAL(ch2, encodeSetO, encodeWhiteSpace)) { | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |                         } else if (B64CHAR(ch2) || ch2 == '-') { | 
					
						
							|  |  |  |                             *out++ = '-'; | 
					
						
							|  |  |  |                             inShift = 0; | 
					
						
							|  |  |  |                         } else { | 
					
						
							|  |  |  |                             inShift = 0; | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     else { | 
					
						
							|  |  |  |                         *out++ = '-'; | 
					
						
							|  |  |  |                         inShift = 0; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2004-01-03 19:35:43 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |     if (bitsleft) { | 
					
						
							|  |  |  |         *out++= B64(charsleft << (6-bitsleft) ); | 
					
						
							|  |  |  |         *out++ = '-'; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-27 18:44:32 +00:00
										 |  |  |     _PyString_Resize(&v, out - start); | 
					
						
							| 
									
										
										
										
											2001-09-20 10:35:46 +00:00
										 |  |  |     return v; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #undef SPECIAL
 | 
					
						
							|  |  |  | #undef B64
 | 
					
						
							|  |  |  | #undef B64CHAR
 | 
					
						
							|  |  |  | #undef UB64
 | 
					
						
							|  |  |  | #undef ENCODE
 | 
					
						
							|  |  |  | #undef DECODE
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | /* --- UTF-8 Codec -------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | static | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | char utf8_code_length[256] = { | 
					
						
							|  |  |  |     /* Map UTF-8 encoded prefix byte to sequence length.  zero means
 | 
					
						
							|  |  |  |        illegal prefix.  see RFC 2279 for details */ | 
					
						
							|  |  |  |     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 
					
						
							|  |  |  |     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 
					
						
							|  |  |  |     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 
					
						
							|  |  |  |     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 
					
						
							|  |  |  |     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 
					
						
							|  |  |  |     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 
					
						
							|  |  |  |     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 
					
						
							|  |  |  |     1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 
					
						
							|  |  |  |     0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  |     0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  |     0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  |     0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  |     2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | 
					
						
							|  |  |  |     2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | 
					
						
							|  |  |  |     3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, | 
					
						
							|  |  |  |     4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 0, 0 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_DecodeUTF8(const char *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			       Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 			       const char *errors) | 
					
						
							| 
									
										
										
										
											2004-09-07 20:24:22 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     return PyUnicode_DecodeUTF8Stateful(s, size, errors, NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_DecodeUTF8Stateful(const char *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			                Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2004-09-07 20:24:22 +00:00
										 |  |  | 			                const char *errors, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			                Py_ssize_t *consumed) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     const char *starts = s; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     int n; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t startinpos; | 
					
						
							|  |  |  |     Py_ssize_t endinpos; | 
					
						
							|  |  |  |     Py_ssize_t outpos; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     const char *e; | 
					
						
							|  |  |  |     PyUnicodeObject *unicode; | 
					
						
							|  |  |  |     Py_UNICODE *p; | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  |     const char *errmsg = ""; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     PyObject *errorHandler = NULL; | 
					
						
							|  |  |  |     PyObject *exc = NULL; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Note: size will always be longer than the resulting Unicode
 | 
					
						
							|  |  |  |        character count */ | 
					
						
							|  |  |  |     unicode = _PyUnicode_New(size); | 
					
						
							|  |  |  |     if (!unicode) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2004-09-07 20:24:22 +00:00
										 |  |  |     if (size == 0) { | 
					
						
							|  |  |  |         if (consumed) | 
					
						
							|  |  |  |             *consumed = 0; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         return (PyObject *)unicode; | 
					
						
							| 
									
										
										
										
											2004-09-07 20:24:22 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Unpack UTF-8 encoded data */ | 
					
						
							|  |  |  |     p = unicode->str; | 
					
						
							|  |  |  |     e = s + size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (s < e) { | 
					
						
							| 
									
										
										
										
											2000-07-07 17:51:08 +00:00
										 |  |  |         Py_UCS4 ch = (unsigned char)*s; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (ch < 0x80) { | 
					
						
							| 
									
										
										
										
											2000-07-07 17:51:08 +00:00
										 |  |  |             *p++ = (Py_UNICODE)ch; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |             s++; | 
					
						
							|  |  |  |             continue; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         n = utf8_code_length[ch]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  |         if (s + n > e) { | 
					
						
							| 
									
										
										
										
											2004-09-07 20:24:22 +00:00
										 |  |  | 	    if (consumed) | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	    else { | 
					
						
							|  |  |  | 		errmsg = "unexpected end of data"; | 
					
						
							|  |  |  | 		startinpos = s-starts; | 
					
						
							|  |  |  | 		endinpos = size; | 
					
						
							|  |  |  | 		goto utf8Error; | 
					
						
							|  |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         switch (n) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         case 0: | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  |             errmsg = "unexpected code byte"; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    startinpos = s-starts; | 
					
						
							|  |  |  | 	    endinpos = startinpos+1; | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  | 	    goto utf8Error; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         case 1: | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  |             errmsg = "internal error"; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    startinpos = s-starts; | 
					
						
							|  |  |  | 	    endinpos = startinpos+1; | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  | 	    goto utf8Error; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         case 2: | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  |             if ((s[1] & 0xc0) != 0x80) { | 
					
						
							|  |  |  |                 errmsg = "invalid data"; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		startinpos = s-starts; | 
					
						
							|  |  |  | 		endinpos = startinpos+2; | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  | 		goto utf8Error; | 
					
						
							|  |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |             ch = ((s[0] & 0x1f) << 6) + (s[1] & 0x3f); | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  |             if (ch < 0x80) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		startinpos = s-starts; | 
					
						
							|  |  |  | 		endinpos = startinpos+2; | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  |                 errmsg = "illegal encoding"; | 
					
						
							|  |  |  | 		goto utf8Error; | 
					
						
							|  |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    else | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  | 		*p++ = (Py_UNICODE)ch; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         case 3: | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |             if ((s[1] & 0xc0) != 0x80 || | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  |                 (s[2] & 0xc0) != 0x80) { | 
					
						
							|  |  |  |                 errmsg = "invalid data"; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		startinpos = s-starts; | 
					
						
							|  |  |  | 		endinpos = startinpos+3; | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  | 		goto utf8Error; | 
					
						
							|  |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |             ch = ((s[0] & 0x0f) << 12) + ((s[1] & 0x3f) << 6) + (s[2] & 0x3f); | 
					
						
							| 
									
										
										
										
											2002-02-07 11:33:49 +00:00
										 |  |  |             if (ch < 0x0800) { | 
					
						
							|  |  |  | 		/* Note: UTF-8 encodings of surrogates are considered
 | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 		   legal UTF-8 sequences; | 
					
						
							| 
									
										
										
										
											2002-02-07 11:33:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		   XXX For wide builds (UCS-4) we should probably try | 
					
						
							|  |  |  | 		       to recombine the surrogates into a single code | 
					
						
							|  |  |  | 		       unit. | 
					
						
							|  |  |  | 		*/ | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  |                 errmsg = "illegal encoding"; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		startinpos = s-starts; | 
					
						
							|  |  |  | 		endinpos = startinpos+3; | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  | 		goto utf8Error; | 
					
						
							|  |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    else | 
					
						
							| 
									
										
										
										
											2002-02-07 11:33:49 +00:00
										 |  |  | 		*p++ = (Py_UNICODE)ch; | 
					
						
							| 
									
										
										
										
											2000-07-07 17:51:08 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         case 4: | 
					
						
							|  |  |  |             if ((s[1] & 0xc0) != 0x80 || | 
					
						
							|  |  |  |                 (s[2] & 0xc0) != 0x80 || | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  |                 (s[3] & 0xc0) != 0x80) { | 
					
						
							|  |  |  |                 errmsg = "invalid data"; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		startinpos = s-starts; | 
					
						
							|  |  |  | 		endinpos = startinpos+4; | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  | 		goto utf8Error; | 
					
						
							|  |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2000-07-07 17:51:08 +00:00
										 |  |  |             ch = ((s[0] & 0x7) << 18) + ((s[1] & 0x3f) << 12) + | 
					
						
							|  |  |  |                  ((s[2] & 0x3f) << 6) + (s[3] & 0x3f); | 
					
						
							|  |  |  |             /* validate and convert to UTF-16 */ | 
					
						
							| 
									
										
										
										
											2001-06-26 22:22:37 +00:00
										 |  |  |             if ((ch < 0x10000)        /* minimum value allowed for 4
 | 
					
						
							| 
									
										
										
										
											2002-02-07 11:33:49 +00:00
										 |  |  | 					 byte encoding */ | 
					
						
							| 
									
										
										
										
											2001-06-26 22:22:37 +00:00
										 |  |  |                 || (ch > 0x10ffff))   /* maximum value allowed for
 | 
					
						
							| 
									
										
										
										
											2002-02-07 11:33:49 +00:00
										 |  |  | 					 UTF-16 */ | 
					
						
							| 
									
										
										
										
											2001-06-26 22:22:37 +00:00
										 |  |  | 	    { | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  |                 errmsg = "illegal encoding"; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		startinpos = s-starts; | 
					
						
							|  |  |  | 		endinpos = startinpos+4; | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  | 		goto utf8Error; | 
					
						
							|  |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2001-06-27 18:59:43 +00:00
										 |  |  | #ifdef Py_UNICODE_WIDE
 | 
					
						
							| 
									
										
										
										
											2001-06-26 22:22:37 +00:00
										 |  |  | 	    *p++ = (Py_UNICODE)ch; | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2000-07-07 17:51:08 +00:00
										 |  |  |             /*  compute and append the two surrogates: */ | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-07 17:51:08 +00:00
										 |  |  |             /*  translate from 10000..10FFFF to 0..FFFF */ | 
					
						
							|  |  |  |             ch -= 0x10000; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-07 17:51:08 +00:00
										 |  |  |             /*  high surrogate = top 10 bits added to D800 */ | 
					
						
							|  |  |  |             *p++ = (Py_UNICODE)(0xD800 + (ch >> 10)); | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-07 17:51:08 +00:00
										 |  |  |             /*  low surrogate = bottom 10 bits added to DC00 */ | 
					
						
							| 
									
										
										
										
											2001-06-26 16:39:36 +00:00
										 |  |  |             *p++ = (Py_UNICODE)(0xDC00 + (ch & 0x03FF)); | 
					
						
							| 
									
										
										
										
											2001-06-26 22:22:37 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             /* Other sizes are only needed for UCS-4 */ | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  |             errmsg = "unsupported Unicode code range"; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    startinpos = s-starts; | 
					
						
							|  |  |  | 	    endinpos = startinpos+n; | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  | 	    goto utf8Error; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         s += n; | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  | 	continue; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  |     utf8Error: | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     outpos = p-PyUnicode_AS_UNICODE(unicode); | 
					
						
							|  |  |  |     if (unicode_decode_call_errorhandler( | 
					
						
							|  |  |  | 	     errors, &errorHandler, | 
					
						
							|  |  |  | 	     "utf8", errmsg, | 
					
						
							|  |  |  | 	     starts, size, &startinpos, &endinpos, &exc, &s, | 
					
						
							|  |  |  | 	     (PyObject **)&unicode, &outpos, &p)) | 
					
						
							|  |  |  | 	goto onError; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-09-07 20:24:22 +00:00
										 |  |  |     if (consumed) | 
					
						
							|  |  |  | 	*consumed = s-starts; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Adjust length */ | 
					
						
							| 
									
										
										
										
											2003-09-16 03:41:45 +00:00
										 |  |  |     if (_PyUnicode_Resize(&unicode, p - unicode->str) < 0) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         goto onError; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return (PyObject *)unicode; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | onError: | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     Py_DECREF(unicode); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-27 18:03:26 +00:00
										 |  |  | /* Allocation strategy:  if the string is short, convert into a stack buffer
 | 
					
						
							|  |  |  |    and allocate exactly as much space needed at the end.  Else allocate the | 
					
						
							|  |  |  |    maximum possible needed (4 result bytes per Unicode character), and return | 
					
						
							|  |  |  |    the excess memory at the end. | 
					
						
							| 
									
										
										
										
											2002-04-21 09:59:45 +00:00
										 |  |  | */ | 
					
						
							| 
									
										
										
										
											2002-04-21 03:26:37 +00:00
										 |  |  | PyObject * | 
					
						
							|  |  |  | PyUnicode_EncodeUTF8(const Py_UNICODE *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 		     Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2002-04-21 03:26:37 +00:00
										 |  |  | 		     const char *errors) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2002-04-27 18:03:26 +00:00
										 |  |  | #define MAX_SHORT_UNICHARS 300  /* largest size we'll do on the stack */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t i;           /* index into s of next input byte */ | 
					
						
							| 
									
										
										
										
											2002-04-27 18:03:26 +00:00
										 |  |  |     PyObject *v;        /* result string object */ | 
					
						
							|  |  |  |     char *p;            /* next free byte in output buffer */ | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t nallocated;  /* number of result bytes allocated */ | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |     Py_ssize_t nneeded;        /* number of result bytes needed */ | 
					
						
							| 
									
										
										
										
											2002-04-27 18:03:26 +00:00
										 |  |  |     char stackbuf[MAX_SHORT_UNICHARS * 4]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert(s != NULL); | 
					
						
							|  |  |  |     assert(size >= 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (size <= MAX_SHORT_UNICHARS) { | 
					
						
							|  |  |  |         /* Write into the stack buffer; nallocated can't overflow.
 | 
					
						
							|  |  |  |          * At the end, we'll allocate exactly as much heap space as it | 
					
						
							|  |  |  |          * turns out we need. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         nallocated = Py_SAFE_DOWNCAST(sizeof(stackbuf), size_t, int); | 
					
						
							|  |  |  |         v = NULL;   /* will allocate after we're done */ | 
					
						
							|  |  |  |         p = stackbuf; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  |         /* Overallocate on the heap, and give the excess back at the end. */ | 
					
						
							|  |  |  |         nallocated = size * 4; | 
					
						
							|  |  |  |         if (nallocated / 4 != size)  /* overflow! */ | 
					
						
							|  |  |  |             return PyErr_NoMemory(); | 
					
						
							|  |  |  |         v = PyString_FromStringAndSize(NULL, nallocated); | 
					
						
							|  |  |  |         if (v == NULL) | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |         p = PyString_AS_STRING(v); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-04-21 09:59:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-27 18:03:26 +00:00
										 |  |  |     for (i = 0; i < size;) { | 
					
						
							| 
									
										
										
										
											2000-07-07 17:51:08 +00:00
										 |  |  |         Py_UCS4 ch = s[i++]; | 
					
						
							| 
									
										
										
										
											2002-02-06 18:09:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-21 09:59:45 +00:00
										 |  |  |         if (ch < 0x80) | 
					
						
							| 
									
										
										
										
											2002-04-27 18:03:26 +00:00
										 |  |  |             /* Encode ASCII */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |             *p++ = (char) ch; | 
					
						
							| 
									
										
										
										
											2002-02-06 18:09:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         else if (ch < 0x0800) { | 
					
						
							| 
									
										
										
										
											2002-04-27 18:03:26 +00:00
										 |  |  |             /* Encode Latin-1 */ | 
					
						
							| 
									
										
										
										
											2002-02-06 18:20:19 +00:00
										 |  |  |             *p++ = (char)(0xc0 | (ch >> 6)); | 
					
						
							|  |  |  |             *p++ = (char)(0x80 | (ch & 0x3f)); | 
					
						
							| 
									
										
										
										
											2000-07-07 17:51:08 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2002-02-06 18:09:02 +00:00
										 |  |  |         else { | 
					
						
							| 
									
										
										
										
											2002-04-27 18:03:26 +00:00
										 |  |  |             /* Encode UCS2 Unicode ordinals */ | 
					
						
							|  |  |  |             if (ch < 0x10000) { | 
					
						
							|  |  |  |                 /* Special case: check for high surrogate */ | 
					
						
							|  |  |  |                 if (0xD800 <= ch && ch <= 0xDBFF && i != size) { | 
					
						
							|  |  |  |                     Py_UCS4 ch2 = s[i]; | 
					
						
							|  |  |  |                     /* Check for low surrogate and combine the two to
 | 
					
						
							|  |  |  |                        form a UCS4 value */ | 
					
						
							|  |  |  |                     if (0xDC00 <= ch2 && ch2 <= 0xDFFF) { | 
					
						
							| 
									
										
										
										
											2002-04-21 09:59:45 +00:00
										 |  |  |                         ch = ((ch - 0xD800) << 10 | (ch2 - 0xDC00)) + 0x10000; | 
					
						
							| 
									
										
										
										
											2002-04-27 18:03:26 +00:00
										 |  |  |                         i++; | 
					
						
							|  |  |  |                         goto encodeUCS4; | 
					
						
							| 
									
										
										
										
											2000-07-07 17:51:08 +00:00
										 |  |  |                     } | 
					
						
							| 
									
										
										
										
											2002-04-27 18:03:26 +00:00
										 |  |  |                     /* Fall through: handles isolated high surrogates */ | 
					
						
							| 
									
										
										
										
											2000-07-07 17:51:08 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |                 *p++ = (char)(0xe0 | (ch >> 12)); | 
					
						
							| 
									
										
										
										
											2002-04-27 18:03:26 +00:00
										 |  |  |                 *p++ = (char)(0x80 | ((ch >> 6) & 0x3f)); | 
					
						
							|  |  |  |                 *p++ = (char)(0x80 | (ch & 0x3f)); | 
					
						
							|  |  |  |                 continue; | 
					
						
							|  |  |  |     	    } | 
					
						
							|  |  |  | encodeUCS4: | 
					
						
							|  |  |  |             /* Encode UCS4 Unicode ordinals */ | 
					
						
							|  |  |  |             *p++ = (char)(0xf0 | (ch >> 18)); | 
					
						
							|  |  |  |             *p++ = (char)(0x80 | ((ch >> 12) & 0x3f)); | 
					
						
							|  |  |  |             *p++ = (char)(0x80 | ((ch >> 6) & 0x3f)); | 
					
						
							|  |  |  |             *p++ = (char)(0x80 | (ch & 0x3f)); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-04-21 17:28:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-27 18:03:26 +00:00
										 |  |  |     if (v == NULL) { | 
					
						
							|  |  |  |         /* This was stack allocated. */ | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |         nneeded = p - stackbuf; | 
					
						
							| 
									
										
										
										
											2002-04-27 18:03:26 +00:00
										 |  |  |         assert(nneeded <= nallocated); | 
					
						
							|  |  |  |         v = PyString_FromStringAndSize(stackbuf, nneeded); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  |     	/* Cut back to size actually needed. */ | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |         nneeded = p - PyString_AS_STRING(v); | 
					
						
							| 
									
										
										
										
											2002-04-27 18:03:26 +00:00
										 |  |  |         assert(nneeded <= nallocated); | 
					
						
							|  |  |  |         _PyString_Resize(&v, nneeded); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return v; | 
					
						
							| 
									
										
										
										
											2002-04-21 09:59:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-27 18:03:26 +00:00
										 |  |  | #undef MAX_SHORT_UNICHARS
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_AsUTF8String(PyObject *unicode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!PyUnicode_Check(unicode)) { | 
					
						
							|  |  |  |         PyErr_BadArgument(); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-08-18 06:58:15 +00:00
										 |  |  |     return PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(unicode), | 
					
						
							|  |  |  | 				PyUnicode_GET_SIZE(unicode), | 
					
						
							|  |  |  | 				NULL); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-17 16:41:28 +00:00
										 |  |  | /* --- UTF-32 Codec ------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyUnicode_DecodeUTF32(const char *s, | 
					
						
							|  |  |  | 		      Py_ssize_t size, | 
					
						
							|  |  |  | 		      const char *errors, | 
					
						
							|  |  |  | 		      int *byteorder) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return PyUnicode_DecodeUTF32Stateful(s, size, errors, byteorder, NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyUnicode_DecodeUTF32Stateful(const char *s, | 
					
						
							|  |  |  | 			      Py_ssize_t size, | 
					
						
							|  |  |  | 			      const char *errors, | 
					
						
							|  |  |  | 			      int *byteorder, | 
					
						
							|  |  |  | 			      Py_ssize_t *consumed) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const char *starts = s; | 
					
						
							|  |  |  |     Py_ssize_t startinpos; | 
					
						
							|  |  |  |     Py_ssize_t endinpos; | 
					
						
							|  |  |  |     Py_ssize_t outpos; | 
					
						
							|  |  |  |     PyUnicodeObject *unicode; | 
					
						
							|  |  |  |     Py_UNICODE *p; | 
					
						
							|  |  |  | #ifndef Py_UNICODE_WIDE
 | 
					
						
							|  |  |  |     int i, pairs; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     const int pairs = 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     const unsigned char *q, *e; | 
					
						
							|  |  |  |     int bo = 0;       /* assume native ordering by default */ | 
					
						
							|  |  |  |     const char *errmsg = ""; | 
					
						
							| 
									
										
										
										
											2007-08-17 16:52:50 +00:00
										 |  |  |     /* Offsets from q for retrieving bytes in the right order. */ | 
					
						
							|  |  |  | #ifdef BYTEORDER_IS_LITTLE_ENDIAN
 | 
					
						
							|  |  |  |     int iorder[] = {0, 1, 2, 3}; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     int iorder[] = {3, 2, 1, 0}; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-08-17 16:58:43 +00:00
										 |  |  |     PyObject *errorHandler = NULL; | 
					
						
							|  |  |  |     PyObject *exc = NULL; | 
					
						
							| 
									
										
										
										
											2007-08-17 16:41:28 +00:00
										 |  |  |     /* On narrow builds we split characters outside the BMP into two
 | 
					
						
							|  |  |  |        codepoints => count how much extra space we need. */ | 
					
						
							|  |  |  | #ifndef Py_UNICODE_WIDE
 | 
					
						
							|  |  |  |     for (i = pairs = 0; i < size/4; i++) | 
					
						
							|  |  |  | 	if (((Py_UCS4 *)s)[i] >= 0x10000) | 
					
						
							|  |  |  | 	    pairs++; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* This might be one to much, because of a BOM */ | 
					
						
							|  |  |  |     unicode = _PyUnicode_New((size+3)/4+pairs); | 
					
						
							|  |  |  |     if (!unicode) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     if (size == 0) | 
					
						
							|  |  |  |         return (PyObject *)unicode; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Unpack UTF-32 encoded data */ | 
					
						
							|  |  |  |     p = unicode->str; | 
					
						
							|  |  |  |     q = (unsigned char *)s; | 
					
						
							|  |  |  |     e = q + size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (byteorder) | 
					
						
							|  |  |  |         bo = *byteorder; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Check for BOM marks (U+FEFF) in the input and adjust current
 | 
					
						
							|  |  |  |        byte order setting accordingly. In native mode, the leading BOM | 
					
						
							|  |  |  |        mark is skipped, in all other modes, it is copied to the output | 
					
						
							|  |  |  |        stream as-is (giving a ZWNBSP character). */ | 
					
						
							|  |  |  |     if (bo == 0) { | 
					
						
							|  |  |  |         if (size >= 4) { | 
					
						
							|  |  |  |             const Py_UCS4 bom = (q[iorder[3]] << 24) | (q[iorder[2]] << 16) | | 
					
						
							|  |  |  |                                 (q[iorder[1]] << 8) | q[iorder[0]]; | 
					
						
							|  |  |  | #ifdef BYTEORDER_IS_LITTLE_ENDIAN
 | 
					
						
							|  |  |  | 	    if (bom == 0x0000FEFF) { | 
					
						
							|  |  |  | 		q += 4; | 
					
						
							|  |  |  | 		bo = -1; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    else if (bom == 0xFFFE0000) { | 
					
						
							|  |  |  | 		q += 4; | 
					
						
							|  |  |  | 		bo = 1; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	    if (bom == 0x0000FEFF) { | 
					
						
							|  |  |  | 		q += 4; | 
					
						
							|  |  |  | 		bo = 1; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    else if (bom == 0xFFFE0000) { | 
					
						
							|  |  |  | 		q += 4; | 
					
						
							|  |  |  | 		bo = -1; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (bo == -1) { | 
					
						
							|  |  |  |         /* force LE */ | 
					
						
							|  |  |  |         iorder[0] = 0; | 
					
						
							|  |  |  |         iorder[1] = 1; | 
					
						
							|  |  |  |         iorder[2] = 2; | 
					
						
							|  |  |  |         iorder[3] = 3; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (bo == 1) { | 
					
						
							|  |  |  |         /* force BE */ | 
					
						
							|  |  |  |         iorder[0] = 3; | 
					
						
							|  |  |  |         iorder[1] = 2; | 
					
						
							|  |  |  |         iorder[2] = 1; | 
					
						
							|  |  |  |         iorder[3] = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (q < e) { | 
					
						
							|  |  |  | 	Py_UCS4 ch; | 
					
						
							|  |  |  | 	/* remaining bytes at the end? (size should be divisible by 4) */ | 
					
						
							|  |  |  | 	if (e-q<4) { | 
					
						
							|  |  |  | 	    if (consumed) | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	    errmsg = "truncated data"; | 
					
						
							|  |  |  | 	    startinpos = ((const char *)q)-starts; | 
					
						
							|  |  |  | 	    endinpos = ((const char *)e)-starts; | 
					
						
							|  |  |  | 	    goto utf32Error; | 
					
						
							|  |  |  | 	    /* The remaining input chars are ignored if the callback
 | 
					
						
							|  |  |  | 	       chooses to skip the input */ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	ch = (q[iorder[3]] << 24) | (q[iorder[2]] << 16) | | 
					
						
							|  |  |  | 	     (q[iorder[1]] << 8) | q[iorder[0]]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (ch >= 0x110000) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 	    errmsg = "codepoint not in range(0x110000)"; | 
					
						
							|  |  |  | 	    startinpos = ((const char *)q)-starts; | 
					
						
							|  |  |  | 	    endinpos = startinpos+4; | 
					
						
							|  |  |  | 	    goto utf32Error; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #ifndef Py_UNICODE_WIDE
 | 
					
						
							|  |  |  | 	if (ch >= 0x10000) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 	    *p++ = 0xD800 | ((ch-0x10000) >> 10); | 
					
						
							|  |  |  | 	    *p++ = 0xDC00 | ((ch-0x10000) & 0x3FF); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	    *p++ = ch; | 
					
						
							|  |  |  | 	q += 4; | 
					
						
							|  |  |  | 	continue; | 
					
						
							|  |  |  |     utf32Error: | 
					
						
							|  |  |  | 	outpos = p-PyUnicode_AS_UNICODE(unicode); | 
					
						
							|  |  |  |     if (unicode_decode_call_errorhandler( | 
					
						
							|  |  |  |          errors, &errorHandler, | 
					
						
							|  |  |  |          "utf32", errmsg, | 
					
						
							|  |  |  |          starts, size, &startinpos, &endinpos, &exc, &s, | 
					
						
							|  |  |  |          (PyObject **)&unicode, &outpos, &p)) | 
					
						
							|  |  |  | 	    goto onError; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (byteorder) | 
					
						
							|  |  |  |         *byteorder = bo; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (consumed) | 
					
						
							|  |  |  | 	*consumed = (const char *)q-starts; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Adjust length */ | 
					
						
							|  |  |  |     if (_PyUnicode_Resize(&unicode, p - unicode->str) < 0) | 
					
						
							|  |  |  |         goto onError; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							|  |  |  |     return (PyObject *)unicode; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | onError: | 
					
						
							|  |  |  |     Py_DECREF(unicode); | 
					
						
							|  |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyUnicode_EncodeUTF32(const Py_UNICODE *s, | 
					
						
							|  |  |  | 		      Py_ssize_t size, | 
					
						
							|  |  |  | 		      const char *errors, | 
					
						
							|  |  |  | 		      int byteorder) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *v; | 
					
						
							|  |  |  |     unsigned char *p; | 
					
						
							|  |  |  | #ifndef Py_UNICODE_WIDE
 | 
					
						
							|  |  |  |     int i, pairs; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     const int pairs = 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     /* Offsets from p for storing byte pairs in the right order. */ | 
					
						
							|  |  |  | #ifdef BYTEORDER_IS_LITTLE_ENDIAN
 | 
					
						
							|  |  |  |     int iorder[] = {0, 1, 2, 3}; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     int iorder[] = {3, 2, 1, 0}; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define STORECHAR(CH)                       \
 | 
					
						
							|  |  |  |     do {                                    \ | 
					
						
							|  |  |  |         p[iorder[3]] = ((CH) >> 24) & 0xff; \ | 
					
						
							|  |  |  |         p[iorder[2]] = ((CH) >> 16) & 0xff; \ | 
					
						
							|  |  |  |         p[iorder[1]] = ((CH) >> 8) & 0xff;  \ | 
					
						
							|  |  |  |         p[iorder[0]] = (CH) & 0xff;         \ | 
					
						
							|  |  |  |         p += 4;                             \ | 
					
						
							|  |  |  |     } while(0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* In narrow builds we can output surrogate pairs as one codepoint,
 | 
					
						
							|  |  |  |        so we need less space. */ | 
					
						
							|  |  |  | #ifndef Py_UNICODE_WIDE
 | 
					
						
							|  |  |  |     for (i = pairs = 0; i < size-1; i++) | 
					
						
							|  |  |  | 	if (0xD800 <= s[i] && s[i] <= 0xDBFF && | 
					
						
							|  |  |  | 	    0xDC00 <= s[i+1] && s[i+1] <= 0xDFFF) | 
					
						
							|  |  |  | 	    pairs++; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     v = PyString_FromStringAndSize(NULL, | 
					
						
							|  |  |  | 		  4 * (size - pairs + (byteorder == 0))); | 
					
						
							|  |  |  |     if (v == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     p = (unsigned char *)PyString_AS_STRING(v); | 
					
						
							|  |  |  |     if (byteorder == 0) | 
					
						
							|  |  |  | 	STORECHAR(0xFEFF); | 
					
						
							|  |  |  |     if (size == 0) | 
					
						
							|  |  |  |         return v; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (byteorder == -1) { | 
					
						
							|  |  |  |         /* force LE */ | 
					
						
							|  |  |  |         iorder[0] = 0; | 
					
						
							|  |  |  |         iorder[1] = 1; | 
					
						
							|  |  |  |         iorder[2] = 2; | 
					
						
							|  |  |  |         iorder[3] = 3; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (byteorder == 1) { | 
					
						
							|  |  |  |         /* force BE */ | 
					
						
							|  |  |  |         iorder[0] = 3; | 
					
						
							|  |  |  |         iorder[1] = 2; | 
					
						
							|  |  |  |         iorder[2] = 1; | 
					
						
							|  |  |  |         iorder[3] = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (size-- > 0) { | 
					
						
							|  |  |  | 	Py_UCS4 ch = *s++; | 
					
						
							|  |  |  | #ifndef Py_UNICODE_WIDE
 | 
					
						
							|  |  |  | 	if (0xD800 <= ch && ch <= 0xDBFF && size > 0) { | 
					
						
							|  |  |  | 	    Py_UCS4 ch2 = *s; | 
					
						
							|  |  |  | 	    if (0xDC00 <= ch2 && ch2 <= 0xDFFF) { | 
					
						
							|  |  |  | 		ch = (((ch & 0x3FF)<<10) | (ch2 & 0x3FF)) + 0x10000; | 
					
						
							|  |  |  | 		s++; | 
					
						
							|  |  |  | 		size--; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |         STORECHAR(ch); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return v; | 
					
						
							|  |  |  | #undef STORECHAR
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_AsUTF32String(PyObject *unicode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!PyUnicode_Check(unicode)) { | 
					
						
							|  |  |  |         PyErr_BadArgument(); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return PyUnicode_EncodeUTF32(PyUnicode_AS_UNICODE(unicode), | 
					
						
							|  |  |  | 				 PyUnicode_GET_SIZE(unicode), | 
					
						
							|  |  |  | 				 NULL, | 
					
						
							|  |  |  | 				 0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | /* --- UTF-16 Codec ------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  | PyObject * | 
					
						
							|  |  |  | PyUnicode_DecodeUTF16(const char *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 		      Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  | 		      const char *errors, | 
					
						
							|  |  |  | 		      int *byteorder) | 
					
						
							| 
									
										
										
										
											2004-09-07 20:24:22 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     return PyUnicode_DecodeUTF16Stateful(s, size, errors, byteorder, NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyUnicode_DecodeUTF16Stateful(const char *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			      Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2004-09-07 20:24:22 +00:00
										 |  |  | 			      const char *errors, | 
					
						
							|  |  |  | 			      int *byteorder, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			      Py_ssize_t *consumed) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     const char *starts = s; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t startinpos; | 
					
						
							|  |  |  |     Py_ssize_t endinpos; | 
					
						
							|  |  |  |     Py_ssize_t outpos; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     PyUnicodeObject *unicode; | 
					
						
							|  |  |  |     Py_UNICODE *p; | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  |     const unsigned char *q, *e; | 
					
						
							|  |  |  |     int bo = 0;       /* assume native ordering by default */ | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  |     const char *errmsg = ""; | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  |     /* Offsets from q for retrieving byte pairs in the right order. */ | 
					
						
							|  |  |  | #ifdef BYTEORDER_IS_LITTLE_ENDIAN
 | 
					
						
							|  |  |  |     int ihi = 1, ilo = 0; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     int ihi = 0, ilo = 1; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     PyObject *errorHandler = NULL; | 
					
						
							|  |  |  |     PyObject *exc = NULL; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Note: size will always be longer than the resulting Unicode
 | 
					
						
							|  |  |  |        character count */ | 
					
						
							|  |  |  |     unicode = _PyUnicode_New(size); | 
					
						
							|  |  |  |     if (!unicode) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     if (size == 0) | 
					
						
							|  |  |  |         return (PyObject *)unicode; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Unpack UTF-16 encoded data */ | 
					
						
							|  |  |  |     p = unicode->str; | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  |     q = (unsigned char *)s; | 
					
						
							|  |  |  |     e = q + size; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (byteorder) | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  |         bo = *byteorder; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-21 20:30:15 +00:00
										 |  |  |     /* Check for BOM marks (U+FEFF) in the input and adjust current
 | 
					
						
							|  |  |  |        byte order setting accordingly. In native mode, the leading BOM | 
					
						
							|  |  |  |        mark is skipped, in all other modes, it is copied to the output | 
					
						
							|  |  |  |        stream as-is (giving a ZWNBSP character). */ | 
					
						
							|  |  |  |     if (bo == 0) { | 
					
						
							| 
									
										
										
										
											2004-09-07 20:24:22 +00:00
										 |  |  |         if (size >= 2) { | 
					
						
							|  |  |  |             const Py_UNICODE bom = (q[ihi] << 8) | q[ilo]; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | #ifdef BYTEORDER_IS_LITTLE_ENDIAN
 | 
					
						
							| 
									
										
										
										
											2004-09-07 20:24:22 +00:00
										 |  |  | 	    if (bom == 0xFEFF) { | 
					
						
							|  |  |  | 		q += 2; | 
					
						
							|  |  |  | 		bo = -1; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    else if (bom == 0xFFFE) { | 
					
						
							|  |  |  | 		q += 2; | 
					
						
							|  |  |  | 		bo = 1; | 
					
						
							|  |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2004-09-07 20:24:22 +00:00
										 |  |  | 	    if (bom == 0xFEFF) { | 
					
						
							|  |  |  | 		q += 2; | 
					
						
							|  |  |  | 		bo = 1; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    else if (bom == 0xFFFE) { | 
					
						
							|  |  |  | 		q += 2; | 
					
						
							|  |  |  | 		bo = -1; | 
					
						
							|  |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2001-05-21 20:30:15 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2004-09-07 20:24:22 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-05-21 20:30:15 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (bo == -1) { | 
					
						
							|  |  |  |         /* force LE */ | 
					
						
							|  |  |  |         ihi = 1; | 
					
						
							|  |  |  |         ilo = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (bo == 1) { | 
					
						
							|  |  |  |         /* force BE */ | 
					
						
							|  |  |  |         ihi = 0; | 
					
						
							|  |  |  |         ilo = 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-05-21 20:30:15 +00:00
										 |  |  |     while (q < e) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	Py_UNICODE ch; | 
					
						
							| 
									
										
										
										
											2004-09-07 20:24:22 +00:00
										 |  |  | 	/* remaining bytes at the end? (size should be even) */ | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	if (e-q<2) { | 
					
						
							| 
									
										
										
										
											2004-09-07 20:24:22 +00:00
										 |  |  | 	    if (consumed) | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    errmsg = "truncated data"; | 
					
						
							|  |  |  | 	    startinpos = ((const char *)q)-starts; | 
					
						
							|  |  |  | 	    endinpos = ((const char *)e)-starts; | 
					
						
							|  |  |  | 	    goto utf16Error; | 
					
						
							|  |  |  | 	    /* The remaining input chars are ignored if the callback
 | 
					
						
							|  |  |  | 	       chooses to skip the input */ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	ch = (q[ihi] << 8) | q[ilo]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  | 	q += 2; | 
					
						
							| 
									
										
										
										
											2001-05-21 20:30:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	if (ch < 0xD800 || ch > 0xDFFF) { | 
					
						
							|  |  |  | 	    *p++ = ch; | 
					
						
							|  |  |  | 	    continue; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* UTF-16 code pair: */ | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  | 	if (q >= e) { | 
					
						
							|  |  |  | 	    errmsg = "unexpected end of data"; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    startinpos = (((const char *)q)-2)-starts; | 
					
						
							|  |  |  | 	    endinpos = ((const char *)e)-starts; | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  | 	    goto utf16Error; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-06-26 22:43:40 +00:00
										 |  |  | 	if (0xD800 <= ch && ch <= 0xDBFF) { | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  | 	    Py_UNICODE ch2 = (q[ihi] << 8) | q[ilo]; | 
					
						
							|  |  |  | 	    q += 2; | 
					
						
							| 
									
										
										
										
											2001-06-26 22:43:40 +00:00
										 |  |  | 	    if (0xDC00 <= ch2 && ch2 <= 0xDFFF) { | 
					
						
							| 
									
										
										
										
											2001-06-27 18:59:43 +00:00
										 |  |  | #ifndef Py_UNICODE_WIDE
 | 
					
						
							| 
									
										
										
										
											2001-07-20 17:39:11 +00:00
										 |  |  | 		*p++ = ch; | 
					
						
							|  |  |  | 		*p++ = ch2; | 
					
						
							| 
									
										
										
										
											2001-06-26 22:22:37 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 		*p++ = (((ch & 0x3FF)<<10) | (ch2 & 0x3FF)) + 0x10000; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-07-20 17:39:11 +00:00
										 |  |  | 		continue; | 
					
						
							| 
									
										
										
										
											2001-06-26 22:22:37 +00:00
										 |  |  | 	    } | 
					
						
							|  |  |  | 	    else { | 
					
						
							|  |  |  |                 errmsg = "illegal UTF-16 surrogate"; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		startinpos = (((const char *)q)-4)-starts; | 
					
						
							|  |  |  | 		endinpos = startinpos+2; | 
					
						
							| 
									
										
										
										
											2001-06-26 22:22:37 +00:00
										 |  |  | 		goto utf16Error; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  | 	errmsg = "illegal encoding"; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	startinpos = (((const char *)q)-2)-starts; | 
					
						
							|  |  |  | 	endinpos = startinpos+2; | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  | 	/* Fall through to report the error */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     utf16Error: | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	outpos = p-PyUnicode_AS_UNICODE(unicode); | 
					
						
							|  |  |  | 	if (unicode_decode_call_errorhandler( | 
					
						
							|  |  |  | 	         errors, &errorHandler, | 
					
						
							|  |  |  | 	         "utf16", errmsg, | 
					
						
							|  |  |  | 	         starts, size, &startinpos, &endinpos, &exc, (const char **)&q, | 
					
						
							|  |  |  | 	         (PyObject **)&unicode, &outpos, &p)) | 
					
						
							| 
									
										
										
										
											2000-07-17 18:23:13 +00:00
										 |  |  | 	    goto onError; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (byteorder) | 
					
						
							|  |  |  |         *byteorder = bo; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-09-07 20:24:22 +00:00
										 |  |  |     if (consumed) | 
					
						
							|  |  |  | 	*consumed = (const char *)q-starts; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     /* Adjust length */ | 
					
						
							| 
									
										
										
										
											2003-09-16 03:41:45 +00:00
										 |  |  |     if (_PyUnicode_Resize(&unicode, p - unicode->str) < 0) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         goto onError; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return (PyObject *)unicode; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | onError: | 
					
						
							|  |  |  |     Py_DECREF(unicode); | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  | PyObject * | 
					
						
							|  |  |  | PyUnicode_EncodeUTF16(const Py_UNICODE *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 		      Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  | 		      const char *errors, | 
					
						
							|  |  |  | 		      int byteorder) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject *v; | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  |     unsigned char *p; | 
					
						
							| 
									
										
										
										
											2003-12-19 01:59:56 +00:00
										 |  |  | #ifdef Py_UNICODE_WIDE
 | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  |     int i, pairs; | 
					
						
							| 
									
										
										
										
											2003-12-19 01:59:56 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  |     const int pairs = 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  |     /* Offsets from p for storing byte pairs in the right order. */ | 
					
						
							|  |  |  | #ifdef BYTEORDER_IS_LITTLE_ENDIAN
 | 
					
						
							|  |  |  |     int ihi = 1, ilo = 0; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     int ihi = 0, ilo = 1; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define STORECHAR(CH)                   \
 | 
					
						
							|  |  |  |     do {                                \ | 
					
						
							|  |  |  |         p[ihi] = ((CH) >> 8) & 0xff;    \ | 
					
						
							|  |  |  |         p[ilo] = (CH) & 0xff;           \ | 
					
						
							|  |  |  |         p += 2;                         \ | 
					
						
							|  |  |  |     } while(0) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-19 01:59:56 +00:00
										 |  |  | #ifdef Py_UNICODE_WIDE
 | 
					
						
							| 
									
										
										
										
											2001-06-26 22:22:37 +00:00
										 |  |  |     for (i = pairs = 0; i < size; i++) | 
					
						
							|  |  |  | 	if (s[i] >= 0x10000) | 
					
						
							|  |  |  | 	    pairs++; | 
					
						
							| 
									
										
										
										
											2003-12-19 01:59:56 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |     v = PyString_FromStringAndSize(NULL, | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  | 		  2 * (size + pairs + (byteorder == 0))); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (v == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  |     p = (unsigned char *)PyString_AS_STRING(v); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (byteorder == 0) | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  | 	STORECHAR(0xFEFF); | 
					
						
							| 
									
										
										
										
											2000-07-07 11:27:45 +00:00
										 |  |  |     if (size == 0) | 
					
						
							| 
									
										
										
										
											2000-08-14 11:29:19 +00:00
										 |  |  |         return v; | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (byteorder == -1) { | 
					
						
							|  |  |  |         /* force LE */ | 
					
						
							|  |  |  |         ihi = 1; | 
					
						
							|  |  |  |         ilo = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (byteorder == 1) { | 
					
						
							|  |  |  |         /* force BE */ | 
					
						
							|  |  |  |         ihi = 0; | 
					
						
							|  |  |  |         ilo = 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-06-26 22:22:37 +00:00
										 |  |  |     while (size-- > 0) { | 
					
						
							|  |  |  | 	Py_UNICODE ch = *s++; | 
					
						
							|  |  |  | 	Py_UNICODE ch2 = 0; | 
					
						
							| 
									
										
										
										
											2003-12-19 01:59:56 +00:00
										 |  |  | #ifdef Py_UNICODE_WIDE
 | 
					
						
							| 
									
										
										
										
											2001-06-26 22:22:37 +00:00
										 |  |  | 	if (ch >= 0x10000) { | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  | 	    ch2 = 0xDC00 | ((ch-0x10000) & 0x3FF); | 
					
						
							|  |  |  | 	    ch  = 0xD800 | ((ch-0x10000) >> 10); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-12-19 01:59:56 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  |         STORECHAR(ch); | 
					
						
							|  |  |  |         if (ch2) | 
					
						
							|  |  |  |             STORECHAR(ch2); | 
					
						
							| 
									
										
										
										
											2001-06-26 22:22:37 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return v; | 
					
						
							| 
									
										
										
										
											2001-08-09 22:21:55 +00:00
										 |  |  | #undef STORECHAR
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_AsUTF16String(PyObject *unicode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!PyUnicode_Check(unicode)) { | 
					
						
							|  |  |  |         PyErr_BadArgument(); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return PyUnicode_EncodeUTF16(PyUnicode_AS_UNICODE(unicode), | 
					
						
							|  |  |  | 				 PyUnicode_GET_SIZE(unicode), | 
					
						
							|  |  |  | 				 NULL, | 
					
						
							|  |  |  | 				 0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* --- Unicode Escape Codec ----------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-24 07:59:11 +00:00
										 |  |  | static _PyUnicode_Name_CAPI *ucnhash_CAPI = NULL; | 
					
						
							| 
									
										
										
										
											2000-06-28 16:43:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | PyObject *PyUnicode_DecodeUnicodeEscape(const char *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 					Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 					const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     const char *starts = s; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t startinpos; | 
					
						
							|  |  |  |     Py_ssize_t endinpos; | 
					
						
							|  |  |  |     Py_ssize_t outpos; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     PyUnicodeObject *v; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_UNICODE *p; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     const char *end; | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |     char* message; | 
					
						
							|  |  |  |     Py_UCS4 chr = 0xffffffff; /* in case 'getcode' messes up */ | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     PyObject *errorHandler = NULL; | 
					
						
							|  |  |  |     PyObject *exc = NULL; | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     /* Escaped strings will always be longer than the resulting
 | 
					
						
							|  |  |  |        Unicode string, so we start with size here and then reduce the | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |        length after conversion to the true value. | 
					
						
							|  |  |  |        (but if the error callback returns a long replacement string | 
					
						
							|  |  |  |        we'll have to allocate more space) */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     v = _PyUnicode_New(size); | 
					
						
							|  |  |  |     if (v == NULL) | 
					
						
							|  |  |  |         goto onError; | 
					
						
							|  |  |  |     if (size == 0) | 
					
						
							|  |  |  |         return (PyObject *)v; | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     p = PyUnicode_AS_UNICODE(v); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     end = s + size; | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     while (s < end) { | 
					
						
							|  |  |  |         unsigned char c; | 
					
						
							| 
									
										
										
										
											2000-07-07 11:27:45 +00:00
										 |  |  |         Py_UNICODE x; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |         int digits; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* Non-escape characters are interpreted as Unicode ordinals */ | 
					
						
							|  |  |  |         if (*s != '\\') { | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |             *p++ = (unsigned char) *s++; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |             continue; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |         startinpos = s-starts; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         /* \ - Escapes */ | 
					
						
							|  |  |  |         s++; | 
					
						
							| 
									
										
										
										
											2007-10-29 22:15:05 +00:00
										 |  |  |         c = *s++; | 
					
						
							|  |  |  |         if (s > end) | 
					
						
							|  |  |  |             c = '\0'; /* Invalid after \ */ | 
					
						
							|  |  |  |         switch (c) { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* \x escapes */ | 
					
						
							|  |  |  |         case '\n': break; | 
					
						
							|  |  |  |         case '\\': *p++ = '\\'; break; | 
					
						
							|  |  |  |         case '\'': *p++ = '\''; break; | 
					
						
							|  |  |  |         case '\"': *p++ = '\"'; break; | 
					
						
							|  |  |  |         case 'b': *p++ = '\b'; break; | 
					
						
							|  |  |  |         case 'f': *p++ = '\014'; break; /* FF */ | 
					
						
							|  |  |  |         case 't': *p++ = '\t'; break; | 
					
						
							|  |  |  |         case 'n': *p++ = '\n'; break; | 
					
						
							|  |  |  |         case 'r': *p++ = '\r'; break; | 
					
						
							|  |  |  |         case 'v': *p++ = '\013'; break; /* VT */ | 
					
						
							|  |  |  |         case 'a': *p++ = '\007'; break; /* BEL, not classic C */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* \OOO (octal) escapes */ | 
					
						
							|  |  |  |         case '0': case '1': case '2': case '3': | 
					
						
							|  |  |  |         case '4': case '5': case '6': case '7': | 
					
						
							| 
									
										
										
										
											2000-05-01 21:27:20 +00:00
										 |  |  |             x = s[-1] - '0'; | 
					
						
							| 
									
										
										
										
											2007-10-29 22:15:05 +00:00
										 |  |  |             if (s < end && '0' <= *s && *s <= '7') { | 
					
						
							| 
									
										
										
										
											2000-05-01 21:27:20 +00:00
										 |  |  |                 x = (x<<3) + *s++ - '0'; | 
					
						
							| 
									
										
										
										
											2007-10-29 22:15:05 +00:00
										 |  |  |                 if (s < end && '0' <= *s && *s <= '7') | 
					
						
							| 
									
										
										
										
											2000-05-01 21:27:20 +00:00
										 |  |  |                     x = (x<<3) + *s++ - '0'; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2000-05-01 21:27:20 +00:00
										 |  |  |             *p++ = x; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |         /* hex escapes */ | 
					
						
							|  |  |  |         /* \xXX */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         case 'x': | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |             digits = 2; | 
					
						
							|  |  |  |             message = "truncated \\xXX escape"; | 
					
						
							|  |  |  |             goto hexescape; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |         /* \uXXXX */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         case 'u': | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |             digits = 4; | 
					
						
							|  |  |  |             message = "truncated \\uXXXX escape"; | 
					
						
							|  |  |  |             goto hexescape; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |         /* \UXXXXXXXX */ | 
					
						
							| 
									
										
										
										
											2000-09-03 11:29:49 +00:00
										 |  |  |         case 'U': | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |             digits = 8; | 
					
						
							|  |  |  |             message = "truncated \\UXXXXXXXX escape"; | 
					
						
							|  |  |  |         hexescape: | 
					
						
							|  |  |  |             chr = 0; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |             outpos = p-PyUnicode_AS_UNICODE(v); | 
					
						
							|  |  |  |             if (s+digits>end) { | 
					
						
							|  |  |  |                 endinpos = size; | 
					
						
							|  |  |  |                 if (unicode_decode_call_errorhandler( | 
					
						
							|  |  |  |                     errors, &errorHandler, | 
					
						
							|  |  |  |                     "unicodeescape", "end of string in escape sequence", | 
					
						
							|  |  |  |                     starts, size, &startinpos, &endinpos, &exc, &s, | 
					
						
							|  |  |  |                     (PyObject **)&v, &outpos, &p)) | 
					
						
							|  |  |  |                     goto onError; | 
					
						
							|  |  |  |                 goto nextByte; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             for (i = 0; i < digits; ++i) { | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |                 c = (unsigned char) s[i]; | 
					
						
							| 
									
										
										
										
											2000-09-03 11:29:49 +00:00
										 |  |  |                 if (!isxdigit(c)) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |                     endinpos = (s+i+1)-starts; | 
					
						
							|  |  |  |                     if (unicode_decode_call_errorhandler( | 
					
						
							|  |  |  |                         errors, &errorHandler, | 
					
						
							|  |  |  |                         "unicodeescape", message, | 
					
						
							|  |  |  |                         starts, size, &startinpos, &endinpos, &exc, &s, | 
					
						
							|  |  |  |                         (PyObject **)&v, &outpos, &p)) | 
					
						
							| 
									
										
										
										
											2000-09-03 11:29:49 +00:00
										 |  |  |                         goto onError; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |                     goto nextByte; | 
					
						
							| 
									
										
										
										
											2000-09-03 11:29:49 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |                 chr = (chr<<4) & ~0xF; | 
					
						
							|  |  |  |                 if (c >= '0' && c <= '9') | 
					
						
							|  |  |  |                     chr += c - '0'; | 
					
						
							|  |  |  |                 else if (c >= 'a' && c <= 'f') | 
					
						
							|  |  |  |                     chr += 10 + c - 'a'; | 
					
						
							|  |  |  |                 else | 
					
						
							|  |  |  |                     chr += 10 + c - 'A'; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             s += i; | 
					
						
							| 
									
										
										
										
											2003-10-06 05:08:26 +00:00
										 |  |  |             if (chr == 0xffffffff && PyErr_Occurred()) | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |                 /* _decoding_error will have already written into the
 | 
					
						
							|  |  |  |                    target buffer. */ | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |         store: | 
					
						
							|  |  |  |             /* when we get here, chr is a 32-bit unicode character */ | 
					
						
							|  |  |  |             if (chr <= 0xffff) | 
					
						
							|  |  |  |                 /* UCS-2 character */ | 
					
						
							|  |  |  |                 *p++ = (Py_UNICODE) chr; | 
					
						
							|  |  |  |             else if (chr <= 0x10ffff) { | 
					
						
							| 
									
										
										
										
											2001-07-20 17:39:11 +00:00
										 |  |  |                 /* UCS-4 character. Either store directly, or as
 | 
					
						
							| 
									
										
										
										
											2002-03-25 11:16:18 +00:00
										 |  |  |                    surrogate pair. */ | 
					
						
							| 
									
										
										
										
											2001-06-27 18:59:43 +00:00
										 |  |  | #ifdef Py_UNICODE_WIDE
 | 
					
						
							| 
									
										
										
										
											2001-06-26 22:22:37 +00:00
										 |  |  |                 *p++ = chr; | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |                 chr -= 0x10000L; | 
					
						
							|  |  |  |                 *p++ = 0xD800 + (Py_UNICODE) (chr >> 10); | 
					
						
							| 
									
										
										
										
											2001-06-26 16:39:36 +00:00
										 |  |  |                 *p++ = 0xDC00 + (Py_UNICODE) (chr & 0x03FF); | 
					
						
							| 
									
										
										
										
											2001-06-26 22:22:37 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |                 endinpos = s-starts; | 
					
						
							|  |  |  |                 outpos = p-PyUnicode_AS_UNICODE(v); | 
					
						
							|  |  |  |                 if (unicode_decode_call_errorhandler( | 
					
						
							|  |  |  |                     errors, &errorHandler, | 
					
						
							|  |  |  |                     "unicodeescape", "illegal Unicode character", | 
					
						
							|  |  |  |                     starts, size, &startinpos, &endinpos, &exc, &s, | 
					
						
							|  |  |  |                     (PyObject **)&v, &outpos, &p)) | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |                     goto onError; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2000-09-03 11:29:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |         /* \N{name} */ | 
					
						
							| 
									
										
										
										
											2000-06-28 16:43:35 +00:00
										 |  |  |         case 'N': | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |             message = "malformed \\N character escape"; | 
					
						
							| 
									
										
										
										
											2001-01-24 07:59:11 +00:00
										 |  |  |             if (ucnhash_CAPI == NULL) { | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |                 /* load the unicode data module */ | 
					
						
							| 
									
										
										
										
											2006-03-07 15:39:21 +00:00
										 |  |  |                 PyObject *m, *api; | 
					
						
							| 
									
										
										
										
											2008-01-03 22:16:32 +00:00
										 |  |  |                 m = PyImport_ImportModuleNoBlock("unicodedata"); | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |                 if (m == NULL) | 
					
						
							| 
									
										
										
										
											2001-01-20 11:15:25 +00:00
										 |  |  |                     goto ucnhashError; | 
					
						
							| 
									
										
										
										
											2006-03-07 15:39:21 +00:00
										 |  |  |                 api = PyObject_GetAttrString(m, "ucnhash_CAPI"); | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |                 Py_DECREF(m); | 
					
						
							| 
									
										
										
										
											2006-03-07 15:39:21 +00:00
										 |  |  |                 if (api == NULL) | 
					
						
							| 
									
										
										
										
											2001-01-20 11:15:25 +00:00
										 |  |  |                     goto ucnhashError; | 
					
						
							| 
									
										
										
										
											2006-04-11 07:42:36 +00:00
										 |  |  |                 ucnhash_CAPI = (_PyUnicode_Name_CAPI *)PyCObject_AsVoidPtr(api); | 
					
						
							| 
									
										
										
										
											2006-03-07 15:39:21 +00:00
										 |  |  |                 Py_DECREF(api); | 
					
						
							| 
									
										
										
										
											2001-01-24 07:59:11 +00:00
										 |  |  |                 if (ucnhash_CAPI == NULL) | 
					
						
							| 
									
										
										
										
											2001-01-20 11:15:25 +00:00
										 |  |  |                     goto ucnhashError; | 
					
						
							| 
									
										
										
										
											2000-06-28 16:43:35 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2000-09-03 11:29:49 +00:00
										 |  |  |             if (*s == '{') { | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |                 const char *start = s+1; | 
					
						
							| 
									
										
										
										
											2001-01-19 09:45:02 +00:00
										 |  |  |                 /* look for the closing brace */ | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |                 while (*s != '}' && s < end) | 
					
						
							|  |  |  |                     s++; | 
					
						
							|  |  |  |                 if (s > start && s < end && *s == '}') { | 
					
						
							|  |  |  |                     /* found a name.  look it up in the unicode database */ | 
					
						
							|  |  |  |                     message = "unknown Unicode character name"; | 
					
						
							|  |  |  |                     s++; | 
					
						
							| 
									
										
										
										
											2006-03-09 23:38:20 +00:00
										 |  |  |                     if (ucnhash_CAPI->getcode(NULL, start, (int)(s-start-1), &chr)) | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |                         goto store; | 
					
						
							| 
									
										
										
										
											2000-06-28 16:43:35 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |             endinpos = s-starts; | 
					
						
							|  |  |  |             outpos = p-PyUnicode_AS_UNICODE(v); | 
					
						
							|  |  |  |             if (unicode_decode_call_errorhandler( | 
					
						
							|  |  |  |                 errors, &errorHandler, | 
					
						
							|  |  |  |                 "unicodeescape", message, | 
					
						
							|  |  |  |                 starts, size, &startinpos, &endinpos, &exc, &s, | 
					
						
							|  |  |  |                 (PyObject **)&v, &outpos, &p)) | 
					
						
							| 
									
										
										
										
											2000-06-28 16:43:35 +00:00
										 |  |  |                 goto onError; | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2002-03-25 11:16:18 +00:00
										 |  |  |             if (s > end) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |                 message = "\\ at end of string"; | 
					
						
							|  |  |  |                 s--; | 
					
						
							|  |  |  |                 endinpos = s-starts; | 
					
						
							|  |  |  |                 outpos = p-PyUnicode_AS_UNICODE(v); | 
					
						
							|  |  |  |                 if (unicode_decode_call_errorhandler( | 
					
						
							|  |  |  |                     errors, &errorHandler, | 
					
						
							|  |  |  |                     "unicodeescape", message, | 
					
						
							|  |  |  |                     starts, size, &startinpos, &endinpos, &exc, &s, | 
					
						
							|  |  |  |                     (PyObject **)&v, &outpos, &p)) | 
					
						
							| 
									
										
										
										
											2002-03-25 11:16:18 +00:00
										 |  |  |                     goto onError; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else { | 
					
						
							|  |  |  |                 *p++ = '\\'; | 
					
						
							|  |  |  |                 *p++ = (unsigned char)s[-1]; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |         nextByte: | 
					
						
							|  |  |  |         ; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |     if (_PyUnicode_Resize(&v, p - PyUnicode_AS_UNICODE(v)) < 0) | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |         goto onError; | 
					
						
							| 
									
										
										
										
											2003-08-15 15:00:26 +00:00
										 |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return (PyObject *)v; | 
					
						
							| 
									
										
										
										
											2002-03-25 11:16:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  | ucnhashError: | 
					
						
							| 
									
										
										
										
											2001-01-24 07:59:11 +00:00
										 |  |  |     PyErr_SetString( | 
					
						
							|  |  |  |         PyExc_UnicodeError, | 
					
						
							|  |  |  |         "\\N escapes not supported (can't load unicodedata module)" | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2006-03-07 15:39:21 +00:00
										 |  |  |     Py_XDECREF(v); | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							| 
									
										
										
										
											2001-01-20 11:15:25 +00:00
										 |  |  |     return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-18 22:13:49 +00:00
										 |  |  | onError: | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     Py_XDECREF(v); | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Return a Unicode-Escape string version of the Unicode object.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    If quotes is true, the string is enclosed in u"" or u'' quotes as | 
					
						
							|  |  |  |    appropriate. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-27 14:58:20 +00:00
										 |  |  | Py_LOCAL_INLINE(const Py_UNICODE *) findchar(const Py_UNICODE *s, | 
					
						
							| 
									
										
										
										
											2006-05-26 11:38:15 +00:00
										 |  |  |                                       Py_ssize_t size, | 
					
						
							|  |  |  |                                       Py_UNICODE ch) | 
					
						
							| 
									
										
										
										
											2006-05-24 16:35:18 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     /* like wcschr, but doesn't stop at NULL characters */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (size-- > 0) { | 
					
						
							|  |  |  |         if (*s == ch) | 
					
						
							|  |  |  |             return s; | 
					
						
							|  |  |  |         s++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2000-03-20 16:36:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | static | 
					
						
							|  |  |  | PyObject *unicodeescape_string(const Py_UNICODE *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |                                Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |                                int quotes) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *repr; | 
					
						
							|  |  |  |     char *p; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-24 17:19:08 +00:00
										 |  |  |     static const char *hexdigit = "0123456789abcdef"; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 22:21:19 +00:00
										 |  |  |     /* XXX(nnorwitz): rather than over-allocating, it would be
 | 
					
						
							|  |  |  |        better to choose a different scheme.  Perhaps scan the | 
					
						
							|  |  |  |        first N-chars of the string and allocate based on that size. | 
					
						
							|  |  |  |     */ | 
					
						
							|  |  |  |     /* Initial allocation is based on the longest-possible unichr
 | 
					
						
							|  |  |  |        escape. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |        In wide (UTF-32) builds '\U00xxxxxx' is 10 chars per source | 
					
						
							|  |  |  |        unichr, so in this case it's the longest unichr escape. In | 
					
						
							|  |  |  |        narrow (UTF-16) builds this is five chars per source unichr | 
					
						
							|  |  |  |        since there are two unichrs in the surrogate pair, so in narrow | 
					
						
							|  |  |  |        (UTF-16) builds it's not the longest unichr escape. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |        In wide or narrow builds '\uxxxx' is 6 chars per source unichr, | 
					
						
							|  |  |  |        so in the narrow (UTF-16) build case it's the longest unichr | 
					
						
							|  |  |  |        escape. | 
					
						
							|  |  |  |     */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     repr = PyString_FromStringAndSize(NULL, | 
					
						
							|  |  |  |         2 | 
					
						
							|  |  |  | #ifdef Py_UNICODE_WIDE
 | 
					
						
							|  |  |  |         + 10*size | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |         + 6*size | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |         + 1); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (repr == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-25 16:05:59 +00:00
										 |  |  |     p = PyString_AS_STRING(repr); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (quotes) { | 
					
						
							|  |  |  |         *p++ = 'u'; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |         *p++ = (findchar(s, size, '\'') && | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |                 !findchar(s, size, '"')) ? '"' : '\''; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     while (size-- > 0) { | 
					
						
							|  |  |  |         Py_UNICODE ch = *s++; | 
					
						
							| 
									
										
										
										
											2001-07-25 16:05:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-17 04:38:31 +00:00
										 |  |  |         /* Escape quotes and backslashes */ | 
					
						
							|  |  |  |         if ((quotes && | 
					
						
							|  |  |  | 	     ch == (Py_UNICODE) PyString_AS_STRING(repr)[1]) || ch == '\\') { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |             *p++ = '\\'; | 
					
						
							|  |  |  |             *p++ = (char) ch; | 
					
						
							| 
									
										
										
										
											2001-09-21 15:38:17 +00:00
										 |  |  | 	    continue; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2001-07-25 16:05:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-20 16:36:21 +00:00
										 |  |  | #ifdef Py_UNICODE_WIDE
 | 
					
						
							| 
									
										
										
										
											2001-06-26 22:22:37 +00:00
										 |  |  |         /* Map 21-bit characters to '\U00xxxxxx' */ | 
					
						
							|  |  |  |         else if (ch >= 0x10000) { | 
					
						
							|  |  |  |             *p++ = '\\'; | 
					
						
							|  |  |  |             *p++ = 'U'; | 
					
						
							| 
									
										
										
										
											2001-07-20 17:39:11 +00:00
										 |  |  |             *p++ = hexdigit[(ch >> 28) & 0x0000000F]; | 
					
						
							|  |  |  |             *p++ = hexdigit[(ch >> 24) & 0x0000000F]; | 
					
						
							|  |  |  |             *p++ = hexdigit[(ch >> 20) & 0x0000000F]; | 
					
						
							|  |  |  |             *p++ = hexdigit[(ch >> 16) & 0x0000000F]; | 
					
						
							|  |  |  |             *p++ = hexdigit[(ch >> 12) & 0x0000000F]; | 
					
						
							|  |  |  |             *p++ = hexdigit[(ch >> 8) & 0x0000000F]; | 
					
						
							|  |  |  |             *p++ = hexdigit[(ch >> 4) & 0x0000000F]; | 
					
						
							| 
									
										
										
										
											2001-07-25 16:05:59 +00:00
										 |  |  |             *p++ = hexdigit[ch & 0x0000000F]; | 
					
						
							|  |  |  | 	    continue; | 
					
						
							| 
									
										
										
										
											2001-06-26 22:22:37 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2006-08-21 22:21:19 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 	/* Map UTF-16 surrogate pairs to '\U00xxxxxx' */ | 
					
						
							| 
									
										
										
										
											2001-07-20 17:39:11 +00:00
										 |  |  | 	else if (ch >= 0xD800 && ch < 0xDC00) { | 
					
						
							|  |  |  | 	    Py_UNICODE ch2; | 
					
						
							|  |  |  | 	    Py_UCS4 ucs; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-20 17:39:11 +00:00
										 |  |  | 	    ch2 = *s++; | 
					
						
							|  |  |  | 	    size--; | 
					
						
							|  |  |  | 	    if (ch2 >= 0xDC00 && ch2 <= 0xDFFF) { | 
					
						
							|  |  |  | 		ucs = (((ch & 0x03FF) << 10) | (ch2 & 0x03FF)) + 0x00010000; | 
					
						
							|  |  |  | 		*p++ = '\\'; | 
					
						
							|  |  |  | 		*p++ = 'U'; | 
					
						
							|  |  |  | 		*p++ = hexdigit[(ucs >> 28) & 0x0000000F]; | 
					
						
							|  |  |  | 		*p++ = hexdigit[(ucs >> 24) & 0x0000000F]; | 
					
						
							|  |  |  | 		*p++ = hexdigit[(ucs >> 20) & 0x0000000F]; | 
					
						
							|  |  |  | 		*p++ = hexdigit[(ucs >> 16) & 0x0000000F]; | 
					
						
							|  |  |  | 		*p++ = hexdigit[(ucs >> 12) & 0x0000000F]; | 
					
						
							|  |  |  | 		*p++ = hexdigit[(ucs >> 8) & 0x0000000F]; | 
					
						
							|  |  |  | 		*p++ = hexdigit[(ucs >> 4) & 0x0000000F]; | 
					
						
							|  |  |  | 		*p++ = hexdigit[ucs & 0x0000000F]; | 
					
						
							|  |  |  | 		continue; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    /* Fall through: isolated surrogates are copied as-is */ | 
					
						
							|  |  |  | 	    s--; | 
					
						
							|  |  |  | 	    size++; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-08-21 22:21:19 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-07-20 17:39:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         /* Map 16-bit characters to '\uxxxx' */ | 
					
						
							| 
									
										
										
										
											2001-07-20 17:39:11 +00:00
										 |  |  |         if (ch >= 256) { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |             *p++ = '\\'; | 
					
						
							|  |  |  |             *p++ = 'u'; | 
					
						
							| 
									
										
										
										
											2001-07-20 17:39:11 +00:00
										 |  |  |             *p++ = hexdigit[(ch >> 12) & 0x000F]; | 
					
						
							|  |  |  |             *p++ = hexdigit[(ch >> 8) & 0x000F]; | 
					
						
							|  |  |  |             *p++ = hexdigit[(ch >> 4) & 0x000F]; | 
					
						
							|  |  |  |             *p++ = hexdigit[ch & 0x000F]; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2001-07-25 16:05:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-24 17:19:08 +00:00
										 |  |  |         /* Map special whitespace to '\t', \n', '\r' */ | 
					
						
							|  |  |  |         else if (ch == '\t') { | 
					
						
							|  |  |  |             *p++ = '\\'; | 
					
						
							|  |  |  |             *p++ = 't'; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else if (ch == '\n') { | 
					
						
							|  |  |  |             *p++ = '\\'; | 
					
						
							|  |  |  |             *p++ = 'n'; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else if (ch == '\r') { | 
					
						
							|  |  |  |             *p++ = '\\'; | 
					
						
							|  |  |  |             *p++ = 'r'; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2001-07-25 16:05:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-24 17:19:08 +00:00
										 |  |  |         /* Map non-printable US ASCII to '\xhh' */ | 
					
						
							| 
									
										
										
										
											2001-11-28 12:56:20 +00:00
										 |  |  |         else if (ch < ' ' || ch >= 0x7F) { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |             *p++ = '\\'; | 
					
						
							| 
									
										
										
										
											2001-01-24 17:19:08 +00:00
										 |  |  |             *p++ = 'x'; | 
					
						
							| 
									
										
										
										
											2001-07-20 17:39:11 +00:00
										 |  |  |             *p++ = hexdigit[(ch >> 4) & 0x000F]; | 
					
						
							|  |  |  |             *p++ = hexdigit[ch & 0x000F]; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2001-07-25 16:05:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         /* Copy everything else as-is */ | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             *p++ = (char) ch; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (quotes) | 
					
						
							| 
									
										
										
										
											2001-07-25 16:05:59 +00:00
										 |  |  |         *p++ = PyString_AS_STRING(repr)[1]; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     *p = '\0'; | 
					
						
							| 
									
										
										
										
											2002-04-27 18:44:32 +00:00
										 |  |  |     _PyString_Resize(&repr, p - PyString_AS_STRING(repr)); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return repr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_EncodeUnicodeEscape(const Py_UNICODE *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 					Py_ssize_t size) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     return unicodeescape_string(s, size, 0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_AsUnicodeEscapeString(PyObject *unicode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!PyUnicode_Check(unicode)) { | 
					
						
							|  |  |  |         PyErr_BadArgument(); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return PyUnicode_EncodeUnicodeEscape(PyUnicode_AS_UNICODE(unicode), | 
					
						
							|  |  |  | 					 PyUnicode_GET_SIZE(unicode)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* --- Raw Unicode Escape Codec ------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_DecodeRawUnicodeEscape(const char *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 					   Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 					   const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     const char *starts = s; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t startinpos; | 
					
						
							|  |  |  |     Py_ssize_t endinpos; | 
					
						
							|  |  |  |     Py_ssize_t outpos; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     PyUnicodeObject *v; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_UNICODE *p; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     const char *end; | 
					
						
							|  |  |  |     const char *bs; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     PyObject *errorHandler = NULL; | 
					
						
							|  |  |  |     PyObject *exc = NULL; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     /* Escaped strings will always be longer than the resulting
 | 
					
						
							|  |  |  |        Unicode string, so we start with size here and then reduce the | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |        length after conversion to the true value. (But decoding error | 
					
						
							|  |  |  |        handler might have to resize the string) */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     v = _PyUnicode_New(size); | 
					
						
							|  |  |  |     if (v == NULL) | 
					
						
							|  |  |  | 	goto onError; | 
					
						
							|  |  |  |     if (size == 0) | 
					
						
							|  |  |  | 	return (PyObject *)v; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     p = PyUnicode_AS_UNICODE(v); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     end = s + size; | 
					
						
							|  |  |  |     while (s < end) { | 
					
						
							|  |  |  | 	unsigned char c; | 
					
						
							| 
									
										
										
										
											2002-03-21 08:55:28 +00:00
										 |  |  | 	Py_UCS4 x; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											2003-05-18 12:31:09 +00:00
										 |  |  |         int count; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Non-escape characters are interpreted as Unicode ordinals */ | 
					
						
							|  |  |  | 	if (*s != '\\') { | 
					
						
							|  |  |  | 	    *p++ = (unsigned char)*s++; | 
					
						
							|  |  |  | 	    continue; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	startinpos = s-starts; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* \u-escapes are only interpreted iff the number of leading
 | 
					
						
							|  |  |  | 	   backslashes if odd */ | 
					
						
							|  |  |  | 	bs = s; | 
					
						
							|  |  |  | 	for (;s < end;) { | 
					
						
							|  |  |  | 	    if (*s != '\\') | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	    *p++ = (unsigned char)*s++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (((s - bs) & 1) == 0 || | 
					
						
							|  |  |  | 	    s >= end || | 
					
						
							| 
									
										
										
										
											2003-05-18 12:31:09 +00:00
										 |  |  | 	    (*s != 'u' && *s != 'U')) { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    continue; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	p--; | 
					
						
							| 
									
										
										
										
											2003-05-18 12:31:09 +00:00
										 |  |  |         count = *s=='u' ? 4 : 8; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	s++; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-18 12:31:09 +00:00
										 |  |  | 	/* \uXXXX with 4 hex digits, \Uxxxxxxxx with 8 */ | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	outpos = p-PyUnicode_AS_UNICODE(v); | 
					
						
							| 
									
										
										
										
											2003-05-18 12:31:09 +00:00
										 |  |  | 	for (x = 0, i = 0; i < count; ++i, ++s) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    c = (unsigned char)*s; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    if (!isxdigit(c)) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		endinpos = s-starts; | 
					
						
							|  |  |  | 		if (unicode_decode_call_errorhandler( | 
					
						
							|  |  |  | 		    errors, &errorHandler, | 
					
						
							|  |  |  | 		    "rawunicodeescape", "truncated \\uXXXX", | 
					
						
							|  |  |  | 		    starts, size, &startinpos, &endinpos, &exc, &s, | 
					
						
							|  |  |  | 		    (PyObject **)&v, &outpos, &p)) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		    goto onError; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		goto nextByte; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    } | 
					
						
							|  |  |  | 	    x = (x<<4) & ~0xF; | 
					
						
							|  |  |  | 	    if (c >= '0' && c <= '9') | 
					
						
							|  |  |  | 		x += c - '0'; | 
					
						
							|  |  |  | 	    else if (c >= 'a' && c <= 'f') | 
					
						
							|  |  |  | 		x += 10 + c - 'a'; | 
					
						
							|  |  |  | 	    else | 
					
						
							|  |  |  | 		x += 10 + c - 'A'; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-05-18 12:31:09 +00:00
										 |  |  | #ifndef Py_UNICODE_WIDE
 | 
					
						
							|  |  |  |         if (x > 0x10000) { | 
					
						
							|  |  |  |             if (unicode_decode_call_errorhandler( | 
					
						
							|  |  |  |                     errors, &errorHandler, | 
					
						
							|  |  |  |                     "rawunicodeescape", "\\Uxxxxxxxx out of range", | 
					
						
							|  |  |  | 		    starts, size, &startinpos, &endinpos, &exc, &s, | 
					
						
							|  |  |  | 		    (PyObject **)&v, &outpos, &p)) | 
					
						
							|  |  |  | 		    goto onError; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	*p++ = x; | 
					
						
							|  |  |  | 	nextByte: | 
					
						
							|  |  |  | 	; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |     if (_PyUnicode_Resize(&v, p - PyUnicode_AS_UNICODE(v)) < 0) | 
					
						
							| 
									
										
										
										
											2000-04-10 13:51:10 +00:00
										 |  |  | 	goto onError; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return (PyObject *)v; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |  onError: | 
					
						
							|  |  |  |     Py_XDECREF(v); | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_EncodeRawUnicodeEscape(const Py_UNICODE *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 					   Py_ssize_t size) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject *repr; | 
					
						
							|  |  |  |     char *p; | 
					
						
							|  |  |  |     char *q; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-24 17:19:08 +00:00
										 |  |  |     static const char *hexdigit = "0123456789abcdef"; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-18 12:31:09 +00:00
										 |  |  | #ifdef Py_UNICODE_WIDE
 | 
					
						
							|  |  |  |     repr = PyString_FromStringAndSize(NULL, 10 * size); | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     repr = PyString_FromStringAndSize(NULL, 6 * size); | 
					
						
							| 
									
										
										
										
											2003-05-18 12:31:09 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (repr == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2000-08-14 11:29:19 +00:00
										 |  |  |     if (size == 0) | 
					
						
							|  |  |  | 	return repr; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     p = q = PyString_AS_STRING(repr); | 
					
						
							|  |  |  |     while (size-- > 0) { | 
					
						
							|  |  |  |         Py_UNICODE ch = *s++; | 
					
						
							| 
									
										
										
										
											2003-05-18 12:31:09 +00:00
										 |  |  | #ifdef Py_UNICODE_WIDE
 | 
					
						
							|  |  |  | 	/* Map 32-bit characters to '\Uxxxxxxxx' */ | 
					
						
							|  |  |  | 	if (ch >= 0x10000) { | 
					
						
							|  |  |  |             *p++ = '\\'; | 
					
						
							|  |  |  |             *p++ = 'U'; | 
					
						
							|  |  |  |             *p++ = hexdigit[(ch >> 28) & 0xf]; | 
					
						
							|  |  |  |             *p++ = hexdigit[(ch >> 24) & 0xf]; | 
					
						
							|  |  |  |             *p++ = hexdigit[(ch >> 20) & 0xf]; | 
					
						
							|  |  |  |             *p++ = hexdigit[(ch >> 16) & 0xf]; | 
					
						
							|  |  |  |             *p++ = hexdigit[(ch >> 12) & 0xf]; | 
					
						
							|  |  |  |             *p++ = hexdigit[(ch >> 8) & 0xf]; | 
					
						
							|  |  |  |             *p++ = hexdigit[(ch >> 4) & 0xf]; | 
					
						
							|  |  |  |             *p++ = hexdigit[ch & 15]; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-05-18 12:31:09 +00:00
										 |  |  |         else | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	/* Map 16-bit characters to '\uxxxx' */ | 
					
						
							|  |  |  | 	if (ch >= 256) { | 
					
						
							|  |  |  |             *p++ = '\\'; | 
					
						
							|  |  |  |             *p++ = 'u'; | 
					
						
							|  |  |  |             *p++ = hexdigit[(ch >> 12) & 0xf]; | 
					
						
							|  |  |  |             *p++ = hexdigit[(ch >> 8) & 0xf]; | 
					
						
							|  |  |  |             *p++ = hexdigit[(ch >> 4) & 0xf]; | 
					
						
							|  |  |  |             *p++ = hexdigit[ch & 15]; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 	/* Copy everything else as-is */ | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  |             *p++ = (char) ch; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     *p = '\0'; | 
					
						
							| 
									
										
										
										
											2002-04-27 18:44:32 +00:00
										 |  |  |     _PyString_Resize(&repr, p - q); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return repr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_AsRawUnicodeEscapeString(PyObject *unicode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!PyUnicode_Check(unicode)) { | 
					
						
							|  |  |  | 	PyErr_BadArgument(); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return PyUnicode_EncodeRawUnicodeEscape(PyUnicode_AS_UNICODE(unicode), | 
					
						
							|  |  |  | 					    PyUnicode_GET_SIZE(unicode)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-08-30 10:23:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* --- Unicode Internal Codec ------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *_PyUnicode_DecodeUnicodeInternal(const char *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 					   Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2005-08-30 10:23:14 +00:00
										 |  |  | 					   const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const char *starts = s; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t startinpos; | 
					
						
							|  |  |  |     Py_ssize_t endinpos; | 
					
						
							|  |  |  |     Py_ssize_t outpos; | 
					
						
							| 
									
										
										
										
											2005-08-30 10:23:14 +00:00
										 |  |  |     PyUnicodeObject *v; | 
					
						
							|  |  |  |     Py_UNICODE *p; | 
					
						
							|  |  |  |     const char *end; | 
					
						
							|  |  |  |     const char *reason; | 
					
						
							|  |  |  |     PyObject *errorHandler = NULL; | 
					
						
							|  |  |  |     PyObject *exc = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-08 01:12:10 +00:00
										 |  |  | #ifdef Py_UNICODE_WIDE
 | 
					
						
							|  |  |  |     Py_UNICODE unimax = PyUnicode_GetMax(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-04 12:17:45 +00:00
										 |  |  |     /* XXX overflow detection missing */ | 
					
						
							| 
									
										
										
										
											2005-08-30 10:23:14 +00:00
										 |  |  |     v = _PyUnicode_New((size+Py_UNICODE_SIZE-1)/ Py_UNICODE_SIZE); | 
					
						
							|  |  |  |     if (v == NULL) | 
					
						
							|  |  |  | 	goto onError; | 
					
						
							|  |  |  |     if (PyUnicode_GetSize((PyObject *)v) == 0) | 
					
						
							|  |  |  | 	return (PyObject *)v; | 
					
						
							|  |  |  |     p = PyUnicode_AS_UNICODE(v); | 
					
						
							|  |  |  |     end = s + size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (s < end) { | 
					
						
							| 
									
										
										
										
											2006-05-15 07:17:23 +00:00
										 |  |  |         memcpy(p, s, sizeof(Py_UNICODE)); | 
					
						
							| 
									
										
										
										
											2005-08-30 10:23:14 +00:00
										 |  |  |         /* We have to sanity check the raw data, otherwise doom looms for
 | 
					
						
							|  |  |  |            some malformed UCS-4 data. */ | 
					
						
							|  |  |  |         if ( | 
					
						
							|  |  |  |             #ifdef Py_UNICODE_WIDE
 | 
					
						
							|  |  |  |             *p > unimax || *p < 0 || | 
					
						
							|  |  |  |             #endif
 | 
					
						
							|  |  |  |             end-s < Py_UNICODE_SIZE | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |             startinpos = s - starts; | 
					
						
							|  |  |  |             if (end-s < Py_UNICODE_SIZE) { | 
					
						
							|  |  |  |                 endinpos = end-starts; | 
					
						
							|  |  |  |                 reason = "truncated input"; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else { | 
					
						
							|  |  |  |                 endinpos = s - starts + Py_UNICODE_SIZE; | 
					
						
							|  |  |  |                 reason = "illegal code point (> 0x10FFFF)"; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             outpos = p - PyUnicode_AS_UNICODE(v); | 
					
						
							|  |  |  |             if (unicode_decode_call_errorhandler( | 
					
						
							|  |  |  |                     errors, &errorHandler, | 
					
						
							|  |  |  |                     "unicode_internal", reason, | 
					
						
							|  |  |  |                     starts, size, &startinpos, &endinpos, &exc, &s, | 
					
						
							|  |  |  |                     (PyObject **)&v, &outpos, &p)) { | 
					
						
							|  |  |  |                 goto onError; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else { | 
					
						
							|  |  |  |             p++; | 
					
						
							|  |  |  |             s += Py_UNICODE_SIZE; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |     if (_PyUnicode_Resize(&v, p - PyUnicode_AS_UNICODE(v)) < 0) | 
					
						
							| 
									
										
										
										
											2005-08-30 10:23:14 +00:00
										 |  |  |         goto onError; | 
					
						
							|  |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							|  |  |  |     return (PyObject *)v; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							|  |  |  |     Py_XDECREF(v); | 
					
						
							|  |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* --- Latin-1 Codec ------------------------------------------------------ */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_DecodeLatin1(const char *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 				 Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 				 const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyUnicodeObject *v; | 
					
						
							|  |  |  |     Py_UNICODE *p; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     /* Latin-1 is equivalent to the first 256 ordinals in Unicode. */ | 
					
						
							| 
									
										
										
										
											2003-12-19 01:59:56 +00:00
										 |  |  |     if (size == 1) { | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  | 	Py_UNICODE r = *(unsigned char*)s; | 
					
						
							|  |  |  | 	return PyUnicode_FromUnicode(&r, 1); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     v = _PyUnicode_New(size); | 
					
						
							|  |  |  |     if (v == NULL) | 
					
						
							|  |  |  | 	goto onError; | 
					
						
							|  |  |  |     if (size == 0) | 
					
						
							|  |  |  | 	return (PyObject *)v; | 
					
						
							|  |  |  |     p = PyUnicode_AS_UNICODE(v); | 
					
						
							|  |  |  |     while (size-- > 0) | 
					
						
							|  |  |  | 	*p++ = (unsigned char)*s++; | 
					
						
							|  |  |  |     return (PyObject *)v; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |  onError: | 
					
						
							|  |  |  |     Py_XDECREF(v); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | /* create or adjust a UnicodeEncodeError */ | 
					
						
							|  |  |  | static void make_encode_exception(PyObject **exceptionObject, | 
					
						
							|  |  |  |     const char *encoding, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     const Py_UNICODE *unicode, Py_ssize_t size, | 
					
						
							|  |  |  |     Py_ssize_t startpos, Py_ssize_t endpos, | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     const char *reason) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (*exceptionObject == NULL) { | 
					
						
							|  |  |  | 	*exceptionObject = PyUnicodeEncodeError_Create( | 
					
						
							|  |  |  | 	    encoding, unicode, size, startpos, endpos, reason); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     else { | 
					
						
							|  |  |  | 	if (PyUnicodeEncodeError_SetStart(*exceptionObject, startpos)) | 
					
						
							|  |  |  | 	    goto onError; | 
					
						
							|  |  |  | 	if (PyUnicodeEncodeError_SetEnd(*exceptionObject, endpos)) | 
					
						
							|  |  |  | 	    goto onError; | 
					
						
							|  |  |  | 	if (PyUnicodeEncodeError_SetReason(*exceptionObject, reason)) | 
					
						
							|  |  |  | 	    goto onError; | 
					
						
							|  |  |  | 	return; | 
					
						
							|  |  |  | 	onError: | 
					
						
							|  |  |  | 	Py_DECREF(*exceptionObject); | 
					
						
							|  |  |  | 	*exceptionObject = NULL; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* raises a UnicodeEncodeError */ | 
					
						
							|  |  |  | static void raise_encode_exception(PyObject **exceptionObject, | 
					
						
							|  |  |  |     const char *encoding, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     const Py_UNICODE *unicode, Py_ssize_t size, | 
					
						
							|  |  |  |     Py_ssize_t startpos, Py_ssize_t endpos, | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     const char *reason) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     make_encode_exception(exceptionObject, | 
					
						
							|  |  |  | 	encoding, unicode, size, startpos, endpos, reason); | 
					
						
							|  |  |  |     if (*exceptionObject != NULL) | 
					
						
							|  |  |  | 	PyCodec_StrictErrors(*exceptionObject); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* error handling callback helper:
 | 
					
						
							|  |  |  |    build arguments, call the callback and check the arguments, | 
					
						
							|  |  |  |    put the result into newpos and return the replacement string, which | 
					
						
							|  |  |  |    has to be freed by the caller */ | 
					
						
							|  |  |  | static PyObject *unicode_encode_call_errorhandler(const char *errors, | 
					
						
							|  |  |  |     PyObject **errorHandler, | 
					
						
							|  |  |  |     const char *encoding, const char *reason, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     const Py_UNICODE *unicode, Py_ssize_t size, PyObject **exceptionObject, | 
					
						
							|  |  |  |     Py_ssize_t startpos, Py_ssize_t endpos, | 
					
						
							|  |  |  |     Py_ssize_t *newpos) | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     static char *argparse = "O!n;encoding error handler must return (unicode, int) tuple"; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     PyObject *restuple; | 
					
						
							|  |  |  |     PyObject *resunicode; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (*errorHandler == NULL) { | 
					
						
							|  |  |  | 	*errorHandler = PyCodec_LookupError(errors); | 
					
						
							|  |  |  |         if (*errorHandler == NULL) | 
					
						
							|  |  |  | 	    return NULL; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     make_encode_exception(exceptionObject, | 
					
						
							|  |  |  | 	encoding, unicode, size, startpos, endpos, reason); | 
					
						
							|  |  |  |     if (*exceptionObject == NULL) | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     restuple = PyObject_CallFunctionObjArgs( | 
					
						
							|  |  |  | 	*errorHandler, *exceptionObject, NULL); | 
					
						
							|  |  |  |     if (restuple == NULL) | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     if (!PyTuple_Check(restuple)) { | 
					
						
							|  |  |  | 	PyErr_Format(PyExc_TypeError, &argparse[4]); | 
					
						
							|  |  |  | 	Py_DECREF(restuple); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     if (!PyArg_ParseTuple(restuple, argparse, &PyUnicode_Type, | 
					
						
							|  |  |  | 	&resunicode, newpos)) { | 
					
						
							|  |  |  | 	Py_DECREF(restuple); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (*newpos<0) | 
					
						
							| 
									
										
										
										
											2003-01-31 17:19:08 +00:00
										 |  |  | 	*newpos = size+*newpos; | 
					
						
							|  |  |  |     if (*newpos<0 || *newpos>size) { | 
					
						
							| 
									
										
										
										
											2006-02-16 06:54:25 +00:00
										 |  |  | 	PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", *newpos); | 
					
						
							| 
									
										
										
										
											2003-01-31 17:19:08 +00:00
										 |  |  | 	Py_DECREF(restuple); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_INCREF(resunicode); | 
					
						
							|  |  |  |     Py_DECREF(restuple); | 
					
						
							|  |  |  |     return resunicode; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | static PyObject *unicode_encode_ucs1(const Py_UNICODE *p, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 				 Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 				 const char *errors, | 
					
						
							|  |  |  | 				 int limit) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     /* output object */ | 
					
						
							|  |  |  |     PyObject *res; | 
					
						
							|  |  |  |     /* pointers to the beginning and end+1 of input */ | 
					
						
							|  |  |  |     const Py_UNICODE *startp = p; | 
					
						
							|  |  |  |     const Py_UNICODE *endp = p + size; | 
					
						
							|  |  |  |     /* pointer to the beginning of the unencodable characters */ | 
					
						
							|  |  |  |     /* const Py_UNICODE *badp = NULL; */ | 
					
						
							|  |  |  |     /* pointer into the output */ | 
					
						
							|  |  |  |     char *str; | 
					
						
							|  |  |  |     /* current output position */ | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t respos = 0; | 
					
						
							|  |  |  |     Py_ssize_t ressize; | 
					
						
							| 
									
										
										
										
											2006-04-11 07:42:36 +00:00
										 |  |  |     const char *encoding = (limit == 256) ? "latin-1" : "ascii"; | 
					
						
							|  |  |  |     const char *reason = (limit == 256) ? "ordinal not in range(256)" : "ordinal not in range(128)"; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     PyObject *errorHandler = NULL; | 
					
						
							|  |  |  |     PyObject *exc = NULL; | 
					
						
							|  |  |  |     /* the following variable is used for caching string comparisons
 | 
					
						
							|  |  |  |      * -1=not initialized, 0=unknown, 1=strict, 2=replace, 3=ignore, 4=xmlcharrefreplace */ | 
					
						
							|  |  |  |     int known_errorHandler = -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* allocate enough for a simple encoding without
 | 
					
						
							|  |  |  |        replacements, if we need more, we'll resize */ | 
					
						
							|  |  |  |     res = PyString_FromStringAndSize(NULL, size); | 
					
						
							|  |  |  |     if (res == NULL) | 
					
						
							|  |  |  |         goto onError; | 
					
						
							| 
									
										
										
										
											2000-08-14 11:29:19 +00:00
										 |  |  |     if (size == 0) | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	return res; | 
					
						
							|  |  |  |     str = PyString_AS_STRING(res); | 
					
						
							|  |  |  |     ressize = size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (p<endp) { | 
					
						
							|  |  |  | 	Py_UNICODE c = *p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* can we encode this? */ | 
					
						
							|  |  |  | 	if (c<limit) { | 
					
						
							|  |  |  | 	    /* no overflow check, because we know that the space is enough */ | 
					
						
							|  |  |  | 	    *str++ = (char)c; | 
					
						
							|  |  |  | 	    ++p; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	    Py_ssize_t unicodepos = p-startp; | 
					
						
							|  |  |  | 	    Py_ssize_t requiredsize; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    PyObject *repunicode; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	    Py_ssize_t repsize; | 
					
						
							|  |  |  | 	    Py_ssize_t newpos; | 
					
						
							|  |  |  | 	    Py_ssize_t respos; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    Py_UNICODE *uni2; | 
					
						
							|  |  |  | 	    /* startpos for collecting unencodable chars */ | 
					
						
							|  |  |  | 	    const Py_UNICODE *collstart = p; | 
					
						
							|  |  |  | 	    const Py_UNICODE *collend = p; | 
					
						
							|  |  |  | 	    /* find all unecodable characters */ | 
					
						
							|  |  |  | 	    while ((collend < endp) && ((*collend)>=limit)) | 
					
						
							|  |  |  | 		++collend; | 
					
						
							|  |  |  | 	    /* cache callback name lookup (if not done yet, i.e. it's the first error) */ | 
					
						
							|  |  |  | 	    if (known_errorHandler==-1) { | 
					
						
							|  |  |  | 		if ((errors==NULL) || (!strcmp(errors, "strict"))) | 
					
						
							|  |  |  | 		    known_errorHandler = 1; | 
					
						
							|  |  |  | 		else if (!strcmp(errors, "replace")) | 
					
						
							|  |  |  | 		    known_errorHandler = 2; | 
					
						
							|  |  |  | 		else if (!strcmp(errors, "ignore")) | 
					
						
							|  |  |  | 		    known_errorHandler = 3; | 
					
						
							|  |  |  | 		else if (!strcmp(errors, "xmlcharrefreplace")) | 
					
						
							|  |  |  | 		    known_errorHandler = 4; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		    known_errorHandler = 0; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    switch (known_errorHandler) { | 
					
						
							|  |  |  | 		case 1: /* strict */ | 
					
						
							|  |  |  | 		    raise_encode_exception(&exc, encoding, startp, size, collstart-startp, collend-startp, reason); | 
					
						
							|  |  |  | 		    goto onError; | 
					
						
							|  |  |  | 		case 2: /* replace */ | 
					
						
							|  |  |  | 		    while (collstart++<collend) | 
					
						
							|  |  |  | 			*str++ = '?'; /* fall through */ | 
					
						
							|  |  |  | 		case 3: /* ignore */ | 
					
						
							|  |  |  | 		    p = collend; | 
					
						
							|  |  |  | 		    break; | 
					
						
							|  |  |  | 		case 4: /* xmlcharrefreplace */ | 
					
						
							|  |  |  | 		    respos = str-PyString_AS_STRING(res); | 
					
						
							|  |  |  | 		    /* determine replacement size (temporarily (mis)uses p) */ | 
					
						
							|  |  |  | 		    for (p = collstart, repsize = 0; p < collend; ++p) { | 
					
						
							|  |  |  | 			if (*p<10) | 
					
						
							|  |  |  | 			    repsize += 2+1+1; | 
					
						
							|  |  |  | 			else if (*p<100) | 
					
						
							|  |  |  | 			    repsize += 2+2+1; | 
					
						
							|  |  |  | 			else if (*p<1000) | 
					
						
							|  |  |  | 			    repsize += 2+3+1; | 
					
						
							| 
									
										
										
										
											2003-12-22 01:31:13 +00:00
										 |  |  | 			else if (*p<10000) | 
					
						
							|  |  |  | 			    repsize += 2+4+1; | 
					
						
							| 
									
										
										
										
											2003-12-19 01:59:56 +00:00
										 |  |  | #ifndef Py_UNICODE_WIDE
 | 
					
						
							|  |  |  | 			else | 
					
						
							| 
									
										
										
										
											2003-12-22 01:31:13 +00:00
										 |  |  | 			    repsize += 2+5+1; | 
					
						
							| 
									
										
										
										
											2003-12-19 01:59:56 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 			else if (*p<100000) | 
					
						
							|  |  |  | 			    repsize += 2+5+1; | 
					
						
							|  |  |  | 			else if (*p<1000000) | 
					
						
							|  |  |  | 			    repsize += 2+6+1; | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 			    repsize += 2+7+1; | 
					
						
							| 
									
										
										
										
											2003-12-19 01:59:56 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		    } | 
					
						
							|  |  |  | 		    requiredsize = respos+repsize+(endp-collend); | 
					
						
							|  |  |  | 		    if (requiredsize > ressize) { | 
					
						
							|  |  |  | 			if (requiredsize<2*ressize) | 
					
						
							|  |  |  | 			    requiredsize = 2*ressize; | 
					
						
							|  |  |  | 			if (_PyString_Resize(&res, requiredsize)) | 
					
						
							|  |  |  | 			    goto onError; | 
					
						
							|  |  |  | 			str = PyString_AS_STRING(res) + respos; | 
					
						
							|  |  |  | 			ressize = requiredsize; | 
					
						
							|  |  |  | 		    } | 
					
						
							|  |  |  | 		    /* generate replacement (temporarily (mis)uses p) */ | 
					
						
							|  |  |  | 		    for (p = collstart; p < collend; ++p) { | 
					
						
							|  |  |  | 			str += sprintf(str, "&#%d;", (int)*p); | 
					
						
							|  |  |  | 		    } | 
					
						
							|  |  |  | 		    p = collend; | 
					
						
							|  |  |  | 		    break; | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 		    repunicode = unicode_encode_call_errorhandler(errors, &errorHandler, | 
					
						
							|  |  |  | 			encoding, reason, startp, size, &exc, | 
					
						
							|  |  |  | 			collstart-startp, collend-startp, &newpos); | 
					
						
							|  |  |  | 		    if (repunicode == NULL) | 
					
						
							|  |  |  | 			goto onError; | 
					
						
							|  |  |  | 		    /* need more space? (at least enough for what we
 | 
					
						
							|  |  |  | 		       have+the replacement+the rest of the string, so | 
					
						
							|  |  |  | 		       we won't have to check space for encodable characters) */ | 
					
						
							|  |  |  | 		    respos = str-PyString_AS_STRING(res); | 
					
						
							|  |  |  | 		    repsize = PyUnicode_GET_SIZE(repunicode); | 
					
						
							|  |  |  | 		    requiredsize = respos+repsize+(endp-collend); | 
					
						
							|  |  |  | 		    if (requiredsize > ressize) { | 
					
						
							|  |  |  | 			if (requiredsize<2*ressize) | 
					
						
							|  |  |  | 			    requiredsize = 2*ressize; | 
					
						
							|  |  |  | 			if (_PyString_Resize(&res, requiredsize)) { | 
					
						
							|  |  |  | 			    Py_DECREF(repunicode); | 
					
						
							|  |  |  | 			    goto onError; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			str = PyString_AS_STRING(res) + respos; | 
					
						
							|  |  |  | 			ressize = requiredsize; | 
					
						
							|  |  |  | 		    } | 
					
						
							|  |  |  | 		    /* check if there is anything unencodable in the replacement
 | 
					
						
							|  |  |  | 		       and copy it to the output */ | 
					
						
							|  |  |  | 		    for (uni2 = PyUnicode_AS_UNICODE(repunicode);repsize-->0; ++uni2, ++str) { | 
					
						
							|  |  |  | 			c = *uni2; | 
					
						
							|  |  |  | 			if (c >= limit) { | 
					
						
							|  |  |  | 			    raise_encode_exception(&exc, encoding, startp, size, | 
					
						
							|  |  |  | 				unicodepos, unicodepos+1, reason); | 
					
						
							|  |  |  | 			    Py_DECREF(repunicode); | 
					
						
							|  |  |  | 			    goto onError; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			*str = (char)c; | 
					
						
							|  |  |  | 		    } | 
					
						
							|  |  |  | 		    p = startp + newpos; | 
					
						
							|  |  |  | 		    Py_DECREF(repunicode); | 
					
						
							|  |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     /* Resize if we allocated to much */ | 
					
						
							|  |  |  |     respos = str-PyString_AS_STRING(res); | 
					
						
							|  |  |  |     if (respos<ressize) | 
					
						
							|  |  |  |        /* If this falls res will be NULL */ | 
					
						
							|  |  |  | 	_PyString_Resize(&res, respos); | 
					
						
							|  |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							|  |  |  |     return res; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     onError: | 
					
						
							|  |  |  |     Py_XDECREF(res); | 
					
						
							|  |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | PyObject *PyUnicode_EncodeLatin1(const Py_UNICODE *p, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 				 Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 				 const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return unicode_encode_ucs1(p, size, errors, 256); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | PyObject *PyUnicode_AsLatin1String(PyObject *unicode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!PyUnicode_Check(unicode)) { | 
					
						
							|  |  |  | 	PyErr_BadArgument(); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return PyUnicode_EncodeLatin1(PyUnicode_AS_UNICODE(unicode), | 
					
						
							|  |  |  | 				  PyUnicode_GET_SIZE(unicode), | 
					
						
							|  |  |  | 				  NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* --- 7-bit ASCII Codec -------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_DecodeASCII(const char *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 				Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 				const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     const char *starts = s; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     PyUnicodeObject *v; | 
					
						
							|  |  |  |     Py_UNICODE *p; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t startinpos; | 
					
						
							|  |  |  |     Py_ssize_t endinpos; | 
					
						
							|  |  |  |     Py_ssize_t outpos; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     const char *e; | 
					
						
							|  |  |  |     PyObject *errorHandler = NULL; | 
					
						
							|  |  |  |     PyObject *exc = NULL; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     /* ASCII is equivalent to the first 128 ordinals in Unicode. */ | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  |     if (size == 1 && *(unsigned char*)s < 128) { | 
					
						
							|  |  |  | 	Py_UNICODE r = *(unsigned char*)s; | 
					
						
							|  |  |  | 	return PyUnicode_FromUnicode(&r, 1); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     v = _PyUnicode_New(size); | 
					
						
							|  |  |  |     if (v == NULL) | 
					
						
							|  |  |  | 	goto onError; | 
					
						
							|  |  |  |     if (size == 0) | 
					
						
							|  |  |  | 	return (PyObject *)v; | 
					
						
							|  |  |  |     p = PyUnicode_AS_UNICODE(v); | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     e = s + size; | 
					
						
							|  |  |  |     while (s < e) { | 
					
						
							|  |  |  | 	register unsigned char c = (unsigned char)*s; | 
					
						
							|  |  |  | 	if (c < 128) { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    *p++ = c; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    ++s; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 	    startinpos = s-starts; | 
					
						
							|  |  |  | 	    endinpos = startinpos + 1; | 
					
						
							| 
									
										
										
										
											2003-09-16 19:41:39 +00:00
										 |  |  | 	    outpos = p - (Py_UNICODE *)PyUnicode_AS_UNICODE(v); | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    if (unicode_decode_call_errorhandler( | 
					
						
							|  |  |  | 		 errors, &errorHandler, | 
					
						
							|  |  |  | 		 "ascii", "ordinal not in range(128)", | 
					
						
							|  |  |  | 		 starts, size, &startinpos, &endinpos, &exc, &s, | 
					
						
							|  |  |  | 		 (PyObject **)&v, &outpos, &p)) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		goto onError; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-04-10 13:51:10 +00:00
										 |  |  |     if (p - PyUnicode_AS_UNICODE(v) < PyString_GET_SIZE(v)) | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  | 	if (_PyUnicode_Resize(&v, p - PyUnicode_AS_UNICODE(v)) < 0) | 
					
						
							| 
									
										
										
										
											2000-04-10 13:51:10 +00:00
										 |  |  | 	    goto onError; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return (PyObject *)v; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |  onError: | 
					
						
							|  |  |  |     Py_XDECREF(v); | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_EncodeASCII(const Py_UNICODE *p, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 				Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 				const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     return unicode_encode_ucs1(p, size, errors, 128); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_AsASCIIString(PyObject *unicode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!PyUnicode_Check(unicode)) { | 
					
						
							|  |  |  | 	PyErr_BadArgument(); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return PyUnicode_EncodeASCII(PyUnicode_AS_UNICODE(unicode), | 
					
						
							|  |  |  | 				 PyUnicode_GET_SIZE(unicode), | 
					
						
							|  |  |  | 				 NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-30 15:26:10 +00:00
										 |  |  | #if defined(MS_WINDOWS) && defined(HAVE_USABLE_WCHAR_T)
 | 
					
						
							| 
									
										
										
										
											2000-03-31 17:24:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-28 02:01:52 +00:00
										 |  |  | /* --- MBCS codecs for Windows -------------------------------------------- */ | 
					
						
							| 
									
										
										
										
											2000-03-31 17:24:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-14 05:21:04 +00:00
										 |  |  | #if SIZEOF_INT < SIZEOF_SSIZE_T
 | 
					
						
							|  |  |  | #define NEED_RETRY
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* XXX This code is limited to "true" double-byte encodings, as
 | 
					
						
							|  |  |  |    a) it assumes an incomplete character consists of a single byte, and | 
					
						
							|  |  |  |    b) IsDBCSLeadByte (probably) does not work for non-DBCS multi-byte | 
					
						
							|  |  |  |       encodings, see IsDBCSLeadByteEx documentation. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int is_dbcs_lead_byte(const char *s, int offset) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const char *curr = s + offset; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (IsDBCSLeadByte(*curr)) { | 
					
						
							|  |  |  | 	const char *prev = CharPrev(s, curr); | 
					
						
							|  |  |  | 	return (prev == curr) || !IsDBCSLeadByte(*prev) || (curr - prev == 2); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Decode MBCS string into unicode object. If 'final' is set, converts | 
					
						
							|  |  |  |  * trailing lead-byte too. Returns consumed size if succeed, -1 otherwise. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int decode_mbcs(PyUnicodeObject **v, | 
					
						
							|  |  |  | 			const char *s, /* MBCS string */ | 
					
						
							|  |  |  | 			int size, /* sizeof MBCS string */ | 
					
						
							|  |  |  | 			int final) | 
					
						
							| 
									
										
										
										
											2000-03-28 02:01:52 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     Py_UNICODE *p; | 
					
						
							| 
									
										
										
										
											2006-06-14 05:21:04 +00:00
										 |  |  |     Py_ssize_t n = 0; | 
					
						
							|  |  |  |     int usize = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert(size >= 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Skip trailing lead-byte unless 'final' is set */ | 
					
						
							|  |  |  |     if (!final && size >= 1 && is_dbcs_lead_byte(s, size - 1)) | 
					
						
							|  |  |  | 	--size; | 
					
						
							| 
									
										
										
										
											2000-03-28 02:01:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* First get the size of the result */ | 
					
						
							| 
									
										
										
										
											2006-06-14 05:21:04 +00:00
										 |  |  |     if (size > 0) { | 
					
						
							|  |  |  | 	usize = MultiByteToWideChar(CP_ACP, 0, s, size, NULL, 0); | 
					
						
							|  |  |  | 	if (usize == 0) { | 
					
						
							|  |  |  | 	    PyErr_SetFromWindowsErrWithFilename(0, NULL); | 
					
						
							|  |  |  | 	    return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-03-28 02:01:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-14 05:21:04 +00:00
										 |  |  |     if (*v == NULL) { | 
					
						
							|  |  |  | 	/* Create unicode object */ | 
					
						
							|  |  |  | 	*v = _PyUnicode_New(usize); | 
					
						
							|  |  |  | 	if (*v == NULL) | 
					
						
							|  |  |  | 	    return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  | 	/* Extend unicode object */ | 
					
						
							|  |  |  | 	n = PyUnicode_GET_SIZE(*v); | 
					
						
							|  |  |  | 	if (_PyUnicode_Resize(v, n + usize) < 0) | 
					
						
							|  |  |  | 	    return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Do the conversion */ | 
					
						
							|  |  |  |     if (size > 0) { | 
					
						
							|  |  |  | 	p = PyUnicode_AS_UNICODE(*v) + n; | 
					
						
							|  |  |  | 	if (0 == MultiByteToWideChar(CP_ACP, 0, s, size, p, usize)) { | 
					
						
							|  |  |  | 	    PyErr_SetFromWindowsErrWithFilename(0, NULL); | 
					
						
							|  |  |  | 	    return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_DecodeMBCSStateful(const char *s, | 
					
						
							|  |  |  | 					Py_ssize_t size, | 
					
						
							|  |  |  | 					const char *errors, | 
					
						
							|  |  |  | 					Py_ssize_t *consumed) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyUnicodeObject *v = NULL; | 
					
						
							|  |  |  |     int done; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (consumed) | 
					
						
							|  |  |  | 	*consumed = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef NEED_RETRY
 | 
					
						
							|  |  |  |   retry: | 
					
						
							|  |  |  |     if (size > INT_MAX) | 
					
						
							|  |  |  | 	done = decode_mbcs(&v, s, INT_MAX, 0); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	done = decode_mbcs(&v, s, (int)size, !consumed); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (done < 0) { | 
					
						
							|  |  |  |         Py_XDECREF(v); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (consumed) | 
					
						
							|  |  |  | 	*consumed += done; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef NEED_RETRY
 | 
					
						
							|  |  |  |     if (size > INT_MAX) { | 
					
						
							|  |  |  | 	s += done; | 
					
						
							|  |  |  | 	size -= done; | 
					
						
							|  |  |  | 	goto retry; | 
					
						
							| 
									
										
										
										
											2000-03-28 02:01:52 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-06-14 05:21:04 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2000-03-28 02:01:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return (PyObject *)v; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-14 05:21:04 +00:00
										 |  |  | PyObject *PyUnicode_DecodeMBCS(const char *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 				Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2000-03-28 02:01:52 +00:00
										 |  |  | 				const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-06-14 05:21:04 +00:00
										 |  |  |     return PyUnicode_DecodeMBCSStateful(s, size, errors, NULL); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2000-05-04 15:52:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-14 05:21:04 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Convert unicode into string object (MBCS). | 
					
						
							|  |  |  |  * Returns 0 if succeed, -1 otherwise. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int encode_mbcs(PyObject **repr, | 
					
						
							|  |  |  | 			const Py_UNICODE *p, /* unicode */ | 
					
						
							|  |  |  | 			int size) /* size of unicode */ | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int mbcssize = 0; | 
					
						
							|  |  |  |     Py_ssize_t n = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert(size >= 0); | 
					
						
							| 
									
										
										
										
											2000-03-28 02:01:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* First get the size of the result */ | 
					
						
							| 
									
										
										
										
											2006-06-14 05:21:04 +00:00
										 |  |  |     if (size > 0) { | 
					
						
							|  |  |  | 	mbcssize = WideCharToMultiByte(CP_ACP, 0, p, size, NULL, 0, NULL, NULL); | 
					
						
							|  |  |  | 	if (mbcssize == 0) { | 
					
						
							|  |  |  | 	    PyErr_SetFromWindowsErrWithFilename(0, NULL); | 
					
						
							|  |  |  | 	    return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-03-28 02:01:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-14 05:21:04 +00:00
										 |  |  |     if (*repr == NULL) { | 
					
						
							|  |  |  | 	/* Create string object */ | 
					
						
							|  |  |  | 	*repr = PyString_FromStringAndSize(NULL, mbcssize); | 
					
						
							|  |  |  | 	if (*repr == NULL) | 
					
						
							|  |  |  | 	    return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  | 	/* Extend string object */ | 
					
						
							|  |  |  | 	n = PyString_Size(*repr); | 
					
						
							|  |  |  | 	if (_PyString_Resize(repr, n + mbcssize) < 0) | 
					
						
							|  |  |  | 	    return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-03-28 02:01:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Do the conversion */ | 
					
						
							| 
									
										
										
										
											2006-06-14 05:21:04 +00:00
										 |  |  |     if (size > 0) { | 
					
						
							|  |  |  | 	char *s = PyString_AS_STRING(*repr) + n; | 
					
						
							|  |  |  | 	if (0 == WideCharToMultiByte(CP_ACP, 0, p, size, s, mbcssize, NULL, NULL)) { | 
					
						
							|  |  |  | 	    PyErr_SetFromWindowsErrWithFilename(0, NULL); | 
					
						
							|  |  |  | 	    return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2000-03-28 02:01:52 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-06-14 05:21:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_EncodeMBCS(const Py_UNICODE *p, | 
					
						
							|  |  |  | 				Py_ssize_t size, | 
					
						
							|  |  |  | 				const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *repr = NULL; | 
					
						
							|  |  |  |     int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef NEED_RETRY
 | 
					
						
							|  |  |  |  retry: | 
					
						
							|  |  |  |     if (size > INT_MAX) | 
					
						
							|  |  |  | 	ret = encode_mbcs(&repr, p, INT_MAX); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	ret = encode_mbcs(&repr, p, (int)size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ret < 0) { | 
					
						
							|  |  |  | 	Py_XDECREF(repr); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef NEED_RETRY
 | 
					
						
							|  |  |  |     if (size > INT_MAX) { | 
					
						
							|  |  |  | 	p += INT_MAX; | 
					
						
							|  |  |  | 	size -= INT_MAX; | 
					
						
							|  |  |  | 	goto retry; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-28 02:01:52 +00:00
										 |  |  |     return repr; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2000-03-31 17:24:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-07-01 00:13:27 +00:00
										 |  |  | PyObject *PyUnicode_AsMBCSString(PyObject *unicode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!PyUnicode_Check(unicode)) { | 
					
						
							|  |  |  |         PyErr_BadArgument(); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return PyUnicode_EncodeMBCS(PyUnicode_AS_UNICODE(unicode), | 
					
						
							|  |  |  | 				PyUnicode_GET_SIZE(unicode), | 
					
						
							|  |  |  | 				NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-14 05:21:04 +00:00
										 |  |  | #undef NEED_RETRY
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-30 15:26:10 +00:00
										 |  |  | #endif /* MS_WINDOWS */
 | 
					
						
							| 
									
										
										
										
											2000-03-28 02:01:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | /* --- Character Mapping Codec -------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_DecodeCharmap(const char *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 				  Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 				  PyObject *mapping, | 
					
						
							|  |  |  | 				  const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     const char *starts = s; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t startinpos; | 
					
						
							|  |  |  |     Py_ssize_t endinpos; | 
					
						
							|  |  |  |     Py_ssize_t outpos; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     const char *e; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     PyUnicodeObject *v; | 
					
						
							|  |  |  |     Py_UNICODE *p; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t extrachars = 0; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     PyObject *errorHandler = NULL; | 
					
						
							|  |  |  |     PyObject *exc = NULL; | 
					
						
							| 
									
										
										
										
											2005-10-06 20:29:57 +00:00
										 |  |  |     Py_UNICODE *mapstring = NULL; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t maplen = 0; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     /* Default to Latin-1 */ | 
					
						
							|  |  |  |     if (mapping == NULL) | 
					
						
							|  |  |  | 	return PyUnicode_DecodeLatin1(s, size, errors); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     v = _PyUnicode_New(size); | 
					
						
							|  |  |  |     if (v == NULL) | 
					
						
							|  |  |  | 	goto onError; | 
					
						
							|  |  |  |     if (size == 0) | 
					
						
							|  |  |  | 	return (PyObject *)v; | 
					
						
							|  |  |  |     p = PyUnicode_AS_UNICODE(v); | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     e = s + size; | 
					
						
							| 
									
										
										
										
											2005-10-06 20:29:57 +00:00
										 |  |  |     if (PyUnicode_CheckExact(mapping)) { | 
					
						
							|  |  |  | 	mapstring = PyUnicode_AS_UNICODE(mapping); | 
					
						
							|  |  |  | 	maplen = PyUnicode_GET_SIZE(mapping); | 
					
						
							|  |  |  | 	while (s < e) { | 
					
						
							|  |  |  | 	    unsigned char ch = *s; | 
					
						
							|  |  |  | 	    Py_UNICODE x = 0xfffe; /* illegal value */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	    if (ch < maplen) | 
					
						
							|  |  |  | 		x = mapstring[ch]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	    if (x == 0xfffe) { | 
					
						
							|  |  |  | 		/* undefined mapping */ | 
					
						
							|  |  |  | 		outpos = p-PyUnicode_AS_UNICODE(v); | 
					
						
							|  |  |  | 		startinpos = s-starts; | 
					
						
							|  |  |  | 		endinpos = startinpos+1; | 
					
						
							|  |  |  | 		if (unicode_decode_call_errorhandler( | 
					
						
							|  |  |  | 		     errors, &errorHandler, | 
					
						
							|  |  |  | 		     "charmap", "character maps to <undefined>", | 
					
						
							|  |  |  | 		     starts, size, &startinpos, &endinpos, &exc, &s, | 
					
						
							|  |  |  | 		     (PyObject **)&v, &outpos, &p)) { | 
					
						
							|  |  |  | 		    goto onError; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		continue; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    *p++ = x; | 
					
						
							|  |  |  | 	    ++s; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-10-06 20:29:57 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  | 	while (s < e) { | 
					
						
							|  |  |  | 	    unsigned char ch = *s; | 
					
						
							|  |  |  | 	    PyObject *w, *x; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-06 20:29:57 +00:00
										 |  |  | 	    /* Get mapping (char ordinal -> integer, Unicode char or None) */ | 
					
						
							|  |  |  | 	    w = PyInt_FromLong((long)ch); | 
					
						
							|  |  |  | 	    if (w == NULL) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		goto onError; | 
					
						
							| 
									
										
										
										
											2005-10-06 20:29:57 +00:00
										 |  |  | 	    x = PyObject_GetItem(mapping, w); | 
					
						
							|  |  |  | 	    Py_DECREF(w); | 
					
						
							|  |  |  | 	    if (x == NULL) { | 
					
						
							|  |  |  | 		if (PyErr_ExceptionMatches(PyExc_LookupError)) { | 
					
						
							|  |  |  | 		    /* No mapping found means: mapping is undefined. */ | 
					
						
							|  |  |  | 		    PyErr_Clear(); | 
					
						
							|  |  |  | 		    x = Py_None; | 
					
						
							|  |  |  | 		    Py_INCREF(x); | 
					
						
							|  |  |  | 		} else | 
					
						
							|  |  |  | 		    goto onError; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2005-10-06 20:29:57 +00:00
										 |  |  |      | 
					
						
							|  |  |  | 	    /* Apply mapping */ | 
					
						
							|  |  |  | 	    if (PyInt_Check(x)) { | 
					
						
							|  |  |  | 		long value = PyInt_AS_LONG(x); | 
					
						
							|  |  |  | 		if (value < 0 || value > 65535) { | 
					
						
							|  |  |  | 		    PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 				    "character mapping must be in range(65536)"); | 
					
						
							|  |  |  | 		    Py_DECREF(x); | 
					
						
							|  |  |  | 		    goto onError; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		*p++ = (Py_UNICODE)value; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2005-10-06 20:29:57 +00:00
										 |  |  | 	    else if (x == Py_None) { | 
					
						
							|  |  |  | 		/* undefined mapping */ | 
					
						
							|  |  |  | 		outpos = p-PyUnicode_AS_UNICODE(v); | 
					
						
							|  |  |  | 		startinpos = s-starts; | 
					
						
							|  |  |  | 		endinpos = startinpos+1; | 
					
						
							|  |  |  | 		if (unicode_decode_call_errorhandler( | 
					
						
							|  |  |  | 		     errors, &errorHandler, | 
					
						
							|  |  |  | 		     "charmap", "character maps to <undefined>", | 
					
						
							|  |  |  | 		     starts, size, &startinpos, &endinpos, &exc, &s, | 
					
						
							|  |  |  | 		     (PyObject **)&v, &outpos, &p)) { | 
					
						
							|  |  |  | 		    Py_DECREF(x); | 
					
						
							|  |  |  | 		    goto onError; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2005-11-28 22:15:56 +00:00
										 |  |  | 		Py_DECREF(x); | 
					
						
							| 
									
										
										
										
											2005-10-06 20:29:57 +00:00
										 |  |  | 		continue; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    else if (PyUnicode_Check(x)) { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 		Py_ssize_t targetsize = PyUnicode_GET_SIZE(x); | 
					
						
							| 
									
										
										
										
											2005-10-06 20:29:57 +00:00
										 |  |  |      | 
					
						
							|  |  |  | 		if (targetsize == 1) | 
					
						
							|  |  |  | 		    /* 1-1 mapping */ | 
					
						
							|  |  |  | 		    *p++ = *PyUnicode_AS_UNICODE(x); | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  | 		else if (targetsize > 1) { | 
					
						
							|  |  |  | 		    /* 1-n mapping */ | 
					
						
							|  |  |  | 		    if (targetsize > extrachars) { | 
					
						
							|  |  |  | 			/* resize first */ | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			Py_ssize_t oldpos = p - PyUnicode_AS_UNICODE(v); | 
					
						
							|  |  |  | 			Py_ssize_t needed = (targetsize - extrachars) + \ | 
					
						
							| 
									
										
										
										
											2005-10-06 20:29:57 +00:00
										 |  |  | 				     (targetsize << 2); | 
					
						
							|  |  |  | 			extrachars += needed; | 
					
						
							| 
									
										
										
										
											2006-10-04 12:17:45 +00:00
										 |  |  | 			/* XXX overflow detection missing */ | 
					
						
							| 
									
										
										
										
											2005-10-06 20:29:57 +00:00
										 |  |  | 			if (_PyUnicode_Resize(&v, | 
					
						
							|  |  |  | 					     PyUnicode_GET_SIZE(v) + needed) < 0) { | 
					
						
							|  |  |  | 			    Py_DECREF(x); | 
					
						
							|  |  |  | 			    goto onError; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			p = PyUnicode_AS_UNICODE(v) + oldpos; | 
					
						
							| 
									
										
										
										
											2001-01-16 11:54:12 +00:00
										 |  |  | 		    } | 
					
						
							| 
									
										
										
										
											2005-10-06 20:29:57 +00:00
										 |  |  | 		    Py_UNICODE_COPY(p, | 
					
						
							|  |  |  | 				    PyUnicode_AS_UNICODE(x), | 
					
						
							|  |  |  | 				    targetsize); | 
					
						
							|  |  |  | 		    p += targetsize; | 
					
						
							|  |  |  | 		    extrachars -= targetsize; | 
					
						
							| 
									
										
										
										
											2001-01-06 14:59:58 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2005-10-06 20:29:57 +00:00
										 |  |  | 		/* 1-0 mapping: skip the character */ | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    else { | 
					
						
							|  |  |  | 		/* wrong return value */ | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 		      "character mapping must return integer, None or unicode"); | 
					
						
							|  |  |  | 		Py_DECREF(x); | 
					
						
							|  |  |  | 		goto onError; | 
					
						
							| 
									
										
										
										
											2001-01-06 14:59:58 +00:00
										 |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    Py_DECREF(x); | 
					
						
							| 
									
										
										
										
											2005-10-06 20:29:57 +00:00
										 |  |  | 	    ++s; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (p - PyUnicode_AS_UNICODE(v) < PyUnicode_GET_SIZE(v)) | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  | 	if (_PyUnicode_Resize(&v, p - PyUnicode_AS_UNICODE(v)) < 0) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    goto onError; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return (PyObject *)v; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |  onError: | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     Py_XDECREF(v); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  | /* Charmap encoding: the lookup table */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct encoding_map{ | 
					
						
							|  |  |  |   PyObject_HEAD | 
					
						
							|  |  |  |   unsigned char level1[32]; | 
					
						
							|  |  |  |   int count2, count3; | 
					
						
							|  |  |  |   unsigned char level23[1]; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | encoding_map_size(PyObject *obj, PyObject* args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     struct encoding_map *map = (struct encoding_map*)obj; | 
					
						
							|  |  |  |     return PyInt_FromLong(sizeof(*map) - 1 + 16*map->count2 +  | 
					
						
							|  |  |  |                           128*map->count3); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyMethodDef encoding_map_methods[] = { | 
					
						
							|  |  |  | 	{"size", encoding_map_size, METH_NOARGS,  | 
					
						
							|  |  |  |          PyDoc_STR("Return the size (in bytes) of this object") }, | 
					
						
							|  |  |  |         { 0 } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | encoding_map_dealloc(PyObject* o) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject_FREE(o); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyTypeObject EncodingMapType = { | 
					
						
							| 
									
										
										
										
											2007-07-21 06:55:02 +00:00
										 |  |  | 	PyVarObject_HEAD_INIT(NULL, 0) | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  |         "EncodingMap",          /*tp_name*/ | 
					
						
							|  |  |  |         sizeof(struct encoding_map),   /*tp_basicsize*/ | 
					
						
							|  |  |  |         0,                      /*tp_itemsize*/ | 
					
						
							|  |  |  |         /* methods */ | 
					
						
							|  |  |  |         encoding_map_dealloc,   /*tp_dealloc*/ | 
					
						
							|  |  |  |         0,                      /*tp_print*/ | 
					
						
							|  |  |  |         0,                      /*tp_getattr*/ | 
					
						
							|  |  |  |         0,                      /*tp_setattr*/ | 
					
						
							|  |  |  |         0,                      /*tp_compare*/ | 
					
						
							|  |  |  |         0,                      /*tp_repr*/ | 
					
						
							|  |  |  |         0,                      /*tp_as_number*/ | 
					
						
							|  |  |  |         0,                      /*tp_as_sequence*/ | 
					
						
							|  |  |  |         0,                      /*tp_as_mapping*/ | 
					
						
							|  |  |  |         0,                      /*tp_hash*/ | 
					
						
							|  |  |  |         0,                      /*tp_call*/ | 
					
						
							|  |  |  |         0,                      /*tp_str*/ | 
					
						
							|  |  |  |         0,                      /*tp_getattro*/ | 
					
						
							|  |  |  |         0,                      /*tp_setattro*/ | 
					
						
							|  |  |  |         0,                      /*tp_as_buffer*/ | 
					
						
							|  |  |  |         Py_TPFLAGS_DEFAULT,     /*tp_flags*/ | 
					
						
							|  |  |  |         0,                      /*tp_doc*/ | 
					
						
							|  |  |  |         0,                      /*tp_traverse*/ | 
					
						
							|  |  |  |         0,                      /*tp_clear*/ | 
					
						
							|  |  |  |         0,                      /*tp_richcompare*/ | 
					
						
							|  |  |  |         0,                      /*tp_weaklistoffset*/ | 
					
						
							|  |  |  |         0,                      /*tp_iter*/ | 
					
						
							|  |  |  |         0,                      /*tp_iternext*/ | 
					
						
							|  |  |  |         encoding_map_methods,   /*tp_methods*/ | 
					
						
							|  |  |  |         0,                      /*tp_members*/ | 
					
						
							|  |  |  |         0,                      /*tp_getset*/ | 
					
						
							|  |  |  |         0,                      /*tp_base*/ | 
					
						
							|  |  |  |         0,                      /*tp_dict*/ | 
					
						
							|  |  |  |         0,                      /*tp_descr_get*/ | 
					
						
							|  |  |  |         0,                      /*tp_descr_set*/ | 
					
						
							|  |  |  |         0,                      /*tp_dictoffset*/ | 
					
						
							|  |  |  |         0,                      /*tp_init*/ | 
					
						
							|  |  |  |         0,                      /*tp_alloc*/ | 
					
						
							|  |  |  |         0,                      /*tp_new*/ | 
					
						
							|  |  |  |         0,                      /*tp_free*/ | 
					
						
							|  |  |  |         0,                      /*tp_is_gc*/ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject* | 
					
						
							|  |  |  | PyUnicode_BuildEncodingMap(PyObject* string) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Py_UNICODE *decode; | 
					
						
							|  |  |  |     PyObject *result; | 
					
						
							|  |  |  |     struct encoding_map *mresult; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     int need_dict = 0; | 
					
						
							|  |  |  |     unsigned char level1[32]; | 
					
						
							|  |  |  |     unsigned char level2[512]; | 
					
						
							|  |  |  |     unsigned char *mlevel1, *mlevel2, *mlevel3; | 
					
						
							|  |  |  |     int count2 = 0, count3 = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PyUnicode_Check(string) || PyUnicode_GetSize(string) != 256) { | 
					
						
							|  |  |  |         PyErr_BadArgument(); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     decode = PyUnicode_AS_UNICODE(string); | 
					
						
							|  |  |  |     memset(level1, 0xFF, sizeof level1); | 
					
						
							|  |  |  |     memset(level2, 0xFF, sizeof level2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* If there isn't a one-to-one mapping of NULL to \0,
 | 
					
						
							|  |  |  |        or if there are non-BMP characters, we need to use | 
					
						
							|  |  |  |        a mapping dictionary. */ | 
					
						
							|  |  |  |     if (decode[0] != 0) | 
					
						
							|  |  |  |         need_dict = 1; | 
					
						
							|  |  |  |     for (i = 1; i < 256; i++) { | 
					
						
							|  |  |  |         int l1, l2; | 
					
						
							|  |  |  |         if (decode[i] == 0 | 
					
						
							|  |  |  |             #ifdef Py_UNICODE_WIDE
 | 
					
						
							|  |  |  |             || decode[i] > 0xFFFF | 
					
						
							|  |  |  |             #endif
 | 
					
						
							|  |  |  |         ) { | 
					
						
							|  |  |  |             need_dict = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (decode[i] == 0xFFFE) | 
					
						
							|  |  |  |             /* unmapped character */ | 
					
						
							|  |  |  |             continue; | 
					
						
							|  |  |  |         l1 = decode[i] >> 11; | 
					
						
							|  |  |  |         l2 = decode[i] >> 7; | 
					
						
							|  |  |  |         if (level1[l1] == 0xFF) | 
					
						
							|  |  |  |             level1[l1] = count2++; | 
					
						
							|  |  |  |         if (level2[l2] == 0xFF) | 
					
						
							|  |  |  |             level2[l2] = count3++;  | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (count2 >= 0xFF || count3 >= 0xFF) | 
					
						
							|  |  |  |         need_dict = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (need_dict) { | 
					
						
							|  |  |  |         PyObject *result = PyDict_New(); | 
					
						
							|  |  |  |         PyObject *key, *value; | 
					
						
							|  |  |  |         if (!result) | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |         for (i = 0; i < 256; i++) { | 
					
						
							|  |  |  |             key = value = NULL; | 
					
						
							|  |  |  |             key = PyInt_FromLong(decode[i]); | 
					
						
							|  |  |  |             value = PyInt_FromLong(i); | 
					
						
							|  |  |  |             if (!key || !value) | 
					
						
							|  |  |  |                 goto failed1; | 
					
						
							|  |  |  |             if (PyDict_SetItem(result, key, value) == -1) | 
					
						
							|  |  |  |                 goto failed1; | 
					
						
							| 
									
										
										
										
											2006-06-04 21:46:16 +00:00
										 |  |  |             Py_DECREF(key); | 
					
						
							|  |  |  |             Py_DECREF(value); | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         return result; | 
					
						
							|  |  |  |       failed1: | 
					
						
							|  |  |  |         Py_XDECREF(key); | 
					
						
							|  |  |  |         Py_XDECREF(value); | 
					
						
							|  |  |  |         Py_DECREF(result); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Create a three-level trie */ | 
					
						
							|  |  |  |     result = PyObject_MALLOC(sizeof(struct encoding_map) + | 
					
						
							|  |  |  |                              16*count2 + 128*count3 - 1); | 
					
						
							|  |  |  |     if (!result) | 
					
						
							|  |  |  |         return PyErr_NoMemory(); | 
					
						
							|  |  |  |     PyObject_Init(result, &EncodingMapType); | 
					
						
							|  |  |  |     mresult = (struct encoding_map*)result; | 
					
						
							|  |  |  |     mresult->count2 = count2; | 
					
						
							|  |  |  |     mresult->count3 = count3; | 
					
						
							|  |  |  |     mlevel1 = mresult->level1; | 
					
						
							|  |  |  |     mlevel2 = mresult->level23; | 
					
						
							|  |  |  |     mlevel3 = mresult->level23 + 16*count2; | 
					
						
							|  |  |  |     memcpy(mlevel1, level1, 32); | 
					
						
							|  |  |  |     memset(mlevel2, 0xFF, 16*count2); | 
					
						
							|  |  |  |     memset(mlevel3, 0, 128*count3); | 
					
						
							|  |  |  |     count3 = 0; | 
					
						
							|  |  |  |     for (i = 1; i < 256; i++) { | 
					
						
							|  |  |  |         int o1, o2, o3, i2, i3; | 
					
						
							|  |  |  |         if (decode[i] == 0xFFFE) | 
					
						
							|  |  |  |             /* unmapped character */ | 
					
						
							|  |  |  |             continue; | 
					
						
							|  |  |  |         o1 = decode[i]>>11; | 
					
						
							|  |  |  |         o2 = (decode[i]>>7) & 0xF; | 
					
						
							|  |  |  |         i2 = 16*mlevel1[o1] + o2; | 
					
						
							|  |  |  |         if (mlevel2[i2] == 0xFF) | 
					
						
							|  |  |  |             mlevel2[i2] = count3++; | 
					
						
							|  |  |  |         o3 = decode[i] & 0x7F; | 
					
						
							|  |  |  |         i3 = 128*mlevel2[i2] + o3; | 
					
						
							|  |  |  |         mlevel3[i3] = i; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | encoding_map_lookup(Py_UNICODE c, PyObject *mapping) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     struct encoding_map *map = (struct encoding_map*)mapping; | 
					
						
							|  |  |  |     int l1 = c>>11; | 
					
						
							|  |  |  |     int l2 = (c>>7) & 0xF; | 
					
						
							|  |  |  |     int l3 = c & 0x7F; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef Py_UNICODE_WIDE
 | 
					
						
							|  |  |  |     if (c > 0xFFFF) { | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     if (c == 0) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     /* level 1*/ | 
					
						
							|  |  |  |     i = map->level1[l1]; | 
					
						
							|  |  |  |     if (i == 0xFF) { | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* level 2*/ | 
					
						
							|  |  |  |     i = map->level23[16*i+l2]; | 
					
						
							|  |  |  |     if (i == 0xFF) { | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* level 3 */ | 
					
						
							|  |  |  |     i = map->level23[16*map->count2 + 128*i + l3]; | 
					
						
							|  |  |  |     if (i == 0) { | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return i; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | /* Lookup the character ch in the mapping. If the character
 | 
					
						
							|  |  |  |    can't be found, Py_None is returned (or NULL, if another | 
					
						
							| 
									
										
										
										
											2005-10-28 14:39:47 +00:00
										 |  |  |    error occurred). */ | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | static PyObject *charmapencode_lookup(Py_UNICODE c, PyObject *mapping) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *w = PyInt_FromLong((long)c); | 
					
						
							|  |  |  |     PyObject *x; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (w == NULL) | 
					
						
							|  |  |  | 	 return NULL; | 
					
						
							|  |  |  |     x = PyObject_GetItem(mapping, w); | 
					
						
							|  |  |  |     Py_DECREF(w); | 
					
						
							|  |  |  |     if (x == NULL) { | 
					
						
							|  |  |  | 	if (PyErr_ExceptionMatches(PyExc_LookupError)) { | 
					
						
							|  |  |  | 	    /* No mapping found means: mapping is undefined. */ | 
					
						
							|  |  |  | 	    PyErr_Clear(); | 
					
						
							|  |  |  | 	    x = Py_None; | 
					
						
							|  |  |  | 	    Py_INCREF(x); | 
					
						
							|  |  |  | 	    return x; | 
					
						
							|  |  |  | 	} else | 
					
						
							|  |  |  | 	    return NULL; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-01-08 22:01:33 +00:00
										 |  |  |     else if (x == Py_None) | 
					
						
							|  |  |  | 	return x; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     else if (PyInt_Check(x)) { | 
					
						
							|  |  |  | 	long value = PyInt_AS_LONG(x); | 
					
						
							|  |  |  | 	if (value < 0 || value > 255) { | 
					
						
							|  |  |  | 	    PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 			     "character mapping must be in range(256)"); | 
					
						
							|  |  |  | 	    Py_DECREF(x); | 
					
						
							|  |  |  | 	    return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return x; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     else if (PyString_Check(x)) | 
					
						
							|  |  |  | 	return x; | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  | 	/* wrong return value */ | 
					
						
							|  |  |  | 	PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 	      "character mapping must return integer, None or str"); | 
					
						
							|  |  |  | 	Py_DECREF(x); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | charmapencode_resize(PyObject **outobj, Py_ssize_t *outpos, Py_ssize_t requiredsize) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Py_ssize_t outsize = PyString_GET_SIZE(*outobj); | 
					
						
							|  |  |  | 	/* exponentially overallocate to minimize reallocations */ | 
					
						
							|  |  |  | 	if (requiredsize < 2*outsize) | 
					
						
							|  |  |  | 	    requiredsize = 2*outsize; | 
					
						
							|  |  |  | 	if (_PyString_Resize(outobj, requiredsize)) { | 
					
						
							|  |  |  | 	    return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef enum charmapencode_result {  | 
					
						
							|  |  |  |   enc_SUCCESS, enc_FAILED, enc_EXCEPTION  | 
					
						
							|  |  |  | }charmapencode_result; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | /* lookup the character, put the result in the output string and adjust
 | 
					
						
							|  |  |  |    various state variables. Reallocate the output string if not enough | 
					
						
							|  |  |  |    space is available. Return a new reference to the object that | 
					
						
							|  |  |  |    was put in the output buffer, or Py_None, if the mapping was undefined | 
					
						
							|  |  |  |    (in which case no character was written) or NULL, if a | 
					
						
							| 
									
										
										
										
											2005-11-02 16:36:12 +00:00
										 |  |  |    reallocation error occurred. The caller must decref the result */ | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | static | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  | charmapencode_result charmapencode_output(Py_UNICODE c, PyObject *mapping, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     PyObject **outobj, Py_ssize_t *outpos) | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  |     PyObject *rep; | 
					
						
							|  |  |  |     char *outstart; | 
					
						
							|  |  |  |     Py_ssize_t outsize = PyString_GET_SIZE(*outobj); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-19 02:37:44 +00:00
										 |  |  |     if (Py_TYPE(mapping) == &EncodingMapType) { | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  |         int res = encoding_map_lookup(c, mapping); | 
					
						
							|  |  |  | 	Py_ssize_t requiredsize = *outpos+1; | 
					
						
							|  |  |  |         if (res == -1) | 
					
						
							|  |  |  |             return enc_FAILED; | 
					
						
							|  |  |  | 	if (outsize<requiredsize)  | 
					
						
							|  |  |  | 	    if (!charmapencode_resize(outobj, outpos, requiredsize)) | 
					
						
							|  |  |  | 		return enc_EXCEPTION; | 
					
						
							|  |  |  |         outstart = PyString_AS_STRING(*outobj); | 
					
						
							|  |  |  | 	outstart[(*outpos)++] = (char)res; | 
					
						
							|  |  |  | 	return enc_SUCCESS; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     rep = charmapencode_lookup(c, mapping); | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     if (rep==NULL) | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  | 	return enc_EXCEPTION; | 
					
						
							|  |  |  |     else if (rep==Py_None) { | 
					
						
							|  |  |  | 	Py_DECREF(rep); | 
					
						
							|  |  |  | 	return enc_FAILED; | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	if (PyInt_Check(rep)) { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	    Py_ssize_t requiredsize = *outpos+1; | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  | 	    if (outsize<requiredsize) | 
					
						
							|  |  |  | 		if (!charmapencode_resize(outobj, outpos, requiredsize)) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		    Py_DECREF(rep); | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  | 		    return enc_EXCEPTION; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  |             outstart = PyString_AS_STRING(*outobj); | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    outstart[(*outpos)++] = (char)PyInt_AS_LONG(rep); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 	    const char *repchars = PyString_AS_STRING(rep); | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	    Py_ssize_t repsize = PyString_GET_SIZE(rep); | 
					
						
							|  |  |  | 	    Py_ssize_t requiredsize = *outpos+repsize; | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  | 	    if (outsize<requiredsize) | 
					
						
							|  |  |  | 		if (!charmapencode_resize(outobj, outpos, requiredsize)) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		    Py_DECREF(rep); | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  | 		    return enc_EXCEPTION; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  |             outstart = PyString_AS_STRING(*outobj); | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    memcpy(outstart + *outpos, repchars, repsize); | 
					
						
							|  |  |  | 	    *outpos += repsize; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-06-04 21:46:16 +00:00
										 |  |  |     Py_DECREF(rep); | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  |     return enc_SUCCESS; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* handle an error in PyUnicode_EncodeCharmap
 | 
					
						
							|  |  |  |    Return 0 on success, -1 on error */ | 
					
						
							|  |  |  | static | 
					
						
							|  |  |  | int charmap_encoding_error( | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     const Py_UNICODE *p, Py_ssize_t size, Py_ssize_t *inpos, PyObject *mapping, | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     PyObject **exceptionObject, | 
					
						
							| 
									
										
										
										
											2003-08-14 20:25:29 +00:00
										 |  |  |     int *known_errorHandler, PyObject **errorHandler, const char *errors, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     PyObject **res, Py_ssize_t *respos) | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject *repunicode = NULL; /* initialize to prevent gcc warning */ | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t repsize; | 
					
						
							|  |  |  |     Py_ssize_t newpos; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_UNICODE *uni2; | 
					
						
							|  |  |  |     /* startpos for collecting unencodable chars */ | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t collstartpos = *inpos; | 
					
						
							|  |  |  |     Py_ssize_t collendpos = *inpos+1; | 
					
						
							|  |  |  |     Py_ssize_t collpos; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     char *encoding = "charmap"; | 
					
						
							|  |  |  |     char *reason = "character maps to <undefined>"; | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  |     charmapencode_result x; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* find all unencodable characters */ | 
					
						
							|  |  |  |     while (collendpos < size) { | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  |         PyObject *rep; | 
					
						
							| 
									
										
										
										
											2007-12-19 02:37:44 +00:00
										 |  |  |         if (Py_TYPE(mapping) == &EncodingMapType) { | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  | 	    int res = encoding_map_lookup(p[collendpos], mapping); | 
					
						
							|  |  |  | 	    if (res != -1) | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	    ++collendpos; | 
					
						
							|  |  |  | 	    continue; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |              | 
					
						
							|  |  |  | 	rep = charmapencode_lookup(p[collendpos], mapping); | 
					
						
							|  |  |  | 	if (rep==NULL) | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    return -1; | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  | 	else if (rep!=Py_None) { | 
					
						
							|  |  |  | 	    Py_DECREF(rep); | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    break; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  | 	Py_DECREF(rep); | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	++collendpos; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* cache callback name lookup
 | 
					
						
							|  |  |  |      * (if not done yet, i.e. it's the first error) */ | 
					
						
							|  |  |  |     if (*known_errorHandler==-1) { | 
					
						
							|  |  |  | 	if ((errors==NULL) || (!strcmp(errors, "strict"))) | 
					
						
							|  |  |  | 	    *known_errorHandler = 1; | 
					
						
							|  |  |  | 	else if (!strcmp(errors, "replace")) | 
					
						
							|  |  |  | 	    *known_errorHandler = 2; | 
					
						
							|  |  |  | 	else if (!strcmp(errors, "ignore")) | 
					
						
							|  |  |  | 	    *known_errorHandler = 3; | 
					
						
							|  |  |  | 	else if (!strcmp(errors, "xmlcharrefreplace")) | 
					
						
							|  |  |  | 	    *known_errorHandler = 4; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	    *known_errorHandler = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     switch (*known_errorHandler) { | 
					
						
							|  |  |  | 	case 1: /* strict */ | 
					
						
							|  |  |  | 	    raise_encode_exception(exceptionObject, encoding, p, size, collstartpos, collendpos, reason); | 
					
						
							|  |  |  | 	    return -1; | 
					
						
							|  |  |  | 	case 2: /* replace */ | 
					
						
							|  |  |  | 	    for (collpos = collstartpos; collpos<collendpos; ++collpos) { | 
					
						
							|  |  |  | 		x = charmapencode_output('?', mapping, res, respos); | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  | 		if (x==enc_EXCEPTION) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		    return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  | 		else if (x==enc_FAILED) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		    raise_encode_exception(exceptionObject, encoding, p, size, collstartpos, collendpos, reason); | 
					
						
							|  |  |  | 		    return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    /* fall through */ | 
					
						
							|  |  |  | 	case 3: /* ignore */ | 
					
						
							|  |  |  | 	    *inpos = collendpos; | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	case 4: /* xmlcharrefreplace */ | 
					
						
							|  |  |  | 	    /* generate replacement (temporarily (mis)uses p) */ | 
					
						
							|  |  |  | 	    for (collpos = collstartpos; collpos < collendpos; ++collpos) { | 
					
						
							|  |  |  | 		char buffer[2+29+1+1]; | 
					
						
							|  |  |  | 		char *cp; | 
					
						
							|  |  |  | 		sprintf(buffer, "&#%d;", (int)p[collpos]); | 
					
						
							|  |  |  | 		for (cp = buffer; *cp; ++cp) { | 
					
						
							|  |  |  | 		    x = charmapencode_output(*cp, mapping, res, respos); | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  | 		    if (x==enc_EXCEPTION) | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 			return -1; | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  | 		    else if (x==enc_FAILED) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 			raise_encode_exception(exceptionObject, encoding, p, size, collstartpos, collendpos, reason); | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		    } | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    *inpos = collendpos; | 
					
						
							|  |  |  | 	    break; | 
					
						
							|  |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2003-08-14 20:25:29 +00:00
										 |  |  | 	    repunicode = unicode_encode_call_errorhandler(errors, errorHandler, | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		encoding, reason, p, size, exceptionObject, | 
					
						
							|  |  |  | 		collstartpos, collendpos, &newpos); | 
					
						
							|  |  |  | 	    if (repunicode == NULL) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	    /* generate replacement  */ | 
					
						
							|  |  |  | 	    repsize = PyUnicode_GET_SIZE(repunicode); | 
					
						
							|  |  |  | 	    for (uni2 = PyUnicode_AS_UNICODE(repunicode); repsize-->0; ++uni2) { | 
					
						
							|  |  |  | 		x = charmapencode_output(*uni2, mapping, res, respos); | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  | 		if (x==enc_EXCEPTION) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		    return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  | 		else if (x==enc_FAILED) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		    Py_DECREF(repunicode); | 
					
						
							|  |  |  | 		    raise_encode_exception(exceptionObject, encoding, p, size, collstartpos, collendpos, reason); | 
					
						
							|  |  |  | 		    return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    *inpos = newpos; | 
					
						
							|  |  |  | 	    Py_DECREF(repunicode); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_EncodeCharmap(const Py_UNICODE *p, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 				  Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 				  PyObject *mapping, | 
					
						
							|  |  |  | 				  const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     /* output object */ | 
					
						
							|  |  |  |     PyObject *res = NULL; | 
					
						
							|  |  |  |     /* current input position */ | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t inpos = 0; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     /* current output position */ | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t respos = 0; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     PyObject *errorHandler = NULL; | 
					
						
							|  |  |  |     PyObject *exc = NULL; | 
					
						
							|  |  |  |     /* the following variable is used for caching string comparisons
 | 
					
						
							|  |  |  |      * -1=not initialized, 0=unknown, 1=strict, 2=replace, | 
					
						
							|  |  |  |      * 3=ignore, 4=xmlcharrefreplace */ | 
					
						
							|  |  |  |     int known_errorHandler = -1; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Default to Latin-1 */ | 
					
						
							|  |  |  |     if (mapping == NULL) | 
					
						
							|  |  |  | 	return PyUnicode_EncodeLatin1(p, size, errors); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     /* allocate enough for a simple encoding without
 | 
					
						
							|  |  |  |        replacements, if we need more, we'll resize */ | 
					
						
							|  |  |  |     res = PyString_FromStringAndSize(NULL, size); | 
					
						
							|  |  |  |     if (res == NULL) | 
					
						
							|  |  |  |         goto onError; | 
					
						
							| 
									
										
										
										
											2000-08-14 11:29:19 +00:00
										 |  |  |     if (size == 0) | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	return res; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     while (inpos<size) { | 
					
						
							|  |  |  | 	/* try to encode it */ | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  | 	charmapencode_result x = charmapencode_output(p[inpos], mapping, &res, &respos); | 
					
						
							|  |  |  | 	if (x==enc_EXCEPTION) /* error */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    goto onError; | 
					
						
							| 
									
										
										
										
											2006-06-04 19:36:28 +00:00
										 |  |  | 	if (x==enc_FAILED) { /* unencodable character */ | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    if (charmap_encoding_error(p, size, &inpos, mapping, | 
					
						
							|  |  |  | 		&exc, | 
					
						
							| 
									
										
										
										
											2003-08-14 20:25:29 +00:00
										 |  |  | 		&known_errorHandler, &errorHandler, errors, | 
					
						
							| 
									
										
										
										
											2003-08-15 16:26:34 +00:00
										 |  |  | 		&res, &respos)) { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		goto onError; | 
					
						
							| 
									
										
										
										
											2003-08-15 16:26:34 +00:00
										 |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	else | 
					
						
							|  |  |  | 	    /* done with this character => adjust input position */ | 
					
						
							|  |  |  | 	    ++inpos; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2001-01-06 14:59:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     /* Resize if we allocated to much */ | 
					
						
							|  |  |  |     if (respos<PyString_GET_SIZE(res)) { | 
					
						
							|  |  |  | 	if (_PyString_Resize(&res, respos)) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    goto onError; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_XDECREF(exc); | 
					
						
							|  |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     return res; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     onError: | 
					
						
							|  |  |  |     Py_XDECREF(res); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							|  |  |  |     Py_XDECREF(errorHandler); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_AsCharmapString(PyObject *unicode, | 
					
						
							|  |  |  | 				    PyObject *mapping) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!PyUnicode_Check(unicode) || mapping == NULL) { | 
					
						
							|  |  |  | 	PyErr_BadArgument(); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return PyUnicode_EncodeCharmap(PyUnicode_AS_UNICODE(unicode), | 
					
						
							|  |  |  | 				   PyUnicode_GET_SIZE(unicode), | 
					
						
							|  |  |  | 				   mapping, | 
					
						
							|  |  |  | 				   NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | /* create or adjust a UnicodeTranslateError */ | 
					
						
							|  |  |  | static void make_translate_exception(PyObject **exceptionObject, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     const Py_UNICODE *unicode, Py_ssize_t size, | 
					
						
							|  |  |  |     Py_ssize_t startpos, Py_ssize_t endpos, | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     const char *reason) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (*exceptionObject == NULL) { | 
					
						
							|  |  |  |     	*exceptionObject = PyUnicodeTranslateError_Create( | 
					
						
							|  |  |  | 	    unicode, size, startpos, endpos, reason); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  | 	if (PyUnicodeTranslateError_SetStart(*exceptionObject, startpos)) | 
					
						
							|  |  |  | 	    goto onError; | 
					
						
							|  |  |  | 	if (PyUnicodeTranslateError_SetEnd(*exceptionObject, endpos)) | 
					
						
							|  |  |  | 	    goto onError; | 
					
						
							|  |  |  | 	if (PyUnicodeTranslateError_SetReason(*exceptionObject, reason)) | 
					
						
							|  |  |  | 	    goto onError; | 
					
						
							|  |  |  | 	return; | 
					
						
							|  |  |  | 	onError: | 
					
						
							|  |  |  | 	Py_DECREF(*exceptionObject); | 
					
						
							|  |  |  | 	*exceptionObject = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* raises a UnicodeTranslateError */ | 
					
						
							|  |  |  | static void raise_translate_exception(PyObject **exceptionObject, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     const Py_UNICODE *unicode, Py_ssize_t size, | 
					
						
							|  |  |  |     Py_ssize_t startpos, Py_ssize_t endpos, | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     const char *reason) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     make_translate_exception(exceptionObject, | 
					
						
							|  |  |  | 	unicode, size, startpos, endpos, reason); | 
					
						
							|  |  |  |     if (*exceptionObject != NULL) | 
					
						
							|  |  |  | 	PyCodec_StrictErrors(*exceptionObject); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* error handling callback helper:
 | 
					
						
							|  |  |  |    build arguments, call the callback and check the arguments, | 
					
						
							|  |  |  |    put the result into newpos and return the replacement string, which | 
					
						
							|  |  |  |    has to be freed by the caller */ | 
					
						
							|  |  |  | static PyObject *unicode_translate_call_errorhandler(const char *errors, | 
					
						
							|  |  |  |     PyObject **errorHandler, | 
					
						
							|  |  |  |     const char *reason, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     const Py_UNICODE *unicode, Py_ssize_t size, PyObject **exceptionObject, | 
					
						
							|  |  |  |     Py_ssize_t startpos, Py_ssize_t endpos, | 
					
						
							|  |  |  |     Py_ssize_t *newpos) | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |     static char *argparse = "O!n;translating error handler must return (unicode, int) tuple"; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |     Py_ssize_t i_newpos; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     PyObject *restuple; | 
					
						
							|  |  |  |     PyObject *resunicode; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (*errorHandler == NULL) { | 
					
						
							|  |  |  | 	*errorHandler = PyCodec_LookupError(errors); | 
					
						
							|  |  |  |         if (*errorHandler == NULL) | 
					
						
							|  |  |  | 	    return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     make_translate_exception(exceptionObject, | 
					
						
							|  |  |  | 	unicode, size, startpos, endpos, reason); | 
					
						
							|  |  |  |     if (*exceptionObject == NULL) | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     restuple = PyObject_CallFunctionObjArgs( | 
					
						
							|  |  |  | 	*errorHandler, *exceptionObject, NULL); | 
					
						
							|  |  |  |     if (restuple == NULL) | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     if (!PyTuple_Check(restuple)) { | 
					
						
							|  |  |  | 	PyErr_Format(PyExc_TypeError, &argparse[4]); | 
					
						
							|  |  |  | 	Py_DECREF(restuple); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!PyArg_ParseTuple(restuple, argparse, &PyUnicode_Type, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	&resunicode, &i_newpos)) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	Py_DECREF(restuple); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     if (i_newpos<0) | 
					
						
							|  |  |  | 	*newpos = size+i_newpos; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         *newpos = i_newpos; | 
					
						
							| 
									
										
										
										
											2003-01-31 17:19:08 +00:00
										 |  |  |     if (*newpos<0 || *newpos>size) { | 
					
						
							| 
									
										
										
										
											2006-02-16 06:54:25 +00:00
										 |  |  | 	PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", *newpos); | 
					
						
							| 
									
										
										
										
											2003-01-31 17:19:08 +00:00
										 |  |  | 	Py_DECREF(restuple); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_INCREF(resunicode); | 
					
						
							|  |  |  |     Py_DECREF(restuple); | 
					
						
							|  |  |  |     return resunicode; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Lookup the character ch in the mapping and put the result in result,
 | 
					
						
							|  |  |  |    which must be decrefed by the caller. | 
					
						
							|  |  |  |    Return 0 on success, -1 on error */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | static | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | int charmaptranslate_lookup(Py_UNICODE c, PyObject *mapping, PyObject **result) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *w = PyInt_FromLong((long)c); | 
					
						
							|  |  |  |     PyObject *x; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (w == NULL) | 
					
						
							|  |  |  | 	 return -1; | 
					
						
							|  |  |  |     x = PyObject_GetItem(mapping, w); | 
					
						
							|  |  |  |     Py_DECREF(w); | 
					
						
							|  |  |  |     if (x == NULL) { | 
					
						
							|  |  |  | 	if (PyErr_ExceptionMatches(PyExc_LookupError)) { | 
					
						
							|  |  |  | 	    /* No mapping found means: use 1:1 mapping. */ | 
					
						
							|  |  |  | 	    PyErr_Clear(); | 
					
						
							|  |  |  | 	    *result = NULL; | 
					
						
							|  |  |  | 	    return 0; | 
					
						
							|  |  |  | 	} else | 
					
						
							|  |  |  | 	    return -1; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     else if (x == Py_None) { | 
					
						
							|  |  |  | 	*result = x; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     else if (PyInt_Check(x)) { | 
					
						
							|  |  |  | 	long value = PyInt_AS_LONG(x); | 
					
						
							|  |  |  | 	long max = PyUnicode_GetMax(); | 
					
						
							|  |  |  | 	if (value < 0 || value > max) { | 
					
						
							|  |  |  | 	    PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  | 			     "character mapping must be in range(0x%lx)", max+1); | 
					
						
							|  |  |  | 	    Py_DECREF(x); | 
					
						
							|  |  |  | 	    return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	*result = x; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (PyUnicode_Check(x)) { | 
					
						
							|  |  |  | 	*result = x; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	/* wrong return value */ | 
					
						
							|  |  |  | 	PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 	      "character mapping must return integer, None or unicode"); | 
					
						
							| 
									
										
										
										
											2003-08-15 16:52:19 +00:00
										 |  |  | 	Py_DECREF(x); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | /* ensure that *outobj is at least requiredsize characters long,
 | 
					
						
							|  |  |  | if not reallocate and adjust various state variables. | 
					
						
							|  |  |  | Return 0 on success, -1 on error */ | 
					
						
							|  |  |  | static | 
					
						
							| 
									
										
										
										
											2003-10-24 14:25:28 +00:00
										 |  |  | int charmaptranslate_makespace(PyObject **outobj, Py_UNICODE **outp, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t requiredsize) | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t oldsize = PyUnicode_GET_SIZE(*outobj); | 
					
						
							| 
									
										
										
										
											2003-10-24 14:25:28 +00:00
										 |  |  |     if (requiredsize > oldsize) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	/* remember old output position */ | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	Py_ssize_t outpos = *outp-PyUnicode_AS_UNICODE(*outobj); | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	/* exponentially overallocate to minimize reallocations */ | 
					
						
							| 
									
										
										
										
											2003-10-24 14:25:28 +00:00
										 |  |  | 	if (requiredsize < 2 * oldsize) | 
					
						
							|  |  |  | 	    requiredsize = 2 * oldsize; | 
					
						
							| 
									
										
										
										
											2003-09-16 03:41:45 +00:00
										 |  |  | 	if (_PyUnicode_Resize(outobj, requiredsize) < 0) | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    return -1; | 
					
						
							|  |  |  | 	*outp = PyUnicode_AS_UNICODE(*outobj) + outpos; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | /* lookup the character, put the result in the output string and adjust
 | 
					
						
							|  |  |  |    various state variables. Return a new reference to the object that | 
					
						
							|  |  |  |    was put in the output buffer in *result, or Py_None, if the mapping was | 
					
						
							|  |  |  |    undefined (in which case no character was written). | 
					
						
							|  |  |  |    The called must decref result. | 
					
						
							|  |  |  |    Return 0 on success, -1 on error. */ | 
					
						
							|  |  |  | static | 
					
						
							| 
									
										
										
										
											2003-10-24 14:25:28 +00:00
										 |  |  | int charmaptranslate_output(const Py_UNICODE *startinp, const Py_UNICODE *curinp, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t insize, PyObject *mapping, PyObject **outobj, Py_UNICODE **outp, | 
					
						
							| 
									
										
										
										
											2003-10-24 14:25:28 +00:00
										 |  |  |     PyObject **res) | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2003-10-24 14:25:28 +00:00
										 |  |  |     if (charmaptranslate_lookup(*curinp, mapping, res)) | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	return -1; | 
					
						
							|  |  |  |     if (*res==NULL) { | 
					
						
							|  |  |  | 	/* not found => default to 1:1 mapping */ | 
					
						
							| 
									
										
										
										
											2003-10-24 14:25:28 +00:00
										 |  |  | 	*(*outp)++ = *curinp; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     else if (*res==Py_None) | 
					
						
							|  |  |  | 	; | 
					
						
							|  |  |  |     else if (PyInt_Check(*res)) { | 
					
						
							|  |  |  | 	/* no overflow check, because we know that the space is enough */ | 
					
						
							|  |  |  | 	*(*outp)++ = (Py_UNICODE)PyInt_AS_LONG(*res); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (PyUnicode_Check(*res)) { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	Py_ssize_t repsize = PyUnicode_GET_SIZE(*res); | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	if (repsize==1) { | 
					
						
							|  |  |  | 	    /* no overflow check, because we know that the space is enough */ | 
					
						
							|  |  |  | 	    *(*outp)++ = *PyUnicode_AS_UNICODE(*res); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (repsize!=0) { | 
					
						
							|  |  |  | 	    /* more than one character */ | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	    Py_ssize_t requiredsize = (*outp-PyUnicode_AS_UNICODE(*outobj)) + | 
					
						
							| 
									
										
										
										
											2004-02-05 17:36:00 +00:00
										 |  |  | 		(insize - (curinp-startinp)) + | 
					
						
							| 
									
										
										
										
											2003-10-24 14:25:28 +00:00
										 |  |  | 		repsize - 1; | 
					
						
							|  |  |  | 	    if (charmaptranslate_makespace(outobj, outp, requiredsize)) | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		return -1; | 
					
						
							|  |  |  | 	    memcpy(*outp, PyUnicode_AS_UNICODE(*res), sizeof(Py_UNICODE)*repsize); | 
					
						
							|  |  |  | 	    *outp += repsize; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | PyObject *PyUnicode_TranslateCharmap(const Py_UNICODE *p, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 				     Py_ssize_t size, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 				     PyObject *mapping, | 
					
						
							|  |  |  | 				     const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     /* output object */ | 
					
						
							|  |  |  |     PyObject *res = NULL; | 
					
						
							|  |  |  |     /* pointers to the beginning and end+1 of input */ | 
					
						
							|  |  |  |     const Py_UNICODE *startp = p; | 
					
						
							|  |  |  |     const Py_UNICODE *endp = p + size; | 
					
						
							|  |  |  |     /* pointer into the output */ | 
					
						
							|  |  |  |     Py_UNICODE *str; | 
					
						
							|  |  |  |     /* current output position */ | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t respos = 0; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     char *reason = "character maps to <undefined>"; | 
					
						
							|  |  |  |     PyObject *errorHandler = NULL; | 
					
						
							|  |  |  |     PyObject *exc = NULL; | 
					
						
							|  |  |  |     /* the following variable is used for caching string comparisons
 | 
					
						
							|  |  |  |      * -1=not initialized, 0=unknown, 1=strict, 2=replace, | 
					
						
							|  |  |  |      * 3=ignore, 4=xmlcharrefreplace */ | 
					
						
							|  |  |  |     int known_errorHandler = -1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (mapping == NULL) { | 
					
						
							|  |  |  | 	PyErr_BadArgument(); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     /* allocate enough for a simple 1:1 translation without
 | 
					
						
							|  |  |  |        replacements, if we need more, we'll resize */ | 
					
						
							|  |  |  |     res = PyUnicode_FromUnicode(NULL, size); | 
					
						
							|  |  |  |     if (res == NULL) | 
					
						
							| 
									
										
										
										
											2003-10-24 14:25:28 +00:00
										 |  |  | 	goto onError; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     if (size == 0) | 
					
						
							|  |  |  | 	return res; | 
					
						
							|  |  |  |     str = PyUnicode_AS_UNICODE(res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (p<endp) { | 
					
						
							|  |  |  | 	/* try to encode it */ | 
					
						
							|  |  |  | 	PyObject *x = NULL; | 
					
						
							| 
									
										
										
										
											2003-10-24 14:25:28 +00:00
										 |  |  | 	if (charmaptranslate_output(startp, p, size, mapping, &res, &str, &x)) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    Py_XDECREF(x); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    goto onError; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-02-09 23:42:56 +00:00
										 |  |  | 	Py_XDECREF(x); | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	if (x!=Py_None) /* it worked => adjust input pointer */ | 
					
						
							|  |  |  | 	    ++p; | 
					
						
							|  |  |  | 	else { /* untranslatable character */ | 
					
						
							|  |  |  | 	    PyObject *repunicode = NULL; /* initialize to prevent gcc warning */ | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	    Py_ssize_t repsize; | 
					
						
							|  |  |  | 	    Py_ssize_t newpos; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    Py_UNICODE *uni2; | 
					
						
							|  |  |  | 	    /* startpos for collecting untranslatable chars */ | 
					
						
							|  |  |  | 	    const Py_UNICODE *collstart = p; | 
					
						
							|  |  |  | 	    const Py_UNICODE *collend = p+1; | 
					
						
							|  |  |  | 	    const Py_UNICODE *coll; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	    /* find all untranslatable characters */ | 
					
						
							|  |  |  | 	    while (collend < endp) { | 
					
						
							| 
									
										
										
										
											2003-10-24 14:25:28 +00:00
										 |  |  | 		if (charmaptranslate_lookup(*collend, mapping, &x)) | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 		    goto onError; | 
					
						
							|  |  |  | 		Py_XDECREF(x); | 
					
						
							|  |  |  | 		if (x!=Py_None) | 
					
						
							|  |  |  | 		    break; | 
					
						
							|  |  |  | 		++collend; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    /* cache callback name lookup
 | 
					
						
							|  |  |  | 	     * (if not done yet, i.e. it's the first error) */ | 
					
						
							|  |  |  | 	    if (known_errorHandler==-1) { | 
					
						
							|  |  |  | 		if ((errors==NULL) || (!strcmp(errors, "strict"))) | 
					
						
							|  |  |  | 		    known_errorHandler = 1; | 
					
						
							|  |  |  | 		else if (!strcmp(errors, "replace")) | 
					
						
							|  |  |  | 		    known_errorHandler = 2; | 
					
						
							|  |  |  | 		else if (!strcmp(errors, "ignore")) | 
					
						
							|  |  |  | 		    known_errorHandler = 3; | 
					
						
							|  |  |  | 		else if (!strcmp(errors, "xmlcharrefreplace")) | 
					
						
							|  |  |  | 		    known_errorHandler = 4; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		    known_errorHandler = 0; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    switch (known_errorHandler) { | 
					
						
							|  |  |  | 		case 1: /* strict */ | 
					
						
							|  |  |  | 		    raise_translate_exception(&exc, startp, size, collstart-startp, collend-startp, reason); | 
					
						
							|  |  |  | 		    goto onError; | 
					
						
							|  |  |  | 		case 2: /* replace */ | 
					
						
							|  |  |  | 		    /* No need to check for space, this is a 1:1 replacement */ | 
					
						
							|  |  |  | 		    for (coll = collstart; coll<collend; ++coll) | 
					
						
							|  |  |  | 			*str++ = '?'; | 
					
						
							|  |  |  | 		    /* fall through */ | 
					
						
							|  |  |  | 		case 3: /* ignore */ | 
					
						
							|  |  |  | 		    p = collend; | 
					
						
							|  |  |  | 		    break; | 
					
						
							|  |  |  | 		case 4: /* xmlcharrefreplace */ | 
					
						
							|  |  |  | 		    /* generate replacement (temporarily (mis)uses p) */ | 
					
						
							|  |  |  | 		    for (p = collstart; p < collend; ++p) { | 
					
						
							|  |  |  | 			char buffer[2+29+1+1]; | 
					
						
							|  |  |  | 			char *cp; | 
					
						
							|  |  |  | 			sprintf(buffer, "&#%d;", (int)*p); | 
					
						
							| 
									
										
										
										
											2003-10-24 14:25:28 +00:00
										 |  |  | 			if (charmaptranslate_makespace(&res, &str, | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 			    (str-PyUnicode_AS_UNICODE(res))+strlen(buffer)+(endp-collend))) | 
					
						
							|  |  |  | 			    goto onError; | 
					
						
							|  |  |  | 			for (cp = buffer; *cp; ++cp) | 
					
						
							|  |  |  | 			    *str++ = *cp; | 
					
						
							|  |  |  | 		    } | 
					
						
							|  |  |  | 		    p = collend; | 
					
						
							|  |  |  | 		    break; | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 		    repunicode = unicode_translate_call_errorhandler(errors, &errorHandler, | 
					
						
							|  |  |  | 			reason, startp, size, &exc, | 
					
						
							|  |  |  | 			collstart-startp, collend-startp, &newpos); | 
					
						
							|  |  |  | 		    if (repunicode == NULL) | 
					
						
							|  |  |  | 			goto onError; | 
					
						
							|  |  |  | 		    /* generate replacement  */ | 
					
						
							|  |  |  | 		    repsize = PyUnicode_GET_SIZE(repunicode); | 
					
						
							| 
									
										
										
										
											2003-10-24 14:25:28 +00:00
										 |  |  | 		    if (charmaptranslate_makespace(&res, &str, | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 			(str-PyUnicode_AS_UNICODE(res))+repsize+(endp-collend))) { | 
					
						
							|  |  |  | 			Py_DECREF(repunicode); | 
					
						
							|  |  |  | 			goto onError; | 
					
						
							|  |  |  | 		    } | 
					
						
							|  |  |  | 		    for (uni2 = PyUnicode_AS_UNICODE(repunicode); repsize-->0; ++uni2) | 
					
						
							|  |  |  | 			*str++ = *uni2; | 
					
						
							|  |  |  | 		    p = startp + newpos; | 
					
						
							|  |  |  | 		    Py_DECREF(repunicode); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    } | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     /* Resize if we allocated to much */ | 
					
						
							|  |  |  |     respos = str-PyUnicode_AS_UNICODE(res); | 
					
						
							| 
									
										
										
										
											2003-10-24 14:25:28 +00:00
										 |  |  |     if (respos<PyUnicode_GET_SIZE(res)) { | 
					
						
							| 
									
										
										
										
											2003-09-16 03:41:45 +00:00
										 |  |  | 	if (_PyUnicode_Resize(&res, respos) < 0) | 
					
						
							| 
									
										
										
										
											2000-04-10 13:51:10 +00:00
										 |  |  | 	    goto onError; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							|  |  |  |     Py_XDECREF(errorHandler); | 
					
						
							|  |  |  |     return res; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     onError: | 
					
						
							|  |  |  |     Py_XDECREF(res); | 
					
						
							|  |  |  |     Py_XDECREF(exc); | 
					
						
							|  |  |  |     Py_XDECREF(errorHandler); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_Translate(PyObject *str, | 
					
						
							|  |  |  | 			      PyObject *mapping, | 
					
						
							|  |  |  | 			      const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *result; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     str = PyUnicode_FromObject(str); | 
					
						
							|  |  |  |     if (str == NULL) | 
					
						
							|  |  |  | 	goto onError; | 
					
						
							|  |  |  |     result = PyUnicode_TranslateCharmap(PyUnicode_AS_UNICODE(str), | 
					
						
							|  |  |  | 					PyUnicode_GET_SIZE(str), | 
					
						
							|  |  |  | 					mapping, | 
					
						
							|  |  |  | 					errors); | 
					
						
							|  |  |  |     Py_DECREF(str); | 
					
						
							|  |  |  |     return result; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |  onError: | 
					
						
							|  |  |  |     Py_XDECREF(str); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-05 20:11:21 +00:00
										 |  |  | /* --- Decimal Encoder ---------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int PyUnicode_EncodeDecimal(Py_UNICODE *s, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			    Py_ssize_t length, | 
					
						
							| 
									
										
										
										
											2000-04-05 20:11:21 +00:00
										 |  |  | 			    char *output, | 
					
						
							|  |  |  | 			    const char *errors) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Py_UNICODE *p, *end; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     PyObject *errorHandler = NULL; | 
					
						
							|  |  |  |     PyObject *exc = NULL; | 
					
						
							|  |  |  |     const char *encoding = "decimal"; | 
					
						
							|  |  |  |     const char *reason = "invalid decimal Unicode string"; | 
					
						
							|  |  |  |     /* the following variable is used for caching string comparisons
 | 
					
						
							|  |  |  |      * -1=not initialized, 0=unknown, 1=strict, 2=replace, 3=ignore, 4=xmlcharrefreplace */ | 
					
						
							|  |  |  |     int known_errorHandler = -1; | 
					
						
							| 
									
										
										
										
											2000-04-05 20:11:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (output == NULL) { | 
					
						
							|  |  |  | 	PyErr_BadArgument(); | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     p = s; | 
					
						
							|  |  |  |     end = s + length; | 
					
						
							|  |  |  |     while (p < end) { | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	register Py_UNICODE ch = *p; | 
					
						
							| 
									
										
										
										
											2000-04-05 20:11:21 +00:00
										 |  |  | 	int decimal; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	PyObject *repunicode; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	Py_ssize_t repsize; | 
					
						
							|  |  |  | 	Py_ssize_t newpos; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	Py_UNICODE *uni2; | 
					
						
							|  |  |  | 	Py_UNICODE *collstart; | 
					
						
							|  |  |  | 	Py_UNICODE *collend; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-05 20:11:21 +00:00
										 |  |  | 	if (Py_UNICODE_ISSPACE(ch)) { | 
					
						
							|  |  |  | 	    *output++ = ' '; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    ++p; | 
					
						
							| 
									
										
										
										
											2000-04-05 20:11:21 +00:00
										 |  |  | 	    continue; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	decimal = Py_UNICODE_TODECIMAL(ch); | 
					
						
							|  |  |  | 	if (decimal >= 0) { | 
					
						
							|  |  |  | 	    *output++ = '0' + decimal; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    ++p; | 
					
						
							| 
									
										
										
										
											2000-04-05 20:11:21 +00:00
										 |  |  | 	    continue; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2000-04-06 18:18:10 +00:00
										 |  |  | 	if (0 < ch && ch < 256) { | 
					
						
							| 
									
										
										
										
											2000-05-03 23:58:29 +00:00
										 |  |  | 	    *output++ = (char)ch; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	    ++p; | 
					
						
							| 
									
										
										
										
											2000-04-05 20:11:21 +00:00
										 |  |  | 	    continue; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	/* All other characters are considered unencodable */ | 
					
						
							|  |  |  | 	collstart = p; | 
					
						
							|  |  |  | 	collend = p+1; | 
					
						
							|  |  |  | 	while (collend < end) { | 
					
						
							|  |  |  | 	    if ((0 < *collend && *collend < 256) || | 
					
						
							|  |  |  | 	        !Py_UNICODE_ISSPACE(*collend) || | 
					
						
							|  |  |  | 	        Py_UNICODE_TODECIMAL(*collend)) | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2000-04-05 20:11:21 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | 	/* cache callback name lookup
 | 
					
						
							|  |  |  | 	 * (if not done yet, i.e. it's the first error) */ | 
					
						
							|  |  |  | 	if (known_errorHandler==-1) { | 
					
						
							|  |  |  | 	    if ((errors==NULL) || (!strcmp(errors, "strict"))) | 
					
						
							|  |  |  | 		known_errorHandler = 1; | 
					
						
							|  |  |  | 	    else if (!strcmp(errors, "replace")) | 
					
						
							|  |  |  | 		known_errorHandler = 2; | 
					
						
							|  |  |  | 	    else if (!strcmp(errors, "ignore")) | 
					
						
							|  |  |  | 		known_errorHandler = 3; | 
					
						
							|  |  |  | 	    else if (!strcmp(errors, "xmlcharrefreplace")) | 
					
						
							|  |  |  | 		known_errorHandler = 4; | 
					
						
							|  |  |  | 	    else | 
					
						
							|  |  |  | 		known_errorHandler = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	switch (known_errorHandler) { | 
					
						
							|  |  |  | 	    case 1: /* strict */ | 
					
						
							|  |  |  | 		raise_encode_exception(&exc, encoding, s, length, collstart-s, collend-s, reason); | 
					
						
							|  |  |  | 		goto onError; | 
					
						
							|  |  |  | 	    case 2: /* replace */ | 
					
						
							|  |  |  | 		for (p = collstart; p < collend; ++p) | 
					
						
							|  |  |  | 		    *output++ = '?'; | 
					
						
							|  |  |  | 		/* fall through */ | 
					
						
							|  |  |  | 	    case 3: /* ignore */ | 
					
						
							|  |  |  | 		p = collend; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	    case 4: /* xmlcharrefreplace */ | 
					
						
							|  |  |  | 		/* generate replacement (temporarily (mis)uses p) */ | 
					
						
							|  |  |  | 		for (p = collstart; p < collend; ++p) | 
					
						
							|  |  |  | 		    output += sprintf(output, "&#%d;", (int)*p); | 
					
						
							|  |  |  | 		p = collend; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	    default: | 
					
						
							|  |  |  | 		repunicode = unicode_encode_call_errorhandler(errors, &errorHandler, | 
					
						
							|  |  |  | 		    encoding, reason, s, length, &exc, | 
					
						
							|  |  |  | 		    collstart-s, collend-s, &newpos); | 
					
						
							|  |  |  | 		if (repunicode == NULL) | 
					
						
							|  |  |  | 		    goto onError; | 
					
						
							|  |  |  | 		/* generate replacement  */ | 
					
						
							|  |  |  | 		repsize = PyUnicode_GET_SIZE(repunicode); | 
					
						
							|  |  |  | 		for (uni2 = PyUnicode_AS_UNICODE(repunicode); repsize-->0; ++uni2) { | 
					
						
							|  |  |  | 		    Py_UNICODE ch = *uni2; | 
					
						
							|  |  |  | 		    if (Py_UNICODE_ISSPACE(ch)) | 
					
						
							|  |  |  | 			*output++ = ' '; | 
					
						
							|  |  |  | 		    else { | 
					
						
							|  |  |  | 			decimal = Py_UNICODE_TODECIMAL(ch); | 
					
						
							|  |  |  | 			if (decimal >= 0) | 
					
						
							|  |  |  | 			    *output++ = '0' + decimal; | 
					
						
							|  |  |  | 			else if (0 < ch && ch < 256) | 
					
						
							|  |  |  | 			    *output++ = (char)ch; | 
					
						
							|  |  |  | 			else { | 
					
						
							|  |  |  | 			    Py_DECREF(repunicode); | 
					
						
							|  |  |  | 			    raise_encode_exception(&exc, encoding, | 
					
						
							|  |  |  | 				s, length, collstart-s, collend-s, reason); | 
					
						
							|  |  |  | 			    goto onError; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		    } | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		p = s + newpos; | 
					
						
							|  |  |  | 		Py_DECREF(repunicode); | 
					
						
							| 
									
										
										
										
											2000-04-05 20:11:21 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* 0-terminate the output string */ | 
					
						
							|  |  |  |     *output++ = '\0'; | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_XDECREF(exc); | 
					
						
							|  |  |  |     Py_XDECREF(errorHandler); | 
					
						
							| 
									
										
										
										
											2000-04-05 20:11:21 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  |     Py_XDECREF(exc); | 
					
						
							|  |  |  |     Py_XDECREF(errorHandler); | 
					
						
							| 
									
										
										
										
											2000-04-05 20:11:21 +00:00
										 |  |  |     return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | /* --- Helpers ------------------------------------------------------------ */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 17:04:58 +00:00
										 |  |  | #define STRINGLIB_CHAR Py_UNICODE
 | 
					
						
							| 
									
										
										
										
											2006-05-24 14:28:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  | #define STRINGLIB_LEN PyUnicode_GET_SIZE
 | 
					
						
							| 
									
										
										
										
											2006-05-26 17:22:38 +00:00
										 |  |  | #define STRINGLIB_NEW PyUnicode_FromUnicode
 | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  | #define STRINGLIB_STR PyUnicode_AS_UNICODE
 | 
					
						
							| 
									
										
										
										
											2006-05-26 17:22:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-27 14:58:20 +00:00
										 |  |  | Py_LOCAL_INLINE(int) | 
					
						
							| 
									
										
										
										
											2006-05-26 18:15:38 +00:00
										 |  |  | STRINGLIB_CMP(const Py_UNICODE* str, const Py_UNICODE* other, Py_ssize_t len) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-05-26 18:24:15 +00:00
										 |  |  |     if (str[0] != other[0]) | 
					
						
							|  |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2006-05-26 18:15:38 +00:00
										 |  |  |     return memcmp((void*) str, (void*) other, len * sizeof(Py_UNICODE)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 17:22:38 +00:00
										 |  |  | #define STRINGLIB_EMPTY unicode_empty
 | 
					
						
							| 
									
										
										
										
											2007-11-16 19:16:15 +00:00
										 |  |  | #define FROM_UNICODE
 | 
					
						
							| 
									
										
										
										
											2006-05-26 17:22:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 17:04:58 +00:00
										 |  |  | #include "stringlib/fastsearch.h"
 | 
					
						
							| 
									
										
										
										
											2006-05-26 17:22:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 19:24:53 +00:00
										 |  |  | #include "stringlib/count.h"
 | 
					
						
							|  |  |  | #include "stringlib/find.h"
 | 
					
						
							|  |  |  | #include "stringlib/partition.h"
 | 
					
						
							| 
									
										
										
										
											2006-05-24 14:28:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 19:33:03 +00:00
										 |  |  | /* helper macro to fixup start/end slice values */ | 
					
						
							|  |  |  | #define FIX_START_END(obj)                      \
 | 
					
						
							|  |  |  |     if (start < 0)                              \ | 
					
						
							|  |  |  |         start += (obj)->length;                 \ | 
					
						
							|  |  |  |     if (start < 0)                              \ | 
					
						
							|  |  |  |         start = 0;                              \ | 
					
						
							|  |  |  |     if (end > (obj)->length)                    \ | 
					
						
							|  |  |  |         end = (obj)->length;                    \ | 
					
						
							|  |  |  |     if (end < 0)                                \ | 
					
						
							|  |  |  |         end += (obj)->length;                   \ | 
					
						
							|  |  |  |     if (end < 0)                                \ | 
					
						
							|  |  |  |         end = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 19:24:53 +00:00
										 |  |  | Py_ssize_t PyUnicode_Count(PyObject *str, | 
					
						
							|  |  |  |                            PyObject *substr, | 
					
						
							| 
									
										
										
										
											2006-05-26 11:38:15 +00:00
										 |  |  |                            Py_ssize_t start, | 
					
						
							| 
									
										
										
										
											2006-05-26 19:24:53 +00:00
										 |  |  |                            Py_ssize_t end) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-05-26 19:24:53 +00:00
										 |  |  |     Py_ssize_t result; | 
					
						
							|  |  |  |     PyUnicodeObject* str_obj; | 
					
						
							|  |  |  |     PyUnicodeObject* sub_obj; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     str_obj = (PyUnicodeObject*) PyUnicode_FromObject(str); | 
					
						
							|  |  |  |     if (!str_obj) | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  |     sub_obj = (PyUnicodeObject*) PyUnicode_FromObject(substr); | 
					
						
							|  |  |  |     if (!sub_obj) { | 
					
						
							|  |  |  | 	Py_DECREF(str_obj); | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 19:33:03 +00:00
										 |  |  |     FIX_START_END(str_obj); | 
					
						
							| 
									
										
										
										
											2001-01-16 11:54:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 19:24:53 +00:00
										 |  |  |     result = stringlib_count( | 
					
						
							|  |  |  |         str_obj->str + start, end - start, sub_obj->str, sub_obj->length | 
					
						
							| 
									
										
										
										
											2006-05-24 14:28:11 +00:00
										 |  |  |         ); | 
					
						
							| 
									
										
										
										
											2006-05-26 08:54:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 19:24:53 +00:00
										 |  |  |     Py_DECREF(sub_obj); | 
					
						
							|  |  |  |     Py_DECREF(str_obj); | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | Py_ssize_t PyUnicode_Find(PyObject *str, | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  |                           PyObject *sub, | 
					
						
							| 
									
										
										
										
											2006-05-26 19:29:05 +00:00
										 |  |  |                           Py_ssize_t start, | 
					
						
							|  |  |  |                           Py_ssize_t end, | 
					
						
							|  |  |  |                           int direction) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t result; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  |     str = PyUnicode_FromObject(str); | 
					
						
							|  |  |  |     if (!str) | 
					
						
							| 
									
										
										
										
											2002-05-29 11:33:13 +00:00
										 |  |  | 	return -2; | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  |     sub = PyUnicode_FromObject(sub); | 
					
						
							|  |  |  |     if (!sub) { | 
					
						
							|  |  |  | 	Py_DECREF(str); | 
					
						
							| 
									
										
										
										
											2002-05-29 11:33:13 +00:00
										 |  |  | 	return -2; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 19:29:05 +00:00
										 |  |  |     if (direction > 0) | 
					
						
							| 
									
										
										
										
											2006-05-27 15:20:22 +00:00
										 |  |  |         result = stringlib_find_slice( | 
					
						
							|  |  |  |             PyUnicode_AS_UNICODE(str), PyUnicode_GET_SIZE(str), | 
					
						
							|  |  |  |             PyUnicode_AS_UNICODE(sub), PyUnicode_GET_SIZE(sub), | 
					
						
							|  |  |  |             start, end | 
					
						
							|  |  |  |             ); | 
					
						
							| 
									
										
										
										
											2006-05-26 19:29:05 +00:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2006-05-27 15:20:22 +00:00
										 |  |  |         result = stringlib_rfind_slice( | 
					
						
							|  |  |  |             PyUnicode_AS_UNICODE(str), PyUnicode_GET_SIZE(str), | 
					
						
							|  |  |  |             PyUnicode_AS_UNICODE(sub), PyUnicode_GET_SIZE(sub), | 
					
						
							|  |  |  |             start, end | 
					
						
							|  |  |  |             ); | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Py_DECREF(str); | 
					
						
							|  |  |  |     Py_DECREF(sub); | 
					
						
							| 
									
										
										
										
											2006-05-26 19:29:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | static | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | int tailmatch(PyUnicodeObject *self, | 
					
						
							|  |  |  | 	      PyUnicodeObject *substring, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	      Py_ssize_t start, | 
					
						
							|  |  |  | 	      Py_ssize_t end, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	      int direction) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (substring->length == 0) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 19:33:03 +00:00
										 |  |  |     FIX_START_END(self); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     end -= substring->length; | 
					
						
							|  |  |  |     if (end < start) | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (direction > 0) { | 
					
						
							|  |  |  | 	if (Py_UNICODE_MATCH(self, end, substring)) | 
					
						
							|  |  |  | 	    return 1; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         if (Py_UNICODE_MATCH(self, start, substring)) | 
					
						
							|  |  |  | 	    return 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | Py_ssize_t PyUnicode_Tailmatch(PyObject *str, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 			PyObject *substr, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			Py_ssize_t start, | 
					
						
							|  |  |  | 			Py_ssize_t end, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 			int direction) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t result; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     str = PyUnicode_FromObject(str); | 
					
						
							|  |  |  |     if (str == NULL) | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  |     substr = PyUnicode_FromObject(substr); | 
					
						
							|  |  |  |     if (substr == NULL) { | 
					
						
							| 
									
										
										
										
											2006-03-07 15:39:21 +00:00
										 |  |  | 	Py_DECREF(str); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     result = tailmatch((PyUnicodeObject *)str, | 
					
						
							|  |  |  | 		       (PyUnicodeObject *)substr, | 
					
						
							|  |  |  | 		       start, end, direction); | 
					
						
							|  |  |  |     Py_DECREF(str); | 
					
						
							|  |  |  |     Py_DECREF(substr); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Apply fixfct filter to the Unicode object self and return a
 | 
					
						
							|  |  |  |    reference to the modified object */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | static | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | PyObject *fixup(PyUnicodeObject *self, | 
					
						
							|  |  |  | 		int (*fixfct)(PyUnicodeObject *s)) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyUnicodeObject *u; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  |     u = (PyUnicodeObject*) PyUnicode_FromUnicode(NULL, self->length); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (u == NULL) | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Py_UNICODE_COPY(u->str, self->str, self->length); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-12 03:03:31 +00:00
										 |  |  |     if (!fixfct(u) && PyUnicode_CheckExact(self)) { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	/* fixfct should return TRUE if it modified the buffer. If
 | 
					
						
							|  |  |  | 	   FALSE, return a reference to the original buffer instead | 
					
						
							|  |  |  | 	   (to save space, not time) */ | 
					
						
							|  |  |  | 	Py_INCREF(self); | 
					
						
							|  |  |  | 	Py_DECREF(u); | 
					
						
							|  |  |  | 	return (PyObject*) self; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (PyObject*) u; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | static | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | int fixupper(PyUnicodeObject *self) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t len = self->length; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     Py_UNICODE *s = self->str; | 
					
						
							|  |  |  |     int status = 0; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     while (len-- > 0) { | 
					
						
							|  |  |  | 	register Py_UNICODE ch; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	ch = Py_UNICODE_TOUPPER(*s); | 
					
						
							|  |  |  | 	if (ch != *s) { | 
					
						
							|  |  |  |             status = 1; | 
					
						
							|  |  |  | 	    *s = ch; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |         s++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | static | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | int fixlower(PyUnicodeObject *self) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t len = self->length; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     Py_UNICODE *s = self->str; | 
					
						
							|  |  |  |     int status = 0; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     while (len-- > 0) { | 
					
						
							|  |  |  | 	register Py_UNICODE ch; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	ch = Py_UNICODE_TOLOWER(*s); | 
					
						
							|  |  |  | 	if (ch != *s) { | 
					
						
							|  |  |  |             status = 1; | 
					
						
							|  |  |  | 	    *s = ch; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |         s++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | static | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | int fixswapcase(PyUnicodeObject *self) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t len = self->length; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     Py_UNICODE *s = self->str; | 
					
						
							|  |  |  |     int status = 0; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     while (len-- > 0) { | 
					
						
							|  |  |  |         if (Py_UNICODE_ISUPPER(*s)) { | 
					
						
							|  |  |  |             *s = Py_UNICODE_TOLOWER(*s); | 
					
						
							|  |  |  |             status = 1; | 
					
						
							|  |  |  |         } else if (Py_UNICODE_ISLOWER(*s)) { | 
					
						
							|  |  |  |             *s = Py_UNICODE_TOUPPER(*s); | 
					
						
							|  |  |  |             status = 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         s++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | static | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | int fixcapitalize(PyUnicodeObject *self) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t len = self->length; | 
					
						
							| 
									
										
										
										
											2001-01-29 11:14:16 +00:00
										 |  |  |     Py_UNICODE *s = self->str; | 
					
						
							|  |  |  |     int status = 0; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-29 11:14:16 +00:00
										 |  |  |     if (len == 0) | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  |     if (Py_UNICODE_ISLOWER(*s)) { | 
					
						
							|  |  |  | 	*s = Py_UNICODE_TOUPPER(*s); | 
					
						
							|  |  |  | 	status = 1; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2001-01-29 11:14:16 +00:00
										 |  |  |     s++; | 
					
						
							|  |  |  |     while (--len > 0) { | 
					
						
							|  |  |  |         if (Py_UNICODE_ISUPPER(*s)) { | 
					
						
							|  |  |  |             *s = Py_UNICODE_TOLOWER(*s); | 
					
						
							|  |  |  |             status = 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         s++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return status; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static | 
					
						
							|  |  |  | int fixtitle(PyUnicodeObject *self) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     register Py_UNICODE *p = PyUnicode_AS_UNICODE(self); | 
					
						
							|  |  |  |     register Py_UNICODE *e; | 
					
						
							|  |  |  |     int previous_is_cased; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Shortcut for single character strings */ | 
					
						
							|  |  |  |     if (PyUnicode_GET_SIZE(self) == 1) { | 
					
						
							|  |  |  | 	Py_UNICODE ch = Py_UNICODE_TOTITLE(*p); | 
					
						
							|  |  |  | 	if (*p != ch) { | 
					
						
							|  |  |  | 	    *p = ch; | 
					
						
							|  |  |  | 	    return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	    return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     e = p + PyUnicode_GET_SIZE(self); | 
					
						
							|  |  |  |     previous_is_cased = 0; | 
					
						
							|  |  |  |     for (; p < e; p++) { | 
					
						
							|  |  |  | 	register const Py_UNICODE ch = *p; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	if (previous_is_cased) | 
					
						
							|  |  |  | 	    *p = Py_UNICODE_TOLOWER(ch); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	    *p = Py_UNICODE_TOTITLE(ch); | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (Py_UNICODE_ISLOWER(ch) || | 
					
						
							|  |  |  | 	    Py_UNICODE_ISUPPER(ch) || | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    Py_UNICODE_ISTITLE(ch)) | 
					
						
							|  |  |  | 	    previous_is_cased = 1; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	    previous_is_cased = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-27 01:49:32 +00:00
										 |  |  | PyObject * | 
					
						
							|  |  |  | PyUnicode_Join(PyObject *separator, PyObject *seq) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2004-08-27 01:49:32 +00:00
										 |  |  |     PyObject *internal_separator = NULL; | 
					
						
							| 
									
										
										
										
											2004-09-16 03:28:13 +00:00
										 |  |  |     const Py_UNICODE blank = ' '; | 
					
						
							|  |  |  |     const Py_UNICODE *sep = ␣ | 
					
						
							| 
									
										
										
										
											2006-05-22 19:17:04 +00:00
										 |  |  |     Py_ssize_t seplen = 1; | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  |     PyUnicodeObject *res = NULL; /* the result */ | 
					
						
							| 
									
										
										
										
											2006-05-22 19:17:04 +00:00
										 |  |  |     Py_ssize_t res_alloc = 100;  /* # allocated bytes for string in res */ | 
					
						
							|  |  |  |     Py_ssize_t res_used;         /* # used bytes */ | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  |     Py_UNICODE *res_p;       /* pointer to free byte in res's string area */ | 
					
						
							|  |  |  |     PyObject *fseq;          /* PySequence_Fast(seq) */ | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t seqlen;              /* len(fseq) -- number of items in sequence */ | 
					
						
							| 
									
										
										
										
											2004-08-27 01:49:32 +00:00
										 |  |  |     PyObject *item; | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |     Py_ssize_t i; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  |     fseq = PySequence_Fast(seq, ""); | 
					
						
							|  |  |  |     if (fseq == NULL) { | 
					
						
							|  |  |  |     	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-27 22:35:44 +00:00
										 |  |  |     /* Grrrr.  A codec may be invoked to convert str objects to
 | 
					
						
							|  |  |  |      * Unicode, and so it's possible to call back into Python code | 
					
						
							|  |  |  |      * during PyUnicode_FromObject(), and so it's possible for a sick | 
					
						
							|  |  |  |      * codec to change the size of fseq (if seq is a list).  Therefore | 
					
						
							|  |  |  |      * we have to keep refetching the size -- can't assume seqlen | 
					
						
							|  |  |  |      * is invariant. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  |     seqlen = PySequence_Fast_GET_SIZE(fseq); | 
					
						
							|  |  |  |     /* If empty sequence, return u"". */ | 
					
						
							|  |  |  |     if (seqlen == 0) { | 
					
						
							|  |  |  |     	res = _PyUnicode_New(0);  /* empty sequence; return u"" */ | 
					
						
							|  |  |  |     	goto Done; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* If singleton sequence with an exact Unicode, return that. */ | 
					
						
							|  |  |  |     if (seqlen == 1) { | 
					
						
							|  |  |  | 	item = PySequence_Fast_GET_ITEM(fseq, 0); | 
					
						
							|  |  |  | 	if (PyUnicode_CheckExact(item)) { | 
					
						
							|  |  |  | 	    Py_INCREF(item); | 
					
						
							|  |  |  | 	    res = (PyUnicodeObject *)item; | 
					
						
							|  |  |  | 	    goto Done; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-08-27 01:49:32 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  |     /* At least two items to join, or one that isn't exact Unicode. */ | 
					
						
							|  |  |  |     if (seqlen > 1) { | 
					
						
							|  |  |  |         /* Set up sep and seplen -- they're needed. */ | 
					
						
							|  |  |  |     	if (separator == NULL) { | 
					
						
							|  |  |  | 	    sep = ␣ | 
					
						
							|  |  |  | 	    seplen = 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     	else { | 
					
						
							|  |  |  | 	    internal_separator = PyUnicode_FromObject(separator); | 
					
						
							|  |  |  | 	    if (internal_separator == NULL) | 
					
						
							|  |  |  | 	        goto onError; | 
					
						
							|  |  |  | 	    sep = PyUnicode_AS_UNICODE(internal_separator); | 
					
						
							|  |  |  | 	    seplen = PyUnicode_GET_SIZE(internal_separator); | 
					
						
							| 
									
										
										
										
											2004-08-27 22:35:44 +00:00
										 |  |  | 	    /* In case PyUnicode_FromObject() mutated seq. */ | 
					
						
							|  |  |  | 	    seqlen = PySequence_Fast_GET_SIZE(fseq); | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2004-08-27 01:49:32 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  |     /* Get space. */ | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |     res = _PyUnicode_New(res_alloc); | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  |     if (res == NULL) | 
					
						
							| 
									
										
										
										
											2004-08-27 01:49:32 +00:00
										 |  |  |         goto onError; | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  |     res_p = PyUnicode_AS_UNICODE(res); | 
					
						
							|  |  |  |     res_used = 0; | 
					
						
							| 
									
										
										
										
											2004-08-27 01:49:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  |     for (i = 0; i < seqlen; ++i) { | 
					
						
							| 
									
										
										
										
											2006-05-22 19:17:04 +00:00
										 |  |  | 	Py_ssize_t itemlen; | 
					
						
							|  |  |  | 	Py_ssize_t new_res_used; | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	item = PySequence_Fast_GET_ITEM(fseq, i); | 
					
						
							|  |  |  | 	/* Convert item to Unicode. */ | 
					
						
							|  |  |  | 	if (! PyUnicode_Check(item) && ! PyString_Check(item)) { | 
					
						
							|  |  |  | 	    PyErr_Format(PyExc_TypeError, | 
					
						
							| 
									
										
										
										
											2006-04-16 22:04:49 +00:00
										 |  |  | 			 "sequence item %zd: expected string or Unicode," | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  | 			 " %.80s found", | 
					
						
							| 
									
										
										
										
											2007-12-19 02:37:44 +00:00
										 |  |  | 			 i, Py_TYPE(item)->tp_name); | 
					
						
							| 
									
										
										
										
											2001-05-05 05:36:48 +00:00
										 |  |  | 	    goto onError; | 
					
						
							| 
									
										
										
										
											2004-08-27 01:49:32 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  | 	item = PyUnicode_FromObject(item); | 
					
						
							|  |  |  | 	if (item == NULL) | 
					
						
							|  |  |  | 	    goto onError; | 
					
						
							|  |  |  | 	/* We own a reference to item from here on. */ | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-27 22:35:44 +00:00
										 |  |  | 	/* In case PyUnicode_FromObject() mutated seq. */ | 
					
						
							|  |  |  | 	seqlen = PySequence_Fast_GET_SIZE(fseq); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-27 01:49:32 +00:00
										 |  |  |         /* Make sure we have enough space for the separator and the item. */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	itemlen = PyUnicode_GET_SIZE(item); | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  | 	new_res_used = res_used + itemlen; | 
					
						
							| 
									
										
										
										
											2006-06-10 06:40:50 +00:00
										 |  |  | 	if (new_res_used < 0) | 
					
						
							| 
									
										
										
										
											2004-08-27 01:49:32 +00:00
										 |  |  | 	    goto Overflow; | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  | 	if (i < seqlen - 1) { | 
					
						
							|  |  |  | 	    new_res_used += seplen; | 
					
						
							| 
									
										
										
										
											2006-06-10 06:40:50 +00:00
										 |  |  | 	    if (new_res_used < 0) | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  | 		goto Overflow; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (new_res_used > res_alloc) { | 
					
						
							|  |  |  | 	    /* double allocated size until it's big enough */ | 
					
						
							| 
									
										
										
										
											2004-08-27 01:49:32 +00:00
										 |  |  | 	    do { | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  | 	        res_alloc += res_alloc; | 
					
						
							| 
									
										
										
										
											2006-05-22 19:17:04 +00:00
										 |  |  | 	        if (res_alloc <= 0) | 
					
						
							| 
									
										
										
										
											2004-08-27 01:49:32 +00:00
										 |  |  | 	            goto Overflow; | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  | 	    } while (new_res_used > res_alloc); | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  | 	    if (_PyUnicode_Resize(&res, res_alloc) < 0) { | 
					
						
							| 
									
										
										
										
											2001-09-20 17:22:58 +00:00
										 |  |  | 		Py_DECREF(item); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		goto onError; | 
					
						
							| 
									
										
										
										
											2001-09-20 17:22:58 +00:00
										 |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  |             res_p = PyUnicode_AS_UNICODE(res) + res_used; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-08-27 01:49:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  | 	/* Copy item, and maybe the separator. */ | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  | 	Py_UNICODE_COPY(res_p, PyUnicode_AS_UNICODE(item), itemlen); | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  | 	res_p += itemlen; | 
					
						
							|  |  |  | 	if (i < seqlen - 1) { | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  | 	    Py_UNICODE_COPY(res_p, sep, seplen); | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  | 	    res_p += seplen; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	Py_DECREF(item); | 
					
						
							|  |  |  | 	res_used = new_res_used; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  |     /* Shrink res to match the used area; this probably can't fail,
 | 
					
						
							|  |  |  |      * but it's cheap to check. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |     if (_PyUnicode_Resize(&res, res_used) < 0) | 
					
						
							| 
									
										
										
										
											2004-08-27 01:49:32 +00:00
										 |  |  | 	goto onError; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  Done: | 
					
						
							|  |  |  |     Py_XDECREF(internal_separator); | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  |     Py_DECREF(fseq); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return (PyObject *)res; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-27 01:49:32 +00:00
										 |  |  |  Overflow: | 
					
						
							|  |  |  |     PyErr_SetString(PyExc_OverflowError, | 
					
						
							| 
									
										
										
										
											2006-06-10 06:40:50 +00:00
										 |  |  |                     "join() result is too long for a Python string"); | 
					
						
							| 
									
										
										
										
											2004-08-27 01:49:32 +00:00
										 |  |  |     Py_DECREF(item); | 
					
						
							|  |  |  |     /* fall through */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |  onError: | 
					
						
							| 
									
										
										
										
											2004-08-27 01:49:32 +00:00
										 |  |  |     Py_XDECREF(internal_separator); | 
					
						
							| 
									
										
										
										
											2004-08-27 21:32:02 +00:00
										 |  |  |     Py_DECREF(fseq); | 
					
						
							| 
									
										
										
										
											2004-08-27 01:49:32 +00:00
										 |  |  |     Py_XDECREF(res); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | static | 
					
						
							|  |  |  | PyUnicodeObject *pad(PyUnicodeObject *self, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 		     Py_ssize_t left, | 
					
						
							|  |  |  | 		     Py_ssize_t right, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		     Py_UNICODE fill) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyUnicodeObject *u; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (left < 0) | 
					
						
							|  |  |  |         left = 0; | 
					
						
							|  |  |  |     if (right < 0) | 
					
						
							|  |  |  |         right = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-12 03:03:31 +00:00
										 |  |  |     if (left == 0 && right == 0 && PyUnicode_CheckExact(self)) { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         Py_INCREF(self); | 
					
						
							|  |  |  |         return self; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     u = _PyUnicode_New(left + self->length + right); | 
					
						
							|  |  |  |     if (u) { | 
					
						
							|  |  |  |         if (left) | 
					
						
							|  |  |  |             Py_UNICODE_FILL(u->str, fill, left); | 
					
						
							|  |  |  |         Py_UNICODE_COPY(u->str + left, self->str, self->length); | 
					
						
							|  |  |  |         if (right) | 
					
						
							|  |  |  |             Py_UNICODE_FILL(u->str + left + self->length, fill, right); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return u; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define SPLIT_APPEND(data, left, right)					\
 | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  | 	str = PyUnicode_FromUnicode((data) + (left), (right) - (left));	\ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	if (!str)							\ | 
					
						
							|  |  |  | 	    goto onError;						\ | 
					
						
							|  |  |  | 	if (PyList_Append(list, str)) {					\ | 
					
						
							|  |  |  | 	    Py_DECREF(str);						\ | 
					
						
							|  |  |  | 	    goto onError;						\ | 
					
						
							|  |  |  | 	}								\ | 
					
						
							|  |  |  |         else								\ | 
					
						
							|  |  |  |             Py_DECREF(str); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static | 
					
						
							|  |  |  | PyObject *split_whitespace(PyUnicodeObject *self, | 
					
						
							|  |  |  | 			   PyObject *list, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			   Py_ssize_t maxcount) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     register Py_ssize_t i; | 
					
						
							|  |  |  |     register Py_ssize_t j; | 
					
						
							|  |  |  |     Py_ssize_t len = self->length; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     PyObject *str; | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  |     register const Py_UNICODE *buf = self->str; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (i = j = 0; i < len; ) { | 
					
						
							|  |  |  | 	/* find a token */ | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  | 	while (i < len && Py_UNICODE_ISSPACE(buf[i])) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    i++; | 
					
						
							|  |  |  | 	j = i; | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  | 	while (i < len && !Py_UNICODE_ISSPACE(buf[i])) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    i++; | 
					
						
							|  |  |  | 	if (j < i) { | 
					
						
							|  |  |  | 	    if (maxcount-- <= 0) | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  | 	    SPLIT_APPEND(buf, j, i); | 
					
						
							|  |  |  | 	    while (i < len && Py_UNICODE_ISSPACE(buf[i])) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		i++; | 
					
						
							|  |  |  | 	    j = i; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (j < len) { | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  | 	SPLIT_APPEND(buf, j, len); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     return list; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							|  |  |  |     Py_DECREF(list); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_Splitlines(PyObject *string, | 
					
						
							| 
									
										
										
										
											2000-04-11 15:38:46 +00:00
										 |  |  | 			       int keepends) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     register Py_ssize_t i; | 
					
						
							|  |  |  |     register Py_ssize_t j; | 
					
						
							|  |  |  |     Py_ssize_t len; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     PyObject *list; | 
					
						
							|  |  |  |     PyObject *str; | 
					
						
							|  |  |  |     Py_UNICODE *data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     string = PyUnicode_FromObject(string); | 
					
						
							|  |  |  |     if (string == NULL) | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     data = PyUnicode_AS_UNICODE(string); | 
					
						
							|  |  |  |     len = PyUnicode_GET_SIZE(string); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     list = PyList_New(0); | 
					
						
							|  |  |  |     if (!list) | 
					
						
							|  |  |  |         goto onError; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = j = 0; i < len; ) { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	Py_ssize_t eol; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	/* Find a line and append it */ | 
					
						
							| 
									
										
										
										
											2006-05-23 18:44:25 +00:00
										 |  |  | 	while (i < len && !BLOOM_LINEBREAK(data[i])) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    i++; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Skip the line break reading CRLF as one line break */ | 
					
						
							| 
									
										
										
										
											2000-04-11 15:38:46 +00:00
										 |  |  | 	eol = i; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	if (i < len) { | 
					
						
							|  |  |  | 	    if (data[i] == '\r' && i + 1 < len && | 
					
						
							|  |  |  | 		data[i+1] == '\n') | 
					
						
							|  |  |  | 		i += 2; | 
					
						
							|  |  |  | 	    else | 
					
						
							|  |  |  | 		i++; | 
					
						
							| 
									
										
										
										
											2000-04-11 15:38:46 +00:00
										 |  |  | 	    if (keepends) | 
					
						
							|  |  |  | 		eol = i; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2000-04-11 15:38:46 +00:00
										 |  |  | 	SPLIT_APPEND(data, j, eol); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	j = i; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (j < len) { | 
					
						
							|  |  |  | 	SPLIT_APPEND(data, j, len); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_DECREF(string); | 
					
						
							|  |  |  |     return list; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							| 
									
										
										
										
											2006-03-07 15:39:21 +00:00
										 |  |  |     Py_XDECREF(list); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     Py_DECREF(string); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | static | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | PyObject *split_char(PyUnicodeObject *self, | 
					
						
							|  |  |  | 		     PyObject *list, | 
					
						
							|  |  |  | 		     Py_UNICODE ch, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 		     Py_ssize_t maxcount) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     register Py_ssize_t i; | 
					
						
							|  |  |  |     register Py_ssize_t j; | 
					
						
							|  |  |  |     Py_ssize_t len = self->length; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     PyObject *str; | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  |     register const Py_UNICODE *buf = self->str; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (i = j = 0; i < len; ) { | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  | 	if (buf[i] == ch) { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    if (maxcount-- <= 0) | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  | 	    SPLIT_APPEND(buf, j, i); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    i = j = i + 1; | 
					
						
							|  |  |  | 	} else | 
					
						
							|  |  |  | 	    i++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (j <= len) { | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  | 	SPLIT_APPEND(buf, j, len); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     return list; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							|  |  |  |     Py_DECREF(list); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | static | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | PyObject *split_substring(PyUnicodeObject *self, | 
					
						
							|  |  |  | 			  PyObject *list, | 
					
						
							|  |  |  | 			  PyUnicodeObject *substring, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			  Py_ssize_t maxcount) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     register Py_ssize_t i; | 
					
						
							|  |  |  |     register Py_ssize_t j; | 
					
						
							|  |  |  |     Py_ssize_t len = self->length; | 
					
						
							|  |  |  |     Py_ssize_t sublen = substring->length; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     PyObject *str; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-12-19 02:23:19 +00:00
										 |  |  |     for (i = j = 0; i <= len - sublen; ) { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	if (Py_UNICODE_MATCH(self, i, substring)) { | 
					
						
							|  |  |  | 	    if (maxcount-- <= 0) | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	    SPLIT_APPEND(self->str, j, i); | 
					
						
							|  |  |  | 	    i = j = i + sublen; | 
					
						
							|  |  |  | 	} else | 
					
						
							|  |  |  | 	    i++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (j <= len) { | 
					
						
							|  |  |  | 	SPLIT_APPEND(self->str, j, len); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return list; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							|  |  |  |     Py_DECREF(list); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  | static | 
					
						
							|  |  |  | PyObject *rsplit_whitespace(PyUnicodeObject *self, | 
					
						
							|  |  |  | 			    PyObject *list, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			    Py_ssize_t maxcount) | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     register Py_ssize_t i; | 
					
						
							|  |  |  |     register Py_ssize_t j; | 
					
						
							|  |  |  |     Py_ssize_t len = self->length; | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  |     PyObject *str; | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  |     register const Py_UNICODE *buf = self->str; | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (i = j = len - 1; i >= 0; ) { | 
					
						
							|  |  |  | 	/* find a token */ | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  | 	while (i >= 0 && Py_UNICODE_ISSPACE(buf[i])) | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  | 	    i--; | 
					
						
							|  |  |  | 	j = i; | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  | 	while (i >= 0 && !Py_UNICODE_ISSPACE(buf[i])) | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  | 	    i--; | 
					
						
							|  |  |  | 	if (j > i) { | 
					
						
							|  |  |  | 	    if (maxcount-- <= 0) | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  | 	    SPLIT_APPEND(buf, i + 1, j + 1); | 
					
						
							|  |  |  | 	    while (i >= 0 && Py_UNICODE_ISSPACE(buf[i])) | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  | 		i--; | 
					
						
							|  |  |  | 	    j = i; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (j >= 0) { | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  | 	SPLIT_APPEND(buf, 0, j + 1); | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-05-23 18:44:25 +00:00
										 |  |  |     if (PyList_Reverse(list) < 0) | 
					
						
							|  |  |  |         goto onError; | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  |     return list; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							|  |  |  |     Py_DECREF(list); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static  | 
					
						
							|  |  |  | PyObject *rsplit_char(PyUnicodeObject *self, | 
					
						
							|  |  |  | 		      PyObject *list, | 
					
						
							|  |  |  | 		      Py_UNICODE ch, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 		      Py_ssize_t maxcount) | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     register Py_ssize_t i; | 
					
						
							|  |  |  |     register Py_ssize_t j; | 
					
						
							|  |  |  |     Py_ssize_t len = self->length; | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  |     PyObject *str; | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  |     register const Py_UNICODE *buf = self->str; | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (i = j = len - 1; i >= 0; ) { | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  | 	if (buf[i] == ch) { | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  | 	    if (maxcount-- <= 0) | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  | 	    SPLIT_APPEND(buf, i + 1, j + 1); | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  | 	    j = i = i - 1; | 
					
						
							|  |  |  | 	} else | 
					
						
							|  |  |  | 	    i--; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-12-23 09:10:16 +00:00
										 |  |  |     if (j >= -1) { | 
					
						
							| 
									
										
										
										
											2008-01-30 11:32:37 +00:00
										 |  |  | 	SPLIT_APPEND(buf, 0, j + 1); | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-05-23 18:44:25 +00:00
										 |  |  |     if (PyList_Reverse(list) < 0) | 
					
						
							|  |  |  |         goto onError; | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  |     return list; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							|  |  |  |     Py_DECREF(list); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static  | 
					
						
							|  |  |  | PyObject *rsplit_substring(PyUnicodeObject *self, | 
					
						
							|  |  |  | 			   PyObject *list, | 
					
						
							|  |  |  | 			   PyUnicodeObject *substring, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			   Py_ssize_t maxcount) | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     register Py_ssize_t i; | 
					
						
							|  |  |  |     register Py_ssize_t j; | 
					
						
							|  |  |  |     Py_ssize_t len = self->length; | 
					
						
							|  |  |  |     Py_ssize_t sublen = substring->length; | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  |     PyObject *str; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = len - sublen, j = len; i >= 0; ) { | 
					
						
							|  |  |  | 	if (Py_UNICODE_MATCH(self, i, substring)) { | 
					
						
							|  |  |  | 	    if (maxcount-- <= 0) | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2006-05-23 18:44:25 +00:00
										 |  |  | 	    SPLIT_APPEND(self->str, i + sublen, j); | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  | 	    j = i; | 
					
						
							|  |  |  | 	    i -= sublen; | 
					
						
							|  |  |  | 	} else | 
					
						
							|  |  |  | 	    i--; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (j >= 0) { | 
					
						
							| 
									
										
										
										
											2006-05-23 18:44:25 +00:00
										 |  |  | 	SPLIT_APPEND(self->str, 0, j); | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-05-23 18:44:25 +00:00
										 |  |  |     if (PyList_Reverse(list) < 0) | 
					
						
							|  |  |  |         goto onError; | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  |     return list; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							|  |  |  |     Py_DECREF(list); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | #undef SPLIT_APPEND
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static | 
					
						
							|  |  |  | PyObject *split(PyUnicodeObject *self, | 
					
						
							|  |  |  | 		PyUnicodeObject *substring, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 		Py_ssize_t maxcount) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject *list; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (maxcount < 0) | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |         maxcount = PY_SSIZE_T_MAX; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     list = PyList_New(0); | 
					
						
							|  |  |  |     if (!list) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (substring == NULL) | 
					
						
							|  |  |  | 	return split_whitespace(self,list,maxcount); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     else if (substring->length == 1) | 
					
						
							|  |  |  | 	return split_char(self,list,substring->str[0],maxcount); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     else if (substring->length == 0) { | 
					
						
							|  |  |  | 	Py_DECREF(list); | 
					
						
							|  |  |  | 	PyErr_SetString(PyExc_ValueError, "empty separator"); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  | 	return split_substring(self,list,substring,maxcount); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  | static | 
					
						
							|  |  |  | PyObject *rsplit(PyUnicodeObject *self, | 
					
						
							|  |  |  | 		 PyUnicodeObject *substring, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 		 Py_ssize_t maxcount) | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject *list; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (maxcount < 0) | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |         maxcount = PY_SSIZE_T_MAX; | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     list = PyList_New(0); | 
					
						
							|  |  |  |     if (!list) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (substring == NULL) | 
					
						
							|  |  |  | 	return rsplit_whitespace(self,list,maxcount); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     else if (substring->length == 1) | 
					
						
							|  |  |  | 	return rsplit_char(self,list,substring->str[0],maxcount); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     else if (substring->length == 0) { | 
					
						
							|  |  |  | 	Py_DECREF(list); | 
					
						
							|  |  |  | 	PyErr_SetString(PyExc_ValueError, "empty separator"); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  | 	return rsplit_substring(self,list,substring,maxcount); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | static | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | PyObject *replace(PyUnicodeObject *self, | 
					
						
							|  |  |  | 		  PyUnicodeObject *str1, | 
					
						
							|  |  |  | 		  PyUnicodeObject *str2, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 		  Py_ssize_t maxcount) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     PyUnicodeObject *u; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (maxcount < 0) | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  | 	maxcount = PY_SSIZE_T_MAX; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-24 16:35:18 +00:00
										 |  |  |     if (str1->length == str2->length) { | 
					
						
							|  |  |  |         /* same length */ | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |         Py_ssize_t i; | 
					
						
							| 
									
										
										
										
											2006-05-24 16:35:18 +00:00
										 |  |  |         if (str1->length == 1) { | 
					
						
							|  |  |  |             /* replace characters */ | 
					
						
							|  |  |  |             Py_UNICODE u1, u2; | 
					
						
							|  |  |  |             if (!findchar(self->str, self->length, str1->str[0])) | 
					
						
							|  |  |  |                 goto nothing; | 
					
						
							|  |  |  |             u = (PyUnicodeObject*) PyUnicode_FromUnicode(NULL, self->length); | 
					
						
							|  |  |  |             if (!u) | 
					
						
							|  |  |  |                 return NULL; | 
					
						
							|  |  |  |             Py_UNICODE_COPY(u->str, self->str, self->length); | 
					
						
							|  |  |  |             u1 = str1->str[0]; | 
					
						
							|  |  |  |             u2 = str2->str[0]; | 
					
						
							|  |  |  |             for (i = 0; i < u->length; i++) | 
					
						
							|  |  |  |                 if (u->str[i] == u1) { | 
					
						
							|  |  |  |                     if (--maxcount < 0) | 
					
						
							|  |  |  |                         break; | 
					
						
							|  |  |  |                     u->str[i] = u2; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2006-05-24 16:35:18 +00:00
										 |  |  |             i = fastsearch( | 
					
						
							|  |  |  |                 self->str, self->length, str1->str, str1->length, FAST_SEARCH | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |                 ); | 
					
						
							| 
									
										
										
										
											2006-05-24 16:35:18 +00:00
										 |  |  |             if (i < 0) | 
					
						
							|  |  |  |                 goto nothing; | 
					
						
							|  |  |  |             u = (PyUnicodeObject*) PyUnicode_FromUnicode(NULL, self->length); | 
					
						
							|  |  |  |             if (!u) | 
					
						
							|  |  |  |                 return NULL; | 
					
						
							|  |  |  |             Py_UNICODE_COPY(u->str, self->str, self->length); | 
					
						
							|  |  |  |             while (i <= self->length - str1->length) | 
					
						
							|  |  |  |                 if (Py_UNICODE_MATCH(self, i, str1)) { | 
					
						
							|  |  |  |                     if (--maxcount < 0) | 
					
						
							|  |  |  |                         break; | 
					
						
							|  |  |  |                     Py_UNICODE_COPY(u->str+i, str2->str, str2->length); | 
					
						
							|  |  |  |                     i += str1->length; | 
					
						
							|  |  |  |                 } else | 
					
						
							|  |  |  |                     i++; | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2006-05-24 16:35:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-27 14:58:20 +00:00
										 |  |  |         Py_ssize_t n, i, j, e; | 
					
						
							| 
									
										
										
										
											2006-05-25 16:46:54 +00:00
										 |  |  |         Py_ssize_t product, new_size, delta; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         Py_UNICODE *p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* replace strings */ | 
					
						
							| 
									
										
										
										
											2006-05-26 19:24:53 +00:00
										 |  |  |         n = stringlib_count(self->str, self->length, str1->str, str1->length); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         if (n > maxcount) | 
					
						
							|  |  |  |             n = maxcount; | 
					
						
							| 
									
										
										
										
											2006-05-24 16:35:18 +00:00
										 |  |  |         if (n == 0) | 
					
						
							|  |  |  |             goto nothing; | 
					
						
							| 
									
										
										
										
											2006-05-25 16:46:54 +00:00
										 |  |  |         /* new_size = self->length + n * (str2->length - str1->length)); */ | 
					
						
							|  |  |  |         delta = (str2->length - str1->length); | 
					
						
							|  |  |  |         if (delta == 0) { | 
					
						
							|  |  |  |             new_size = self->length; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             product = n * (str2->length - str1->length); | 
					
						
							|  |  |  |             if ((product / (str2->length - str1->length)) != n) { | 
					
						
							|  |  |  |                 PyErr_SetString(PyExc_OverflowError, | 
					
						
							|  |  |  |                                 "replace string is too long"); | 
					
						
							|  |  |  |                 return NULL; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             new_size = self->length + product; | 
					
						
							|  |  |  |             if (new_size < 0) { | 
					
						
							|  |  |  |                 PyErr_SetString(PyExc_OverflowError, | 
					
						
							|  |  |  |                                 "replace string is too long"); | 
					
						
							|  |  |  |                 return NULL; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         u = _PyUnicode_New(new_size); | 
					
						
							| 
									
										
										
										
											2006-05-24 16:35:18 +00:00
										 |  |  |         if (!u) | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |         i = 0; | 
					
						
							|  |  |  |         p = u->str; | 
					
						
							| 
									
										
										
										
											2006-05-27 14:58:20 +00:00
										 |  |  |         e = self->length - str1->length; | 
					
						
							| 
									
										
										
										
											2006-05-24 16:35:18 +00:00
										 |  |  |         if (str1->length > 0) { | 
					
						
							| 
									
										
										
										
											2006-05-27 14:58:20 +00:00
										 |  |  |             while (n-- > 0) { | 
					
						
							|  |  |  |                 /* look for next match */ | 
					
						
							|  |  |  |                 j = i; | 
					
						
							|  |  |  |                 while (j <= e) { | 
					
						
							|  |  |  |                     if (Py_UNICODE_MATCH(self, j, str1)) | 
					
						
							|  |  |  |                         break; | 
					
						
							|  |  |  |                     j++; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 		if (j > i) { | 
					
						
							|  |  |  |                     if (j > e) | 
					
						
							|  |  |  |                         break; | 
					
						
							|  |  |  |                     /* copy unchanged part [i:j] */ | 
					
						
							|  |  |  |                     Py_UNICODE_COPY(p, self->str+i, j-i); | 
					
						
							|  |  |  |                     p += j - i; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 /* copy substitution string */ | 
					
						
							|  |  |  |                 if (str2->length > 0) { | 
					
						
							| 
									
										
										
										
											2006-05-24 16:35:18 +00:00
										 |  |  |                     Py_UNICODE_COPY(p, str2->str, str2->length); | 
					
						
							|  |  |  |                     p += str2->length; | 
					
						
							| 
									
										
										
										
											2006-05-27 14:58:20 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |                 i = j + str1->length; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (i < self->length) | 
					
						
							|  |  |  |                 /* copy tail [i:] */ | 
					
						
							|  |  |  |                 Py_UNICODE_COPY(p, self->str+i, self->length-i); | 
					
						
							| 
									
										
										
										
											2006-05-24 16:35:18 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2006-05-27 14:58:20 +00:00
										 |  |  |             /* interleave */ | 
					
						
							| 
									
										
										
										
											2006-05-24 16:35:18 +00:00
										 |  |  |             while (n > 0) { | 
					
						
							|  |  |  |                 Py_UNICODE_COPY(p, str2->str, str2->length); | 
					
						
							|  |  |  |                 p += str2->length; | 
					
						
							|  |  |  |                 if (--n <= 0) | 
					
						
							|  |  |  |                     break; | 
					
						
							|  |  |  |                 *p++ = self->str[i++]; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2006-05-24 16:35:18 +00:00
										 |  |  |             Py_UNICODE_COPY(p, self->str+i, self->length-i); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return (PyObject *) u; | 
					
						
							| 
									
										
										
										
											2006-05-24 16:35:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | nothing: | 
					
						
							|  |  |  |     /* nothing to replace; return original string (when possible) */ | 
					
						
							|  |  |  |     if (PyUnicode_CheckExact(self)) { | 
					
						
							|  |  |  |         Py_INCREF(self); | 
					
						
							|  |  |  |         return (PyObject *) self; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return PyUnicode_FromUnicode(self->str, self->length); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* --- Unicode Object Methods --------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(title__doc__, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | "S.title() -> unicode\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Return a titlecased version of S, i.e. words start with title case\n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | characters, all remaining cased characters have lower case."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  | unicode_title(PyUnicodeObject *self) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     return fixup(self, fixtitle); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(capitalize__doc__, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | "S.capitalize() -> unicode\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Return a capitalized version of S, i.e. make the first character\n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | have upper case."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  | unicode_capitalize(PyUnicodeObject *self) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     return fixup(self, fixcapitalize); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if 0
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(capwords__doc__, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | "S.capwords() -> unicode\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Apply .capitalize() to all words in S and return the result with\n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | normalized whitespace (all whitespace strings are replaced by ' ')."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  | unicode_capwords(PyUnicodeObject *self) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject *list; | 
					
						
							|  |  |  |     PyObject *item; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t i; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Split into words */ | 
					
						
							|  |  |  |     list = split(self, NULL, -1); | 
					
						
							|  |  |  |     if (!list) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Capitalize each word */ | 
					
						
							|  |  |  |     for (i = 0; i < PyList_GET_SIZE(list); i++) { | 
					
						
							|  |  |  |         item = fixup((PyUnicodeObject *)PyList_GET_ITEM(list, i), | 
					
						
							|  |  |  | 		     fixcapitalize); | 
					
						
							|  |  |  |         if (item == NULL) | 
					
						
							|  |  |  |             goto onError; | 
					
						
							|  |  |  |         Py_DECREF(PyList_GET_ITEM(list, i)); | 
					
						
							|  |  |  |         PyList_SET_ITEM(list, i, item); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Join the words to form a new string */ | 
					
						
							|  |  |  |     item = PyUnicode_Join(NULL, list); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | onError: | 
					
						
							|  |  |  |     Py_DECREF(list); | 
					
						
							|  |  |  |     return (PyObject *)item; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-26 08:21:35 +00:00
										 |  |  | /* Argument converter.  Coerces to a single unicode character */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | convert_uc(PyObject *obj, void *addr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Py_UNICODE *fillcharloc = (Py_UNICODE *)addr; | 
					
						
							|  |  |  | 	PyObject *uniobj; | 
					
						
							|  |  |  | 	Py_UNICODE *unistr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	uniobj = PyUnicode_FromObject(obj); | 
					
						
							|  |  |  | 	if (uniobj == NULL) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 			"The fill character cannot be converted to Unicode"); | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (PyUnicode_GET_SIZE(uniobj) != 1) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 			"The fill character must be exactly one character long"); | 
					
						
							|  |  |  | 		Py_DECREF(uniobj); | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	unistr = PyUnicode_AS_UNICODE(uniobj); | 
					
						
							|  |  |  | 	*fillcharloc = unistr[0]; | 
					
						
							|  |  |  | 	Py_DECREF(uniobj); | 
					
						
							|  |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(center__doc__, | 
					
						
							| 
									
										
										
										
											2003-11-26 08:21:35 +00:00
										 |  |  | "S.center(width[, fillchar]) -> unicode\n\
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2003-11-26 08:21:35 +00:00
										 |  |  | Return S centered in a Unicode string of length width. Padding is\n\ | 
					
						
							|  |  |  | done using the specified fill character (default is a space)"); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | unicode_center(PyUnicodeObject *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t marg, left; | 
					
						
							|  |  |  |     Py_ssize_t width; | 
					
						
							| 
									
										
										
										
											2003-11-26 08:21:35 +00:00
										 |  |  |     Py_UNICODE fillchar = ' '; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-16 19:34:37 +00:00
										 |  |  |     if (!PyArg_ParseTuple(args, "n|O&:center", &width, convert_uc, &fillchar)) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-12 03:03:31 +00:00
										 |  |  |     if (self->length >= width && PyUnicode_CheckExact(self)) { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         Py_INCREF(self); | 
					
						
							|  |  |  |         return (PyObject*) self; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     marg = width - self->length; | 
					
						
							|  |  |  |     left = marg / 2 + (marg & width & 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-26 08:21:35 +00:00
										 |  |  |     return (PyObject*) pad(self, left, marg - left, fillchar); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-08 08:04:29 +00:00
										 |  |  | #if 0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* This code should go into some future Unicode collation support
 | 
					
						
							|  |  |  |    module. The basic comparison should compare ordinals on a naive | 
					
						
							| 
									
										
										
										
											2000-08-12 22:14:34 +00:00
										 |  |  |    basis (this is what Java does and thus JPython too). */ | 
					
						
							| 
									
										
										
										
											2000-08-08 08:04:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-04 09:51:07 +00:00
										 |  |  | /* speedy UTF-16 code point order comparison */ | 
					
						
							|  |  |  | /* gleaned from: */ | 
					
						
							|  |  |  | /* http://www-4.ibm.com/software/developer/library/utf16.html?dwzone=unicode */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-07 17:51:08 +00:00
										 |  |  | static short utf16Fixup[32] = | 
					
						
							| 
									
										
										
										
											2000-07-04 09:51:07 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |     0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  |     0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							| 
									
										
										
										
											2000-07-07 17:51:08 +00:00
										 |  |  |     0, 0, 0, 0x2000, -0x800, -0x800, -0x800, -0x800 | 
					
						
							| 
									
										
										
										
											2000-07-04 09:51:07 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | unicode_compare(PyUnicodeObject *str1, PyUnicodeObject *str2) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t len1, len2; | 
					
						
							| 
									
										
										
										
											2000-07-04 09:51:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     Py_UNICODE *s1 = str1->str; | 
					
						
							|  |  |  |     Py_UNICODE *s2 = str2->str; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     len1 = str1->length; | 
					
						
							|  |  |  |     len2 = str2->length; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     while (len1 > 0 && len2 > 0) { | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |         Py_UNICODE c1, c2; | 
					
						
							| 
									
										
										
										
											2000-07-04 09:51:07 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         c1 = *s1++; | 
					
						
							|  |  |  |         c2 = *s2++; | 
					
						
							| 
									
										
										
										
											2001-06-26 16:39:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-04 09:51:07 +00:00
										 |  |  | 	if (c1 > (1<<11) * 26) | 
					
						
							|  |  |  | 	    c1 += utf16Fixup[c1>>11]; | 
					
						
							|  |  |  | 	if (c2 > (1<<11) * 26) | 
					
						
							|  |  |  |             c2 += utf16Fixup[c2>>11]; | 
					
						
							|  |  |  |         /* now c1 and c2 are in UTF-32-compatible order */ | 
					
						
							| 
									
										
										
										
											2001-06-26 16:39:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (c1 != c2) | 
					
						
							|  |  |  |             return (c1 < c2) ? -1 : 1; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-04 09:51:07 +00:00
										 |  |  |         len1--; len2--; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return (len1 < len2) ? -1 : (len1 != len2); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-08 08:04:29 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | unicode_compare(PyUnicodeObject *str1, PyUnicodeObject *str2) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     register Py_ssize_t len1, len2; | 
					
						
							| 
									
										
										
										
											2000-08-08 08:04:29 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Py_UNICODE *s1 = str1->str; | 
					
						
							|  |  |  |     Py_UNICODE *s2 = str2->str; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     len1 = str1->length; | 
					
						
							|  |  |  |     len2 = str2->length; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-08 08:04:29 +00:00
										 |  |  |     while (len1 > 0 && len2 > 0) { | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |         Py_UNICODE c1, c2; | 
					
						
							| 
									
										
										
										
											2001-06-26 16:39:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         c1 = *s1++; | 
					
						
							|  |  |  |         c2 = *s2++; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (c1 != c2) | 
					
						
							|  |  |  |             return (c1 < c2) ? -1 : 1; | 
					
						
							| 
									
										
										
										
											2000-08-08 08:04:29 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         len1--; len2--; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return (len1 < len2) ? -1 : (len1 != len2); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | int PyUnicode_Compare(PyObject *left, | 
					
						
							|  |  |  | 		      PyObject *right) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyUnicodeObject *u = NULL, *v = NULL; | 
					
						
							|  |  |  |     int result; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Coerce the two arguments */ | 
					
						
							|  |  |  |     u = (PyUnicodeObject *)PyUnicode_FromObject(left); | 
					
						
							|  |  |  |     if (u == NULL) | 
					
						
							|  |  |  | 	goto onError; | 
					
						
							|  |  |  |     v = (PyUnicodeObject *)PyUnicode_FromObject(right); | 
					
						
							|  |  |  |     if (v == NULL) | 
					
						
							|  |  |  | 	goto onError; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-16 12:04:32 +00:00
										 |  |  |     /* Shortcut for empty or interned objects */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (v == u) { | 
					
						
							|  |  |  | 	Py_DECREF(u); | 
					
						
							|  |  |  | 	Py_DECREF(v); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     result = unicode_compare(u, v); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_DECREF(u); | 
					
						
							|  |  |  |     Py_DECREF(v); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | onError: | 
					
						
							|  |  |  |     Py_XDECREF(u); | 
					
						
							|  |  |  |     Py_XDECREF(v); | 
					
						
							|  |  |  |     return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-14 10:55:19 +00:00
										 |  |  | PyObject *PyUnicode_RichCompare(PyObject *left, | 
					
						
							|  |  |  |                                 PyObject *right, | 
					
						
							|  |  |  |                                 int op) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int result; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     result = PyUnicode_Compare(left, right); | 
					
						
							|  |  |  |     if (result == -1 && PyErr_Occurred()) | 
					
						
							|  |  |  |         goto onError; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Convert the return value to a Boolean */ | 
					
						
							|  |  |  |     switch (op) { | 
					
						
							|  |  |  |     case Py_EQ: | 
					
						
							|  |  |  |         result = (result == 0); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case Py_NE: | 
					
						
							|  |  |  |         result = (result != 0); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case Py_LE: | 
					
						
							|  |  |  |         result = (result <= 0); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case Py_GE: | 
					
						
							|  |  |  |         result = (result >= 0); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case Py_LT: | 
					
						
							|  |  |  |         result = (result == -1); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case Py_GT: | 
					
						
							|  |  |  |         result = (result == 1); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return PyBool_FromLong(result); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Standard case
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |        Type errors mean that PyUnicode_FromObject() could not convert | 
					
						
							|  |  |  |        one of the arguments (usually the right hand side) to Unicode, | 
					
						
							|  |  |  |        ie. we can't handle the comparison request. However, it is | 
					
						
							|  |  |  |        possible that the other object knows a comparison method, which | 
					
						
							|  |  |  |        is why we return Py_NotImplemented to give the other object a | 
					
						
							|  |  |  |        chance. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     */ | 
					
						
							|  |  |  |     if (PyErr_ExceptionMatches(PyExc_TypeError)) { | 
					
						
							|  |  |  |         PyErr_Clear(); | 
					
						
							|  |  |  |         Py_INCREF(Py_NotImplemented); | 
					
						
							|  |  |  |         return Py_NotImplemented; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (op != Py_EQ && op != Py_NE) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Equality comparison.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |        This is a special case: we silence any PyExc_UnicodeDecodeError | 
					
						
							|  |  |  |        and instead turn it into a PyErr_UnicodeWarning. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     */ | 
					
						
							|  |  |  |     if (!PyErr_ExceptionMatches(PyExc_UnicodeDecodeError)) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     PyErr_Clear(); | 
					
						
							|  |  |  |     if (PyErr_Warn(PyExc_UnicodeWarning,  | 
					
						
							|  |  |  |                    (op == Py_EQ) ?  | 
					
						
							|  |  |  |                    "Unicode equal comparison " | 
					
						
							|  |  |  |                    "failed to convert both arguments to Unicode - " | 
					
						
							|  |  |  |                    "interpreting them as being unequal" : | 
					
						
							|  |  |  |                    "Unicode unequal comparison " | 
					
						
							|  |  |  |                    "failed to convert both arguments to Unicode - " | 
					
						
							|  |  |  |                    "interpreting them as being unequal" | 
					
						
							|  |  |  |                    ) < 0) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     result = (op == Py_NE); | 
					
						
							|  |  |  |     return PyBool_FromLong(result); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-13 15:55:09 +00:00
										 |  |  | int PyUnicode_Contains(PyObject *container, | 
					
						
							|  |  |  | 		       PyObject *element) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  |     PyObject *str, *sub; | 
					
						
							|  |  |  |     int result; | 
					
						
							| 
									
										
										
										
											2000-03-13 15:55:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Coerce the two arguments */ | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  |     sub = PyUnicode_FromObject(element); | 
					
						
							|  |  |  |     if (!sub) { | 
					
						
							| 
									
										
										
										
											2000-06-28 08:11:47 +00:00
										 |  |  | 	PyErr_SetString(PyExc_TypeError, | 
					
						
							| 
									
										
										
										
											2002-08-06 16:58:21 +00:00
										 |  |  | 	    "'in <string>' requires string as left operand"); | 
					
						
							| 
									
										
										
										
											2006-05-23 10:12:21 +00:00
										 |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  |     str = PyUnicode_FromObject(container); | 
					
						
							|  |  |  |     if (!str) { | 
					
						
							|  |  |  |         Py_DECREF(sub); | 
					
						
							| 
									
										
										
										
											2006-05-23 10:12:21 +00:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2000-06-28 08:11:47 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-03-13 15:55:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  |     result = stringlib_contains_obj(str, sub); | 
					
						
							| 
									
										
										
										
											2002-08-06 16:58:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  |     Py_DECREF(str); | 
					
						
							|  |  |  |     Py_DECREF(sub); | 
					
						
							| 
									
										
										
										
											2000-03-13 15:55:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  |     return result; | 
					
						
							| 
									
										
										
										
											2000-03-13 15:55:09 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | /* Concat to string or Unicode object giving a new Unicode object. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_Concat(PyObject *left, | 
					
						
							|  |  |  | 			   PyObject *right) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyUnicodeObject *u = NULL, *v = NULL, *w; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Coerce the two arguments */ | 
					
						
							|  |  |  |     u = (PyUnicodeObject *)PyUnicode_FromObject(left); | 
					
						
							|  |  |  |     if (u == NULL) | 
					
						
							|  |  |  | 	goto onError; | 
					
						
							|  |  |  |     v = (PyUnicodeObject *)PyUnicode_FromObject(right); | 
					
						
							|  |  |  |     if (v == NULL) | 
					
						
							|  |  |  | 	goto onError; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Shortcuts */ | 
					
						
							|  |  |  |     if (v == unicode_empty) { | 
					
						
							|  |  |  | 	Py_DECREF(v); | 
					
						
							|  |  |  | 	return (PyObject *)u; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (u == unicode_empty) { | 
					
						
							|  |  |  | 	Py_DECREF(u); | 
					
						
							|  |  |  | 	return (PyObject *)v; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Concat the two Unicode strings */ | 
					
						
							|  |  |  |     w = _PyUnicode_New(u->length + v->length); | 
					
						
							|  |  |  |     if (w == NULL) | 
					
						
							|  |  |  | 	goto onError; | 
					
						
							|  |  |  |     Py_UNICODE_COPY(w->str, u->str, u->length); | 
					
						
							|  |  |  |     Py_UNICODE_COPY(w->str + u->length, v->str, v->length); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_DECREF(u); | 
					
						
							|  |  |  |     Py_DECREF(v); | 
					
						
							|  |  |  |     return (PyObject *)w; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | onError: | 
					
						
							|  |  |  |     Py_XDECREF(u); | 
					
						
							|  |  |  |     Py_XDECREF(v); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(count__doc__, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | "S.count(sub[, start[, end]]) -> int\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2006-05-22 15:35:12 +00:00
										 |  |  | Return the number of non-overlapping occurrences of substring sub in\n\ | 
					
						
							|  |  |  | Unicode string S[start:end].  Optional arguments start and end are\n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | interpreted as in slice notation."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | unicode_count(PyUnicodeObject *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyUnicodeObject *substring; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t start = 0; | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |     Py_ssize_t end = PY_SSIZE_T_MAX; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     PyObject *result; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-09 14:14:27 +00:00
										 |  |  |     if (!PyArg_ParseTuple(args, "O|O&O&:count", &substring, | 
					
						
							|  |  |  | 		_PyEval_SliceIndex, &start, _PyEval_SliceIndex, &end)) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     substring = (PyUnicodeObject *)PyUnicode_FromObject( | 
					
						
							| 
									
										
										
										
											2006-05-26 19:24:53 +00:00
										 |  |  |         (PyObject *)substring); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (substring == NULL) | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 19:33:03 +00:00
										 |  |  |     FIX_START_END(self); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 19:24:53 +00:00
										 |  |  |     result = PyInt_FromSsize_t( | 
					
						
							|  |  |  |         stringlib_count(self->str + start, end - start, | 
					
						
							|  |  |  |                         substring->str, substring->length) | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Py_DECREF(substring); | 
					
						
							| 
									
										
										
										
											2006-05-26 19:24:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(encode__doc__, | 
					
						
							| 
									
										
										
										
											2004-07-08 17:57:32 +00:00
										 |  |  | "S.encode([encoding[,errors]]) -> string or unicode\n\
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2004-07-08 17:57:32 +00:00
										 |  |  | Encodes S using the codec registered for encoding. encoding defaults\n\ | 
					
						
							|  |  |  | to the default encoding. errors may be given to set a different error\n\ | 
					
						
							| 
									
										
										
										
											2000-05-09 19:53:39 +00:00
										 |  |  | handling scheme. Default is 'strict' meaning that encoding errors raise\n\ | 
					
						
							| 
									
										
										
										
											2002-09-02 13:14:32 +00:00
										 |  |  | a UnicodeEncodeError. Other possible values are 'ignore', 'replace' and\n\ | 
					
						
							|  |  |  | 'xmlcharrefreplace' as well as any other name registered with\n\ | 
					
						
							|  |  |  | codecs.register_error that can handle UnicodeEncodeErrors."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | unicode_encode(PyUnicodeObject *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     char *encoding = NULL; | 
					
						
							|  |  |  |     char *errors = NULL; | 
					
						
							| 
									
										
										
										
											2004-07-08 17:57:32 +00:00
										 |  |  |     PyObject *v; | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (!PyArg_ParseTuple(args, "|ss:encode", &encoding, &errors)) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2004-07-08 17:57:32 +00:00
										 |  |  |     v = PyUnicode_AsEncodedObject((PyObject *)self, encoding, errors); | 
					
						
							| 
									
										
										
										
											2004-07-08 19:13:55 +00:00
										 |  |  |     if (v == NULL) | 
					
						
							|  |  |  |         goto onError; | 
					
						
							| 
									
										
										
										
											2004-07-08 17:57:32 +00:00
										 |  |  |     if (!PyString_Check(v) && !PyUnicode_Check(v)) { | 
					
						
							|  |  |  |         PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |                      "encoder did not return a string/unicode object " | 
					
						
							|  |  |  |                      "(type=%.400s)", | 
					
						
							| 
									
										
										
										
											2007-12-19 02:37:44 +00:00
										 |  |  |                      Py_TYPE(v)->tp_name); | 
					
						
							| 
									
										
										
										
											2004-07-08 17:57:32 +00:00
										 |  |  |         Py_DECREF(v); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return v; | 
					
						
							| 
									
										
										
										
											2004-07-08 19:13:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							|  |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											2004-07-08 17:57:32 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(decode__doc__, | 
					
						
							|  |  |  | "S.decode([encoding[,errors]]) -> string or unicode\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Decodes S using the codec registered for encoding. encoding defaults\n\ | 
					
						
							|  |  |  | to the default encoding. errors may be given to set a different error\n\ | 
					
						
							|  |  |  | handling scheme. Default is 'strict' meaning that encoding errors raise\n\ | 
					
						
							|  |  |  | a UnicodeDecodeError. Other possible values are 'ignore' and 'replace'\n\ | 
					
						
							|  |  |  | as well as any other name registerd with codecs.register_error that is\n\ | 
					
						
							|  |  |  | able to handle UnicodeDecodeErrors."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2004-07-10 12:04:20 +00:00
										 |  |  | unicode_decode(PyUnicodeObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											2004-07-08 17:57:32 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     char *encoding = NULL; | 
					
						
							|  |  |  |     char *errors = NULL; | 
					
						
							|  |  |  |     PyObject *v; | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     if (!PyArg_ParseTuple(args, "|ss:decode", &encoding, &errors)) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     v = PyUnicode_AsDecodedObject((PyObject *)self, encoding, errors); | 
					
						
							| 
									
										
										
										
											2004-07-08 19:13:55 +00:00
										 |  |  |     if (v == NULL) | 
					
						
							|  |  |  |         goto onError; | 
					
						
							| 
									
										
										
										
											2004-07-08 17:57:32 +00:00
										 |  |  |     if (!PyString_Check(v) && !PyUnicode_Check(v)) { | 
					
						
							|  |  |  |         PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |                      "decoder did not return a string/unicode object " | 
					
						
							|  |  |  |                      "(type=%.400s)", | 
					
						
							| 
									
										
										
										
											2007-12-19 02:37:44 +00:00
										 |  |  |                      Py_TYPE(v)->tp_name); | 
					
						
							| 
									
										
										
										
											2004-07-08 17:57:32 +00:00
										 |  |  |         Py_DECREF(v); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return v; | 
					
						
							| 
									
										
										
										
											2004-07-08 19:13:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							|  |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(expandtabs__doc__, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | "S.expandtabs([tabsize]) -> unicode\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Return a copy of S where all tab characters are expanded using spaces.\n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | If tabsize is not given, a tab size of 8 characters is assumed."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | unicode_expandtabs(PyUnicodeObject *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Py_UNICODE *e; | 
					
						
							|  |  |  |     Py_UNICODE *p; | 
					
						
							|  |  |  |     Py_UNICODE *q; | 
					
						
							| 
									
										
										
										
											2007-06-09 03:36:34 +00:00
										 |  |  |     Py_ssize_t i, j, old_j; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     PyUnicodeObject *u; | 
					
						
							|  |  |  |     int tabsize = 8; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PyArg_ParseTuple(args, "|i:expandtabs", &tabsize)) | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-16 12:04:32 +00:00
										 |  |  |     /* First pass: determine size of output string */ | 
					
						
							| 
									
										
										
										
											2007-06-09 03:36:34 +00:00
										 |  |  |     i = j = old_j = 0; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     e = self->str + self->length; | 
					
						
							|  |  |  |     for (p = self->str; p < e; p++) | 
					
						
							|  |  |  |         if (*p == '\t') { | 
					
						
							| 
									
										
										
										
											2007-06-09 03:36:34 +00:00
										 |  |  | 	    if (tabsize > 0) { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		j += tabsize - (j % tabsize); | 
					
						
							| 
									
										
										
										
											2007-06-09 03:36:34 +00:00
										 |  |  | 		if (old_j > j) { | 
					
						
							| 
									
										
										
										
											2007-06-11 02:16:10 +00:00
										 |  |  | 		    PyErr_SetString(PyExc_OverflowError, | 
					
						
							|  |  |  | 				    "new string is too long"); | 
					
						
							| 
									
										
										
										
											2007-06-09 03:36:34 +00:00
										 |  |  | 		    return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		old_j = j; | 
					
						
							|  |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  |         else { | 
					
						
							|  |  |  |             j++; | 
					
						
							|  |  |  |             if (*p == '\n' || *p == '\r') { | 
					
						
							|  |  |  |                 i += j; | 
					
						
							| 
									
										
										
										
											2007-06-11 02:16:10 +00:00
										 |  |  |                 old_j = j = 0; | 
					
						
							|  |  |  |                 if (i < 0) { | 
					
						
							|  |  |  |                     PyErr_SetString(PyExc_OverflowError, | 
					
						
							|  |  |  |                                     "new string is too long"); | 
					
						
							|  |  |  |                     return NULL; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-09 03:36:34 +00:00
										 |  |  |     if ((i + j) < 0) { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_OverflowError, "new string is too long"); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     /* Second pass: create output string and fill it */ | 
					
						
							|  |  |  |     u = _PyUnicode_New(i + j); | 
					
						
							|  |  |  |     if (!u) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     j = 0; | 
					
						
							|  |  |  |     q = u->str; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (p = self->str; p < e; p++) | 
					
						
							|  |  |  |         if (*p == '\t') { | 
					
						
							|  |  |  | 	    if (tabsize > 0) { | 
					
						
							|  |  |  | 		i = tabsize - (j % tabsize); | 
					
						
							|  |  |  | 		j += i; | 
					
						
							|  |  |  | 		while (i--) | 
					
						
							|  |  |  | 		    *q++ = ' '; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  |             j++; | 
					
						
							|  |  |  | 	    *q++ = *p; | 
					
						
							|  |  |  |             if (*p == '\n' || *p == '\r') | 
					
						
							|  |  |  |                 j = 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return (PyObject*) u; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(find__doc__, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | "S.find(sub [,start [,end]]) -> int\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Return the lowest index in S where substring sub is found,\n\ | 
					
						
							| 
									
										
										
										
											2007-07-29 17:38:35 +00:00
										 |  |  | such that sub is contained within s[start:end].  Optional\n\ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | arguments start and end are interpreted as in slice notation.\n\ | 
					
						
							|  |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | Return -1 on failure."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | unicode_find(PyUnicodeObject *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  |     PyObject *substring; | 
					
						
							| 
									
										
										
										
											2007-11-16 18:04:14 +00:00
										 |  |  |     Py_ssize_t start; | 
					
						
							|  |  |  |     Py_ssize_t end; | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  |     Py_ssize_t result; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-16 18:04:14 +00:00
										 |  |  |     if (!_ParseTupleFinds(args, &substring, &start, &end)) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-27 15:20:22 +00:00
										 |  |  |     result = stringlib_find_slice( | 
					
						
							|  |  |  |         PyUnicode_AS_UNICODE(self), PyUnicode_GET_SIZE(self), | 
					
						
							|  |  |  |         PyUnicode_AS_UNICODE(substring), PyUnicode_GET_SIZE(substring), | 
					
						
							|  |  |  |         start, end | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Py_DECREF(substring); | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return PyInt_FromSsize_t(result); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | unicode_getitem(PyUnicodeObject *self, Py_ssize_t index) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     if (index < 0 || index >= self->length) { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_IndexError, "string index out of range"); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return (PyObject*) PyUnicode_FromUnicode(&self->str[index], 1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static long | 
					
						
							|  |  |  | unicode_hash(PyUnicodeObject *self) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2000-07-10 18:27:47 +00:00
										 |  |  |     /* Since Unicode objects compare equal to their ASCII string
 | 
					
						
							|  |  |  |        counterparts, they should use the individual character values | 
					
						
							|  |  |  |        as basis for their hash value.  This is needed to assure that | 
					
						
							|  |  |  |        strings and Unicode objects behave in the same way as | 
					
						
							|  |  |  |        dictionary keys. */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     register Py_ssize_t len; | 
					
						
							| 
									
										
										
										
											2000-07-10 18:27:47 +00:00
										 |  |  |     register Py_UNICODE *p; | 
					
						
							|  |  |  |     register long x; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (self->hash != -1) | 
					
						
							|  |  |  | 	return self->hash; | 
					
						
							| 
									
										
										
										
											2000-07-10 18:27:47 +00:00
										 |  |  |     len = PyUnicode_GET_SIZE(self); | 
					
						
							|  |  |  |     p = PyUnicode_AS_UNICODE(self); | 
					
						
							|  |  |  |     x = *p << 7; | 
					
						
							|  |  |  |     while (--len >= 0) | 
					
						
							|  |  |  | 	x = (1000003*x) ^ *p++; | 
					
						
							|  |  |  |     x ^= PyUnicode_GET_SIZE(self); | 
					
						
							|  |  |  |     if (x == -1) | 
					
						
							|  |  |  | 	x = -2; | 
					
						
							|  |  |  |     self->hash = x; | 
					
						
							|  |  |  |     return x; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(index__doc__, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | "S.index(sub [,start [,end]]) -> int\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | Like S.find() but raise ValueError when the substring is not found."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | unicode_index(PyUnicodeObject *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t result; | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  |     PyObject *substring; | 
					
						
							| 
									
										
										
										
											2007-11-16 18:04:14 +00:00
										 |  |  |     Py_ssize_t start; | 
					
						
							|  |  |  |     Py_ssize_t end; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-16 18:04:14 +00:00
										 |  |  |     if (!_ParseTupleFinds(args, &substring, &start, &end)) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-27 15:20:22 +00:00
										 |  |  |     result = stringlib_find_slice( | 
					
						
							|  |  |  |         PyUnicode_AS_UNICODE(self), PyUnicode_GET_SIZE(self), | 
					
						
							|  |  |  |         PyUnicode_AS_UNICODE(substring), PyUnicode_GET_SIZE(substring), | 
					
						
							|  |  |  |         start, end | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Py_DECREF(substring); | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (result < 0) { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_ValueError, "substring not found"); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     return PyInt_FromSsize_t(result); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(islower__doc__, | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | "S.islower() -> bool\n\
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | Return True if all cased characters in S are lowercase and there is\n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | at least one cased character in S, False otherwise."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  | unicode_islower(PyUnicodeObject *self) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self); | 
					
						
							|  |  |  |     register const Py_UNICODE *e; | 
					
						
							|  |  |  |     int cased; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Shortcut for single character strings */ | 
					
						
							|  |  |  |     if (PyUnicode_GET_SIZE(self) == 1) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	return PyBool_FromLong(Py_UNICODE_ISLOWER(*p)); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-14 09:18:32 +00:00
										 |  |  |     /* Special case for empty strings */ | 
					
						
							| 
									
										
										
										
											2006-01-05 10:00:36 +00:00
										 |  |  |     if (PyUnicode_GET_SIZE(self) == 0) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	return PyBool_FromLong(0); | 
					
						
							| 
									
										
										
										
											2000-06-14 09:18:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     e = p + PyUnicode_GET_SIZE(self); | 
					
						
							|  |  |  |     cased = 0; | 
					
						
							|  |  |  |     for (; p < e; p++) { | 
					
						
							|  |  |  | 	register const Py_UNICODE ch = *p; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	if (Py_UNICODE_ISUPPER(ch) || Py_UNICODE_ISTITLE(ch)) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	    return PyBool_FromLong(0); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	else if (!cased && Py_UNICODE_ISLOWER(ch)) | 
					
						
							|  |  |  | 	    cased = 1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  |     return PyBool_FromLong(cased); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(isupper__doc__, | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | "S.isupper() -> bool\n\
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2003-10-18 09:55:08 +00:00
										 |  |  | Return True if all cased characters in S are uppercase and there is\n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | at least one cased character in S, False otherwise."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  | unicode_isupper(PyUnicodeObject *self) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self); | 
					
						
							|  |  |  |     register const Py_UNICODE *e; | 
					
						
							|  |  |  |     int cased; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Shortcut for single character strings */ | 
					
						
							|  |  |  |     if (PyUnicode_GET_SIZE(self) == 1) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	return PyBool_FromLong(Py_UNICODE_ISUPPER(*p) != 0); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-14 09:18:32 +00:00
										 |  |  |     /* Special case for empty strings */ | 
					
						
							| 
									
										
										
										
											2006-01-05 10:00:36 +00:00
										 |  |  |     if (PyUnicode_GET_SIZE(self) == 0) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	return PyBool_FromLong(0); | 
					
						
							| 
									
										
										
										
											2000-06-14 09:18:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     e = p + PyUnicode_GET_SIZE(self); | 
					
						
							|  |  |  |     cased = 0; | 
					
						
							|  |  |  |     for (; p < e; p++) { | 
					
						
							|  |  |  | 	register const Py_UNICODE ch = *p; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	if (Py_UNICODE_ISLOWER(ch) || Py_UNICODE_ISTITLE(ch)) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	    return PyBool_FromLong(0); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	else if (!cased && Py_UNICODE_ISUPPER(ch)) | 
					
						
							|  |  |  | 	    cased = 1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  |     return PyBool_FromLong(cased); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(istitle__doc__, | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | "S.istitle() -> bool\n\
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2003-10-18 09:55:08 +00:00
										 |  |  | Return True if S is a titlecased string and there is at least one\n\ | 
					
						
							|  |  |  | character in S, i.e. upper- and titlecase characters may only\n\ | 
					
						
							|  |  |  | follow uncased characters and lowercase characters only cased ones.\n\ | 
					
						
							|  |  |  | Return False otherwise."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  | unicode_istitle(PyUnicodeObject *self) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self); | 
					
						
							|  |  |  |     register const Py_UNICODE *e; | 
					
						
							|  |  |  |     int cased, previous_is_cased; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Shortcut for single character strings */ | 
					
						
							|  |  |  |     if (PyUnicode_GET_SIZE(self) == 1) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	return PyBool_FromLong((Py_UNICODE_ISTITLE(*p) != 0) || | 
					
						
							|  |  |  | 			       (Py_UNICODE_ISUPPER(*p) != 0)); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-14 09:18:32 +00:00
										 |  |  |     /* Special case for empty strings */ | 
					
						
							| 
									
										
										
										
											2006-01-05 10:00:36 +00:00
										 |  |  |     if (PyUnicode_GET_SIZE(self) == 0) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	return PyBool_FromLong(0); | 
					
						
							| 
									
										
										
										
											2000-06-14 09:18:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     e = p + PyUnicode_GET_SIZE(self); | 
					
						
							|  |  |  |     cased = 0; | 
					
						
							|  |  |  |     previous_is_cased = 0; | 
					
						
							|  |  |  |     for (; p < e; p++) { | 
					
						
							|  |  |  | 	register const Py_UNICODE ch = *p; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	if (Py_UNICODE_ISUPPER(ch) || Py_UNICODE_ISTITLE(ch)) { | 
					
						
							|  |  |  | 	    if (previous_is_cased) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 		return PyBool_FromLong(0); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    previous_is_cased = 1; | 
					
						
							|  |  |  | 	    cased = 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (Py_UNICODE_ISLOWER(ch)) { | 
					
						
							|  |  |  | 	    if (!previous_is_cased) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 		return PyBool_FromLong(0); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    previous_is_cased = 1; | 
					
						
							|  |  |  | 	    cased = 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	    previous_is_cased = 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  |     return PyBool_FromLong(cased); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(isspace__doc__, | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | "S.isspace() -> bool\n\
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2003-10-18 09:55:08 +00:00
										 |  |  | Return True if all characters in S are whitespace\n\ | 
					
						
							|  |  |  | and there is at least one character in S, False otherwise."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  | unicode_isspace(PyUnicodeObject *self) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self); | 
					
						
							|  |  |  |     register const Py_UNICODE *e; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Shortcut for single character strings */ | 
					
						
							|  |  |  |     if (PyUnicode_GET_SIZE(self) == 1 && | 
					
						
							|  |  |  | 	Py_UNICODE_ISSPACE(*p)) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	return PyBool_FromLong(1); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-14 09:18:32 +00:00
										 |  |  |     /* Special case for empty strings */ | 
					
						
							| 
									
										
										
										
											2006-01-05 10:00:36 +00:00
										 |  |  |     if (PyUnicode_GET_SIZE(self) == 0) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	return PyBool_FromLong(0); | 
					
						
							| 
									
										
										
										
											2000-06-14 09:18:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     e = p + PyUnicode_GET_SIZE(self); | 
					
						
							|  |  |  |     for (; p < e; p++) { | 
					
						
							|  |  |  | 	if (!Py_UNICODE_ISSPACE(*p)) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	    return PyBool_FromLong(0); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  |     return PyBool_FromLong(1); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(isalpha__doc__, | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | "S.isalpha() -> bool\n\
 | 
					
						
							| 
									
										
										
										
											2000-07-05 09:49:44 +00:00
										 |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2003-10-18 09:55:08 +00:00
										 |  |  | Return True if all characters in S are alphabetic\n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | and there is at least one character in S, False otherwise."); | 
					
						
							| 
									
										
										
										
											2000-07-05 09:49:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  | unicode_isalpha(PyUnicodeObject *self) | 
					
						
							| 
									
										
										
										
											2000-07-05 09:49:44 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self); | 
					
						
							|  |  |  |     register const Py_UNICODE *e; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Shortcut for single character strings */ | 
					
						
							|  |  |  |     if (PyUnicode_GET_SIZE(self) == 1 && | 
					
						
							|  |  |  | 	Py_UNICODE_ISALPHA(*p)) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	return PyBool_FromLong(1); | 
					
						
							| 
									
										
										
										
											2000-07-05 09:49:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Special case for empty strings */ | 
					
						
							| 
									
										
										
										
											2006-01-05 10:00:36 +00:00
										 |  |  |     if (PyUnicode_GET_SIZE(self) == 0) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	return PyBool_FromLong(0); | 
					
						
							| 
									
										
										
										
											2000-07-05 09:49:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     e = p + PyUnicode_GET_SIZE(self); | 
					
						
							|  |  |  |     for (; p < e; p++) { | 
					
						
							|  |  |  | 	if (!Py_UNICODE_ISALPHA(*p)) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	    return PyBool_FromLong(0); | 
					
						
							| 
									
										
										
										
											2000-07-05 09:49:44 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  |     return PyBool_FromLong(1); | 
					
						
							| 
									
										
										
										
											2000-07-05 09:49:44 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(isalnum__doc__, | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | "S.isalnum() -> bool\n\
 | 
					
						
							| 
									
										
										
										
											2000-07-05 09:49:44 +00:00
										 |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2003-10-18 09:55:08 +00:00
										 |  |  | Return True if all characters in S are alphanumeric\n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | and there is at least one character in S, False otherwise."); | 
					
						
							| 
									
										
										
										
											2000-07-05 09:49:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  | unicode_isalnum(PyUnicodeObject *self) | 
					
						
							| 
									
										
										
										
											2000-07-05 09:49:44 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self); | 
					
						
							|  |  |  |     register const Py_UNICODE *e; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Shortcut for single character strings */ | 
					
						
							|  |  |  |     if (PyUnicode_GET_SIZE(self) == 1 && | 
					
						
							|  |  |  | 	Py_UNICODE_ISALNUM(*p)) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	return PyBool_FromLong(1); | 
					
						
							| 
									
										
										
										
											2000-07-05 09:49:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Special case for empty strings */ | 
					
						
							| 
									
										
										
										
											2006-01-05 10:00:36 +00:00
										 |  |  |     if (PyUnicode_GET_SIZE(self) == 0) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	return PyBool_FromLong(0); | 
					
						
							| 
									
										
										
										
											2000-07-05 09:49:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     e = p + PyUnicode_GET_SIZE(self); | 
					
						
							|  |  |  |     for (; p < e; p++) { | 
					
						
							|  |  |  | 	if (!Py_UNICODE_ISALNUM(*p)) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	    return PyBool_FromLong(0); | 
					
						
							| 
									
										
										
										
											2000-07-05 09:49:44 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  |     return PyBool_FromLong(1); | 
					
						
							| 
									
										
										
										
											2000-07-05 09:49:44 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(isdecimal__doc__, | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | "S.isdecimal() -> bool\n\
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | Return True if there are only decimal characters in S,\n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | False otherwise."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  | unicode_isdecimal(PyUnicodeObject *self) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self); | 
					
						
							|  |  |  |     register const Py_UNICODE *e; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Shortcut for single character strings */ | 
					
						
							|  |  |  |     if (PyUnicode_GET_SIZE(self) == 1 && | 
					
						
							|  |  |  | 	Py_UNICODE_ISDECIMAL(*p)) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	return PyBool_FromLong(1); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-14 09:18:32 +00:00
										 |  |  |     /* Special case for empty strings */ | 
					
						
							| 
									
										
										
										
											2006-01-05 10:00:36 +00:00
										 |  |  |     if (PyUnicode_GET_SIZE(self) == 0) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	return PyBool_FromLong(0); | 
					
						
							| 
									
										
										
										
											2000-06-14 09:18:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     e = p + PyUnicode_GET_SIZE(self); | 
					
						
							|  |  |  |     for (; p < e; p++) { | 
					
						
							|  |  |  | 	if (!Py_UNICODE_ISDECIMAL(*p)) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	    return PyBool_FromLong(0); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  |     return PyBool_FromLong(1); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(isdigit__doc__, | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | "S.isdigit() -> bool\n\
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2003-10-18 09:55:08 +00:00
										 |  |  | Return True if all characters in S are digits\n\ | 
					
						
							|  |  |  | and there is at least one character in S, False otherwise."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  | unicode_isdigit(PyUnicodeObject *self) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self); | 
					
						
							|  |  |  |     register const Py_UNICODE *e; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Shortcut for single character strings */ | 
					
						
							|  |  |  |     if (PyUnicode_GET_SIZE(self) == 1 && | 
					
						
							|  |  |  | 	Py_UNICODE_ISDIGIT(*p)) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	return PyBool_FromLong(1); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-14 09:18:32 +00:00
										 |  |  |     /* Special case for empty strings */ | 
					
						
							| 
									
										
										
										
											2006-01-05 10:00:36 +00:00
										 |  |  |     if (PyUnicode_GET_SIZE(self) == 0) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	return PyBool_FromLong(0); | 
					
						
							| 
									
										
										
										
											2000-06-14 09:18:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     e = p + PyUnicode_GET_SIZE(self); | 
					
						
							|  |  |  |     for (; p < e; p++) { | 
					
						
							|  |  |  | 	if (!Py_UNICODE_ISDIGIT(*p)) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	    return PyBool_FromLong(0); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  |     return PyBool_FromLong(1); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(isnumeric__doc__, | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | "S.isnumeric() -> bool\n\
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | Return True if there are only numeric characters in S,\n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | False otherwise."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  | unicode_isnumeric(PyUnicodeObject *self) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self); | 
					
						
							|  |  |  |     register const Py_UNICODE *e; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Shortcut for single character strings */ | 
					
						
							|  |  |  |     if (PyUnicode_GET_SIZE(self) == 1 && | 
					
						
							|  |  |  | 	Py_UNICODE_ISNUMERIC(*p)) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	return PyBool_FromLong(1); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-14 09:18:32 +00:00
										 |  |  |     /* Special case for empty strings */ | 
					
						
							| 
									
										
										
										
											2006-01-05 10:00:36 +00:00
										 |  |  |     if (PyUnicode_GET_SIZE(self) == 0) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	return PyBool_FromLong(0); | 
					
						
							| 
									
										
										
										
											2000-06-14 09:18:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     e = p + PyUnicode_GET_SIZE(self); | 
					
						
							|  |  |  |     for (; p < e; p++) { | 
					
						
							|  |  |  | 	if (!Py_UNICODE_ISNUMERIC(*p)) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 	    return PyBool_FromLong(0); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  |     return PyBool_FromLong(1); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(join__doc__, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | "S.join(sequence) -> unicode\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Return a string which is the concatenation of the strings in the\n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | sequence.  The separator between elements is S."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  | unicode_join(PyObject *self, PyObject *data) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  |     return PyUnicode_Join(self, data); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | static Py_ssize_t | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | unicode_length(PyUnicodeObject *self) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return self->length; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(ljust__doc__, | 
					
						
							| 
									
										
										
										
											2004-06-02 16:49:17 +00:00
										 |  |  | "S.ljust(width[, fillchar]) -> int\n\
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | \n\ | 
					
						
							|  |  |  | Return S left justified in a Unicode string of length width. Padding is\n\ | 
					
						
							| 
									
										
										
										
											2003-11-26 08:21:35 +00:00
										 |  |  | done using the specified fill character (default is a space)."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | unicode_ljust(PyUnicodeObject *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |     Py_ssize_t width; | 
					
						
							| 
									
										
										
										
											2003-11-26 08:21:35 +00:00
										 |  |  |     Py_UNICODE fillchar = ' '; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |     if (!PyArg_ParseTuple(args, "n|O&:ljust", &width, convert_uc, &fillchar)) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-12 03:03:31 +00:00
										 |  |  |     if (self->length >= width && PyUnicode_CheckExact(self)) { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         Py_INCREF(self); | 
					
						
							|  |  |  |         return (PyObject*) self; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-26 08:21:35 +00:00
										 |  |  |     return (PyObject*) pad(self, 0, width - self->length, fillchar); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(lower__doc__, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | "S.lower() -> unicode\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | Return a copy of the string S converted to lowercase."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  | unicode_lower(PyUnicodeObject *self) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     return fixup(self, fixlower); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  | #define LEFTSTRIP 0
 | 
					
						
							|  |  |  | #define RIGHTSTRIP 1
 | 
					
						
							|  |  |  | #define BOTHSTRIP 2
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Arrays indexed by above */ | 
					
						
							|  |  |  | static const char *stripformat[] = {"|O:lstrip", "|O:rstrip", "|O:strip"}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define STRIPNAME(i) (stripformat[i]+3)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* externally visible for str.strip(unicode) */ | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | _PyUnicode_XStrip(PyUnicodeObject *self, int striptype, PyObject *sepobj) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Py_UNICODE *s = PyUnicode_AS_UNICODE(self); | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	Py_ssize_t len = PyUnicode_GET_SIZE(self); | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  | 	Py_UNICODE *sep = PyUnicode_AS_UNICODE(sepobj); | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	Py_ssize_t seplen = PyUnicode_GET_SIZE(sepobj); | 
					
						
							|  |  |  | 	Py_ssize_t i, j; | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-23 18:44:25 +00:00
										 |  |  |         BLOOM_MASK sepmask = make_bloom_mask(sep, seplen); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  | 	i = 0; | 
					
						
							|  |  |  | 	if (striptype != RIGHTSTRIP) { | 
					
						
							| 
									
										
										
										
											2006-05-23 18:44:25 +00:00
										 |  |  |             while (i < len && BLOOM_MEMBER(sepmask, s[i], sep, seplen)) { | 
					
						
							|  |  |  |                 i++; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	j = len; | 
					
						
							|  |  |  | 	if (striptype != LEFTSTRIP) { | 
					
						
							| 
									
										
										
										
											2006-05-23 18:44:25 +00:00
										 |  |  |             do { | 
					
						
							|  |  |  |                 j--; | 
					
						
							|  |  |  |             } while (j >= i && BLOOM_MEMBER(sepmask, s[j], sep, seplen)); | 
					
						
							|  |  |  |             j++; | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (i == 0 && j == len && PyUnicode_CheckExact(self)) { | 
					
						
							| 
									
										
										
										
											2006-05-23 18:44:25 +00:00
										 |  |  |             Py_INCREF(self); | 
					
						
							|  |  |  |             return (PyObject*)self; | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											2006-05-23 18:44:25 +00:00
										 |  |  |             return PyUnicode_FromUnicode(s+i, j-i); | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | do_strip(PyUnicodeObject *self, int striptype) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Py_UNICODE *s = PyUnicode_AS_UNICODE(self); | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	Py_ssize_t len = PyUnicode_GET_SIZE(self), i, j; | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	i = 0; | 
					
						
							|  |  |  | 	if (striptype != RIGHTSTRIP) { | 
					
						
							|  |  |  | 		while (i < len && Py_UNICODE_ISSPACE(s[i])) { | 
					
						
							|  |  |  | 			i++; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	j = len; | 
					
						
							|  |  |  | 	if (striptype != LEFTSTRIP) { | 
					
						
							|  |  |  | 		do { | 
					
						
							|  |  |  | 			j--; | 
					
						
							|  |  |  | 		} while (j >= i && Py_UNICODE_ISSPACE(s[j])); | 
					
						
							|  |  |  | 		j++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (i == 0 && j == len && PyUnicode_CheckExact(self)) { | 
					
						
							|  |  |  | 		Py_INCREF(self); | 
					
						
							|  |  |  | 		return (PyObject*)self; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return PyUnicode_FromUnicode(s+i, j-i); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | do_argstrip(PyUnicodeObject *self, int striptype, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject *sep = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!PyArg_ParseTuple(args, (char *)stripformat[striptype], &sep)) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (sep != NULL && sep != Py_None) { | 
					
						
							|  |  |  | 		if (PyUnicode_Check(sep)) | 
					
						
							|  |  |  | 			return _PyUnicode_XStrip(self, striptype, sep); | 
					
						
							|  |  |  | 		else if (PyString_Check(sep)) { | 
					
						
							|  |  |  | 			PyObject *res; | 
					
						
							|  |  |  | 			sep = PyUnicode_FromObject(sep); | 
					
						
							|  |  |  | 			if (sep==NULL) | 
					
						
							|  |  |  | 				return NULL; | 
					
						
							|  |  |  | 			res = _PyUnicode_XStrip(self, striptype, sep); | 
					
						
							|  |  |  | 			Py_DECREF(sep); | 
					
						
							|  |  |  | 			return res; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							|  |  |  | 			PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  | 				     "%s arg must be None, unicode or str", | 
					
						
							|  |  |  | 				     STRIPNAME(striptype)); | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return do_strip(self, striptype); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(strip__doc__, | 
					
						
							| 
									
										
										
										
											2003-04-10 22:35:32 +00:00
										 |  |  | "S.strip([chars]) -> unicode\n\
 | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  | \n\ | 
					
						
							|  |  |  | Return a copy of the string S with leading and trailing\n\ | 
					
						
							|  |  |  | whitespace removed.\n\ | 
					
						
							| 
									
										
										
										
											2003-04-10 22:35:32 +00:00
										 |  |  | If chars is given and not None, remove characters in chars instead.\n\ | 
					
						
							|  |  |  | If chars is a str, it will be converted to unicode before stripping"); | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | unicode_strip(PyUnicodeObject *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (PyTuple_GET_SIZE(args) == 0) | 
					
						
							|  |  |  | 		return do_strip(self, BOTHSTRIP); /* Common case */ | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return do_argstrip(self, BOTHSTRIP, args); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(lstrip__doc__, | 
					
						
							| 
									
										
										
										
											2003-04-10 22:35:32 +00:00
										 |  |  | "S.lstrip([chars]) -> unicode\n\
 | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  | \n\ | 
					
						
							|  |  |  | Return a copy of the string S with leading whitespace removed.\n\ | 
					
						
							| 
									
										
										
										
											2003-04-10 22:35:32 +00:00
										 |  |  | If chars is given and not None, remove characters in chars instead.\n\ | 
					
						
							|  |  |  | If chars is a str, it will be converted to unicode before stripping"); | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | unicode_lstrip(PyUnicodeObject *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (PyTuple_GET_SIZE(args) == 0) | 
					
						
							|  |  |  | 		return do_strip(self, LEFTSTRIP); /* Common case */ | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return do_argstrip(self, LEFTSTRIP, args); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(rstrip__doc__, | 
					
						
							| 
									
										
										
										
											2003-04-10 22:35:32 +00:00
										 |  |  | "S.rstrip([chars]) -> unicode\n\
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  | Return a copy of the string S with trailing whitespace removed.\n\ | 
					
						
							| 
									
										
										
										
											2003-04-10 22:35:32 +00:00
										 |  |  | If chars is given and not None, remove characters in chars instead.\n\ | 
					
						
							|  |  |  | If chars is a str, it will be converted to unicode before stripping"); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  | unicode_rstrip(PyUnicodeObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  | 	if (PyTuple_GET_SIZE(args) == 0) | 
					
						
							|  |  |  | 		return do_strip(self, RIGHTSTRIP); /* Common case */ | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return do_argstrip(self, RIGHTSTRIP, args); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | unicode_repeat(PyUnicodeObject *str, Py_ssize_t len) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     PyUnicodeObject *u; | 
					
						
							|  |  |  |     Py_UNICODE *p; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t nchars; | 
					
						
							| 
									
										
										
										
											2000-09-09 06:13:41 +00:00
										 |  |  |     size_t nbytes; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (len < 0) | 
					
						
							|  |  |  |         len = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-12 03:03:31 +00:00
										 |  |  |     if (len == 1 && PyUnicode_CheckExact(str)) { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         /* no repeat, return original string */ | 
					
						
							|  |  |  |         Py_INCREF(str); | 
					
						
							|  |  |  |         return (PyObject*) str; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-09-09 06:13:41 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* ensure # of chars needed doesn't overflow int and # of bytes
 | 
					
						
							|  |  |  |      * needed doesn't overflow size_t | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     nchars = len * str->length; | 
					
						
							|  |  |  |     if (len && nchars / len != str->length) { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_OverflowError, | 
					
						
							|  |  |  |                         "repeated string is too long"); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     nbytes = (nchars + 1) * sizeof(Py_UNICODE); | 
					
						
							|  |  |  |     if (nbytes / sizeof(Py_UNICODE) != (size_t)(nchars + 1)) { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_OverflowError, | 
					
						
							|  |  |  |                         "repeated string is too long"); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     u = _PyUnicode_New(nchars); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (!u) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     p = u->str; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-22 16:29:30 +00:00
										 |  |  |     if (str->length == 1 && len > 0) { | 
					
						
							|  |  |  |         Py_UNICODE_FILL(p, str->str[0], len); | 
					
						
							| 
									
										
										
										
											2006-05-22 17:12:58 +00:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2006-05-23 05:47:16 +00:00
										 |  |  | 	Py_ssize_t done = 0; /* number of characters copied this far */ | 
					
						
							| 
									
										
										
										
											2006-05-22 17:12:58 +00:00
										 |  |  | 	if (done < nchars) { | 
					
						
							| 
									
										
										
										
											2006-05-22 16:29:30 +00:00
										 |  |  |             Py_UNICODE_COPY(p, str->str, str->length); | 
					
						
							| 
									
										
										
										
											2006-05-22 17:12:58 +00:00
										 |  |  |             done = str->length; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	while (done < nchars) { | 
					
						
							|  |  |  |             int n = (done <= nchars-done) ? done : nchars-done; | 
					
						
							|  |  |  |             Py_UNICODE_COPY(p+done, p, n); | 
					
						
							|  |  |  |             done += n; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return (PyObject*) u; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_Replace(PyObject *obj, | 
					
						
							|  |  |  | 			    PyObject *subobj, | 
					
						
							|  |  |  | 			    PyObject *replobj, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			    Py_ssize_t maxcount) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject *self; | 
					
						
							|  |  |  |     PyObject *str1; | 
					
						
							|  |  |  |     PyObject *str2; | 
					
						
							|  |  |  |     PyObject *result; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     self = PyUnicode_FromObject(obj); | 
					
						
							|  |  |  |     if (self == NULL) | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     str1 = PyUnicode_FromObject(subobj); | 
					
						
							|  |  |  |     if (str1 == NULL) { | 
					
						
							|  |  |  | 	Py_DECREF(self); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     str2 = PyUnicode_FromObject(replobj); | 
					
						
							|  |  |  |     if (str2 == NULL) { | 
					
						
							|  |  |  | 	Py_DECREF(self); | 
					
						
							|  |  |  | 	Py_DECREF(str1); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |     result = replace((PyUnicodeObject *)self, | 
					
						
							|  |  |  | 		     (PyUnicodeObject *)str1, | 
					
						
							|  |  |  | 		     (PyUnicodeObject *)str2, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		     maxcount); | 
					
						
							|  |  |  |     Py_DECREF(self); | 
					
						
							|  |  |  |     Py_DECREF(str1); | 
					
						
							|  |  |  |     Py_DECREF(str2); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(replace__doc__, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | "S.replace (old, new[, maxsplit]) -> unicode\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Return a copy of S with all occurrences of substring\n\ | 
					
						
							|  |  |  | old replaced by new.  If the optional argument maxsplit is\n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | given, only the first maxsplit occurrences are replaced."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | unicode_replace(PyUnicodeObject *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyUnicodeObject *str1; | 
					
						
							|  |  |  |     PyUnicodeObject *str2; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t maxcount = -1; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     PyObject *result; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     if (!PyArg_ParseTuple(args, "OO|n:replace", &str1, &str2, &maxcount)) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     str1 = (PyUnicodeObject *)PyUnicode_FromObject((PyObject *)str1); | 
					
						
							|  |  |  |     if (str1 == NULL) | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     str2 = (PyUnicodeObject *)PyUnicode_FromObject((PyObject *)str2); | 
					
						
							| 
									
										
										
										
											2003-02-09 23:42:56 +00:00
										 |  |  |     if (str2 == NULL) { | 
					
						
							|  |  |  | 	Py_DECREF(str1); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2003-02-09 23:42:56 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     result = replace(self, str1, str2, maxcount); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_DECREF(str1); | 
					
						
							|  |  |  |     Py_DECREF(str2); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static | 
					
						
							|  |  |  | PyObject *unicode_repr(PyObject *unicode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return unicodeescape_string(PyUnicode_AS_UNICODE(unicode), | 
					
						
							|  |  |  | 				PyUnicode_GET_SIZE(unicode), | 
					
						
							|  |  |  | 				1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(rfind__doc__, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | "S.rfind(sub [,start [,end]]) -> int\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Return the highest index in S where substring sub is found,\n\ | 
					
						
							| 
									
										
										
										
											2007-07-29 17:38:35 +00:00
										 |  |  | such that sub is contained within s[start:end].  Optional\n\ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | arguments start and end are interpreted as in slice notation.\n\ | 
					
						
							|  |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | Return -1 on failure."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | unicode_rfind(PyUnicodeObject *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  |     PyObject *substring; | 
					
						
							| 
									
										
										
										
											2007-11-16 18:04:14 +00:00
										 |  |  |     Py_ssize_t start; | 
					
						
							|  |  |  |     Py_ssize_t end; | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  |     Py_ssize_t result; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-16 18:04:14 +00:00
										 |  |  |     if (!_ParseTupleFinds(args, &substring, &start, &end)) | 
					
						
							|  |  |  | 	    return NULL; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-27 15:20:22 +00:00
										 |  |  |     result = stringlib_rfind_slice( | 
					
						
							|  |  |  |         PyUnicode_AS_UNICODE(self), PyUnicode_GET_SIZE(self), | 
					
						
							|  |  |  |         PyUnicode_AS_UNICODE(substring), PyUnicode_GET_SIZE(substring), | 
					
						
							|  |  |  |         start, end | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Py_DECREF(substring); | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return PyInt_FromSsize_t(result); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(rindex__doc__, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | "S.rindex(sub [,start [,end]]) -> int\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | Like S.rfind() but raise ValueError when the substring is not found."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | unicode_rindex(PyUnicodeObject *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  |     PyObject *substring; | 
					
						
							| 
									
										
										
										
											2007-11-16 18:04:14 +00:00
										 |  |  |     Py_ssize_t start; | 
					
						
							|  |  |  |     Py_ssize_t end; | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  |     Py_ssize_t result; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-16 18:04:14 +00:00
										 |  |  |     if (!_ParseTupleFinds(args, &substring, &start, &end)) | 
					
						
							|  |  |  | 	    return NULL; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-27 15:20:22 +00:00
										 |  |  |     result = stringlib_rfind_slice( | 
					
						
							|  |  |  |         PyUnicode_AS_UNICODE(self), PyUnicode_GET_SIZE(self), | 
					
						
							|  |  |  |         PyUnicode_AS_UNICODE(substring), PyUnicode_GET_SIZE(substring), | 
					
						
							|  |  |  |         start, end | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Py_DECREF(substring); | 
					
						
							| 
									
										
										
										
											2006-05-27 10:05:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (result < 0) { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_ValueError, "substring not found"); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     return PyInt_FromSsize_t(result); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(rjust__doc__, | 
					
						
							| 
									
										
										
										
											2003-11-26 08:21:35 +00:00
										 |  |  | "S.rjust(width[, fillchar]) -> unicode\n\
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | \n\ | 
					
						
							|  |  |  | Return S right justified in a Unicode string of length width. Padding is\n\ | 
					
						
							| 
									
										
										
										
											2003-11-26 08:21:35 +00:00
										 |  |  | done using the specified fill character (default is a space)."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | unicode_rjust(PyUnicodeObject *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |     Py_ssize_t width; | 
					
						
							| 
									
										
										
										
											2003-11-26 08:21:35 +00:00
										 |  |  |     Py_UNICODE fillchar = ' '; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |     if (!PyArg_ParseTuple(args, "n|O&:rjust", &width, convert_uc, &fillchar)) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-12 03:03:31 +00:00
										 |  |  |     if (self->length >= width && PyUnicode_CheckExact(self)) { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         Py_INCREF(self); | 
					
						
							|  |  |  |         return (PyObject*) self; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-26 08:21:35 +00:00
										 |  |  |     return (PyObject*) pad(self, width - self->length, 0, fillchar); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | unicode_slice(PyUnicodeObject *self, Py_ssize_t start, Py_ssize_t end) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     /* standard clamping */ | 
					
						
							|  |  |  |     if (start < 0) | 
					
						
							|  |  |  |         start = 0; | 
					
						
							|  |  |  |     if (end < 0) | 
					
						
							|  |  |  |         end = 0; | 
					
						
							|  |  |  |     if (end > self->length) | 
					
						
							|  |  |  |         end = self->length; | 
					
						
							| 
									
										
										
										
											2001-09-12 03:03:31 +00:00
										 |  |  |     if (start == 0 && end == self->length && PyUnicode_CheckExact(self)) { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         /* full slice, return original string */ | 
					
						
							|  |  |  |         Py_INCREF(self); | 
					
						
							|  |  |  |         return (PyObject*) self; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (start > end) | 
					
						
							|  |  |  |         start = end; | 
					
						
							|  |  |  |     /* copy slice */ | 
					
						
							|  |  |  |     return (PyObject*) PyUnicode_FromUnicode(self->str + start, | 
					
						
							|  |  |  | 					     end - start); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *PyUnicode_Split(PyObject *s, | 
					
						
							|  |  |  | 			  PyObject *sep, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			  Py_ssize_t maxsplit) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject *result; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     s = PyUnicode_FromObject(s); | 
					
						
							|  |  |  |     if (s == NULL) | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     if (sep != NULL) { | 
					
						
							|  |  |  | 	sep = PyUnicode_FromObject(sep); | 
					
						
							|  |  |  | 	if (sep == NULL) { | 
					
						
							|  |  |  | 	    Py_DECREF(s); | 
					
						
							|  |  |  | 	    return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     result = split((PyUnicodeObject *)s, (PyUnicodeObject *)sep, maxsplit); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_DECREF(s); | 
					
						
							|  |  |  |     Py_XDECREF(sep); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(split__doc__, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | "S.split([sep [,maxsplit]]) -> list of strings\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Return a list of the words in S, using sep as the\n\ | 
					
						
							|  |  |  | delimiter string.  If maxsplit is given, at most maxsplit\n\ | 
					
						
							| 
									
										
										
										
											2004-09-15 11:41:32 +00:00
										 |  |  | splits are done. If sep is not specified or is None,\n\ | 
					
						
							| 
									
										
										
										
											2004-09-14 09:40:45 +00:00
										 |  |  | any whitespace string is a separator."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | unicode_split(PyUnicodeObject *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *substring = Py_None; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t maxcount = -1; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     if (!PyArg_ParseTuple(args, "|On:split", &substring, &maxcount)) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (substring == Py_None) | 
					
						
							|  |  |  | 	return split(self, NULL, maxcount); | 
					
						
							|  |  |  |     else if (PyUnicode_Check(substring)) | 
					
						
							|  |  |  | 	return split(self, (PyUnicodeObject *)substring, maxcount); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  | 	return PyUnicode_Split((PyObject *)self, substring, maxcount); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 08:54:28 +00:00
										 |  |  | PyObject * | 
					
						
							|  |  |  | PyUnicode_Partition(PyObject *str_in, PyObject *sep_in) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject* str_obj; | 
					
						
							|  |  |  |     PyObject* sep_obj; | 
					
						
							|  |  |  |     PyObject* out; | 
					
						
							| 
									
										
										
										
											2006-05-26 17:22:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 08:54:28 +00:00
										 |  |  |     str_obj = PyUnicode_FromObject(str_in); | 
					
						
							|  |  |  |     if (!str_obj) | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     sep_obj = PyUnicode_FromObject(sep_in); | 
					
						
							| 
									
										
										
										
											2006-05-26 17:22:38 +00:00
										 |  |  |     if (!sep_obj) { | 
					
						
							|  |  |  |         Py_DECREF(str_obj); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2006-05-26 08:54:28 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 19:24:53 +00:00
										 |  |  |     out = stringlib_partition( | 
					
						
							| 
									
										
										
										
											2006-05-26 17:22:38 +00:00
										 |  |  |         str_obj, PyUnicode_AS_UNICODE(str_obj), PyUnicode_GET_SIZE(str_obj), | 
					
						
							|  |  |  |         sep_obj, PyUnicode_AS_UNICODE(sep_obj), PyUnicode_GET_SIZE(sep_obj) | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2006-05-26 08:54:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 17:22:38 +00:00
										 |  |  |     Py_DECREF(sep_obj); | 
					
						
							|  |  |  |     Py_DECREF(str_obj); | 
					
						
							| 
									
										
										
										
											2006-05-26 08:54:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return out; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 18:15:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyUnicode_RPartition(PyObject *str_in, PyObject *sep_in) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject* str_obj; | 
					
						
							|  |  |  |     PyObject* sep_obj; | 
					
						
							|  |  |  |     PyObject* out; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     str_obj = PyUnicode_FromObject(str_in); | 
					
						
							|  |  |  |     if (!str_obj) | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     sep_obj = PyUnicode_FromObject(sep_in); | 
					
						
							|  |  |  |     if (!sep_obj) { | 
					
						
							|  |  |  |         Py_DECREF(str_obj); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 19:24:53 +00:00
										 |  |  |     out = stringlib_rpartition( | 
					
						
							| 
									
										
										
										
											2006-05-26 18:15:38 +00:00
										 |  |  |         str_obj, PyUnicode_AS_UNICODE(str_obj), PyUnicode_GET_SIZE(str_obj), | 
					
						
							|  |  |  |         sep_obj, PyUnicode_AS_UNICODE(sep_obj), PyUnicode_GET_SIZE(sep_obj) | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_DECREF(sep_obj); | 
					
						
							|  |  |  |     Py_DECREF(str_obj); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return out; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 08:54:28 +00:00
										 |  |  | PyDoc_STRVAR(partition__doc__, | 
					
						
							|  |  |  | "S.partition(sep) -> (head, sep, tail)\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Searches for the separator sep in S, and returns the part before it,\n\ | 
					
						
							|  |  |  | the separator itself, and the part after it.  If the separator is not\n\ | 
					
						
							|  |  |  | found, returns S and two empty strings."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2006-05-26 09:46:59 +00:00
										 |  |  | unicode_partition(PyUnicodeObject *self, PyObject *separator) | 
					
						
							| 
									
										
										
										
											2006-05-26 08:54:28 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     return PyUnicode_Partition((PyObject *)self, separator); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-26 18:15:38 +00:00
										 |  |  | PyDoc_STRVAR(rpartition__doc__, | 
					
						
							| 
									
										
										
										
											2006-09-04 15:32:48 +00:00
										 |  |  | "S.rpartition(sep) -> (tail, sep, head)\n\
 | 
					
						
							| 
									
										
										
										
											2006-05-26 18:15:38 +00:00
										 |  |  | \n\ | 
					
						
							|  |  |  | Searches for the separator sep in S, starting at the end of S, and returns\n\ | 
					
						
							|  |  |  | the part before it, the separator itself, and the part after it.  If the\n\ | 
					
						
							| 
									
										
										
										
											2006-09-04 15:32:48 +00:00
										 |  |  | separator is not found, returns two empty strings and S."); | 
					
						
							| 
									
										
										
										
											2006-05-26 18:15:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | unicode_rpartition(PyUnicodeObject *self, PyObject *separator) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return PyUnicode_RPartition((PyObject *)self, separator); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  | PyObject *PyUnicode_RSplit(PyObject *s, | 
					
						
							|  |  |  | 			   PyObject *sep, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			   Py_ssize_t maxsplit) | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject *result; | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     s = PyUnicode_FromObject(s); | 
					
						
							|  |  |  |     if (s == NULL) | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     if (sep != NULL) { | 
					
						
							|  |  |  | 	sep = PyUnicode_FromObject(sep); | 
					
						
							|  |  |  | 	if (sep == NULL) { | 
					
						
							|  |  |  | 	    Py_DECREF(s); | 
					
						
							|  |  |  | 	    return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     result = rsplit((PyUnicodeObject *)s, (PyUnicodeObject *)sep, maxsplit); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_DECREF(s); | 
					
						
							|  |  |  |     Py_XDECREF(sep); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(rsplit__doc__, | 
					
						
							|  |  |  | "S.rsplit([sep [,maxsplit]]) -> list of strings\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Return a list of the words in S, using sep as the\n\ | 
					
						
							|  |  |  | delimiter string, starting at the end of the string and\n\ | 
					
						
							|  |  |  | working to the front.  If maxsplit is given, at most maxsplit\n\ | 
					
						
							|  |  |  | splits are done. If sep is not specified, any whitespace string\n\ | 
					
						
							|  |  |  | is a separator."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | unicode_rsplit(PyUnicodeObject *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *substring = Py_None; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t maxcount = -1; | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     if (!PyArg_ParseTuple(args, "|On:rsplit", &substring, &maxcount)) | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (substring == Py_None) | 
					
						
							|  |  |  | 	return rsplit(self, NULL, maxcount); | 
					
						
							|  |  |  |     else if (PyUnicode_Check(substring)) | 
					
						
							|  |  |  | 	return rsplit(self, (PyUnicodeObject *)substring, maxcount); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  | 	return PyUnicode_RSplit((PyObject *)self, substring, maxcount); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(splitlines__doc__, | 
					
						
							| 
									
										
										
										
											2000-04-11 15:38:46 +00:00
										 |  |  | "S.splitlines([keepends]]) -> list of strings\n\
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | \n\ | 
					
						
							|  |  |  | Return a list of the lines in S, breaking at line boundaries.\n\ | 
					
						
							| 
									
										
										
										
											2000-04-11 15:38:46 +00:00
										 |  |  | Line breaks are not included in the resulting list unless keepends\n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | is given and true."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							|  |  |  | unicode_splitlines(PyUnicodeObject *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2000-04-11 15:38:46 +00:00
										 |  |  |     int keepends = 0; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-11 15:38:46 +00:00
										 |  |  |     if (!PyArg_ParseTuple(args, "|i:splitlines", &keepends)) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-11 15:38:46 +00:00
										 |  |  |     return PyUnicode_Splitlines((PyObject *)self, keepends); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static | 
					
						
							|  |  |  | PyObject *unicode_str(PyUnicodeObject *self) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2000-05-09 19:53:39 +00:00
										 |  |  |     return PyUnicode_AsEncodedString((PyObject *)self, NULL, NULL); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(swapcase__doc__, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | "S.swapcase() -> unicode\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Return a copy of S with uppercase characters converted to lowercase\n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | and vice versa."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  | unicode_swapcase(PyUnicodeObject *self) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     return fixup(self, fixswapcase); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(translate__doc__, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | "S.translate(table) -> unicode\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Return a copy of the string S, where all characters have been mapped\n\ | 
					
						
							|  |  |  | through the given translation table, which must be a mapping of\n\ | 
					
						
							| 
									
										
										
										
											2002-09-04 20:31:32 +00:00
										 |  |  | Unicode ordinals to Unicode ordinals, Unicode strings or None.\n\ | 
					
						
							|  |  |  | Unmapped characters are left untouched. Characters mapped to None\n\ | 
					
						
							|  |  |  | are deleted."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  | unicode_translate(PyUnicodeObject *self, PyObject *table) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |     return PyUnicode_TranslateCharmap(self->str, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 				      self->length, | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 				      table, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 				      "ignore"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(upper__doc__, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | "S.upper() -> unicode\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | Return a copy of S converted to uppercase."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  | unicode_upper(PyUnicodeObject *self) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     return fixup(self, fixupper); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(zfill__doc__, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | "S.zfill(width) -> unicode\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Pad a numeric string x with zeros on the left, to fill a field\n\ | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | of the specified width. The string x is never truncated."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | unicode_zfill(PyUnicodeObject *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t fill; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     PyUnicodeObject *u; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t width; | 
					
						
							|  |  |  |     if (!PyArg_ParseTuple(args, "n:zfill", &width)) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (self->length >= width) { | 
					
						
							| 
									
										
										
										
											2002-04-15 18:42:15 +00:00
										 |  |  |         if (PyUnicode_CheckExact(self)) { | 
					
						
							|  |  |  |             Py_INCREF(self); | 
					
						
							|  |  |  |             return (PyObject*) self; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             return PyUnicode_FromUnicode( | 
					
						
							|  |  |  |                 PyUnicode_AS_UNICODE(self), | 
					
						
							|  |  |  |                 PyUnicode_GET_SIZE(self) | 
					
						
							|  |  |  |             ); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     fill = width - self->length; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     u = pad(self, fill, 0, '0'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-15 13:36:47 +00:00
										 |  |  |     if (u == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (u->str[fill] == '+' || u->str[fill] == '-') { | 
					
						
							|  |  |  |         /* move sign to beginning of string */ | 
					
						
							|  |  |  |         u->str[0] = u->str[fill]; | 
					
						
							|  |  |  |         u->str[fill] = '0'; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return (PyObject*) u; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if 0
 | 
					
						
							|  |  |  | static PyObject* | 
					
						
							| 
									
										
										
										
											2008-02-06 13:33:44 +00:00
										 |  |  | free_listsize(PyUnicodeObject *self) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-02-06 13:33:44 +00:00
										 |  |  |     return PyInt_FromLong(numfree); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(startswith__doc__, | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | "S.startswith(prefix[, start[, end]]) -> bool\n\
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2003-04-09 19:32:45 +00:00
										 |  |  | Return True if S starts with the specified prefix, False otherwise.\n\ | 
					
						
							|  |  |  | With optional start, test S beginning at that position.\n\ | 
					
						
							| 
									
										
										
										
											2006-06-09 18:45:48 +00:00
										 |  |  | With optional end, stop comparing S at that position.\n\ | 
					
						
							|  |  |  | prefix can also be a tuple of strings to try."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | unicode_startswith(PyUnicodeObject *self, | 
					
						
							|  |  |  | 		   PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-06-09 18:45:48 +00:00
										 |  |  |     PyObject *subobj; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     PyUnicodeObject *substring; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t start = 0; | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |     Py_ssize_t end = PY_SSIZE_T_MAX; | 
					
						
							| 
									
										
										
										
											2006-06-09 18:45:48 +00:00
										 |  |  |     int result; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-09 18:45:48 +00:00
										 |  |  |     if (!PyArg_ParseTuple(args, "O|O&O&:startswith", &subobj, | 
					
						
							| 
									
										
										
										
											2000-05-09 14:14:27 +00:00
										 |  |  | 		_PyEval_SliceIndex, &start, _PyEval_SliceIndex, &end)) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2006-06-09 18:45:48 +00:00
										 |  |  |     if (PyTuple_Check(subobj)) { | 
					
						
							|  |  |  |         Py_ssize_t i; | 
					
						
							|  |  |  |         for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) { | 
					
						
							|  |  |  |             substring = (PyUnicodeObject *)PyUnicode_FromObject( | 
					
						
							|  |  |  |                             PyTuple_GET_ITEM(subobj, i)); | 
					
						
							|  |  |  |             if (substring == NULL) | 
					
						
							|  |  |  |                 return NULL; | 
					
						
							|  |  |  |             result = tailmatch(self, substring, start, end, -1); | 
					
						
							|  |  |  |             Py_DECREF(substring); | 
					
						
							|  |  |  |             if (result) { | 
					
						
							|  |  |  |                 Py_RETURN_TRUE; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         /* nothing matched */ | 
					
						
							|  |  |  |         Py_RETURN_FALSE; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     substring = (PyUnicodeObject *)PyUnicode_FromObject(subobj); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (substring == NULL) | 
					
						
							| 
									
										
										
										
											2006-06-09 18:45:48 +00:00
										 |  |  |          return NULL; | 
					
						
							|  |  |  |     result = tailmatch(self, substring, start, end, -1); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     Py_DECREF(substring); | 
					
						
							| 
									
										
										
										
											2006-06-09 18:45:48 +00:00
										 |  |  |     return PyBool_FromLong(result); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(endswith__doc__, | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | "S.endswith(suffix[, start[, end]]) -> bool\n\
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | \n\ | 
					
						
							| 
									
										
										
										
											2003-04-09 19:32:45 +00:00
										 |  |  | Return True if S ends with the specified suffix, False otherwise.\n\ | 
					
						
							|  |  |  | With optional start, test S beginning at that position.\n\ | 
					
						
							| 
									
										
										
										
											2006-06-09 18:45:48 +00:00
										 |  |  | With optional end, stop comparing S at that position.\n\ | 
					
						
							|  |  |  | suffix can also be a tuple of strings to try."); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | unicode_endswith(PyUnicodeObject *self, | 
					
						
							|  |  |  | 		 PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-06-09 18:45:48 +00:00
										 |  |  |     PyObject *subobj; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     PyUnicodeObject *substring; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t start = 0; | 
					
						
							| 
									
										
										
										
											2006-04-13 06:34:32 +00:00
										 |  |  |     Py_ssize_t end = PY_SSIZE_T_MAX; | 
					
						
							| 
									
										
										
										
											2006-06-09 18:45:48 +00:00
										 |  |  |     int result; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-09 18:45:48 +00:00
										 |  |  |     if (!PyArg_ParseTuple(args, "O|O&O&:endswith", &subobj, | 
					
						
							|  |  |  |         _PyEval_SliceIndex, &start, _PyEval_SliceIndex, &end)) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2006-06-09 18:45:48 +00:00
										 |  |  |     if (PyTuple_Check(subobj)) { | 
					
						
							|  |  |  |         Py_ssize_t i; | 
					
						
							|  |  |  |         for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) { | 
					
						
							|  |  |  |             substring = (PyUnicodeObject *)PyUnicode_FromObject( | 
					
						
							|  |  |  |                             PyTuple_GET_ITEM(subobj, i)); | 
					
						
							|  |  |  |             if (substring == NULL) | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |             result = tailmatch(self, substring, start, end, +1); | 
					
						
							|  |  |  |             Py_DECREF(substring); | 
					
						
							|  |  |  |             if (result) { | 
					
						
							|  |  |  |                 Py_RETURN_TRUE; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         Py_RETURN_FALSE; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     substring = (PyUnicodeObject *)PyUnicode_FromObject(subobj); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (substring == NULL) | 
					
						
							| 
									
										
										
										
											2006-06-09 18:45:48 +00:00
										 |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-09 18:45:48 +00:00
										 |  |  |     result = tailmatch(self, substring, start, end, +1); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     Py_DECREF(substring); | 
					
						
							| 
									
										
										
										
											2006-06-09 18:45:48 +00:00
										 |  |  |     return PyBool_FromLong(result); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-29 17:58:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | unicode_getnewargs(PyUnicodeObject *v) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return Py_BuildValue("(u#)", v->str, v->length); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | static PyMethodDef unicode_methods[] = { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Order is according to common usage: often used methods should
 | 
					
						
							|  |  |  |        appear first, since lookup is done sequentially. */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-30 12:19:07 +00:00
										 |  |  |     {"encode", (PyCFunction) unicode_encode, METH_VARARGS, encode__doc__}, | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  |     {"replace", (PyCFunction) unicode_replace, METH_VARARGS, replace__doc__}, | 
					
						
							|  |  |  |     {"split", (PyCFunction) unicode_split, METH_VARARGS, split__doc__}, | 
					
						
							| 
									
										
										
										
											2003-12-15 18:49:53 +00:00
										 |  |  |     {"rsplit", (PyCFunction) unicode_rsplit, METH_VARARGS, rsplit__doc__}, | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  |     {"join", (PyCFunction) unicode_join, METH_O, join__doc__}, | 
					
						
							|  |  |  |     {"capitalize", (PyCFunction) unicode_capitalize, METH_NOARGS, capitalize__doc__}, | 
					
						
							|  |  |  |     {"title", (PyCFunction) unicode_title, METH_NOARGS, title__doc__}, | 
					
						
							|  |  |  |     {"center", (PyCFunction) unicode_center, METH_VARARGS, center__doc__}, | 
					
						
							|  |  |  |     {"count", (PyCFunction) unicode_count, METH_VARARGS, count__doc__}, | 
					
						
							|  |  |  |     {"expandtabs", (PyCFunction) unicode_expandtabs, METH_VARARGS, expandtabs__doc__}, | 
					
						
							|  |  |  |     {"find", (PyCFunction) unicode_find, METH_VARARGS, find__doc__}, | 
					
						
							| 
									
										
										
										
											2006-05-26 09:46:59 +00:00
										 |  |  |     {"partition", (PyCFunction) unicode_partition, METH_O, partition__doc__}, | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  |     {"index", (PyCFunction) unicode_index, METH_VARARGS, index__doc__}, | 
					
						
							|  |  |  |     {"ljust", (PyCFunction) unicode_ljust, METH_VARARGS, ljust__doc__}, | 
					
						
							|  |  |  |     {"lower", (PyCFunction) unicode_lower, METH_NOARGS, lower__doc__}, | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  |     {"lstrip", (PyCFunction) unicode_lstrip, METH_VARARGS, lstrip__doc__}, | 
					
						
							| 
									
										
										
										
											2004-07-08 17:57:32 +00:00
										 |  |  |     {"decode", (PyCFunction) unicode_decode, METH_VARARGS, decode__doc__}, | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  | /*  {"maketrans", (PyCFunction) unicode_maketrans, METH_VARARGS, maketrans__doc__}, */ | 
					
						
							|  |  |  |     {"rfind", (PyCFunction) unicode_rfind, METH_VARARGS, rfind__doc__}, | 
					
						
							|  |  |  |     {"rindex", (PyCFunction) unicode_rindex, METH_VARARGS, rindex__doc__}, | 
					
						
							|  |  |  |     {"rjust", (PyCFunction) unicode_rjust, METH_VARARGS, rjust__doc__}, | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  |     {"rstrip", (PyCFunction) unicode_rstrip, METH_VARARGS, rstrip__doc__}, | 
					
						
							| 
									
										
										
										
											2006-05-26 18:15:38 +00:00
										 |  |  |     {"rpartition", (PyCFunction) unicode_rpartition, METH_O, rpartition__doc__}, | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  |     {"splitlines", (PyCFunction) unicode_splitlines, METH_VARARGS, splitlines__doc__}, | 
					
						
							| 
									
										
										
										
											2002-04-22 17:42:37 +00:00
										 |  |  |     {"strip", (PyCFunction) unicode_strip, METH_VARARGS, strip__doc__}, | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  |     {"swapcase", (PyCFunction) unicode_swapcase, METH_NOARGS, swapcase__doc__}, | 
					
						
							|  |  |  |     {"translate", (PyCFunction) unicode_translate, METH_O, translate__doc__}, | 
					
						
							|  |  |  |     {"upper", (PyCFunction) unicode_upper, METH_NOARGS, upper__doc__}, | 
					
						
							|  |  |  |     {"startswith", (PyCFunction) unicode_startswith, METH_VARARGS, startswith__doc__}, | 
					
						
							|  |  |  |     {"endswith", (PyCFunction) unicode_endswith, METH_VARARGS, endswith__doc__}, | 
					
						
							|  |  |  |     {"islower", (PyCFunction) unicode_islower, METH_NOARGS, islower__doc__}, | 
					
						
							|  |  |  |     {"isupper", (PyCFunction) unicode_isupper, METH_NOARGS, isupper__doc__}, | 
					
						
							|  |  |  |     {"istitle", (PyCFunction) unicode_istitle, METH_NOARGS, istitle__doc__}, | 
					
						
							|  |  |  |     {"isspace", (PyCFunction) unicode_isspace, METH_NOARGS, isspace__doc__}, | 
					
						
							|  |  |  |     {"isdecimal", (PyCFunction) unicode_isdecimal, METH_NOARGS, isdecimal__doc__}, | 
					
						
							|  |  |  |     {"isdigit", (PyCFunction) unicode_isdigit, METH_NOARGS, isdigit__doc__}, | 
					
						
							|  |  |  |     {"isnumeric", (PyCFunction) unicode_isnumeric, METH_NOARGS, isnumeric__doc__}, | 
					
						
							|  |  |  |     {"isalpha", (PyCFunction) unicode_isalpha, METH_NOARGS, isalpha__doc__}, | 
					
						
							|  |  |  |     {"isalnum", (PyCFunction) unicode_isalnum, METH_NOARGS, isalnum__doc__}, | 
					
						
							|  |  |  |     {"zfill", (PyCFunction) unicode_zfill, METH_VARARGS, zfill__doc__}, | 
					
						
							| 
									
										
										
										
											2002-04-15 13:36:47 +00:00
										 |  |  | #if 0
 | 
					
						
							| 
									
										
										
										
											2001-08-16 13:15:00 +00:00
										 |  |  |     {"capwords", (PyCFunction) unicode_capwords, METH_NOARGS, capwords__doc__}, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if 0
 | 
					
						
							|  |  |  |     /* This one is just used for debugging the implementation. */ | 
					
						
							| 
									
										
										
										
											2008-02-06 13:33:44 +00:00
										 |  |  |     {"freelistsize", (PyCFunction) free_listsize, METH_NOARGS}, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-29 17:58:45 +00:00
										 |  |  |     {"__getnewargs__",	(PyCFunction)unicode_getnewargs, METH_NOARGS}, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     {NULL, NULL} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-18 16:10:18 +00:00
										 |  |  | static PyObject * | 
					
						
							|  |  |  | unicode_mod(PyObject *v, PyObject *w) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |        if (!PyUnicode_Check(v)) { | 
					
						
							|  |  |  |                Py_INCREF(Py_NotImplemented); | 
					
						
							|  |  |  |                return Py_NotImplemented; | 
					
						
							|  |  |  |        } | 
					
						
							|  |  |  |        return PyUnicode_Format(v, w); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyNumberMethods unicode_as_number = { | 
					
						
							|  |  |  | 	0,				/*nb_add*/ | 
					
						
							|  |  |  | 	0,				/*nb_subtract*/ | 
					
						
							|  |  |  | 	0,				/*nb_multiply*/ | 
					
						
							|  |  |  | 	0,				/*nb_divide*/ | 
					
						
							|  |  |  | 	unicode_mod,			/*nb_remainder*/ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | static PySequenceMethods unicode_as_sequence = { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     (lenfunc) unicode_length, 		/* sq_length */ | 
					
						
							| 
									
										
										
										
											2006-03-30 11:57:00 +00:00
										 |  |  |     PyUnicode_Concat,		 	/* sq_concat */ | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     (ssizeargfunc) unicode_repeat, 	/* sq_repeat */ | 
					
						
							|  |  |  |     (ssizeargfunc) unicode_getitem, 	/* sq_item */ | 
					
						
							|  |  |  |     (ssizessizeargfunc) unicode_slice, 	/* sq_slice */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     0, 					/* sq_ass_item */ | 
					
						
							|  |  |  |     0, 					/* sq_ass_slice */ | 
					
						
							| 
									
										
										
										
											2006-03-30 11:57:00 +00:00
										 |  |  |     PyUnicode_Contains, 		/* sq_contains */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-11 10:55:12 +00:00
										 |  |  | static PyObject* | 
					
						
							|  |  |  | unicode_subscript(PyUnicodeObject* self, PyObject* item) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-08-14 12:57:27 +00:00
										 |  |  |     if (PyIndex_Check(item)) { | 
					
						
							|  |  |  |         Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError); | 
					
						
							| 
									
										
										
										
											2002-06-11 10:55:12 +00:00
										 |  |  |         if (i == -1 && PyErr_Occurred()) | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |         if (i < 0) | 
					
						
							| 
									
										
										
										
											2006-01-05 10:00:36 +00:00
										 |  |  |             i += PyUnicode_GET_SIZE(self); | 
					
						
							| 
									
										
										
										
											2002-06-11 10:55:12 +00:00
										 |  |  |         return unicode_getitem(self, i); | 
					
						
							|  |  |  |     } else if (PySlice_Check(item)) { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |         Py_ssize_t start, stop, step, slicelength, cur, i; | 
					
						
							| 
									
										
										
										
											2002-06-11 10:55:12 +00:00
										 |  |  |         Py_UNICODE* source_buf; | 
					
						
							|  |  |  |         Py_UNICODE* result_buf; | 
					
						
							|  |  |  |         PyObject* result; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-05 10:00:36 +00:00
										 |  |  |         if (PySlice_GetIndicesEx((PySliceObject*)item, PyUnicode_GET_SIZE(self), | 
					
						
							| 
									
										
										
										
											2002-06-11 10:55:12 +00:00
										 |  |  | 				 &start, &stop, &step, &slicelength) < 0) { | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (slicelength <= 0) { | 
					
						
							|  |  |  |             return PyUnicode_FromUnicode(NULL, 0); | 
					
						
							| 
									
										
										
										
											2007-08-28 15:28:19 +00:00
										 |  |  |         } else if (start == 0 && step == 1 && slicelength == self->length && | 
					
						
							|  |  |  |                    PyUnicode_CheckExact(self)) { | 
					
						
							|  |  |  |             Py_INCREF(self); | 
					
						
							|  |  |  |             return (PyObject *)self; | 
					
						
							|  |  |  |         } else if (step == 1) { | 
					
						
							|  |  |  |             return PyUnicode_FromUnicode(self->str + start, slicelength); | 
					
						
							| 
									
										
										
										
											2002-06-11 10:55:12 +00:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             source_buf = PyUnicode_AS_UNICODE((PyObject*)self); | 
					
						
							| 
									
										
										
										
											2006-04-11 07:42:36 +00:00
										 |  |  |             result_buf = (Py_UNICODE *)PyMem_MALLOC(slicelength* | 
					
						
							|  |  |  |                                                     sizeof(Py_UNICODE)); | 
					
						
							| 
									
										
										
										
											2006-01-05 10:00:36 +00:00
										 |  |  | 	     | 
					
						
							|  |  |  | 	    if (result_buf == NULL) | 
					
						
							|  |  |  | 		    return PyErr_NoMemory(); | 
					
						
							| 
									
										
										
										
											2002-06-11 10:55:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             for (cur = start, i = 0; i < slicelength; cur += step, i++) { | 
					
						
							|  |  |  |                 result_buf[i] = source_buf[cur]; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-11 10:55:12 +00:00
										 |  |  |             result = PyUnicode_FromUnicode(result_buf, slicelength); | 
					
						
							|  |  |  |             PyMem_FREE(result_buf); | 
					
						
							|  |  |  |             return result; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_TypeError, "string indices must be integers"); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyMappingMethods unicode_as_mapping = { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     (lenfunc)unicode_length,		/* mp_length */ | 
					
						
							| 
									
										
										
										
											2002-06-11 10:55:12 +00:00
										 |  |  |     (binaryfunc)unicode_subscript,	/* mp_subscript */ | 
					
						
							|  |  |  |     (objobjargproc)0,			/* mp_ass_subscript */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | static Py_ssize_t | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | unicode_buffer_getreadbuf(PyUnicodeObject *self, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			  Py_ssize_t index, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 			  const void **ptr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (index != 0) { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_SystemError, | 
					
						
							|  |  |  | 			"accessing non-existent unicode segment"); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     *ptr = (void *) self->str; | 
					
						
							|  |  |  |     return PyUnicode_GET_DATA_SIZE(self); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | static Py_ssize_t | 
					
						
							|  |  |  | unicode_buffer_getwritebuf(PyUnicodeObject *self, Py_ssize_t index, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 			   const void **ptr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyErr_SetString(PyExc_TypeError, | 
					
						
							| 
									
										
										
										
											2002-06-13 21:25:17 +00:00
										 |  |  | 		    "cannot use unicode as modifiable buffer"); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | unicode_buffer_getsegcount(PyUnicodeObject *self, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			   Py_ssize_t *lenp) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     if (lenp) | 
					
						
							|  |  |  |         *lenp = PyUnicode_GET_DATA_SIZE(self); | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-16 14:32:27 +00:00
										 |  |  | static Py_ssize_t | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | unicode_buffer_getcharbuf(PyUnicodeObject *self, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 			  Py_ssize_t index, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 			  const void **ptr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *str; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (index != 0) { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_SystemError, | 
					
						
							|  |  |  | 			"accessing non-existent unicode segment"); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-08-03 18:46:08 +00:00
										 |  |  |     str = _PyUnicode_AsDefaultEncodedString((PyObject *)self, NULL); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (str == NULL) | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  |     *ptr = (void *) PyString_AS_STRING(str); | 
					
						
							|  |  |  |     return PyString_GET_SIZE(str); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Helpers for PyUnicode_Format() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | getnextarg(PyObject *args, Py_ssize_t arglen, Py_ssize_t *p_argidx) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t argidx = *p_argidx; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (argidx < arglen) { | 
					
						
							|  |  |  | 	(*p_argidx)++; | 
					
						
							|  |  |  | 	if (arglen < 0) | 
					
						
							|  |  |  | 	    return args; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	    return PyTuple_GetItem(args, argidx); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 		    "not enough arguments for format string"); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define F_LJUST (1<<0)
 | 
					
						
							|  |  |  | #define F_SIGN	(1<<1)
 | 
					
						
							|  |  |  | #define F_BLANK (1<<2)
 | 
					
						
							|  |  |  | #define F_ALT	(1<<3)
 | 
					
						
							|  |  |  | #define F_ZERO	(1<<4)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | static Py_ssize_t | 
					
						
							| 
									
										
										
										
											2006-01-10 06:03:13 +00:00
										 |  |  | strtounicode(Py_UNICODE *buffer, const char *charbuffer) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     register Py_ssize_t i; | 
					
						
							|  |  |  |     Py_ssize_t len = strlen(charbuffer); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     for (i = len - 1; i >= 0; i--) | 
					
						
							|  |  |  | 	buffer[i] = (Py_UNICODE) charbuffer[i]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-10 06:03:13 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | doubletounicode(Py_UNICODE *buffer, size_t len, const char *format, double x) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-16 01:08:01 +00:00
										 |  |  |     Py_ssize_t result; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-10 06:03:13 +00:00
										 |  |  |     PyOS_ascii_formatd((char *)buffer, len, format, x); | 
					
						
							| 
									
										
										
										
											2006-02-16 01:08:01 +00:00
										 |  |  |     result = strtounicode(buffer, (char *)buffer); | 
					
						
							|  |  |  |     return Py_SAFE_DOWNCAST(result, Py_ssize_t, int); | 
					
						
							| 
									
										
										
										
											2006-01-10 06:03:13 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | longtounicode(Py_UNICODE *buffer, size_t len, const char *format, long x) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-16 01:08:01 +00:00
										 |  |  |     Py_ssize_t result; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-10 06:03:13 +00:00
										 |  |  |     PyOS_snprintf((char *)buffer, len, format, x); | 
					
						
							| 
									
										
										
										
											2006-02-16 01:08:01 +00:00
										 |  |  |     result = strtounicode(buffer, (char *)buffer); | 
					
						
							|  |  |  |     return Py_SAFE_DOWNCAST(result, Py_ssize_t, int); | 
					
						
							| 
									
										
										
										
											2006-01-10 06:03:13 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-11 04:24:12 +00:00
										 |  |  | /* XXX To save some code duplication, formatfloat/long/int could have been
 | 
					
						
							|  |  |  |    shared with stringobject.c, converting from 8-bit to Unicode after the | 
					
						
							|  |  |  |    formatting is done. */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | formatfloat(Py_UNICODE *buf, | 
					
						
							| 
									
										
										
										
											2000-06-30 10:29:57 +00:00
										 |  |  | 	    size_t buflen, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    int flags, | 
					
						
							|  |  |  | 	    int prec, | 
					
						
							|  |  |  | 	    int type, | 
					
						
							|  |  |  | 	    PyObject *v) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2000-06-30 10:29:57 +00:00
										 |  |  |     /* fmt = '%#.' + `prec` + `type`
 | 
					
						
							|  |  |  |        worst case length = 3 + 10 (len of INT_MAX) + 1 = 14 (use 20)*/ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     char fmt[20]; | 
					
						
							|  |  |  |     double x; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     x = PyFloat_AsDouble(v); | 
					
						
							|  |  |  |     if (x == -1.0 && PyErr_Occurred()) | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  |     if (prec < 0) | 
					
						
							|  |  |  | 	prec = 6; | 
					
						
							|  |  |  |     if (type == 'f' && (fabs(x) / 1e25) >= 1e25) | 
					
						
							|  |  |  | 	type = 'g'; | 
					
						
							| 
									
										
										
										
											2002-12-29 19:44:06 +00:00
										 |  |  |     /* Worst case length calc to ensure no buffer overrun:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |        'g' formats: | 
					
						
							|  |  |  | 	 fmt = %#.<prec>g | 
					
						
							|  |  |  | 	 buf = '-' + [0-9]*prec + '.' + 'e+' + (longest exp | 
					
						
							|  |  |  | 	    for any double rep.) | 
					
						
							|  |  |  | 	 len = 1 + prec + 1 + 2 + 5 = 9 + prec | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |        'f' formats: | 
					
						
							|  |  |  | 	 buf = '-' + [0-9]*x + '.' + [0-9]*prec (with x < 50) | 
					
						
							|  |  |  | 	 len = 1 + 50 + 1 + prec = 52 + prec | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-30 10:29:57 +00:00
										 |  |  |        If prec=0 the effective precision is 1 (the leading digit is | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |        always given), therefore increase the length by one. | 
					
						
							| 
									
										
										
										
											2002-12-29 19:44:06 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     */ | 
					
						
							| 
									
										
										
										
											2007-07-12 08:38:00 +00:00
										 |  |  |     if (((type == 'g' || type == 'G') &&  | 
					
						
							|  |  |  |           buflen <= (size_t)10 + (size_t)prec) || | 
					
						
							| 
									
										
										
										
											2002-12-29 19:44:06 +00:00
										 |  |  | 	(type == 'f' && buflen <= (size_t)53 + (size_t)prec)) { | 
					
						
							| 
									
										
										
										
											2000-06-30 10:29:57 +00:00
										 |  |  | 	PyErr_SetString(PyExc_OverflowError, | 
					
						
							| 
									
										
										
										
											2002-12-29 19:44:06 +00:00
										 |  |  | 			"formatted float is too long (precision too large?)"); | 
					
						
							| 
									
										
										
										
											2000-06-30 10:29:57 +00:00
										 |  |  | 	return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-12-29 19:44:06 +00:00
										 |  |  |     PyOS_snprintf(fmt, sizeof(fmt), "%%%s.%d%c", | 
					
						
							|  |  |  | 		  (flags&F_ALT) ? "#" : "", | 
					
						
							|  |  |  | 		  prec, type); | 
					
						
							| 
									
										
										
										
											2006-01-10 06:03:13 +00:00
										 |  |  |     return doubletounicode(buf, buflen, fmt, x); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-21 05:43:11 +00:00
										 |  |  | static PyObject* | 
					
						
							|  |  |  | formatlong(PyObject *val, int flags, int prec, int type) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	char *buf; | 
					
						
							|  |  |  | 	int i, len; | 
					
						
							|  |  |  | 	PyObject *str; /* temporary string object. */ | 
					
						
							|  |  |  | 	PyUnicodeObject *result; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	str = _PyString_FormatLong(val, flags, prec, type, &buf, &len); | 
					
						
							|  |  |  | 	if (!str) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	result = _PyUnicode_New(len); | 
					
						
							| 
									
										
										
										
											2006-03-07 15:39:21 +00:00
										 |  |  | 	if (!result) { | 
					
						
							|  |  |  | 		Py_DECREF(str); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2000-09-21 05:43:11 +00:00
										 |  |  | 	for (i = 0; i < len; i++) | 
					
						
							|  |  |  | 		result->str[i] = buf[i]; | 
					
						
							|  |  |  | 	result->str[len] = 0; | 
					
						
							|  |  |  | 	Py_DECREF(str); | 
					
						
							|  |  |  | 	return (PyObject*)result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | formatint(Py_UNICODE *buf, | 
					
						
							| 
									
										
										
										
											2000-06-30 10:29:57 +00:00
										 |  |  | 	  size_t buflen, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	  int flags, | 
					
						
							|  |  |  | 	  int prec, | 
					
						
							|  |  |  | 	  int type, | 
					
						
							|  |  |  | 	  PyObject *v) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2000-06-30 10:29:57 +00:00
										 |  |  |     /* fmt = '%#.' + `prec` + 'l' + `type`
 | 
					
						
							| 
									
										
										
										
											2002-02-28 11:38:24 +00:00
										 |  |  |      * worst case length = 3 + 19 (worst len of INT_MAX on 64-bit machine) | 
					
						
							|  |  |  |      *                     + 1 + 1 | 
					
						
							|  |  |  |      *                   = 24 | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2000-09-21 05:43:11 +00:00
										 |  |  |     char fmt[64]; /* plenty big enough! */ | 
					
						
							| 
									
										
										
										
											2003-11-29 23:52:13 +00:00
										 |  |  |     char *sign; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     long x; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     x = PyInt_AsLong(v); | 
					
						
							|  |  |  |     if (x == -1 && PyErr_Occurred()) | 
					
						
							| 
									
										
										
										
											2002-02-28 11:38:24 +00:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2003-11-29 23:52:13 +00:00
										 |  |  |     if (x < 0 && type == 'u') { | 
					
						
							|  |  |  |         type = 'd'; | 
					
						
							| 
									
										
										
										
											2002-08-11 04:24:12 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-11-29 23:52:13 +00:00
										 |  |  |     if (x < 0 && (type == 'x' || type == 'X' || type == 'o')) | 
					
						
							|  |  |  |         sign = "-"; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         sign = ""; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (prec < 0) | 
					
						
							| 
									
										
										
										
											2002-02-28 11:38:24 +00:00
										 |  |  |         prec = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-29 23:52:13 +00:00
										 |  |  |     /* buf = '+'/'-'/'' + '0'/'0x'/'' + '[0-9]'*max(prec, len(x in octal))
 | 
					
						
							|  |  |  |      * worst case buf = '-0x' + [0-9]*prec, where prec >= 11 | 
					
						
							| 
									
										
										
										
											2002-02-28 11:38:24 +00:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2003-11-29 23:52:13 +00:00
										 |  |  |     if (buflen <= 14 || buflen <= (size_t)3 + (size_t)prec) { | 
					
						
							| 
									
										
										
										
											2000-06-30 10:29:57 +00:00
										 |  |  |         PyErr_SetString(PyExc_OverflowError, | 
					
						
							| 
									
										
										
										
											2002-02-28 11:38:24 +00:00
										 |  |  |     	        "formatted integer is too long (precision too large?)"); | 
					
						
							| 
									
										
										
										
											2000-06-30 10:29:57 +00:00
										 |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-02-28 11:38:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ((flags & F_ALT) && | 
					
						
							|  |  |  |         (type == 'x' || type == 'X')) { | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |         /* When converting under %#x or %#X, there are a number
 | 
					
						
							| 
									
										
										
										
											2002-02-28 11:38:24 +00:00
										 |  |  |          * of issues that cause pain: | 
					
						
							|  |  |  |          * - when 0 is being converted, the C standard leaves off | 
					
						
							|  |  |  |          *   the '0x' or '0X', which is inconsistent with other | 
					
						
							|  |  |  |          *   %#x/%#X conversions and inconsistent with Python's | 
					
						
							|  |  |  |          *   hex() function | 
					
						
							|  |  |  |          * - there are platforms that violate the standard and | 
					
						
							|  |  |  |          *   convert 0 with the '0x' or '0X' | 
					
						
							|  |  |  |          *   (Metrowerks, Compaq Tru64) | 
					
						
							|  |  |  |          * - there are platforms that give '0x' when converting | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |          *   under %#X, but convert 0 in accordance with the | 
					
						
							| 
									
										
										
										
											2002-02-28 11:38:24 +00:00
										 |  |  |          *   standard (OS/2 EMX) | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  |          * | 
					
						
							| 
									
										
										
										
											2002-02-28 11:38:24 +00:00
										 |  |  |          * We can achieve the desired consistency by inserting our | 
					
						
							|  |  |  |          * own '0x' or '0X' prefix, and substituting %x/%X in place | 
					
						
							|  |  |  |          * of %#x/%#X. | 
					
						
							|  |  |  |          * | 
					
						
							|  |  |  |          * Note that this is the same approach as used in | 
					
						
							|  |  |  |          * formatint() in stringobject.c | 
					
						
							| 
									
										
										
										
											2002-02-26 11:36:35 +00:00
										 |  |  |          */ | 
					
						
							| 
									
										
										
										
											2003-11-29 23:52:13 +00:00
										 |  |  |         PyOS_snprintf(fmt, sizeof(fmt), "%s0%c%%.%dl%c", | 
					
						
							|  |  |  |                       sign, type, prec, type); | 
					
						
							| 
									
										
										
										
											2002-02-26 11:36:35 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2002-02-28 11:38:24 +00:00
										 |  |  |     else { | 
					
						
							| 
									
										
										
										
											2003-11-29 23:52:13 +00:00
										 |  |  |         PyOS_snprintf(fmt, sizeof(fmt), "%s%%%s.%dl%c", | 
					
						
							|  |  |  |                       sign, (flags&F_ALT) ? "#" : "", | 
					
						
							| 
									
										
										
										
											2002-02-28 11:38:24 +00:00
										 |  |  |                       prec, type); | 
					
						
							| 
									
										
										
										
											2001-04-28 05:38:26 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-11-29 23:52:13 +00:00
										 |  |  |     if (sign[0]) | 
					
						
							| 
									
										
										
										
											2006-01-10 06:03:13 +00:00
										 |  |  |         return longtounicode(buf, buflen, fmt, -x); | 
					
						
							| 
									
										
										
										
											2003-11-29 23:52:13 +00:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2006-01-10 06:03:13 +00:00
										 |  |  |         return longtounicode(buf, buflen, fmt, x); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | formatchar(Py_UNICODE *buf, | 
					
						
							| 
									
										
										
										
											2000-06-30 10:29:57 +00:00
										 |  |  |            size_t buflen, | 
					
						
							|  |  |  |            PyObject *v) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2000-06-30 10:29:57 +00:00
										 |  |  |     /* presume that the buffer is at least 2 characters long */ | 
					
						
							| 
									
										
										
										
											2000-06-08 17:54:00 +00:00
										 |  |  |     if (PyUnicode_Check(v)) { | 
					
						
							|  |  |  | 	if (PyUnicode_GET_SIZE(v) != 1) | 
					
						
							|  |  |  | 	    goto onError; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	buf[0] = PyUnicode_AS_UNICODE(v)[0]; | 
					
						
							| 
									
										
										
										
											2000-06-08 17:54:00 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-08 17:54:00 +00:00
										 |  |  |     else if (PyString_Check(v)) { | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 	if (PyString_GET_SIZE(v) != 1) | 
					
						
							| 
									
										
										
										
											2000-06-08 17:54:00 +00:00
										 |  |  | 	    goto onError; | 
					
						
							|  |  |  | 	buf[0] = (Py_UNICODE)PyString_AS_STRING(v)[0]; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  | 	/* Integer input truncated to a character */ | 
					
						
							|  |  |  |         long x; | 
					
						
							|  |  |  | 	x = PyInt_AsLong(v); | 
					
						
							|  |  |  | 	if (x == -1 && PyErr_Occurred()) | 
					
						
							| 
									
										
										
										
											2000-06-08 17:54:00 +00:00
										 |  |  | 	    goto onError; | 
					
						
							| 
									
										
										
										
											2002-08-11 12:23:04 +00:00
										 |  |  | #ifdef Py_UNICODE_WIDE
 | 
					
						
							|  |  |  | 	if (x < 0 || x > 0x10ffff) { | 
					
						
							| 
									
										
										
										
											2003-04-02 16:37:24 +00:00
										 |  |  | 	    PyErr_SetString(PyExc_OverflowError, | 
					
						
							| 
									
										
										
										
											2002-08-11 12:23:04 +00:00
										 |  |  | 			    "%c arg not in range(0x110000) " | 
					
						
							|  |  |  | 			    "(wide Python build)"); | 
					
						
							|  |  |  | 	    return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	if (x < 0 || x > 0xffff) { | 
					
						
							| 
									
										
										
										
											2003-04-02 16:37:24 +00:00
										 |  |  | 	    PyErr_SetString(PyExc_OverflowError, | 
					
						
							| 
									
										
										
										
											2002-08-11 12:23:04 +00:00
										 |  |  | 			    "%c arg not in range(0x10000) " | 
					
						
							|  |  |  | 			    "(narrow Python build)"); | 
					
						
							|  |  |  | 	    return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	buf[0] = (Py_UNICODE) x; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     buf[1] = '\0'; | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2000-06-08 17:54:00 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							|  |  |  |     PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 		    "%c requires int or char"); | 
					
						
							|  |  |  |     return -1; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-30 10:29:57 +00:00
										 |  |  | /* fmt%(v1,v2,...) is roughly equivalent to sprintf(fmt, v1, v2, ...)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    FORMATBUFLEN is the length of the buffer in which the floats, ints, & | 
					
						
							|  |  |  |    chars are formatted. XXX This is a magic number. Each formatting | 
					
						
							|  |  |  |    routine does bounds checking to ensure no overflow, but a better | 
					
						
							|  |  |  |    solution may be to malloc a buffer of appropriate size for each | 
					
						
							|  |  |  |    format. For now, the current solution is sufficient. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | #define FORMATBUFLEN (size_t)120
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | PyObject *PyUnicode_Format(PyObject *format, | 
					
						
							|  |  |  | 			   PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Py_UNICODE *fmt, *res; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     Py_ssize_t fmtcnt, rescnt, reslen, arglen, argidx; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     int args_owned = 0; | 
					
						
							|  |  |  |     PyUnicodeObject *result = NULL; | 
					
						
							|  |  |  |     PyObject *dict = NULL; | 
					
						
							|  |  |  |     PyObject *uformat; | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (format == NULL || args == NULL) { | 
					
						
							|  |  |  | 	PyErr_BadInternalCall(); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     uformat = PyUnicode_FromObject(format); | 
					
						
							| 
									
										
										
										
											2000-05-09 19:53:39 +00:00
										 |  |  |     if (uformat == NULL) | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     fmt = PyUnicode_AS_UNICODE(uformat); | 
					
						
							|  |  |  |     fmtcnt = PyUnicode_GET_SIZE(uformat); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     reslen = rescnt = fmtcnt + 100; | 
					
						
							|  |  |  |     result = _PyUnicode_New(reslen); | 
					
						
							|  |  |  |     if (result == NULL) | 
					
						
							|  |  |  | 	goto onError; | 
					
						
							|  |  |  |     res = PyUnicode_AS_UNICODE(result); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (PyTuple_Check(args)) { | 
					
						
							|  |  |  | 	arglen = PyTuple_Size(args); | 
					
						
							|  |  |  | 	argidx = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  | 	arglen = -1; | 
					
						
							|  |  |  | 	argidx = -2; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-12-19 02:37:44 +00:00
										 |  |  |     if (Py_TYPE(args)->tp_as_mapping && !PyTuple_Check(args) && | 
					
						
							| 
									
										
										
										
											2002-11-12 23:01:12 +00:00
										 |  |  |         !PyObject_TypeCheck(args, &PyBaseString_Type)) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	dict = args; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (--fmtcnt >= 0) { | 
					
						
							|  |  |  | 	if (*fmt != '%') { | 
					
						
							|  |  |  | 	    if (--rescnt < 0) { | 
					
						
							|  |  |  | 		rescnt = fmtcnt + 100; | 
					
						
							|  |  |  | 		reslen += rescnt; | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  | 		if (_PyUnicode_Resize(&result, reslen) < 0) | 
					
						
							| 
									
										
										
										
											2006-03-07 15:39:21 +00:00
										 |  |  | 		    goto onError; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		res = PyUnicode_AS_UNICODE(result) + reslen - rescnt; | 
					
						
							|  |  |  | 		--rescnt; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    *res++ = *fmt++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 	    /* Got a format specifier */ | 
					
						
							|  |  |  | 	    int flags = 0; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	    Py_ssize_t width = -1; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    int prec = -1; | 
					
						
							|  |  |  | 	    Py_UNICODE c = '\0'; | 
					
						
							|  |  |  | 	    Py_UNICODE fill; | 
					
						
							|  |  |  | 	    PyObject *v = NULL; | 
					
						
							|  |  |  | 	    PyObject *temp = NULL; | 
					
						
							| 
									
										
										
										
											2000-06-30 10:29:57 +00:00
										 |  |  | 	    Py_UNICODE *pbuf; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    Py_UNICODE sign; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	    Py_ssize_t len; | 
					
						
							| 
									
										
										
										
											2000-06-30 10:29:57 +00:00
										 |  |  | 	    Py_UNICODE formatbuf[FORMATBUFLEN]; /* For format{float,int,char}() */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	    fmt++; | 
					
						
							|  |  |  | 	    if (*fmt == '(') { | 
					
						
							|  |  |  | 		Py_UNICODE *keystart; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 		Py_ssize_t keylen; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		PyObject *key; | 
					
						
							|  |  |  | 		int pcount = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (dict == NULL) { | 
					
						
							|  |  |  | 		    PyErr_SetString(PyExc_TypeError, | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 				    "format requires a mapping"); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		    goto onError; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		++fmt; | 
					
						
							|  |  |  | 		--fmtcnt; | 
					
						
							|  |  |  | 		keystart = fmt; | 
					
						
							|  |  |  | 		/* Skip over balanced parentheses */ | 
					
						
							|  |  |  | 		while (pcount > 0 && --fmtcnt >= 0) { | 
					
						
							|  |  |  | 		    if (*fmt == ')') | 
					
						
							|  |  |  | 			--pcount; | 
					
						
							|  |  |  | 		    else if (*fmt == '(') | 
					
						
							|  |  |  | 			++pcount; | 
					
						
							|  |  |  | 		    fmt++; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		keylen = fmt - keystart - 1; | 
					
						
							|  |  |  | 		if (fmtcnt < 0 || pcount > 0) { | 
					
						
							|  |  |  | 		    PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 				    "incomplete format key"); | 
					
						
							|  |  |  | 		    goto onError; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2001-11-20 15:18:49 +00:00
										 |  |  | #if 0
 | 
					
						
							| 
									
										
										
										
											2000-05-09 19:53:39 +00:00
										 |  |  | 		/* keys are converted to strings using UTF-8 and
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		   then looked up since Python uses strings to hold | 
					
						
							|  |  |  | 		   variables names etc. in its namespaces and we | 
					
						
							| 
									
										
										
										
											2000-05-09 19:53:39 +00:00
										 |  |  | 		   wouldn't want to break common idioms. */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		key = PyUnicode_EncodeUTF8(keystart, | 
					
						
							|  |  |  | 					   keylen, | 
					
						
							|  |  |  | 					   NULL); | 
					
						
							| 
									
										
										
										
											2001-11-20 15:18:49 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 		key = PyUnicode_FromUnicode(keystart, keylen); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		if (key == NULL) | 
					
						
							|  |  |  | 		    goto onError; | 
					
						
							|  |  |  | 		if (args_owned) { | 
					
						
							|  |  |  | 		    Py_DECREF(args); | 
					
						
							|  |  |  | 		    args_owned = 0; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		args = PyObject_GetItem(dict, key); | 
					
						
							|  |  |  | 		Py_DECREF(key); | 
					
						
							|  |  |  | 		if (args == NULL) { | 
					
						
							|  |  |  | 		    goto onError; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		args_owned = 1; | 
					
						
							|  |  |  | 		arglen = -1; | 
					
						
							|  |  |  | 		argidx = -2; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    while (--fmtcnt >= 0) { | 
					
						
							|  |  |  | 		switch (c = *fmt++) { | 
					
						
							|  |  |  | 		case '-': flags |= F_LJUST; continue; | 
					
						
							|  |  |  | 		case '+': flags |= F_SIGN; continue; | 
					
						
							|  |  |  | 		case ' ': flags |= F_BLANK; continue; | 
					
						
							|  |  |  | 		case '#': flags |= F_ALT; continue; | 
					
						
							|  |  |  | 		case '0': flags |= F_ZERO; continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    if (c == '*') { | 
					
						
							|  |  |  | 		v = getnextarg(args, arglen, &argidx); | 
					
						
							|  |  |  | 		if (v == NULL) | 
					
						
							|  |  |  | 		    goto onError; | 
					
						
							|  |  |  | 		if (!PyInt_Check(v)) { | 
					
						
							|  |  |  | 		    PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 				    "* wants int"); | 
					
						
							|  |  |  | 		    goto onError; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		width = PyInt_AsLong(v); | 
					
						
							|  |  |  | 		if (width < 0) { | 
					
						
							|  |  |  | 		    flags |= F_LJUST; | 
					
						
							|  |  |  | 		    width = -width; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (--fmtcnt >= 0) | 
					
						
							|  |  |  | 		    c = *fmt++; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    else if (c >= '0' && c <= '9') { | 
					
						
							|  |  |  | 		width = c - '0'; | 
					
						
							|  |  |  | 		while (--fmtcnt >= 0) { | 
					
						
							|  |  |  | 		    c = *fmt++; | 
					
						
							|  |  |  | 		    if (c < '0' || c > '9') | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		    if ((width*10) / 10 != width) { | 
					
						
							|  |  |  | 			PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 					"width too big"); | 
					
						
							|  |  |  | 			goto onError; | 
					
						
							|  |  |  | 		    } | 
					
						
							|  |  |  | 		    width = width*10 + (c - '0'); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    if (c == '.') { | 
					
						
							|  |  |  | 		prec = 0; | 
					
						
							|  |  |  | 		if (--fmtcnt >= 0) | 
					
						
							|  |  |  | 		    c = *fmt++; | 
					
						
							|  |  |  | 		if (c == '*') { | 
					
						
							|  |  |  | 		    v = getnextarg(args, arglen, &argidx); | 
					
						
							|  |  |  | 		    if (v == NULL) | 
					
						
							|  |  |  | 			goto onError; | 
					
						
							|  |  |  | 		    if (!PyInt_Check(v)) { | 
					
						
							|  |  |  | 			PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 					"* wants int"); | 
					
						
							|  |  |  | 			goto onError; | 
					
						
							|  |  |  | 		    } | 
					
						
							|  |  |  | 		    prec = PyInt_AsLong(v); | 
					
						
							|  |  |  | 		    if (prec < 0) | 
					
						
							|  |  |  | 			prec = 0; | 
					
						
							|  |  |  | 		    if (--fmtcnt >= 0) | 
					
						
							|  |  |  | 			c = *fmt++; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else if (c >= '0' && c <= '9') { | 
					
						
							|  |  |  | 		    prec = c - '0'; | 
					
						
							|  |  |  | 		    while (--fmtcnt >= 0) { | 
					
						
							|  |  |  | 			c = Py_CHARMASK(*fmt++); | 
					
						
							|  |  |  | 			if (c < '0' || c > '9') | 
					
						
							|  |  |  | 			    break; | 
					
						
							|  |  |  | 			if ((prec*10) / 10 != prec) { | 
					
						
							|  |  |  | 			    PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 					    "prec too big"); | 
					
						
							|  |  |  | 			    goto onError; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			prec = prec*10 + (c - '0'); | 
					
						
							|  |  |  | 		    } | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	    } /* prec */ | 
					
						
							|  |  |  | 	    if (fmtcnt >= 0) { | 
					
						
							|  |  |  | 		if (c == 'h' || c == 'l' || c == 'L') { | 
					
						
							|  |  |  | 		    if (--fmtcnt >= 0) | 
					
						
							|  |  |  | 			c = *fmt++; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    if (fmtcnt < 0) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 				"incomplete format"); | 
					
						
							|  |  |  | 		goto onError; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    if (c != '%') { | 
					
						
							|  |  |  | 		v = getnextarg(args, arglen, &argidx); | 
					
						
							|  |  |  | 		if (v == NULL) | 
					
						
							|  |  |  | 		    goto onError; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    sign = 0; | 
					
						
							|  |  |  | 	    fill = ' '; | 
					
						
							|  |  |  | 	    switch (c) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	    case '%': | 
					
						
							| 
									
										
										
										
											2000-06-30 10:29:57 +00:00
										 |  |  | 		pbuf = formatbuf; | 
					
						
							|  |  |  | 		/* presume that buffer length is at least 1 */ | 
					
						
							|  |  |  | 		pbuf[0] = '%'; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		len = 1; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	    case 's': | 
					
						
							|  |  |  | 	    case 'r': | 
					
						
							|  |  |  | 		if (PyUnicode_Check(v) && c == 's') { | 
					
						
							|  |  |  | 		    temp = v; | 
					
						
							|  |  |  | 		    Py_INCREF(temp); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							|  |  |  | 		    PyObject *unicode; | 
					
						
							|  |  |  | 		    if (c == 's') | 
					
						
							| 
									
										
										
										
											2004-07-23 16:13:25 +00:00
										 |  |  | 			temp = PyObject_Unicode(v); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		    else | 
					
						
							|  |  |  | 			temp = PyObject_Repr(v); | 
					
						
							|  |  |  | 		    if (temp == NULL) | 
					
						
							|  |  |  | 			goto onError; | 
					
						
							| 
									
										
										
										
											2004-07-23 16:13:25 +00:00
										 |  |  |                     if (PyUnicode_Check(temp)) | 
					
						
							|  |  |  |                         /* nothing to do */; | 
					
						
							|  |  |  |                     else if (PyString_Check(temp)) { | 
					
						
							|  |  |  |                         /* convert to string to Unicode */ | 
					
						
							| 
									
										
										
										
											2006-03-12 00:29:36 +00:00
										 |  |  | 		        unicode = PyUnicode_Decode(PyString_AS_STRING(temp), | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 						   PyString_GET_SIZE(temp), | 
					
						
							| 
									
										
										
										
											2006-03-12 00:29:36 +00:00
										 |  |  | 						   NULL, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 						   "strict"); | 
					
						
							| 
									
										
										
										
											2006-03-12 00:29:36 +00:00
										 |  |  | 		        Py_DECREF(temp); | 
					
						
							|  |  |  | 		        temp = unicode; | 
					
						
							|  |  |  | 		        if (temp == NULL) | 
					
						
							|  |  |  | 			    goto onError; | 
					
						
							|  |  |  | 		    } | 
					
						
							| 
									
										
										
										
											2004-07-23 16:13:25 +00:00
										 |  |  | 		    else { | 
					
						
							|  |  |  | 			Py_DECREF(temp); | 
					
						
							|  |  |  | 			PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 					"%s argument has non-string str()"); | 
					
						
							|  |  |  | 			goto onError; | 
					
						
							|  |  |  | 		    } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2000-06-30 10:29:57 +00:00
										 |  |  | 		pbuf = PyUnicode_AS_UNICODE(temp); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		len = PyUnicode_GET_SIZE(temp); | 
					
						
							|  |  |  | 		if (prec >= 0 && len > prec) | 
					
						
							|  |  |  | 		    len = prec; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	    case 'i': | 
					
						
							|  |  |  | 	    case 'd': | 
					
						
							|  |  |  | 	    case 'u': | 
					
						
							|  |  |  | 	    case 'o': | 
					
						
							|  |  |  | 	    case 'x': | 
					
						
							|  |  |  | 	    case 'X': | 
					
						
							|  |  |  | 		if (c == 'i') | 
					
						
							|  |  |  | 		    c = 'd'; | 
					
						
							| 
									
										
										
										
											2000-11-30 05:22:44 +00:00
										 |  |  | 		if (PyLong_Check(v)) { | 
					
						
							| 
									
										
										
										
											2000-09-21 05:43:11 +00:00
										 |  |  | 		    temp = formatlong(v, flags, prec, c); | 
					
						
							|  |  |  | 		    if (!temp) | 
					
						
							|  |  |  | 			goto onError; | 
					
						
							|  |  |  | 		    pbuf = PyUnicode_AS_UNICODE(temp); | 
					
						
							|  |  |  | 		    len = PyUnicode_GET_SIZE(temp); | 
					
						
							|  |  |  | 		    sign = 1; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2000-09-21 05:43:11 +00:00
										 |  |  | 		else { | 
					
						
							|  |  |  | 		    pbuf = formatbuf; | 
					
						
							|  |  |  | 		    len = formatint(pbuf, sizeof(formatbuf)/sizeof(Py_UNICODE), | 
					
						
							|  |  |  | 				    flags, prec, c, v); | 
					
						
							|  |  |  | 		    if (len < 0) | 
					
						
							|  |  |  | 			goto onError; | 
					
						
							| 
									
										
										
										
											2003-11-29 23:52:13 +00:00
										 |  |  | 		    sign = 1; | 
					
						
							| 
									
										
										
										
											2000-09-21 05:43:11 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if (flags & F_ZERO) | 
					
						
							|  |  |  | 		    fill = '0'; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	    case 'e': | 
					
						
							|  |  |  | 	    case 'E': | 
					
						
							|  |  |  | 	    case 'f': | 
					
						
							| 
									
										
										
										
											2003-08-27 04:55:52 +00:00
										 |  |  | 	    case 'F': | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    case 'g': | 
					
						
							|  |  |  | 	    case 'G': | 
					
						
							| 
									
										
										
										
											2003-08-27 04:55:52 +00:00
										 |  |  | 		if (c == 'F') | 
					
						
							|  |  |  | 			c = 'f'; | 
					
						
							| 
									
										
										
										
											2000-06-30 10:29:57 +00:00
										 |  |  | 		pbuf = formatbuf; | 
					
						
							|  |  |  | 		len = formatfloat(pbuf, sizeof(formatbuf)/sizeof(Py_UNICODE), | 
					
						
							|  |  |  | 			flags, prec, c, v); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		if (len < 0) | 
					
						
							|  |  |  | 		    goto onError; | 
					
						
							|  |  |  | 		sign = 1; | 
					
						
							| 
									
										
										
										
											2000-09-21 05:43:11 +00:00
										 |  |  | 		if (flags & F_ZERO) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		    fill = '0'; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	    case 'c': | 
					
						
							| 
									
										
										
										
											2000-06-30 10:29:57 +00:00
										 |  |  | 		pbuf = formatbuf; | 
					
						
							|  |  |  | 		len = formatchar(pbuf, sizeof(formatbuf)/sizeof(Py_UNICODE), v); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		if (len < 0) | 
					
						
							|  |  |  | 		    goto onError; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	    default: | 
					
						
							|  |  |  | 		PyErr_Format(PyExc_ValueError, | 
					
						
							| 
									
										
										
										
											2000-12-15 13:07:46 +00:00
										 |  |  | 			     "unsupported format character '%c' (0x%x) " | 
					
						
							| 
									
										
										
										
											2006-10-04 12:17:45 +00:00
										 |  |  | 			     "at index %zd", | 
					
						
							| 
									
										
										
										
											2003-09-16 20:30:58 +00:00
										 |  |  | 			     (31<=c && c<=126) ? (char)c : '?', | 
					
						
							| 
									
										
										
										
											2002-09-24 09:32:14 +00:00
										 |  |  |                              (int)c, | 
					
						
							| 
									
										
										
										
											2006-10-04 12:17:45 +00:00
										 |  |  | 			     (Py_ssize_t)(fmt - 1 - | 
					
						
							|  |  |  | 					  PyUnicode_AS_UNICODE(uformat))); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		goto onError; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    if (sign) { | 
					
						
							| 
									
										
										
										
											2000-06-30 10:29:57 +00:00
										 |  |  | 		if (*pbuf == '-' || *pbuf == '+') { | 
					
						
							|  |  |  | 		    sign = *pbuf++; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		    len--; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else if (flags & F_SIGN) | 
					
						
							|  |  |  | 		    sign = '+'; | 
					
						
							|  |  |  | 		else if (flags & F_BLANK) | 
					
						
							|  |  |  | 		    sign = ' '; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		    sign = 0; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    if (width < len) | 
					
						
							|  |  |  | 		width = len; | 
					
						
							| 
									
										
										
										
											2002-10-11 00:43:48 +00:00
										 |  |  | 	    if (rescnt - (sign != 0) < width) { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		reslen -= rescnt; | 
					
						
							|  |  |  | 		rescnt = width + fmtcnt + 100; | 
					
						
							|  |  |  | 		reslen += rescnt; | 
					
						
							| 
									
										
										
										
											2002-10-11 00:43:48 +00:00
										 |  |  | 		if (reslen < 0) { | 
					
						
							| 
									
										
										
										
											2006-03-07 15:39:21 +00:00
										 |  |  | 		    Py_XDECREF(temp); | 
					
						
							| 
									
										
										
										
											2006-03-12 00:29:36 +00:00
										 |  |  | 		    PyErr_NoMemory(); | 
					
						
							|  |  |  | 		    goto onError; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (_PyUnicode_Resize(&result, reslen) < 0) { | 
					
						
							|  |  |  | 		    Py_XDECREF(temp); | 
					
						
							|  |  |  | 		    goto onError; | 
					
						
							| 
									
										
										
										
											2002-10-11 00:43:48 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		res = PyUnicode_AS_UNICODE(result) | 
					
						
							|  |  |  | 		    + reslen - rescnt; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    if (sign) { | 
					
						
							|  |  |  | 		if (fill != ' ') | 
					
						
							|  |  |  | 		    *res++ = sign; | 
					
						
							|  |  |  | 		rescnt--; | 
					
						
							|  |  |  | 		if (width > len) | 
					
						
							|  |  |  | 		    width--; | 
					
						
							|  |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2000-09-21 05:43:11 +00:00
										 |  |  | 	    if ((flags & F_ALT) && (c == 'x' || c == 'X')) { | 
					
						
							|  |  |  | 		assert(pbuf[0] == '0'); | 
					
						
							| 
									
										
										
										
											2001-04-12 18:38:48 +00:00
										 |  |  | 		assert(pbuf[1] == c); | 
					
						
							|  |  |  | 		if (fill != ' ') { | 
					
						
							|  |  |  | 		    *res++ = *pbuf++; | 
					
						
							|  |  |  | 		    *res++ = *pbuf++; | 
					
						
							| 
									
										
										
										
											2000-09-21 05:43:11 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2001-04-12 18:38:48 +00:00
										 |  |  | 		rescnt -= 2; | 
					
						
							|  |  |  | 		width -= 2; | 
					
						
							|  |  |  | 		if (width < 0) | 
					
						
							|  |  |  | 		    width = 0; | 
					
						
							|  |  |  | 		len -= 2; | 
					
						
							| 
									
										
										
										
											2000-09-21 05:43:11 +00:00
										 |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    if (width > len && !(flags & F_LJUST)) { | 
					
						
							|  |  |  | 		do { | 
					
						
							|  |  |  | 		    --rescnt; | 
					
						
							|  |  |  | 		    *res++ = fill; | 
					
						
							|  |  |  | 		} while (--width > len); | 
					
						
							|  |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2000-09-21 05:43:11 +00:00
										 |  |  | 	    if (fill == ' ') { | 
					
						
							|  |  |  | 		if (sign) | 
					
						
							|  |  |  | 		    *res++ = sign; | 
					
						
							| 
									
										
										
										
											2001-04-12 18:38:48 +00:00
										 |  |  | 		if ((flags & F_ALT) && (c == 'x' || c == 'X')) { | 
					
						
							| 
									
										
										
										
											2000-09-21 05:43:11 +00:00
										 |  |  | 		    assert(pbuf[0] == '0'); | 
					
						
							| 
									
										
										
										
											2001-04-12 18:38:48 +00:00
										 |  |  | 		    assert(pbuf[1] == c); | 
					
						
							| 
									
										
										
										
											2000-09-21 05:43:11 +00:00
										 |  |  | 		    *res++ = *pbuf++; | 
					
						
							|  |  |  | 		    *res++ = *pbuf++; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  | 	    Py_UNICODE_COPY(res, pbuf, len); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	    res += len; | 
					
						
							|  |  |  | 	    rescnt -= len; | 
					
						
							|  |  |  | 	    while (--width >= len) { | 
					
						
							|  |  |  | 		--rescnt; | 
					
						
							|  |  |  | 		*res++ = ' '; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    if (dict && (argidx < arglen) && c != '%') { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_TypeError, | 
					
						
							| 
									
										
										
										
											2002-05-21 15:14:57 +00:00
										 |  |  | 				"not all arguments converted during string formatting"); | 
					
						
							| 
									
										
										
										
											2006-03-12 00:29:36 +00:00
										 |  |  |                 Py_XDECREF(temp); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 		goto onError; | 
					
						
							|  |  |  | 	    } | 
					
						
							|  |  |  | 	    Py_XDECREF(temp); | 
					
						
							|  |  |  | 	} /* '%' */ | 
					
						
							|  |  |  |     } /* until end */ | 
					
						
							|  |  |  |     if (argidx < arglen && !dict) { | 
					
						
							|  |  |  | 	PyErr_SetString(PyExc_TypeError, | 
					
						
							| 
									
										
										
										
											2002-05-21 15:14:57 +00:00
										 |  |  | 			"not all arguments converted during string formatting"); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	goto onError; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-12 00:29:36 +00:00
										 |  |  |     if (_PyUnicode_Resize(&result, reslen - rescnt) < 0) | 
					
						
							|  |  |  | 	goto onError; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     if (args_owned) { | 
					
						
							|  |  |  | 	Py_DECREF(args); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     Py_DECREF(uformat); | 
					
						
							|  |  |  |     return (PyObject *)result; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  onError: | 
					
						
							|  |  |  |     Py_XDECREF(result); | 
					
						
							|  |  |  |     Py_DECREF(uformat); | 
					
						
							|  |  |  |     if (args_owned) { | 
					
						
							|  |  |  | 	Py_DECREF(args); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyBufferProcs unicode_as_buffer = { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |     (readbufferproc) unicode_buffer_getreadbuf, | 
					
						
							|  |  |  |     (writebufferproc) unicode_buffer_getwritebuf, | 
					
						
							|  |  |  |     (segcountproc) unicode_buffer_getsegcount, | 
					
						
							|  |  |  |     (charbufferproc) unicode_buffer_getcharbuf, | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-17 16:30:39 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2001-08-30 03:12:59 +00:00
										 |  |  | unicode_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | static PyObject * | 
					
						
							|  |  |  | unicode_new(PyTypeObject *type, PyObject *args, PyObject *kwds) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |         PyObject *x = NULL; | 
					
						
							| 
									
										
										
										
											2006-02-27 16:46:16 +00:00
										 |  |  | 	static char *kwlist[] = {"string", "encoding", "errors", 0}; | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | 	char *encoding = NULL; | 
					
						
							|  |  |  | 	char *errors = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-30 03:12:59 +00:00
										 |  |  | 	if (type != &PyUnicode_Type) | 
					
						
							|  |  |  | 		return unicode_subtype_new(type, args, kwds); | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | 	if (!PyArg_ParseTupleAndKeywords(args, kwds, "|Oss:unicode", | 
					
						
							|  |  |  | 					  kwlist, &x, &encoding, &errors)) | 
					
						
							|  |  |  | 	    return NULL; | 
					
						
							|  |  |  | 	if (x == NULL) | 
					
						
							|  |  |  | 		return (PyObject *)_PyUnicode_New(0); | 
					
						
							| 
									
										
										
										
											2001-10-19 02:01:31 +00:00
										 |  |  | 	if (encoding == NULL && errors == NULL) | 
					
						
							|  |  |  | 	    return PyObject_Unicode(x); | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | 	return PyUnicode_FromEncodedObject(x, encoding, errors); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-30 03:12:59 +00:00
										 |  |  | static PyObject * | 
					
						
							|  |  |  | unicode_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2001-09-12 05:18:58 +00:00
										 |  |  | 	PyUnicodeObject *tmp, *pnew; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	Py_ssize_t n; | 
					
						
							| 
									
										
										
										
											2001-08-30 03:12:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	assert(PyType_IsSubtype(type, &PyUnicode_Type)); | 
					
						
							|  |  |  | 	tmp = (PyUnicodeObject *)unicode_new(&PyUnicode_Type, args, kwds); | 
					
						
							|  |  |  | 	if (tmp == NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	assert(PyUnicode_Check(tmp)); | 
					
						
							| 
									
										
										
										
											2001-09-12 05:18:58 +00:00
										 |  |  | 	pnew = (PyUnicodeObject *) type->tp_alloc(type, n = tmp->length); | 
					
						
							| 
									
										
										
										
											2003-06-28 20:04:25 +00:00
										 |  |  | 	if (pnew == NULL) { | 
					
						
							|  |  |  | 		Py_DECREF(tmp); | 
					
						
							| 
									
										
										
										
											2001-08-30 03:12:59 +00:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2003-06-28 20:04:25 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-09-12 05:18:58 +00:00
										 |  |  | 	pnew->str = PyMem_NEW(Py_UNICODE, n+1); | 
					
						
							|  |  |  | 	if (pnew->str == NULL) { | 
					
						
							|  |  |  | 		_Py_ForgetReference((PyObject *)pnew); | 
					
						
							| 
									
										
										
										
											2002-04-12 03:07:20 +00:00
										 |  |  | 		PyObject_Del(pnew); | 
					
						
							| 
									
										
										
										
											2003-06-28 20:04:25 +00:00
										 |  |  | 		Py_DECREF(tmp); | 
					
						
							| 
									
										
										
										
											2003-02-11 23:05:40 +00:00
										 |  |  | 		return PyErr_NoMemory(); | 
					
						
							| 
									
										
										
										
											2001-08-30 03:12:59 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-09-12 05:18:58 +00:00
										 |  |  | 	Py_UNICODE_COPY(pnew->str, tmp->str, n+1); | 
					
						
							|  |  |  | 	pnew->length = n; | 
					
						
							|  |  |  | 	pnew->hash = tmp->hash; | 
					
						
							| 
									
										
										
										
											2001-08-30 03:12:59 +00:00
										 |  |  | 	Py_DECREF(tmp); | 
					
						
							| 
									
										
										
										
											2001-09-12 05:18:58 +00:00
										 |  |  | 	return (PyObject *)pnew; | 
					
						
							| 
									
										
										
										
											2001-08-30 03:12:59 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-13 20:33:02 +00:00
										 |  |  | PyDoc_STRVAR(unicode_doc, | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | "unicode(string [, encoding[, errors]]) -> object\n\
 | 
					
						
							|  |  |  | \n\ | 
					
						
							|  |  |  | Create a new Unicode object from the given encoded string.\n\ | 
					
						
							| 
									
										
										
										
											2002-07-26 16:22:46 +00:00
										 |  |  | encoding defaults to the current default string encoding.\n\ | 
					
						
							|  |  |  | errors can be 'strict', 'replace' or 'ignore' and defaults to 'strict'."); | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | PyTypeObject PyUnicode_Type = { | 
					
						
							| 
									
										
										
										
											2007-07-21 06:55:02 +00:00
										 |  |  |     PyVarObject_HEAD_INIT(&PyType_Type, 0) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     "unicode", 				/* tp_name */ | 
					
						
							|  |  |  |     sizeof(PyUnicodeObject), 		/* tp_size */ | 
					
						
							|  |  |  |     0, 					/* tp_itemsize */ | 
					
						
							|  |  |  |     /* Slots */ | 
					
						
							| 
									
										
										
										
											2001-10-05 20:51:39 +00:00
										 |  |  |     (destructor)unicode_dealloc, 	/* tp_dealloc */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     0, 					/* tp_print */ | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  |     0,				 	/* tp_getattr */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     0, 					/* tp_setattr */ | 
					
						
							| 
									
										
										
										
											2006-08-14 10:55:19 +00:00
										 |  |  |     0, 					/* tp_compare */ | 
					
						
							| 
									
										
										
										
											2006-03-30 11:57:00 +00:00
										 |  |  |     unicode_repr, 			/* tp_repr */ | 
					
						
							| 
									
										
										
										
											2002-11-18 16:10:18 +00:00
										 |  |  |     &unicode_as_number, 		/* tp_as_number */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     &unicode_as_sequence, 		/* tp_as_sequence */ | 
					
						
							| 
									
										
										
										
											2002-06-11 10:55:12 +00:00
										 |  |  |     &unicode_as_mapping, 		/* tp_as_mapping */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     (hashfunc) unicode_hash, 		/* tp_hash*/ | 
					
						
							|  |  |  |     0, 					/* tp_call*/ | 
					
						
							|  |  |  |     (reprfunc) unicode_str,	 	/* tp_str */ | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  |     PyObject_GenericGetAttr, 		/* tp_getattro */ | 
					
						
							|  |  |  |     0,			 		/* tp_setattro */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     &unicode_as_buffer,			/* tp_as_buffer */ | 
					
						
							| 
									
										
										
										
											2002-11-18 16:10:18 +00:00
										 |  |  |     Py_TPFLAGS_DEFAULT | Py_TPFLAGS_CHECKTYPES | | 
					
						
							| 
									
										
										
										
											2007-02-25 19:44:48 +00:00
										 |  |  | 	    Py_TPFLAGS_BASETYPE | Py_TPFLAGS_UNICODE_SUBCLASS,	/* tp_flags */ | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  |     unicode_doc,			/* tp_doc */ | 
					
						
							|  |  |  |     0,					/* tp_traverse */ | 
					
						
							|  |  |  |     0,					/* tp_clear */ | 
					
						
							| 
									
										
										
										
											2006-08-14 10:55:19 +00:00
										 |  |  |     PyUnicode_RichCompare,		/* tp_richcompare */ | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  |     0,					/* tp_weaklistoffset */ | 
					
						
							|  |  |  |     0,					/* tp_iter */ | 
					
						
							|  |  |  |     0,					/* tp_iternext */ | 
					
						
							|  |  |  |     unicode_methods,			/* tp_methods */ | 
					
						
							|  |  |  |     0,					/* tp_members */ | 
					
						
							|  |  |  |     0,					/* tp_getset */ | 
					
						
							| 
									
										
										
										
											2002-05-24 19:01:59 +00:00
										 |  |  |     &PyBaseString_Type,			/* tp_base */ | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  |     0,					/* tp_dict */ | 
					
						
							|  |  |  |     0,					/* tp_descr_get */ | 
					
						
							|  |  |  |     0,					/* tp_descr_set */ | 
					
						
							|  |  |  |     0,					/* tp_dictoffset */ | 
					
						
							|  |  |  |     0,					/* tp_init */ | 
					
						
							|  |  |  |     0,					/* tp_alloc */ | 
					
						
							|  |  |  |     unicode_new,			/* tp_new */ | 
					
						
							| 
									
										
										
										
											2002-04-12 03:07:20 +00:00
										 |  |  |     PyObject_Del,      		/* tp_free */ | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Initialize the Unicode implementation */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-22 19:25:51 +00:00
										 |  |  | void _PyUnicode_Init(void) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-23 18:44:25 +00:00
										 |  |  |     /* XXX - move this array to unicodectype.c ? */ | 
					
						
							|  |  |  |     Py_UNICODE linebreak[] = { | 
					
						
							|  |  |  |         0x000A, /* LINE FEED */ | 
					
						
							|  |  |  |         0x000D, /* CARRIAGE RETURN */ | 
					
						
							|  |  |  |         0x001C, /* FILE SEPARATOR */ | 
					
						
							|  |  |  |         0x001D, /* GROUP SEPARATOR */ | 
					
						
							|  |  |  |         0x001E, /* RECORD SEPARATOR */ | 
					
						
							|  |  |  |         0x0085, /* NEXT LINE */ | 
					
						
							|  |  |  |         0x2028, /* LINE SEPARATOR */ | 
					
						
							|  |  |  |         0x2029, /* PARAGRAPH SEPARATOR */ | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-09 19:53:39 +00:00
										 |  |  |     /* Init the implementation */ | 
					
						
							| 
									
										
										
										
											2008-02-06 13:33:44 +00:00
										 |  |  |     free_list = NULL; | 
					
						
							|  |  |  |     numfree = 0; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     unicode_empty = _PyUnicode_New(0); | 
					
						
							| 
									
										
										
										
											2006-07-21 05:32:28 +00:00
										 |  |  |     if (!unicode_empty) | 
					
						
							|  |  |  | 	return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-07 09:13:21 +00:00
										 |  |  |     strcpy(unicode_default_encoding, "ascii"); | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  |     for (i = 0; i < 256; i++) | 
					
						
							|  |  |  | 	unicode_latin1[i] = NULL; | 
					
						
							| 
									
										
										
										
											2002-05-24 19:01:59 +00:00
										 |  |  |     if (PyType_Ready(&PyUnicode_Type) < 0) | 
					
						
							|  |  |  | 	Py_FatalError("Can't initialize 'unicode'"); | 
					
						
							| 
									
										
										
										
											2006-05-23 18:44:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* initialize the linebreak bloom filter */ | 
					
						
							|  |  |  |     bloom_linebreak = make_bloom_mask( | 
					
						
							|  |  |  |         linebreak, sizeof(linebreak) / sizeof(linebreak[0]) | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2006-06-13 08:28:19 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     PyType_Ready(&EncodingMapType); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Finalize the Unicode implementation */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							| 
									
										
										
										
											2000-07-22 19:25:51 +00:00
										 |  |  | _PyUnicode_Fini(void) | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2000-10-03 20:45:26 +00:00
										 |  |  |     PyUnicodeObject *u; | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-10-03 18:09:04 +00:00
										 |  |  |     Py_XDECREF(unicode_empty); | 
					
						
							|  |  |  |     unicode_empty = NULL; | 
					
						
							| 
									
										
										
										
											2000-10-03 20:45:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-23 14:44:21 +00:00
										 |  |  |     for (i = 0; i < 256; i++) { | 
					
						
							|  |  |  | 	if (unicode_latin1[i]) { | 
					
						
							|  |  |  | 	    Py_DECREF(unicode_latin1[i]); | 
					
						
							|  |  |  | 	    unicode_latin1[i] = NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-06 13:33:44 +00:00
										 |  |  |     for (u = free_list; u != NULL;) { | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | 	PyUnicodeObject *v = u; | 
					
						
							|  |  |  | 	u = *(PyUnicodeObject **)u; | 
					
						
							| 
									
										
										
										
											2000-04-10 13:51:10 +00:00
										 |  |  | 	if (v->str) | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | 	    PyMem_DEL(v->str); | 
					
						
							| 
									
										
										
										
											2000-08-03 18:46:08 +00:00
										 |  |  | 	Py_XDECREF(v->defenc); | 
					
						
							| 
									
										
										
										
											2002-04-12 03:07:20 +00:00
										 |  |  | 	PyObject_Del(v); | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-02-06 13:33:44 +00:00
										 |  |  |     free_list = NULL; | 
					
						
							|  |  |  |     numfree = 0; | 
					
						
							| 
									
										
										
										
											2000-03-10 22:53:23 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2003-05-18 12:31:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-13 02:06:09 +00:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-18 12:31:09 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  | Local variables: | 
					
						
							|  |  |  | c-basic-offset: 4 | 
					
						
							|  |  |  | indent-tabs-mode: nil | 
					
						
							|  |  |  | End: | 
					
						
							|  |  |  | */ |