| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1 | /* String object implementation */ | 
 | 2 |  | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3 | #include "Python.h" | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 4 |  | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 5 | #include <ctype.h> | 
 | 6 |  | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 7 | #ifdef COUNT_ALLOCS | 
 | 8 | int null_strings, one_strings; | 
 | 9 | #endif | 
 | 10 |  | 
| Fred Drake | d5fadf7 | 2000-09-26 05:46:01 +0000 | [diff] [blame] | 11 | #if !defined(HAVE_LIMITS_H) && !defined(UCHAR_MAX) | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 12 | #define UCHAR_MAX 255 | 
 | 13 | #endif | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 14 |  | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 15 | static PyStringObject *characters[UCHAR_MAX + 1]; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 16 | static PyStringObject *nullstring; | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 17 |  | 
| Guido van Rossum | 45ec02a | 2002-08-19 21:43:18 +0000 | [diff] [blame] | 18 | /* This dictionary holds all interned strings.  Note that references to | 
 | 19 |    strings in this dictionary are *not* counted in the string's ob_refcnt. | 
 | 20 |    When the interned string reaches a refcnt of 0 the string deallocation | 
 | 21 |    function will delete the reference from this dictionary. | 
 | 22 |  | 
 | 23 |    Another way to look at this is that to say that the actual reference  | 
 | 24 |    count of a string is:  s->ob_refcnt + (s->ob_sstate?2:0) | 
 | 25 | */ | 
 | 26 | static PyObject *interned; | 
 | 27 |  | 
 | 28 |  | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 29 | /* | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 30 |    For both PyString_FromString() and PyString_FromStringAndSize(), the | 
 | 31 |    parameter `size' denotes number of characters to allocate, not counting any | 
| Martin v. Löwis | 1f803f7 | 2002-01-16 10:53:24 +0000 | [diff] [blame] | 32 |    null terminating character. | 
| Martin v. Löwis | d132750 | 2001-12-02 18:09:41 +0000 | [diff] [blame] | 33 |  | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 34 |    For PyString_FromString(), the parameter `str' points to a null-terminated | 
| Martin v. Löwis | 1f803f7 | 2002-01-16 10:53:24 +0000 | [diff] [blame] | 35 |    string containing exactly `size' bytes. | 
| Martin v. Löwis | d132750 | 2001-12-02 18:09:41 +0000 | [diff] [blame] | 36 |  | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 37 |    For PyString_FromStringAndSize(), the parameter the parameter `str' is | 
 | 38 |    either NULL or else points to a string containing at least `size' bytes. | 
 | 39 |    For PyString_FromStringAndSize(), the string in the `str' parameter does | 
 | 40 |    not have to be null-terminated.  (Therefore it is safe to construct a | 
 | 41 |    substring by calling `PyString_FromStringAndSize(origstring, substrlen)'.) | 
 | 42 |    If `str' is NULL then PyString_FromStringAndSize() will allocate `size+1' | 
 | 43 |    bytes (setting the last byte to the null terminating character) and you can | 
 | 44 |    fill in the data yourself.  If `str' is non-NULL then the resulting | 
 | 45 |    PyString object must be treated as immutable and you must not fill in nor | 
 | 46 |    alter the data yourself, since the strings may be shared. | 
| Martin v. Löwis | 8f1ea71 | 2001-12-03 08:24:52 +0000 | [diff] [blame] | 47 |  | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 48 |    The PyObject member `op->ob_size', which denotes the number of "extra | 
 | 49 |    items" in a variable-size object, will contain the number of bytes | 
 | 50 |    allocated for string data, not counting the null terminating character.  It | 
 | 51 |    is therefore equal to the equal to the `size' parameter (for | 
 | 52 |    PyString_FromStringAndSize()) or the length of the string in the `str' | 
 | 53 |    parameter (for PyString_FromString()). | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 54 | */ | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 55 | PyObject * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 56 | PyString_FromStringAndSize(const char *str, int size) | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 57 | { | 
| Tim Peters | 9e897f4 | 2001-05-09 07:37:07 +0000 | [diff] [blame] | 58 | 	register PyStringObject *op; | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 59 | 	if (size == 0 && (op = nullstring) != NULL) { | 
 | 60 | #ifdef COUNT_ALLOCS | 
 | 61 | 		null_strings++; | 
 | 62 | #endif | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 63 | 		Py_INCREF(op); | 
 | 64 | 		return (PyObject *)op; | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 65 | 	} | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 66 | 	if (size == 1 && str != NULL && | 
 | 67 | 	    (op = characters[*str & UCHAR_MAX]) != NULL) | 
 | 68 | 	{ | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 69 | #ifdef COUNT_ALLOCS | 
 | 70 | 		one_strings++; | 
 | 71 | #endif | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 72 | 		Py_INCREF(op); | 
 | 73 | 		return (PyObject *)op; | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 74 | 	} | 
| Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 75 |  | 
| Guido van Rossum | e3a8e7e | 2002-08-19 19:26:42 +0000 | [diff] [blame] | 76 | 	/* Inline PyObject_NewVar */ | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 77 | 	op = (PyStringObject *) | 
| Neil Schemenauer | 510492e | 2002-04-12 03:05:19 +0000 | [diff] [blame] | 78 | 		PyObject_MALLOC(sizeof(PyStringObject) + size * sizeof(char)); | 
| Guido van Rossum | 2a9096b | 1990-10-21 22:15:08 +0000 | [diff] [blame] | 79 | 	if (op == NULL) | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 80 | 		return PyErr_NoMemory(); | 
| Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 81 | 	PyObject_INIT_VAR(op, &PyString_Type, size); | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 82 | 	op->ob_shash = -1; | 
| Guido van Rossum | 45ec02a | 2002-08-19 21:43:18 +0000 | [diff] [blame] | 83 | 	op->ob_sstate = SSTATE_NOT_INTERNED; | 
| Guido van Rossum | 2a9096b | 1990-10-21 22:15:08 +0000 | [diff] [blame] | 84 | 	if (str != NULL) | 
 | 85 | 		memcpy(op->ob_sval, str, size); | 
 | 86 | 	op->ob_sval[size] = '\0'; | 
| Tim Peters | 8deda70 | 2002-03-30 10:06:07 +0000 | [diff] [blame] | 87 | 	/* share short strings */ | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 88 | 	if (size == 0) { | 
| Tim Peters | 9e897f4 | 2001-05-09 07:37:07 +0000 | [diff] [blame] | 89 | 		PyObject *t = (PyObject *)op; | 
 | 90 | 		PyString_InternInPlace(&t); | 
| Tim Peters | 4862ab7 | 2001-05-09 08:43:21 +0000 | [diff] [blame] | 91 | 		op = (PyStringObject *)t; | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 92 | 		nullstring = op; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 93 | 		Py_INCREF(op); | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 94 | 	} else if (size == 1 && str != NULL) { | 
| Tim Peters | 9e897f4 | 2001-05-09 07:37:07 +0000 | [diff] [blame] | 95 | 		PyObject *t = (PyObject *)op; | 
 | 96 | 		PyString_InternInPlace(&t); | 
| Tim Peters | 4862ab7 | 2001-05-09 08:43:21 +0000 | [diff] [blame] | 97 | 		op = (PyStringObject *)t; | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 98 | 		characters[*str & UCHAR_MAX] = op; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 99 | 		Py_INCREF(op); | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 100 | 	} | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 101 | 	return (PyObject *) op; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 102 | } | 
 | 103 |  | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 104 | PyObject * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 105 | PyString_FromString(const char *str) | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 106 | { | 
| Tim Peters | 62de65b | 2001-12-06 20:29:32 +0000 | [diff] [blame] | 107 | 	register size_t size; | 
| Tim Peters | 9e897f4 | 2001-05-09 07:37:07 +0000 | [diff] [blame] | 108 | 	register PyStringObject *op; | 
| Tim Peters | 62de65b | 2001-12-06 20:29:32 +0000 | [diff] [blame] | 109 |  | 
 | 110 | 	assert(str != NULL); | 
 | 111 | 	size = strlen(str); | 
| Marc-André Lemburg | f28dd83 | 2000-06-30 10:29:57 +0000 | [diff] [blame] | 112 | 	if (size > INT_MAX) { | 
 | 113 | 		PyErr_SetString(PyExc_OverflowError, | 
 | 114 | 			"string is too long for a Python string"); | 
 | 115 | 		return NULL; | 
 | 116 | 	} | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 117 | 	if (size == 0 && (op = nullstring) != NULL) { | 
 | 118 | #ifdef COUNT_ALLOCS | 
 | 119 | 		null_strings++; | 
 | 120 | #endif | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 121 | 		Py_INCREF(op); | 
 | 122 | 		return (PyObject *)op; | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 123 | 	} | 
 | 124 | 	if (size == 1 && (op = characters[*str & UCHAR_MAX]) != NULL) { | 
 | 125 | #ifdef COUNT_ALLOCS | 
 | 126 | 		one_strings++; | 
 | 127 | #endif | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 128 | 		Py_INCREF(op); | 
 | 129 | 		return (PyObject *)op; | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 130 | 	} | 
| Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 131 |  | 
| Guido van Rossum | e3a8e7e | 2002-08-19 19:26:42 +0000 | [diff] [blame] | 132 | 	/* Inline PyObject_NewVar */ | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 133 | 	op = (PyStringObject *) | 
| Neil Schemenauer | 510492e | 2002-04-12 03:05:19 +0000 | [diff] [blame] | 134 | 		PyObject_MALLOC(sizeof(PyStringObject) + size * sizeof(char)); | 
| Guido van Rossum | 2a9096b | 1990-10-21 22:15:08 +0000 | [diff] [blame] | 135 | 	if (op == NULL) | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 136 | 		return PyErr_NoMemory(); | 
| Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 137 | 	PyObject_INIT_VAR(op, &PyString_Type, size); | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 138 | 	op->ob_shash = -1; | 
| Guido van Rossum | 45ec02a | 2002-08-19 21:43:18 +0000 | [diff] [blame] | 139 | 	op->ob_sstate = SSTATE_NOT_INTERNED; | 
| Guido van Rossum | 169192e | 2001-12-10 15:45:54 +0000 | [diff] [blame] | 140 | 	memcpy(op->ob_sval, str, size+1); | 
| Tim Peters | 8deda70 | 2002-03-30 10:06:07 +0000 | [diff] [blame] | 141 | 	/* share short strings */ | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 142 | 	if (size == 0) { | 
| Tim Peters | 9e897f4 | 2001-05-09 07:37:07 +0000 | [diff] [blame] | 143 | 		PyObject *t = (PyObject *)op; | 
 | 144 | 		PyString_InternInPlace(&t); | 
| Tim Peters | 4862ab7 | 2001-05-09 08:43:21 +0000 | [diff] [blame] | 145 | 		op = (PyStringObject *)t; | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 146 | 		nullstring = op; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 147 | 		Py_INCREF(op); | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 148 | 	} else if (size == 1) { | 
| Tim Peters | 9e897f4 | 2001-05-09 07:37:07 +0000 | [diff] [blame] | 149 | 		PyObject *t = (PyObject *)op; | 
 | 150 | 		PyString_InternInPlace(&t); | 
| Tim Peters | 4862ab7 | 2001-05-09 08:43:21 +0000 | [diff] [blame] | 151 | 		op = (PyStringObject *)t; | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 152 | 		characters[*str & UCHAR_MAX] = op; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 153 | 		Py_INCREF(op); | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 154 | 	} | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 155 | 	return (PyObject *) op; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 156 | } | 
 | 157 |  | 
| Barry Warsaw | dadace0 | 2001-08-24 18:32:06 +0000 | [diff] [blame] | 158 | PyObject * | 
 | 159 | PyString_FromFormatV(const char *format, va_list vargs) | 
 | 160 | { | 
| Tim Peters | c15c4f1 | 2001-10-02 21:32:07 +0000 | [diff] [blame] | 161 | 	va_list count; | 
| Barry Warsaw | dadace0 | 2001-08-24 18:32:06 +0000 | [diff] [blame] | 162 | 	int n = 0; | 
 | 163 | 	const char* f; | 
 | 164 | 	char *s; | 
 | 165 | 	PyObject* string; | 
 | 166 |  | 
| Tim Peters | c15c4f1 | 2001-10-02 21:32:07 +0000 | [diff] [blame] | 167 | #ifdef VA_LIST_IS_ARRAY | 
 | 168 | 	memcpy(count, vargs, sizeof(va_list)); | 
 | 169 | #else | 
| Martin v. Löwis | 75d2d94e | 2002-07-28 10:23:27 +0000 | [diff] [blame] | 170 | #ifdef  __va_copy | 
 | 171 | 	__va_copy(count, vargs); | 
 | 172 | #else | 
| Tim Peters | c15c4f1 | 2001-10-02 21:32:07 +0000 | [diff] [blame] | 173 | 	count = vargs; | 
 | 174 | #endif | 
| Martin v. Löwis | 75d2d94e | 2002-07-28 10:23:27 +0000 | [diff] [blame] | 175 | #endif | 
| Barry Warsaw | dadace0 | 2001-08-24 18:32:06 +0000 | [diff] [blame] | 176 | 	/* step 1: figure out how large a buffer we need */ | 
 | 177 | 	for (f = format; *f; f++) { | 
 | 178 | 		if (*f == '%') { | 
 | 179 | 			const char* p = f; | 
 | 180 | 			while (*++f && *f != '%' && !isalpha(Py_CHARMASK(*f))) | 
 | 181 | 				; | 
 | 182 |  | 
 | 183 | 			/* skip the 'l' in %ld, since it doesn't change the | 
 | 184 | 			   width.  although only %d is supported (see | 
 | 185 | 			   "expand" section below), others can be easily | 
| Tim Peters | 9161c8b | 2001-12-03 01:55:38 +0000 | [diff] [blame] | 186 | 			   added */ | 
| Barry Warsaw | dadace0 | 2001-08-24 18:32:06 +0000 | [diff] [blame] | 187 | 			if (*f == 'l' && *(f+1) == 'd') | 
 | 188 | 				++f; | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 189 |  | 
| Barry Warsaw | dadace0 | 2001-08-24 18:32:06 +0000 | [diff] [blame] | 190 | 			switch (*f) { | 
 | 191 | 			case 'c': | 
 | 192 | 				(void)va_arg(count, int); | 
 | 193 | 				/* fall through... */ | 
 | 194 | 			case '%': | 
 | 195 | 				n++; | 
 | 196 | 				break; | 
 | 197 | 			case 'd': case 'i': case 'x': | 
 | 198 | 				(void) va_arg(count, int); | 
| Tim Peters | 9161c8b | 2001-12-03 01:55:38 +0000 | [diff] [blame] | 199 | 				/* 20 bytes is enough to hold a 64-bit | 
 | 200 | 				   integer.  Decimal takes the most space. | 
 | 201 | 				   This isn't enough for octal. */ | 
| Barry Warsaw | dadace0 | 2001-08-24 18:32:06 +0000 | [diff] [blame] | 202 | 				n += 20; | 
 | 203 | 				break; | 
 | 204 | 			case 's': | 
 | 205 | 				s = va_arg(count, char*); | 
 | 206 | 				n += strlen(s); | 
 | 207 | 				break; | 
 | 208 | 			case 'p': | 
 | 209 | 				(void) va_arg(count, int); | 
 | 210 | 				/* maximum 64-bit pointer representation: | 
 | 211 | 				 * 0xffffffffffffffff | 
 | 212 | 				 * so 19 characters is enough. | 
| Tim Peters | 9161c8b | 2001-12-03 01:55:38 +0000 | [diff] [blame] | 213 | 				 * XXX I count 18 -- what's the extra for? | 
| Barry Warsaw | dadace0 | 2001-08-24 18:32:06 +0000 | [diff] [blame] | 214 | 				 */ | 
 | 215 | 				n += 19; | 
 | 216 | 				break; | 
 | 217 | 			default: | 
 | 218 | 				/* if we stumble upon an unknown | 
 | 219 | 				   formatting code, copy the rest of | 
 | 220 | 				   the format string to the output | 
 | 221 | 				   string. (we cannot just skip the | 
 | 222 | 				   code, since there's no way to know | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 223 | 				   what's in the argument list) */ | 
| Barry Warsaw | dadace0 | 2001-08-24 18:32:06 +0000 | [diff] [blame] | 224 | 				n += strlen(p); | 
 | 225 | 				goto expand; | 
 | 226 | 			} | 
 | 227 | 		} else | 
 | 228 | 			n++; | 
 | 229 | 	} | 
 | 230 |  expand: | 
 | 231 | 	/* step 2: fill the buffer */ | 
| Tim Peters | 9161c8b | 2001-12-03 01:55:38 +0000 | [diff] [blame] | 232 | 	/* Since we've analyzed how much space we need for the worst case, | 
 | 233 | 	   use sprintf directly instead of the slower PyOS_snprintf. */ | 
| Barry Warsaw | dadace0 | 2001-08-24 18:32:06 +0000 | [diff] [blame] | 234 | 	string = PyString_FromStringAndSize(NULL, n); | 
 | 235 | 	if (!string) | 
 | 236 | 		return NULL; | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 237 |  | 
| Barry Warsaw | dadace0 | 2001-08-24 18:32:06 +0000 | [diff] [blame] | 238 | 	s = PyString_AsString(string); | 
 | 239 |  | 
 | 240 | 	for (f = format; *f; f++) { | 
 | 241 | 		if (*f == '%') { | 
 | 242 | 			const char* p = f++; | 
 | 243 | 			int i, longflag = 0; | 
 | 244 | 			/* parse the width.precision part (we're only | 
 | 245 | 			   interested in the precision value, if any) */ | 
 | 246 | 			n = 0; | 
 | 247 | 			while (isdigit(Py_CHARMASK(*f))) | 
 | 248 | 				n = (n*10) + *f++ - '0'; | 
 | 249 | 			if (*f == '.') { | 
 | 250 | 				f++; | 
 | 251 | 				n = 0; | 
 | 252 | 				while (isdigit(Py_CHARMASK(*f))) | 
 | 253 | 					n = (n*10) + *f++ - '0'; | 
 | 254 | 			} | 
 | 255 | 			while (*f && *f != '%' && !isalpha(Py_CHARMASK(*f))) | 
 | 256 | 				f++; | 
 | 257 | 			/* handle the long flag, but only for %ld.  others | 
 | 258 | 			   can be added when necessary. */ | 
 | 259 | 			if (*f == 'l' && *(f+1) == 'd') { | 
 | 260 | 				longflag = 1; | 
 | 261 | 				++f; | 
 | 262 | 			} | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 263 |  | 
| Barry Warsaw | dadace0 | 2001-08-24 18:32:06 +0000 | [diff] [blame] | 264 | 			switch (*f) { | 
 | 265 | 			case 'c': | 
 | 266 | 				*s++ = va_arg(vargs, int); | 
 | 267 | 				break; | 
 | 268 | 			case 'd': | 
 | 269 | 				if (longflag) | 
 | 270 | 					sprintf(s, "%ld", va_arg(vargs, long)); | 
 | 271 | 				else | 
 | 272 | 					sprintf(s, "%d", va_arg(vargs, int)); | 
 | 273 | 				s += strlen(s); | 
 | 274 | 				break; | 
 | 275 | 			case 'i': | 
 | 276 | 				sprintf(s, "%i", va_arg(vargs, int)); | 
 | 277 | 				s += strlen(s); | 
 | 278 | 				break; | 
 | 279 | 			case 'x': | 
 | 280 | 				sprintf(s, "%x", va_arg(vargs, int)); | 
 | 281 | 				s += strlen(s); | 
 | 282 | 				break; | 
 | 283 | 			case 's': | 
 | 284 | 				p = va_arg(vargs, char*); | 
 | 285 | 				i = strlen(p); | 
 | 286 | 				if (n > 0 && i > n) | 
 | 287 | 					i = n; | 
 | 288 | 				memcpy(s, p, i); | 
 | 289 | 				s += i; | 
 | 290 | 				break; | 
 | 291 | 			case 'p': | 
 | 292 | 				sprintf(s, "%p", va_arg(vargs, void*)); | 
| Tim Peters | 6af5bbb | 2001-08-25 03:02:28 +0000 | [diff] [blame] | 293 | 				/* %p is ill-defined:  ensure leading 0x. */ | 
 | 294 | 				if (s[1] == 'X') | 
 | 295 | 					s[1] = 'x'; | 
 | 296 | 				else if (s[1] != 'x') { | 
 | 297 | 					memmove(s+2, s, strlen(s)+1); | 
 | 298 | 					s[0] = '0'; | 
 | 299 | 					s[1] = 'x'; | 
 | 300 | 				} | 
| Barry Warsaw | dadace0 | 2001-08-24 18:32:06 +0000 | [diff] [blame] | 301 | 				s += strlen(s); | 
 | 302 | 				break; | 
 | 303 | 			case '%': | 
 | 304 | 				*s++ = '%'; | 
 | 305 | 				break; | 
 | 306 | 			default: | 
 | 307 | 				strcpy(s, p); | 
 | 308 | 				s += strlen(s); | 
 | 309 | 				goto end; | 
 | 310 | 			} | 
 | 311 | 		} else | 
 | 312 | 			*s++ = *f; | 
 | 313 | 	} | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 314 |  | 
| Barry Warsaw | dadace0 | 2001-08-24 18:32:06 +0000 | [diff] [blame] | 315 |  end: | 
| Barry Warsaw | 7c47beb | 2001-08-27 03:11:09 +0000 | [diff] [blame] | 316 | 	_PyString_Resize(&string, s - PyString_AS_STRING(string)); | 
| Barry Warsaw | dadace0 | 2001-08-24 18:32:06 +0000 | [diff] [blame] | 317 | 	return string; | 
 | 318 | } | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 319 |  | 
| Barry Warsaw | dadace0 | 2001-08-24 18:32:06 +0000 | [diff] [blame] | 320 | PyObject * | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 321 | PyString_FromFormat(const char *format, ...) | 
| Barry Warsaw | dadace0 | 2001-08-24 18:32:06 +0000 | [diff] [blame] | 322 | { | 
| Barry Warsaw | 7c47beb | 2001-08-27 03:11:09 +0000 | [diff] [blame] | 323 | 	PyObject* ret; | 
| Barry Warsaw | dadace0 | 2001-08-24 18:32:06 +0000 | [diff] [blame] | 324 | 	va_list vargs; | 
 | 325 |  | 
 | 326 | #ifdef HAVE_STDARG_PROTOTYPES | 
 | 327 | 	va_start(vargs, format); | 
 | 328 | #else | 
 | 329 | 	va_start(vargs); | 
 | 330 | #endif | 
| Barry Warsaw | 7c47beb | 2001-08-27 03:11:09 +0000 | [diff] [blame] | 331 | 	ret = PyString_FromFormatV(format, vargs); | 
 | 332 | 	va_end(vargs); | 
 | 333 | 	return ret; | 
| Barry Warsaw | dadace0 | 2001-08-24 18:32:06 +0000 | [diff] [blame] | 334 | } | 
 | 335 |  | 
 | 336 |  | 
| Marc-André Lemburg | 63f3d17 | 2000-07-06 11:29:01 +0000 | [diff] [blame] | 337 | PyObject *PyString_Decode(const char *s, | 
 | 338 | 			  int size, | 
 | 339 | 			  const char *encoding, | 
 | 340 | 			  const char *errors) | 
 | 341 | { | 
| Marc-André Lemburg | 2d92041 | 2001-05-15 12:00:02 +0000 | [diff] [blame] | 342 |     PyObject *v, *str; | 
 | 343 |  | 
 | 344 |     str = PyString_FromStringAndSize(s, size); | 
 | 345 |     if (str == NULL) | 
 | 346 | 	return NULL; | 
 | 347 |     v = PyString_AsDecodedString(str, encoding, errors); | 
 | 348 |     Py_DECREF(str); | 
 | 349 |     return v; | 
 | 350 | } | 
 | 351 |  | 
 | 352 | PyObject *PyString_AsDecodedObject(PyObject *str, | 
 | 353 | 				   const char *encoding, | 
 | 354 | 				   const char *errors) | 
 | 355 | { | 
 | 356 |     PyObject *v; | 
 | 357 |  | 
 | 358 |     if (!PyString_Check(str)) { | 
 | 359 |         PyErr_BadArgument(); | 
 | 360 |         goto onError; | 
 | 361 |     } | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 362 |  | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 363 |     if (encoding == NULL) { | 
 | 364 | #ifdef Py_USING_UNICODE | 
| Marc-André Lemburg | 63f3d17 | 2000-07-06 11:29:01 +0000 | [diff] [blame] | 365 | 	encoding = PyUnicode_GetDefaultEncoding(); | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 366 | #else | 
 | 367 | 	PyErr_SetString(PyExc_ValueError, "no encoding specified"); | 
 | 368 | 	goto onError; | 
 | 369 | #endif | 
 | 370 |     } | 
| Marc-André Lemburg | 63f3d17 | 2000-07-06 11:29:01 +0000 | [diff] [blame] | 371 |  | 
 | 372 |     /* Decode via the codec registry */ | 
| Marc-André Lemburg | 2d92041 | 2001-05-15 12:00:02 +0000 | [diff] [blame] | 373 |     v = PyCodec_Decode(str, encoding, errors); | 
 | 374 |     if (v == NULL) | 
| Marc-André Lemburg | 63f3d17 | 2000-07-06 11:29:01 +0000 | [diff] [blame] | 375 |         goto onError; | 
| Marc-André Lemburg | 2d92041 | 2001-05-15 12:00:02 +0000 | [diff] [blame] | 376 |  | 
 | 377 |     return v; | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 378 |  | 
| Marc-André Lemburg | 63f3d17 | 2000-07-06 11:29:01 +0000 | [diff] [blame] | 379 |  onError: | 
| Marc-André Lemburg | 2d92041 | 2001-05-15 12:00:02 +0000 | [diff] [blame] | 380 |     return NULL; | 
 | 381 | } | 
 | 382 |  | 
 | 383 | PyObject *PyString_AsDecodedString(PyObject *str, | 
 | 384 | 				   const char *encoding, | 
 | 385 | 				   const char *errors) | 
 | 386 | { | 
 | 387 |     PyObject *v; | 
 | 388 |  | 
 | 389 |     v = PyString_AsDecodedObject(str, encoding, errors); | 
 | 390 |     if (v == NULL) | 
 | 391 |         goto onError; | 
 | 392 |  | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 393 | #ifdef Py_USING_UNICODE | 
| Marc-André Lemburg | 2d92041 | 2001-05-15 12:00:02 +0000 | [diff] [blame] | 394 |     /* Convert Unicode to a string using the default encoding */ | 
 | 395 |     if (PyUnicode_Check(v)) { | 
 | 396 | 	PyObject *temp = v; | 
 | 397 | 	v = PyUnicode_AsEncodedString(v, NULL, NULL); | 
 | 398 | 	Py_DECREF(temp); | 
 | 399 | 	if (v == NULL) | 
 | 400 | 	    goto onError; | 
 | 401 |     } | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 402 | #endif | 
| Marc-André Lemburg | 2d92041 | 2001-05-15 12:00:02 +0000 | [diff] [blame] | 403 |     if (!PyString_Check(v)) { | 
 | 404 |         PyErr_Format(PyExc_TypeError, | 
 | 405 |                      "decoder did not return a string object (type=%.400s)", | 
 | 406 |                      v->ob_type->tp_name); | 
 | 407 |         Py_DECREF(v); | 
 | 408 |         goto onError; | 
 | 409 |     } | 
 | 410 |  | 
 | 411 |     return v; | 
 | 412 |  | 
 | 413 |  onError: | 
| Marc-André Lemburg | 63f3d17 | 2000-07-06 11:29:01 +0000 | [diff] [blame] | 414 |     return NULL; | 
 | 415 | } | 
 | 416 |  | 
 | 417 | PyObject *PyString_Encode(const char *s, | 
 | 418 | 			  int size, | 
 | 419 | 			  const char *encoding, | 
 | 420 | 			  const char *errors) | 
 | 421 | { | 
 | 422 |     PyObject *v, *str; | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 423 |  | 
| Marc-André Lemburg | 63f3d17 | 2000-07-06 11:29:01 +0000 | [diff] [blame] | 424 |     str = PyString_FromStringAndSize(s, size); | 
 | 425 |     if (str == NULL) | 
 | 426 | 	return NULL; | 
 | 427 |     v = PyString_AsEncodedString(str, encoding, errors); | 
 | 428 |     Py_DECREF(str); | 
 | 429 |     return v; | 
 | 430 | } | 
 | 431 |  | 
| Marc-André Lemburg | 2d92041 | 2001-05-15 12:00:02 +0000 | [diff] [blame] | 432 | PyObject *PyString_AsEncodedObject(PyObject *str, | 
| Marc-André Lemburg | 63f3d17 | 2000-07-06 11:29:01 +0000 | [diff] [blame] | 433 | 				   const char *encoding, | 
 | 434 | 				   const char *errors) | 
 | 435 | { | 
 | 436 |     PyObject *v; | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 437 |  | 
| Marc-André Lemburg | 63f3d17 | 2000-07-06 11:29:01 +0000 | [diff] [blame] | 438 |     if (!PyString_Check(str)) { | 
 | 439 |         PyErr_BadArgument(); | 
 | 440 |         goto onError; | 
 | 441 |     } | 
 | 442 |  | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 443 |     if (encoding == NULL) { | 
 | 444 | #ifdef Py_USING_UNICODE | 
| Marc-André Lemburg | 63f3d17 | 2000-07-06 11:29:01 +0000 | [diff] [blame] | 445 | 	encoding = PyUnicode_GetDefaultEncoding(); | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 446 | #else | 
 | 447 | 	PyErr_SetString(PyExc_ValueError, "no encoding specified"); | 
 | 448 | 	goto onError; | 
 | 449 | #endif | 
 | 450 |     } | 
| Marc-André Lemburg | 63f3d17 | 2000-07-06 11:29:01 +0000 | [diff] [blame] | 451 |  | 
 | 452 |     /* Encode via the codec registry */ | 
 | 453 |     v = PyCodec_Encode(str, encoding, errors); | 
 | 454 |     if (v == NULL) | 
 | 455 |         goto onError; | 
| Marc-André Lemburg | 2d92041 | 2001-05-15 12:00:02 +0000 | [diff] [blame] | 456 |  | 
 | 457 |     return v; | 
 | 458 |  | 
 | 459 |  onError: | 
 | 460 |     return NULL; | 
 | 461 | } | 
 | 462 |  | 
 | 463 | PyObject *PyString_AsEncodedString(PyObject *str, | 
 | 464 | 				   const char *encoding, | 
 | 465 | 				   const char *errors) | 
 | 466 | { | 
 | 467 |     PyObject *v; | 
 | 468 |  | 
| Marc-André Lemburg | 8c2133d | 2001-06-12 13:14:10 +0000 | [diff] [blame] | 469 |     v = PyString_AsEncodedObject(str, encoding, errors); | 
| Marc-André Lemburg | 2d92041 | 2001-05-15 12:00:02 +0000 | [diff] [blame] | 470 |     if (v == NULL) | 
 | 471 |         goto onError; | 
 | 472 |  | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 473 | #ifdef Py_USING_UNICODE | 
| Marc-André Lemburg | 63f3d17 | 2000-07-06 11:29:01 +0000 | [diff] [blame] | 474 |     /* Convert Unicode to a string using the default encoding */ | 
 | 475 |     if (PyUnicode_Check(v)) { | 
 | 476 | 	PyObject *temp = v; | 
 | 477 | 	v = PyUnicode_AsEncodedString(v, NULL, NULL); | 
 | 478 | 	Py_DECREF(temp); | 
 | 479 | 	if (v == NULL) | 
 | 480 | 	    goto onError; | 
 | 481 |     } | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 482 | #endif | 
| Marc-André Lemburg | 63f3d17 | 2000-07-06 11:29:01 +0000 | [diff] [blame] | 483 |     if (!PyString_Check(v)) { | 
 | 484 |         PyErr_Format(PyExc_TypeError, | 
 | 485 |                      "encoder did not return a string object (type=%.400s)", | 
 | 486 |                      v->ob_type->tp_name); | 
 | 487 |         Py_DECREF(v); | 
 | 488 |         goto onError; | 
 | 489 |     } | 
| Marc-André Lemburg | 2d92041 | 2001-05-15 12:00:02 +0000 | [diff] [blame] | 490 |  | 
| Marc-André Lemburg | 63f3d17 | 2000-07-06 11:29:01 +0000 | [diff] [blame] | 491 |     return v; | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 492 |  | 
| Marc-André Lemburg | 63f3d17 | 2000-07-06 11:29:01 +0000 | [diff] [blame] | 493 |  onError: | 
 | 494 |     return NULL; | 
 | 495 | } | 
 | 496 |  | 
| Guido van Rossum | 234f942 | 1993-06-17 12:35:49 +0000 | [diff] [blame] | 497 | static void | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 498 | string_dealloc(PyObject *op) | 
| Guido van Rossum | 719f5fa | 1992-03-27 17:31:02 +0000 | [diff] [blame] | 499 | { | 
| Guido van Rossum | 45ec02a | 2002-08-19 21:43:18 +0000 | [diff] [blame] | 500 | 	switch (PyString_CHECK_INTERNED(op)) { | 
 | 501 | 		case SSTATE_NOT_INTERNED: | 
 | 502 | 			break; | 
 | 503 |  | 
 | 504 | 		case SSTATE_INTERNED_MORTAL: | 
 | 505 | 			/* revive dead object temporarily for DelItem */ | 
 | 506 | 			op->ob_refcnt = 3; | 
 | 507 | 			if (PyDict_DelItem(interned, op) != 0) | 
 | 508 | 				Py_FatalError( | 
 | 509 | 					"deletion of interned string failed"); | 
 | 510 | 			break; | 
 | 511 |  | 
 | 512 | 		case SSTATE_INTERNED_IMMORTAL: | 
 | 513 | 			Py_FatalError("Immortal interned string died."); | 
 | 514 |  | 
 | 515 | 		default: | 
 | 516 | 			Py_FatalError("Inconsistent interned string state."); | 
 | 517 | 	} | 
| Guido van Rossum | 9475a23 | 2001-10-05 20:51:39 +0000 | [diff] [blame] | 518 | 	op->ob_type->tp_free(op); | 
| Guido van Rossum | 719f5fa | 1992-03-27 17:31:02 +0000 | [diff] [blame] | 519 | } | 
 | 520 |  | 
| Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 521 | /* Unescape a backslash-escaped string. If unicode is non-zero, | 
 | 522 |    the string is a u-literal. If recode_encoding is non-zero, | 
 | 523 |    the string is UTF-8 encoded and should be re-encoded in the | 
 | 524 |    specified encoding.  */ | 
 | 525 |  | 
 | 526 | PyObject *PyString_DecodeEscape(const char *s, | 
 | 527 | 				int len, | 
 | 528 | 				const char *errors, | 
 | 529 | 				int unicode, | 
 | 530 | 				const char *recode_encoding) | 
 | 531 | { | 
 | 532 | 	int c; | 
 | 533 | 	char *p, *buf; | 
 | 534 | 	const char *end; | 
 | 535 | 	PyObject *v; | 
| Walter Dörwald | 8709a42 | 2002-09-03 13:53:40 +0000 | [diff] [blame] | 536 | 	int newlen = recode_encoding ? 4*len:len; | 
 | 537 | 	v = PyString_FromStringAndSize((char *)NULL, newlen); | 
| Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 538 | 	if (v == NULL) | 
 | 539 | 		return NULL; | 
 | 540 | 	p = buf = PyString_AsString(v); | 
 | 541 | 	end = s + len; | 
 | 542 | 	while (s < end) { | 
 | 543 | 		if (*s != '\\') { | 
| Martin v. Löwis | 2412853 | 2002-09-09 06:17:05 +0000 | [diff] [blame] | 544 | 		  non_esc: | 
| Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 545 | #ifdef Py_USING_UNICODE | 
 | 546 | 			if (recode_encoding && (*s & 0x80)) { | 
 | 547 | 				PyObject *u, *w; | 
 | 548 | 				char *r; | 
 | 549 | 				const char* t; | 
 | 550 | 				int rn; | 
 | 551 | 				t = s; | 
 | 552 | 				/* Decode non-ASCII bytes as UTF-8. */ | 
 | 553 | 				while (t < end && (*t & 0x80)) t++; | 
 | 554 | 				u = PyUnicode_DecodeUTF8(s, t - s, errors); | 
 | 555 | 				if(!u) goto failed; | 
 | 556 |  | 
 | 557 | 				/* Recode them in target encoding. */ | 
 | 558 | 				w = PyUnicode_AsEncodedString( | 
 | 559 | 					u, recode_encoding, errors); | 
 | 560 | 				Py_DECREF(u); | 
 | 561 | 				if (!w)	goto failed; | 
 | 562 |  | 
 | 563 | 				/* Append bytes to output buffer. */ | 
 | 564 | 				r = PyString_AsString(w); | 
 | 565 | 				rn = PyString_Size(w); | 
 | 566 | 				memcpy(p, r, rn); | 
 | 567 | 				p += rn; | 
 | 568 | 				Py_DECREF(w); | 
 | 569 | 				s = t; | 
 | 570 | 			} else { | 
 | 571 | 				*p++ = *s++; | 
 | 572 | 			} | 
 | 573 | #else | 
 | 574 | 			*p++ = *s++; | 
 | 575 | #endif | 
 | 576 | 			continue; | 
 | 577 | 		} | 
 | 578 | 		s++; | 
| Martin v. Löwis | eb3f00a | 2002-08-14 08:22:50 +0000 | [diff] [blame] | 579 |                 if (s==end) { | 
 | 580 | 			PyErr_SetString(PyExc_ValueError, | 
 | 581 | 					"Trailing \\ in string"); | 
 | 582 | 			goto failed; | 
 | 583 | 		} | 
| Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 584 | 		switch (*s++) { | 
 | 585 | 		/* XXX This assumes ASCII! */ | 
 | 586 | 		case '\n': break; | 
 | 587 | 		case '\\': *p++ = '\\'; break; | 
 | 588 | 		case '\'': *p++ = '\''; break; | 
 | 589 | 		case '\"': *p++ = '\"'; break; | 
 | 590 | 		case 'b': *p++ = '\b'; break; | 
 | 591 | 		case 'f': *p++ = '\014'; break; /* FF */ | 
 | 592 | 		case 't': *p++ = '\t'; break; | 
 | 593 | 		case 'n': *p++ = '\n'; break; | 
 | 594 | 		case 'r': *p++ = '\r'; break; | 
 | 595 | 		case 'v': *p++ = '\013'; break; /* VT */ | 
 | 596 | 		case 'a': *p++ = '\007'; break; /* BEL, not classic C */ | 
 | 597 | 		case '0': case '1': case '2': case '3': | 
 | 598 | 		case '4': case '5': case '6': case '7': | 
 | 599 | 			c = s[-1] - '0'; | 
 | 600 | 			if ('0' <= *s && *s <= '7') { | 
 | 601 | 				c = (c<<3) + *s++ - '0'; | 
 | 602 | 				if ('0' <= *s && *s <= '7') | 
 | 603 | 					c = (c<<3) + *s++ - '0'; | 
 | 604 | 			} | 
 | 605 | 			*p++ = c; | 
 | 606 | 			break; | 
 | 607 | 		case 'x': | 
 | 608 | 			if (isxdigit(Py_CHARMASK(s[0]))  | 
 | 609 | 			    && isxdigit(Py_CHARMASK(s[1]))) { | 
 | 610 | 				unsigned int x = 0; | 
 | 611 | 				c = Py_CHARMASK(*s); | 
 | 612 | 				s++; | 
 | 613 | 				if (isdigit(c)) | 
 | 614 | 					x = c - '0'; | 
 | 615 | 				else if (islower(c)) | 
 | 616 | 					x = 10 + c - 'a'; | 
 | 617 | 				else | 
 | 618 | 					x = 10 + c - 'A'; | 
 | 619 | 				x = x << 4; | 
 | 620 | 				c = Py_CHARMASK(*s); | 
 | 621 | 				s++; | 
 | 622 | 				if (isdigit(c)) | 
 | 623 | 					x += c - '0'; | 
 | 624 | 				else if (islower(c)) | 
 | 625 | 					x += 10 + c - 'a'; | 
 | 626 | 				else | 
 | 627 | 					x += 10 + c - 'A'; | 
 | 628 | 				*p++ = x; | 
 | 629 | 				break; | 
 | 630 | 			} | 
 | 631 | 			if (!errors || strcmp(errors, "strict") == 0) { | 
| Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 632 | 				PyErr_SetString(PyExc_ValueError,  | 
 | 633 | 						"invalid \\x escape"); | 
| Martin v. Löwis | eb3f00a | 2002-08-14 08:22:50 +0000 | [diff] [blame] | 634 | 				goto failed; | 
| Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 635 | 			} | 
 | 636 | 			if (strcmp(errors, "replace") == 0) { | 
 | 637 | 				*p++ = '?'; | 
 | 638 | 			} else if (strcmp(errors, "ignore") == 0) | 
 | 639 | 				/* do nothing */; | 
 | 640 | 			else { | 
 | 641 | 				PyErr_Format(PyExc_ValueError, | 
 | 642 | 					     "decoding error; " | 
 | 643 | 					     "unknown error handling code: %.400s", | 
 | 644 | 					     errors); | 
| Martin v. Löwis | eb3f00a | 2002-08-14 08:22:50 +0000 | [diff] [blame] | 645 | 				goto failed; | 
| Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 646 | 			} | 
 | 647 | #ifndef Py_USING_UNICODE | 
 | 648 | 		case 'u': | 
 | 649 | 		case 'U': | 
 | 650 | 		case 'N': | 
 | 651 | 			if (unicode) { | 
| Neal Norwitz | b898d9f | 2002-08-16 23:20:39 +0000 | [diff] [blame] | 652 | 				PyErr_SetString(PyExc_ValueError, | 
| Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 653 | 					  "Unicode escapes not legal " | 
 | 654 | 					  "when Unicode disabled"); | 
| Martin v. Löwis | eb3f00a | 2002-08-14 08:22:50 +0000 | [diff] [blame] | 655 | 				goto failed; | 
| Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 656 | 			} | 
 | 657 | #endif | 
 | 658 | 		default: | 
 | 659 | 			*p++ = '\\'; | 
| Martin v. Löwis | 2412853 | 2002-09-09 06:17:05 +0000 | [diff] [blame] | 660 | 			s--; | 
 | 661 | 			goto non_esc; /* an arbitry number of unescaped | 
 | 662 | 					 UTF-8 bytes may follow. */ | 
| Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 663 | 		} | 
 | 664 | 	} | 
| Walter Dörwald | 8709a42 | 2002-09-03 13:53:40 +0000 | [diff] [blame] | 665 | 	if (p-buf < newlen) | 
 | 666 | 		_PyString_Resize(&v, (int)(p - buf)); | 
| Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 667 | 	return v; | 
 | 668 |   failed: | 
 | 669 | 	Py_DECREF(v); | 
 | 670 | 	return NULL; | 
 | 671 | } | 
 | 672 |  | 
| Marc-André Lemburg | d1ba443 | 2000-09-19 21:04:18 +0000 | [diff] [blame] | 673 | static int | 
 | 674 | string_getsize(register PyObject *op) | 
 | 675 | { | 
 | 676 |     	char *s; | 
 | 677 |     	int len; | 
 | 678 | 	if (PyString_AsStringAndSize(op, &s, &len)) | 
 | 679 | 		return -1; | 
 | 680 | 	return len; | 
 | 681 | } | 
 | 682 |  | 
 | 683 | static /*const*/ char * | 
 | 684 | string_getbuffer(register PyObject *op) | 
 | 685 | { | 
 | 686 |     	char *s; | 
 | 687 |     	int len; | 
 | 688 | 	if (PyString_AsStringAndSize(op, &s, &len)) | 
 | 689 | 		return NULL; | 
 | 690 | 	return s; | 
 | 691 | } | 
 | 692 |  | 
| Guido van Rossum | d7047b3 | 1995-01-02 19:07:15 +0000 | [diff] [blame] | 693 | int | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 694 | PyString_Size(register PyObject *op) | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 695 | { | 
| Marc-André Lemburg | d1ba443 | 2000-09-19 21:04:18 +0000 | [diff] [blame] | 696 | 	if (!PyString_Check(op)) | 
 | 697 | 		return string_getsize(op); | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 698 | 	return ((PyStringObject *)op) -> ob_size; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 699 | } | 
 | 700 |  | 
 | 701 | /*const*/ char * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 702 | PyString_AsString(register PyObject *op) | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 703 | { | 
| Marc-André Lemburg | d1ba443 | 2000-09-19 21:04:18 +0000 | [diff] [blame] | 704 | 	if (!PyString_Check(op)) | 
 | 705 | 		return string_getbuffer(op); | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 706 | 	return ((PyStringObject *)op) -> ob_sval; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 707 | } | 
 | 708 |  | 
| Marc-André Lemburg | d1ba443 | 2000-09-19 21:04:18 +0000 | [diff] [blame] | 709 | int | 
 | 710 | PyString_AsStringAndSize(register PyObject *obj, | 
 | 711 | 			 register char **s, | 
 | 712 | 			 register int *len) | 
 | 713 | { | 
 | 714 | 	if (s == NULL) { | 
 | 715 | 		PyErr_BadInternalCall(); | 
 | 716 | 		return -1; | 
 | 717 | 	} | 
 | 718 |  | 
 | 719 | 	if (!PyString_Check(obj)) { | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 720 | #ifdef Py_USING_UNICODE | 
| Marc-André Lemburg | d1ba443 | 2000-09-19 21:04:18 +0000 | [diff] [blame] | 721 | 		if (PyUnicode_Check(obj)) { | 
 | 722 | 			obj = _PyUnicode_AsDefaultEncodedString(obj, NULL); | 
 | 723 | 			if (obj == NULL) | 
 | 724 | 				return -1; | 
 | 725 | 		} | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 726 | 		else | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 727 | #endif | 
 | 728 | 		{ | 
| Marc-André Lemburg | d1ba443 | 2000-09-19 21:04:18 +0000 | [diff] [blame] | 729 | 			PyErr_Format(PyExc_TypeError, | 
 | 730 | 				     "expected string or Unicode object, " | 
 | 731 | 				     "%.200s found", obj->ob_type->tp_name); | 
 | 732 | 			return -1; | 
 | 733 | 		} | 
 | 734 | 	} | 
 | 735 |  | 
 | 736 | 	*s = PyString_AS_STRING(obj); | 
 | 737 | 	if (len != NULL) | 
 | 738 | 		*len = PyString_GET_SIZE(obj); | 
 | 739 | 	else if ((int)strlen(*s) != PyString_GET_SIZE(obj)) { | 
 | 740 | 		PyErr_SetString(PyExc_TypeError, | 
 | 741 | 				"expected string without null bytes"); | 
 | 742 | 		return -1; | 
 | 743 | 	} | 
 | 744 | 	return 0; | 
 | 745 | } | 
 | 746 |  | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 747 | /* Methods */ | 
 | 748 |  | 
| Guido van Rossum | bcaa31c | 1991-06-07 22:58:57 +0000 | [diff] [blame] | 749 | static int | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 750 | string_print(PyStringObject *op, FILE *fp, int flags) | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 751 | { | 
 | 752 | 	int i; | 
 | 753 | 	char c; | 
| Guido van Rossum | 444fc7c | 1993-10-26 15:25:16 +0000 | [diff] [blame] | 754 | 	int quote; | 
| Tim Peters | c993315 | 2001-10-16 20:18:24 +0000 | [diff] [blame] | 755 |  | 
| Guido van Rossum | bcaa31c | 1991-06-07 22:58:57 +0000 | [diff] [blame] | 756 | 	/* XXX Ought to check for interrupts when writing long strings */ | 
| Tim Peters | c993315 | 2001-10-16 20:18:24 +0000 | [diff] [blame] | 757 | 	if (! PyString_CheckExact(op)) { | 
 | 758 | 		int ret; | 
 | 759 | 		/* A str subclass may have its own __str__ method. */ | 
 | 760 | 		op = (PyStringObject *) PyObject_Str((PyObject *)op); | 
 | 761 | 		if (op == NULL) | 
 | 762 | 			return -1; | 
 | 763 | 		ret = string_print(op, fp, flags); | 
 | 764 | 		Py_DECREF(op); | 
 | 765 | 		return ret; | 
 | 766 | 	} | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 767 | 	if (flags & Py_PRINT_RAW) { | 
| Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 768 | #ifdef __VMS | 
 | 769 |                 if (op->ob_size) fwrite(op->ob_sval, (int) op->ob_size, 1, fp); | 
 | 770 | #else | 
 | 771 |                 fwrite(op->ob_sval, 1, (int) op->ob_size, fp); | 
 | 772 | #endif | 
| Guido van Rossum | bcaa31c | 1991-06-07 22:58:57 +0000 | [diff] [blame] | 773 | 		return 0; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 774 | 	} | 
| Guido van Rossum | 444fc7c | 1993-10-26 15:25:16 +0000 | [diff] [blame] | 775 |  | 
| Thomas Wouters | 7e47402 | 2000-07-16 12:04:32 +0000 | [diff] [blame] | 776 | 	/* figure out which quote to use; single is preferred */ | 
| Guido van Rossum | 444fc7c | 1993-10-26 15:25:16 +0000 | [diff] [blame] | 777 | 	quote = '\''; | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 778 | 	if (memchr(op->ob_sval, '\'', op->ob_size) && | 
 | 779 | 	    !memchr(op->ob_sval, '"', op->ob_size)) | 
| Guido van Rossum | 444fc7c | 1993-10-26 15:25:16 +0000 | [diff] [blame] | 780 | 		quote = '"'; | 
 | 781 |  | 
 | 782 | 	fputc(quote, fp); | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 783 | 	for (i = 0; i < op->ob_size; i++) { | 
 | 784 | 		c = op->ob_sval[i]; | 
| Guido van Rossum | 444fc7c | 1993-10-26 15:25:16 +0000 | [diff] [blame] | 785 | 		if (c == quote || c == '\\') | 
| Martin v. Löwis | a5f0907 | 2002-10-11 05:37:59 +0000 | [diff] [blame] | 786 | 			fprintf(fp, "\\%c", c); | 
| Ka-Ping Yee | fa004ad | 2001-01-24 17:19:08 +0000 | [diff] [blame] | 787 |                 else if (c == '\t') | 
| Martin v. Löwis | a5f0907 | 2002-10-11 05:37:59 +0000 | [diff] [blame] | 788 |                         fprintf(fp, "\\t"); | 
| Ka-Ping Yee | fa004ad | 2001-01-24 17:19:08 +0000 | [diff] [blame] | 789 |                 else if (c == '\n') | 
| Martin v. Löwis | a5f0907 | 2002-10-11 05:37:59 +0000 | [diff] [blame] | 790 |                         fprintf(fp, "\\n"); | 
| Ka-Ping Yee | fa004ad | 2001-01-24 17:19:08 +0000 | [diff] [blame] | 791 |                 else if (c == '\r') | 
| Martin v. Löwis | a5f0907 | 2002-10-11 05:37:59 +0000 | [diff] [blame] | 792 |                         fprintf(fp, "\\r"); | 
 | 793 | 		else if (c < ' ' || c >= 0x7f) | 
 | 794 | 			fprintf(fp, "\\x%02x", c & 0xff); | 
| Martin v. Löwis | fed2405 | 2002-10-07 13:55:50 +0000 | [diff] [blame] | 795 | 		else | 
| Martin v. Löwis | a5f0907 | 2002-10-11 05:37:59 +0000 | [diff] [blame] | 796 | 			fputc(c, fp); | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 797 | 	} | 
| Guido van Rossum | 444fc7c | 1993-10-26 15:25:16 +0000 | [diff] [blame] | 798 | 	fputc(quote, fp); | 
| Guido van Rossum | bcaa31c | 1991-06-07 22:58:57 +0000 | [diff] [blame] | 799 | 	return 0; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 800 | } | 
 | 801 |  | 
| Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 802 | PyObject * | 
 | 803 | PyString_Repr(PyObject *obj, int smartquotes) | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 804 | { | 
| Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 805 | 	register PyStringObject* op = (PyStringObject*) obj; | 
| Marc-André Lemburg | f28dd83 | 2000-06-30 10:29:57 +0000 | [diff] [blame] | 806 | 	size_t newsize = 2 + 4 * op->ob_size * sizeof(char); | 
 | 807 | 	PyObject *v; | 
 | 808 | 	if (newsize > INT_MAX) { | 
 | 809 | 		PyErr_SetString(PyExc_OverflowError, | 
 | 810 | 			"string is too large to make repr"); | 
 | 811 | 	} | 
 | 812 | 	v = PyString_FromStringAndSize((char *)NULL, newsize); | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 813 | 	if (v == NULL) { | 
| Guido van Rossum | bcaa31c | 1991-06-07 22:58:57 +0000 | [diff] [blame] | 814 | 		return NULL; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 815 | 	} | 
 | 816 | 	else { | 
 | 817 | 		register int i; | 
 | 818 | 		register char c; | 
 | 819 | 		register char *p; | 
| Guido van Rossum | 444fc7c | 1993-10-26 15:25:16 +0000 | [diff] [blame] | 820 | 		int quote; | 
 | 821 |  | 
| Thomas Wouters | 7e47402 | 2000-07-16 12:04:32 +0000 | [diff] [blame] | 822 | 		/* figure out which quote to use; single is preferred */ | 
| Guido van Rossum | 444fc7c | 1993-10-26 15:25:16 +0000 | [diff] [blame] | 823 | 		quote = '\''; | 
| Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 824 | 		if (smartquotes &&  | 
 | 825 | 		    memchr(op->ob_sval, '\'', op->ob_size) && | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 826 | 		    !memchr(op->ob_sval, '"', op->ob_size)) | 
| Guido van Rossum | 444fc7c | 1993-10-26 15:25:16 +0000 | [diff] [blame] | 827 | 			quote = '"'; | 
 | 828 |  | 
| Tim Peters | 9161c8b | 2001-12-03 01:55:38 +0000 | [diff] [blame] | 829 | 		p = PyString_AS_STRING(v); | 
| Guido van Rossum | 444fc7c | 1993-10-26 15:25:16 +0000 | [diff] [blame] | 830 | 		*p++ = quote; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 831 | 		for (i = 0; i < op->ob_size; i++) { | 
| Tim Peters | 9161c8b | 2001-12-03 01:55:38 +0000 | [diff] [blame] | 832 | 			/* There's at least enough room for a hex escape | 
 | 833 | 			   and a closing quote. */ | 
 | 834 | 			assert(newsize - (p - PyString_AS_STRING(v)) >= 5); | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 835 | 			c = op->ob_sval[i]; | 
| Guido van Rossum | 444fc7c | 1993-10-26 15:25:16 +0000 | [diff] [blame] | 836 | 			if (c == quote || c == '\\') | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 837 | 				*p++ = '\\', *p++ = c; | 
| Ka-Ping Yee | fa004ad | 2001-01-24 17:19:08 +0000 | [diff] [blame] | 838 | 			else if (c == '\t') | 
 | 839 | 				*p++ = '\\', *p++ = 't'; | 
 | 840 | 			else if (c == '\n') | 
 | 841 | 				*p++ = '\\', *p++ = 'n'; | 
 | 842 | 			else if (c == '\r') | 
 | 843 | 				*p++ = '\\', *p++ = 'r'; | 
| Martin v. Löwis | a5f0907 | 2002-10-11 05:37:59 +0000 | [diff] [blame] | 844 | 			else if (c < ' ' || c >= 0x7f) { | 
 | 845 | 				/* For performance, we don't want to call | 
 | 846 | 				   PyOS_snprintf here (extra layers of | 
 | 847 | 				   function call). */ | 
 | 848 | 				sprintf(p, "\\x%02x", c & 0xff); | 
 | 849 |                                 p += 4; | 
| Martin v. Löwis | fed2405 | 2002-10-07 13:55:50 +0000 | [diff] [blame] | 850 | 			} | 
| Martin v. Löwis | a5f0907 | 2002-10-11 05:37:59 +0000 | [diff] [blame] | 851 | 			else | 
 | 852 | 				*p++ = c; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 853 | 		} | 
| Tim Peters | 9161c8b | 2001-12-03 01:55:38 +0000 | [diff] [blame] | 854 | 		assert(newsize - (p - PyString_AS_STRING(v)) >= 1); | 
| Guido van Rossum | 444fc7c | 1993-10-26 15:25:16 +0000 | [diff] [blame] | 855 | 		*p++ = quote; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 856 | 		*p = '\0'; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 857 | 		_PyString_Resize( | 
| Tim Peters | 9161c8b | 2001-12-03 01:55:38 +0000 | [diff] [blame] | 858 | 			&v, (int) (p - PyString_AS_STRING(v))); | 
| Guido van Rossum | 2a9096b | 1990-10-21 22:15:08 +0000 | [diff] [blame] | 859 | 		return v; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 860 | 	} | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 861 | } | 
 | 862 |  | 
| Guido van Rossum | 189f1df | 2001-05-01 16:51:53 +0000 | [diff] [blame] | 863 | static PyObject * | 
| Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 864 | string_repr(PyObject *op) | 
 | 865 | { | 
 | 866 | 	return PyString_Repr(op, 1); | 
 | 867 | } | 
 | 868 |  | 
 | 869 | static PyObject * | 
| Guido van Rossum | 189f1df | 2001-05-01 16:51:53 +0000 | [diff] [blame] | 870 | string_str(PyObject *s) | 
 | 871 | { | 
| Tim Peters | c993315 | 2001-10-16 20:18:24 +0000 | [diff] [blame] | 872 | 	assert(PyString_Check(s)); | 
 | 873 | 	if (PyString_CheckExact(s)) { | 
 | 874 | 		Py_INCREF(s); | 
 | 875 | 		return s; | 
 | 876 | 	} | 
 | 877 | 	else { | 
 | 878 | 		/* Subtype -- return genuine string with the same value. */ | 
 | 879 | 		PyStringObject *t = (PyStringObject *) s; | 
 | 880 | 		return PyString_FromStringAndSize(t->ob_sval, t->ob_size); | 
 | 881 | 	} | 
| Guido van Rossum | 189f1df | 2001-05-01 16:51:53 +0000 | [diff] [blame] | 882 | } | 
 | 883 |  | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 884 | static int | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 885 | string_length(PyStringObject *a) | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 886 | { | 
 | 887 | 	return a->ob_size; | 
 | 888 | } | 
 | 889 |  | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 890 | static PyObject * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 891 | string_concat(register PyStringObject *a, register PyObject *bb) | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 892 | { | 
 | 893 | 	register unsigned int size; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 894 | 	register PyStringObject *op; | 
 | 895 | 	if (!PyString_Check(bb)) { | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 896 | #ifdef Py_USING_UNICODE | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 897 | 		if (PyUnicode_Check(bb)) | 
 | 898 | 		    return PyUnicode_Concat((PyObject *)a, bb); | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 899 | #endif | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 900 | 		PyErr_Format(PyExc_TypeError, | 
| Guido van Rossum | 5c66a26 | 2001-10-22 04:12:44 +0000 | [diff] [blame] | 901 | 			     "cannot concatenate 'str' and '%.200s' objects", | 
| Fred Drake | b6a9ada | 2000-06-01 03:12:13 +0000 | [diff] [blame] | 902 | 			     bb->ob_type->tp_name); | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 903 | 		return NULL; | 
 | 904 | 	} | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 905 | #define b ((PyStringObject *)bb) | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 906 | 	/* Optimize cases with empty left or right operand */ | 
| Tim Peters | 8fa5dd0 | 2001-09-12 02:18:30 +0000 | [diff] [blame] | 907 | 	if ((a->ob_size == 0 || b->ob_size == 0) && | 
 | 908 | 	    PyString_CheckExact(a) && PyString_CheckExact(b)) { | 
 | 909 | 		if (a->ob_size == 0) { | 
 | 910 | 			Py_INCREF(bb); | 
 | 911 | 			return bb; | 
 | 912 | 		} | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 913 | 		Py_INCREF(a); | 
 | 914 | 		return (PyObject *)a; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 915 | 	} | 
 | 916 | 	size = a->ob_size + b->ob_size; | 
| Guido van Rossum | e3a8e7e | 2002-08-19 19:26:42 +0000 | [diff] [blame] | 917 | 	/* Inline PyObject_NewVar */ | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 918 | 	op = (PyStringObject *) | 
| Neil Schemenauer | 510492e | 2002-04-12 03:05:19 +0000 | [diff] [blame] | 919 | 		PyObject_MALLOC(sizeof(PyStringObject) + size * sizeof(char)); | 
| Guido van Rossum | 2a9096b | 1990-10-21 22:15:08 +0000 | [diff] [blame] | 920 | 	if (op == NULL) | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 921 | 		return PyErr_NoMemory(); | 
| Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 922 | 	PyObject_INIT_VAR(op, &PyString_Type, size); | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 923 | 	op->ob_shash = -1; | 
| Guido van Rossum | 45ec02a | 2002-08-19 21:43:18 +0000 | [diff] [blame] | 924 | 	op->ob_sstate = SSTATE_NOT_INTERNED; | 
| Guido van Rossum | 2a9096b | 1990-10-21 22:15:08 +0000 | [diff] [blame] | 925 | 	memcpy(op->ob_sval, a->ob_sval, (int) a->ob_size); | 
 | 926 | 	memcpy(op->ob_sval + a->ob_size, b->ob_sval, (int) b->ob_size); | 
 | 927 | 	op->ob_sval[size] = '\0'; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 928 | 	return (PyObject *) op; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 929 | #undef b | 
 | 930 | } | 
 | 931 |  | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 932 | static PyObject * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 933 | string_repeat(register PyStringObject *a, register int n) | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 934 | { | 
 | 935 | 	register int i; | 
| Raymond Hettinger | 698258a | 2003-01-06 10:33:56 +0000 | [diff] [blame] | 936 | 	register int j; | 
| Guido van Rossum | 2095d24 | 1997-04-09 19:41:24 +0000 | [diff] [blame] | 937 | 	register int size; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 938 | 	register PyStringObject *op; | 
| Tim Peters | 8f42246 | 2000-09-09 06:13:41 +0000 | [diff] [blame] | 939 | 	size_t nbytes; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 940 | 	if (n < 0) | 
 | 941 | 		n = 0; | 
| Tim Peters | 8f42246 | 2000-09-09 06:13:41 +0000 | [diff] [blame] | 942 | 	/* watch out for overflows:  the size can overflow int, | 
 | 943 | 	 * and the # of bytes needed can overflow size_t | 
 | 944 | 	 */ | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 945 | 	size = a->ob_size * n; | 
| Tim Peters | 8f42246 | 2000-09-09 06:13:41 +0000 | [diff] [blame] | 946 | 	if (n && size / n != a->ob_size) { | 
 | 947 | 		PyErr_SetString(PyExc_OverflowError, | 
 | 948 | 			"repeated string is too long"); | 
 | 949 | 		return NULL; | 
 | 950 | 	} | 
| Tim Peters | 8fa5dd0 | 2001-09-12 02:18:30 +0000 | [diff] [blame] | 951 | 	if (size == a->ob_size && PyString_CheckExact(a)) { | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 952 | 		Py_INCREF(a); | 
 | 953 | 		return (PyObject *)a; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 954 | 	} | 
| Tim Peters | 8f42246 | 2000-09-09 06:13:41 +0000 | [diff] [blame] | 955 | 	nbytes = size * sizeof(char); | 
 | 956 | 	if (nbytes / sizeof(char) != (size_t)size || | 
 | 957 | 	    nbytes + sizeof(PyStringObject) <= nbytes) { | 
 | 958 | 		PyErr_SetString(PyExc_OverflowError, | 
 | 959 | 			"repeated string is too long"); | 
 | 960 | 		return NULL; | 
 | 961 | 	} | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 962 | 	op = (PyStringObject *) | 
| Neil Schemenauer | 510492e | 2002-04-12 03:05:19 +0000 | [diff] [blame] | 963 | 		PyObject_MALLOC(sizeof(PyStringObject) + nbytes); | 
| Guido van Rossum | 2a9096b | 1990-10-21 22:15:08 +0000 | [diff] [blame] | 964 | 	if (op == NULL) | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 965 | 		return PyErr_NoMemory(); | 
| Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 966 | 	PyObject_INIT_VAR(op, &PyString_Type, size); | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 967 | 	op->ob_shash = -1; | 
| Guido van Rossum | 45ec02a | 2002-08-19 21:43:18 +0000 | [diff] [blame] | 968 | 	op->ob_sstate = SSTATE_NOT_INTERNED; | 
| Raymond Hettinger | 0a2f849 | 2003-01-06 22:42:41 +0000 | [diff] [blame] | 969 | 	op->ob_sval[size] = '\0'; | 
 | 970 | 	if (a->ob_size == 1 && n > 0) { | 
 | 971 | 		memset(op->ob_sval, a->ob_sval[0] , n); | 
 | 972 | 		return (PyObject *) op; | 
 | 973 | 	} | 
| Raymond Hettinger | 698258a | 2003-01-06 10:33:56 +0000 | [diff] [blame] | 974 | 	i = 0; | 
 | 975 | 	if (i < size) { | 
 | 976 | 		memcpy(op->ob_sval, a->ob_sval, (int) a->ob_size); | 
 | 977 | 		i = (int) a->ob_size; | 
 | 978 | 	} | 
 | 979 | 	while (i < size) { | 
 | 980 | 		j = (i <= size-i)  ?  i  :  size-i; | 
 | 981 | 		memcpy(op->ob_sval+i, op->ob_sval, j); | 
 | 982 | 		i += j; | 
 | 983 | 	} | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 984 | 	return (PyObject *) op; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 985 | } | 
 | 986 |  | 
 | 987 | /* String slice a[i:j] consists of characters a[i] ... a[j-1] */ | 
 | 988 |  | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 989 | static PyObject * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 990 | string_slice(register PyStringObject *a, register int i, register int j) | 
 | 991 |      /* j -- may be negative! */ | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 992 | { | 
 | 993 | 	if (i < 0) | 
 | 994 | 		i = 0; | 
 | 995 | 	if (j < 0) | 
 | 996 | 		j = 0; /* Avoid signed/unsigned bug in next line */ | 
 | 997 | 	if (j > a->ob_size) | 
 | 998 | 		j = a->ob_size; | 
| Tim Peters | 8fa5dd0 | 2001-09-12 02:18:30 +0000 | [diff] [blame] | 999 | 	if (i == 0 && j == a->ob_size && PyString_CheckExact(a)) { | 
 | 1000 | 		/* It's the same as a */ | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1001 | 		Py_INCREF(a); | 
 | 1002 | 		return (PyObject *)a; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1003 | 	} | 
 | 1004 | 	if (j < i) | 
 | 1005 | 		j = i; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1006 | 	return PyString_FromStringAndSize(a->ob_sval + i, (int) (j-i)); | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1007 | } | 
 | 1008 |  | 
| Guido van Rossum | 9284a57 | 2000-03-07 15:53:43 +0000 | [diff] [blame] | 1009 | static int | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 1010 | string_contains(PyObject *a, PyObject *el) | 
| Guido van Rossum | 9284a57 | 2000-03-07 15:53:43 +0000 | [diff] [blame] | 1011 | { | 
| Barry Warsaw | 817918c | 2002-08-06 16:58:21 +0000 | [diff] [blame] | 1012 | 	const char *lhs, *rhs, *end; | 
 | 1013 | 	int size; | 
| Guido van Rossum | bf935fd | 2002-08-24 06:57:49 +0000 | [diff] [blame] | 1014 |  | 
 | 1015 | 	if (!PyString_CheckExact(el)) { | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 1016 | #ifdef Py_USING_UNICODE | 
| Guido van Rossum | bf935fd | 2002-08-24 06:57:49 +0000 | [diff] [blame] | 1017 | 		if (PyUnicode_Check(el)) | 
 | 1018 | 			return PyUnicode_Contains(a, el); | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 1019 | #endif | 
| Guido van Rossum | bf935fd | 2002-08-24 06:57:49 +0000 | [diff] [blame] | 1020 | 		if (!PyString_Check(el)) { | 
 | 1021 | 			PyErr_SetString(PyExc_TypeError, | 
 | 1022 | 			    "'in <string>' requires string as left operand"); | 
 | 1023 | 			return -1; | 
 | 1024 | 		} | 
| Guido van Rossum | 9284a57 | 2000-03-07 15:53:43 +0000 | [diff] [blame] | 1025 | 	} | 
| Guido van Rossum | bf935fd | 2002-08-24 06:57:49 +0000 | [diff] [blame] | 1026 | 	size = PyString_GET_SIZE(el); | 
| Barry Warsaw | 817918c | 2002-08-06 16:58:21 +0000 | [diff] [blame] | 1027 | 	rhs = PyString_AS_STRING(el); | 
 | 1028 | 	lhs = PyString_AS_STRING(a); | 
 | 1029 |  | 
 | 1030 | 	/* optimize for a single character */ | 
 | 1031 | 	if (size == 1) | 
| Guido van Rossum | bf935fd | 2002-08-24 06:57:49 +0000 | [diff] [blame] | 1032 | 		return memchr(lhs, *rhs, PyString_GET_SIZE(a)) != NULL; | 
| Barry Warsaw | 817918c | 2002-08-06 16:58:21 +0000 | [diff] [blame] | 1033 |  | 
| Guido van Rossum | bf935fd | 2002-08-24 06:57:49 +0000 | [diff] [blame] | 1034 | 	end = lhs + (PyString_GET_SIZE(a) - size); | 
| Barry Warsaw | 817918c | 2002-08-06 16:58:21 +0000 | [diff] [blame] | 1035 | 	while (lhs <= end) { | 
 | 1036 | 		if (memcmp(lhs++, rhs, size) == 0) | 
| Guido van Rossum | 9284a57 | 2000-03-07 15:53:43 +0000 | [diff] [blame] | 1037 | 			return 1; | 
 | 1038 | 	} | 
| Barry Warsaw | 817918c | 2002-08-06 16:58:21 +0000 | [diff] [blame] | 1039 |  | 
| Guido van Rossum | 9284a57 | 2000-03-07 15:53:43 +0000 | [diff] [blame] | 1040 | 	return 0; | 
 | 1041 | } | 
 | 1042 |  | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1043 | static PyObject * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 1044 | string_item(PyStringObject *a, register int i) | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1045 | { | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1046 | 	PyObject *v; | 
| Tim Peters | 5b4d477 | 2001-05-08 22:33:50 +0000 | [diff] [blame] | 1047 | 	char *pchar; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1048 | 	if (i < 0 || i >= a->ob_size) { | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1049 | 		PyErr_SetString(PyExc_IndexError, "string index out of range"); | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1050 | 		return NULL; | 
 | 1051 | 	} | 
| Tim Peters | 5b4d477 | 2001-05-08 22:33:50 +0000 | [diff] [blame] | 1052 | 	pchar = a->ob_sval + i; | 
| Tim Peters | cf5ad5d | 2001-05-09 00:24:55 +0000 | [diff] [blame] | 1053 | 	v = (PyObject *)characters[*pchar & UCHAR_MAX]; | 
| Tim Peters | 5b4d477 | 2001-05-08 22:33:50 +0000 | [diff] [blame] | 1054 | 	if (v == NULL) | 
 | 1055 | 		v = PyString_FromStringAndSize(pchar, 1); | 
| Tim Peters | b4bbcd7 | 2001-05-09 00:31:40 +0000 | [diff] [blame] | 1056 | 	else { | 
 | 1057 | #ifdef COUNT_ALLOCS | 
 | 1058 | 		one_strings++; | 
 | 1059 | #endif | 
| Tim Peters | cf5ad5d | 2001-05-09 00:24:55 +0000 | [diff] [blame] | 1060 | 		Py_INCREF(v); | 
| Tim Peters | b4bbcd7 | 2001-05-09 00:31:40 +0000 | [diff] [blame] | 1061 | 	} | 
| Guido van Rossum | daa8bb3 | 1991-04-04 10:48:33 +0000 | [diff] [blame] | 1062 | 	return v; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1063 | } | 
 | 1064 |  | 
| Martin v. Löwis | cd35306 | 2001-05-24 16:56:35 +0000 | [diff] [blame] | 1065 | static PyObject* | 
 | 1066 | string_richcompare(PyStringObject *a, PyStringObject *b, int op) | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1067 | { | 
| Martin v. Löwis | cd35306 | 2001-05-24 16:56:35 +0000 | [diff] [blame] | 1068 | 	int c; | 
 | 1069 | 	int len_a, len_b; | 
 | 1070 | 	int min_len; | 
 | 1071 | 	PyObject *result; | 
 | 1072 |  | 
| Guido van Rossum | 2ed6bf8 | 2001-09-27 20:30:07 +0000 | [diff] [blame] | 1073 | 	/* Make sure both arguments are strings. */ | 
 | 1074 | 	if (!(PyString_Check(a) && PyString_Check(b))) { | 
| Martin v. Löwis | cd35306 | 2001-05-24 16:56:35 +0000 | [diff] [blame] | 1075 | 		result = Py_NotImplemented; | 
 | 1076 | 		goto out; | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 1077 | 	} | 
| Martin v. Löwis | cd35306 | 2001-05-24 16:56:35 +0000 | [diff] [blame] | 1078 | 	if (a == b) { | 
 | 1079 | 		switch (op) { | 
 | 1080 | 		case Py_EQ:case Py_LE:case Py_GE: | 
 | 1081 | 			result = Py_True; | 
 | 1082 | 			goto out; | 
 | 1083 | 		case Py_NE:case Py_LT:case Py_GT: | 
 | 1084 | 			result = Py_False; | 
 | 1085 | 			goto out; | 
 | 1086 | 		} | 
 | 1087 | 	} | 
 | 1088 | 	if (op == Py_EQ) { | 
 | 1089 | 		/* Supporting Py_NE here as well does not save | 
 | 1090 | 		   much time, since Py_NE is rarely used.  */ | 
 | 1091 | 		if (a->ob_size == b->ob_size | 
 | 1092 | 		    && (a->ob_sval[0] == b->ob_sval[0] | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 1093 | 			&& memcmp(a->ob_sval, b->ob_sval, | 
| Martin v. Löwis | cd35306 | 2001-05-24 16:56:35 +0000 | [diff] [blame] | 1094 | 				  a->ob_size) == 0)) { | 
 | 1095 | 			result = Py_True; | 
 | 1096 | 		} else { | 
 | 1097 | 			result = Py_False; | 
 | 1098 | 		} | 
 | 1099 | 		goto out; | 
 | 1100 | 	} | 
 | 1101 | 	len_a = a->ob_size; len_b = b->ob_size; | 
 | 1102 | 	min_len = (len_a < len_b) ? len_a : len_b; | 
 | 1103 | 	if (min_len > 0) { | 
 | 1104 | 		c = Py_CHARMASK(*a->ob_sval) - Py_CHARMASK(*b->ob_sval); | 
 | 1105 | 		if (c==0) | 
 | 1106 | 			c = memcmp(a->ob_sval, b->ob_sval, min_len); | 
 | 1107 | 	}else | 
 | 1108 | 		c = 0; | 
 | 1109 | 	if (c == 0) | 
 | 1110 | 		c = (len_a < len_b) ? -1 : (len_a > len_b) ? 1 : 0; | 
 | 1111 | 	switch (op) { | 
 | 1112 | 	case Py_LT: c = c <  0; break; | 
 | 1113 | 	case Py_LE: c = c <= 0; break; | 
 | 1114 | 	case Py_EQ: assert(0);  break; /* unreachable */ | 
 | 1115 | 	case Py_NE: c = c != 0; break; | 
 | 1116 | 	case Py_GT: c = c >  0; break; | 
 | 1117 | 	case Py_GE: c = c >= 0; break; | 
 | 1118 | 	default: | 
 | 1119 | 		result = Py_NotImplemented; | 
 | 1120 | 		goto out; | 
 | 1121 | 	} | 
 | 1122 | 	result = c ? Py_True : Py_False; | 
 | 1123 |   out: | 
 | 1124 | 	Py_INCREF(result); | 
 | 1125 | 	return result; | 
 | 1126 | } | 
 | 1127 |  | 
 | 1128 | int | 
 | 1129 | _PyString_Eq(PyObject *o1, PyObject *o2) | 
 | 1130 | { | 
 | 1131 | 	PyStringObject *a, *b; | 
 | 1132 | 	a = (PyStringObject*)o1; | 
 | 1133 | 	b = (PyStringObject*)o2; | 
 | 1134 |         return a->ob_size == b->ob_size | 
 | 1135 |           && *a->ob_sval == *b->ob_sval | 
 | 1136 |           && memcmp(a->ob_sval, b->ob_sval, a->ob_size) == 0; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1137 | } | 
 | 1138 |  | 
| Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 1139 | static long | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 1140 | string_hash(PyStringObject *a) | 
| Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 1141 | { | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 1142 | 	register int len; | 
 | 1143 | 	register unsigned char *p; | 
 | 1144 | 	register long x; | 
 | 1145 |  | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 1146 | 	if (a->ob_shash != -1) | 
 | 1147 | 		return a->ob_shash; | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 1148 | 	len = a->ob_size; | 
 | 1149 | 	p = (unsigned char *) a->ob_sval; | 
 | 1150 | 	x = *p << 7; | 
| Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 1151 | 	while (--len >= 0) | 
| Guido van Rossum | eddcb3b | 1996-09-11 20:22:48 +0000 | [diff] [blame] | 1152 | 		x = (1000003*x) ^ *p++; | 
| Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 1153 | 	x ^= a->ob_size; | 
 | 1154 | 	if (x == -1) | 
 | 1155 | 		x = -2; | 
| Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 1156 | 	a->ob_shash = x; | 
| Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 1157 | 	return x; | 
 | 1158 | } | 
 | 1159 |  | 
| Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 1160 | static PyObject* | 
 | 1161 | string_subscript(PyStringObject* self, PyObject* item) | 
 | 1162 | { | 
 | 1163 | 	if (PyInt_Check(item)) { | 
 | 1164 | 		long i = PyInt_AS_LONG(item); | 
 | 1165 | 		if (i < 0) | 
 | 1166 | 			i += PyString_GET_SIZE(self); | 
 | 1167 | 		return string_item(self,i); | 
 | 1168 | 	} | 
 | 1169 | 	else if (PyLong_Check(item)) { | 
 | 1170 | 		long i = PyLong_AsLong(item); | 
 | 1171 | 		if (i == -1 && PyErr_Occurred()) | 
 | 1172 | 			return NULL; | 
 | 1173 | 		if (i < 0) | 
 | 1174 | 			i += PyString_GET_SIZE(self); | 
 | 1175 | 		return string_item(self,i); | 
 | 1176 | 	} | 
 | 1177 | 	else if (PySlice_Check(item)) { | 
 | 1178 | 		int start, stop, step, slicelength, cur, i; | 
 | 1179 | 		char* source_buf; | 
 | 1180 | 		char* result_buf; | 
 | 1181 | 		PyObject* result; | 
 | 1182 |  | 
 | 1183 | 		if (PySlice_GetIndicesEx((PySliceObject*)item,  | 
 | 1184 | 				 PyString_GET_SIZE(self), | 
 | 1185 | 				 &start, &stop, &step, &slicelength) < 0) { | 
 | 1186 | 			return NULL; | 
 | 1187 | 		} | 
 | 1188 |  | 
 | 1189 | 		if (slicelength <= 0) { | 
 | 1190 | 			return PyString_FromStringAndSize("", 0); | 
 | 1191 | 		} | 
 | 1192 | 		else { | 
 | 1193 | 			source_buf = PyString_AsString((PyObject*)self); | 
 | 1194 | 			result_buf = PyMem_Malloc(slicelength); | 
 | 1195 |  | 
 | 1196 | 			for (cur = start, i = 0; i < slicelength;  | 
 | 1197 | 			     cur += step, i++) { | 
 | 1198 | 				result_buf[i] = source_buf[cur]; | 
 | 1199 | 			} | 
 | 1200 | 			 | 
 | 1201 | 			result = PyString_FromStringAndSize(result_buf,  | 
 | 1202 | 							    slicelength); | 
 | 1203 | 			PyMem_Free(result_buf); | 
 | 1204 | 			return result; | 
 | 1205 | 		} | 
 | 1206 | 	}  | 
 | 1207 | 	else { | 
 | 1208 | 		PyErr_SetString(PyExc_TypeError,  | 
 | 1209 | 				"string indices must be integers"); | 
 | 1210 | 		return NULL; | 
 | 1211 | 	} | 
 | 1212 | } | 
 | 1213 |  | 
| Guido van Rossum | fdf95dd | 1997-05-05 22:15:02 +0000 | [diff] [blame] | 1214 | static int | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 1215 | string_buffer_getreadbuf(PyStringObject *self, int index, const void **ptr) | 
| Guido van Rossum | fdf95dd | 1997-05-05 22:15:02 +0000 | [diff] [blame] | 1216 | { | 
 | 1217 | 	if ( index != 0 ) { | 
| Guido van Rossum | 045e688 | 1997-09-08 18:30:11 +0000 | [diff] [blame] | 1218 | 		PyErr_SetString(PyExc_SystemError, | 
| Guido van Rossum | 1db7070 | 1998-10-08 02:18:52 +0000 | [diff] [blame] | 1219 | 				"accessing non-existent string segment"); | 
| Guido van Rossum | fdf95dd | 1997-05-05 22:15:02 +0000 | [diff] [blame] | 1220 | 		return -1; | 
 | 1221 | 	} | 
 | 1222 | 	*ptr = (void *)self->ob_sval; | 
 | 1223 | 	return self->ob_size; | 
 | 1224 | } | 
 | 1225 |  | 
 | 1226 | static int | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 1227 | string_buffer_getwritebuf(PyStringObject *self, int index, const void **ptr) | 
| Guido van Rossum | fdf95dd | 1997-05-05 22:15:02 +0000 | [diff] [blame] | 1228 | { | 
| Guido van Rossum | 045e688 | 1997-09-08 18:30:11 +0000 | [diff] [blame] | 1229 | 	PyErr_SetString(PyExc_TypeError, | 
| Guido van Rossum | 07d7800 | 1998-10-01 15:59:48 +0000 | [diff] [blame] | 1230 | 			"Cannot use string as modifiable buffer"); | 
| Guido van Rossum | fdf95dd | 1997-05-05 22:15:02 +0000 | [diff] [blame] | 1231 | 	return -1; | 
 | 1232 | } | 
 | 1233 |  | 
 | 1234 | static int | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 1235 | string_buffer_getsegcount(PyStringObject *self, int *lenp) | 
| Guido van Rossum | fdf95dd | 1997-05-05 22:15:02 +0000 | [diff] [blame] | 1236 | { | 
 | 1237 | 	if ( lenp ) | 
 | 1238 | 		*lenp = self->ob_size; | 
 | 1239 | 	return 1; | 
 | 1240 | } | 
 | 1241 |  | 
| Guido van Rossum | 1db7070 | 1998-10-08 02:18:52 +0000 | [diff] [blame] | 1242 | static int | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 1243 | string_buffer_getcharbuf(PyStringObject *self, int index, const char **ptr) | 
| Guido van Rossum | 1db7070 | 1998-10-08 02:18:52 +0000 | [diff] [blame] | 1244 | { | 
 | 1245 | 	if ( index != 0 ) { | 
 | 1246 | 		PyErr_SetString(PyExc_SystemError, | 
 | 1247 | 				"accessing non-existent string segment"); | 
 | 1248 | 		return -1; | 
 | 1249 | 	} | 
 | 1250 | 	*ptr = self->ob_sval; | 
 | 1251 | 	return self->ob_size; | 
 | 1252 | } | 
 | 1253 |  | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1254 | static PySequenceMethods string_as_sequence = { | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 1255 | 	(inquiry)string_length, /*sq_length*/ | 
 | 1256 | 	(binaryfunc)string_concat, /*sq_concat*/ | 
 | 1257 | 	(intargfunc)string_repeat, /*sq_repeat*/ | 
 | 1258 | 	(intargfunc)string_item, /*sq_item*/ | 
 | 1259 | 	(intintargfunc)string_slice, /*sq_slice*/ | 
| Guido van Rossum | f380e66 | 1991-06-04 19:36:32 +0000 | [diff] [blame] | 1260 | 	0,		/*sq_ass_item*/ | 
 | 1261 | 	0,		/*sq_ass_slice*/ | 
| Guido van Rossum | 9284a57 | 2000-03-07 15:53:43 +0000 | [diff] [blame] | 1262 | 	(objobjproc)string_contains /*sq_contains*/ | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1263 | }; | 
 | 1264 |  | 
| Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 1265 | static PyMappingMethods string_as_mapping = { | 
 | 1266 | 	(inquiry)string_length, | 
 | 1267 | 	(binaryfunc)string_subscript, | 
 | 1268 | 	0, | 
 | 1269 | }; | 
 | 1270 |  | 
| Guido van Rossum | fdf95dd | 1997-05-05 22:15:02 +0000 | [diff] [blame] | 1271 | static PyBufferProcs string_as_buffer = { | 
 | 1272 | 	(getreadbufferproc)string_buffer_getreadbuf, | 
 | 1273 | 	(getwritebufferproc)string_buffer_getwritebuf, | 
 | 1274 | 	(getsegcountproc)string_buffer_getsegcount, | 
| Guido van Rossum | 1db7070 | 1998-10-08 02:18:52 +0000 | [diff] [blame] | 1275 | 	(getcharbufferproc)string_buffer_getcharbuf, | 
| Guido van Rossum | fdf95dd | 1997-05-05 22:15:02 +0000 | [diff] [blame] | 1276 | }; | 
 | 1277 |  | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1278 |  | 
 | 1279 |  | 
 | 1280 | #define LEFTSTRIP 0 | 
 | 1281 | #define RIGHTSTRIP 1 | 
 | 1282 | #define BOTHSTRIP 2 | 
 | 1283 |  | 
| Guido van Rossum | 018b0eb | 2002-04-13 00:56:08 +0000 | [diff] [blame] | 1284 | /* Arrays indexed by above */ | 
| Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 1285 | static const char *stripformat[] = {"|O:lstrip", "|O:rstrip", "|O:strip"}; | 
 | 1286 |  | 
 | 1287 | #define STRIPNAME(i) (stripformat[i]+3) | 
| Guido van Rossum | 018b0eb | 2002-04-13 00:56:08 +0000 | [diff] [blame] | 1288 |  | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1289 |  | 
 | 1290 | static PyObject * | 
| Tim Peters | c2e7da9 | 2000-07-09 08:02:21 +0000 | [diff] [blame] | 1291 | split_whitespace(const char *s, int len, int maxsplit) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1292 | { | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1293 | 	int i, j, err; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1294 | 	PyObject* item; | 
 | 1295 | 	PyObject *list = PyList_New(0); | 
 | 1296 |  | 
 | 1297 | 	if (list == NULL) | 
 | 1298 | 		return NULL; | 
 | 1299 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1300 | 	for (i = j = 0; i < len; ) { | 
 | 1301 | 		while (i < len && isspace(Py_CHARMASK(s[i]))) | 
 | 1302 | 			i++; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1303 | 		j = i; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1304 | 		while (i < len && !isspace(Py_CHARMASK(s[i]))) | 
 | 1305 | 			i++; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1306 | 		if (j < i) { | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1307 | 			if (maxsplit-- <= 0) | 
 | 1308 | 				break; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1309 | 			item = PyString_FromStringAndSize(s+j, (int)(i-j)); | 
 | 1310 | 			if (item == NULL) | 
 | 1311 | 				goto finally; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1312 | 			err = PyList_Append(list, item); | 
 | 1313 | 			Py_DECREF(item); | 
 | 1314 | 			if (err < 0) | 
 | 1315 | 				goto finally; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1316 | 			while (i < len && isspace(Py_CHARMASK(s[i]))) | 
 | 1317 | 				i++; | 
 | 1318 | 			j = i; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1319 | 		} | 
 | 1320 | 	} | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1321 | 	if (j < len) { | 
 | 1322 | 		item = PyString_FromStringAndSize(s+j, (int)(len - j)); | 
 | 1323 | 		if (item == NULL) | 
 | 1324 | 			goto finally; | 
 | 1325 | 		err = PyList_Append(list, item); | 
 | 1326 | 		Py_DECREF(item); | 
 | 1327 | 		if (err < 0) | 
 | 1328 | 			goto finally; | 
 | 1329 | 	} | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1330 | 	return list; | 
 | 1331 |   finally: | 
 | 1332 | 	Py_DECREF(list); | 
 | 1333 | 	return NULL; | 
 | 1334 | } | 
 | 1335 |  | 
 | 1336 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1337 | PyDoc_STRVAR(split__doc__, | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1338 | "S.split([sep [,maxsplit]]) -> list of strings\n\ | 
 | 1339 | \n\ | 
 | 1340 | Return a list of the words in the string S, using sep as the\n\ | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1341 | delimiter string.  If maxsplit is given, at most maxsplit\n\ | 
| Raymond Hettinger | bc552ce | 2002-08-05 06:28:21 +0000 | [diff] [blame] | 1342 | splits are done. If sep is not specified or is None, any\n\ | 
 | 1343 | whitespace string is a separator."); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1344 |  | 
 | 1345 | static PyObject * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 1346 | string_split(PyStringObject *self, PyObject *args) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1347 | { | 
 | 1348 | 	int len = PyString_GET_SIZE(self), n, i, j, err; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1349 | 	int maxsplit = -1; | 
 | 1350 | 	const char *s = PyString_AS_STRING(self), *sub; | 
 | 1351 | 	PyObject *list, *item, *subobj = Py_None; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1352 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1353 | 	if (!PyArg_ParseTuple(args, "|Oi:split", &subobj, &maxsplit)) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1354 | 		return NULL; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1355 | 	if (maxsplit < 0) | 
 | 1356 | 		maxsplit = INT_MAX; | 
 | 1357 | 	if (subobj == Py_None) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1358 | 		return split_whitespace(s, len, maxsplit); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1359 | 	if (PyString_Check(subobj)) { | 
 | 1360 | 		sub = PyString_AS_STRING(subobj); | 
 | 1361 | 		n = PyString_GET_SIZE(subobj); | 
 | 1362 | 	} | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 1363 | #ifdef Py_USING_UNICODE | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1364 | 	else if (PyUnicode_Check(subobj)) | 
 | 1365 | 		return PyUnicode_Split((PyObject *)self, subobj, maxsplit); | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 1366 | #endif | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1367 | 	else if (PyObject_AsCharBuffer(subobj, &sub, &n)) | 
 | 1368 | 		return NULL; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1369 | 	if (n == 0) { | 
 | 1370 | 		PyErr_SetString(PyExc_ValueError, "empty separator"); | 
 | 1371 | 		return NULL; | 
 | 1372 | 	} | 
 | 1373 |  | 
 | 1374 | 	list = PyList_New(0); | 
 | 1375 | 	if (list == NULL) | 
 | 1376 | 		return NULL; | 
 | 1377 |  | 
 | 1378 | 	i = j = 0; | 
 | 1379 | 	while (i+n <= len) { | 
| Fred Drake | 396f6e0 | 2000-06-20 15:47:54 +0000 | [diff] [blame] | 1380 | 		if (s[i] == sub[0] && memcmp(s+i, sub, n) == 0) { | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1381 | 			if (maxsplit-- <= 0) | 
 | 1382 | 				break; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1383 | 			item = PyString_FromStringAndSize(s+j, (int)(i-j)); | 
 | 1384 | 			if (item == NULL) | 
 | 1385 | 				goto fail; | 
 | 1386 | 			err = PyList_Append(list, item); | 
 | 1387 | 			Py_DECREF(item); | 
 | 1388 | 			if (err < 0) | 
 | 1389 | 				goto fail; | 
 | 1390 | 			i = j = i + n; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1391 | 		} | 
 | 1392 | 		else | 
 | 1393 | 			i++; | 
 | 1394 | 	} | 
 | 1395 | 	item = PyString_FromStringAndSize(s+j, (int)(len-j)); | 
 | 1396 | 	if (item == NULL) | 
 | 1397 | 		goto fail; | 
 | 1398 | 	err = PyList_Append(list, item); | 
 | 1399 | 	Py_DECREF(item); | 
 | 1400 | 	if (err < 0) | 
 | 1401 | 		goto fail; | 
 | 1402 |  | 
 | 1403 | 	return list; | 
 | 1404 |  | 
 | 1405 |  fail: | 
 | 1406 | 	Py_DECREF(list); | 
 | 1407 | 	return NULL; | 
 | 1408 | } | 
 | 1409 |  | 
 | 1410 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1411 | PyDoc_STRVAR(join__doc__, | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1412 | "S.join(sequence) -> string\n\ | 
 | 1413 | \n\ | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1414 | Return a string which is the concatenation of the strings in the\n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1415 | sequence.  The separator between elements is S."); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1416 |  | 
 | 1417 | static PyObject * | 
| Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 1418 | string_join(PyStringObject *self, PyObject *orig) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1419 | { | 
 | 1420 | 	char *sep = PyString_AS_STRING(self); | 
| Tim Peters | 19fe14e | 2001-01-19 03:03:47 +0000 | [diff] [blame] | 1421 | 	const int seplen = PyString_GET_SIZE(self); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1422 | 	PyObject *res = NULL; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1423 | 	char *p; | 
 | 1424 | 	int seqlen = 0; | 
| Tim Peters | 19fe14e | 2001-01-19 03:03:47 +0000 | [diff] [blame] | 1425 | 	size_t sz = 0; | 
 | 1426 | 	int i; | 
| Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 1427 | 	PyObject *seq, *item; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1428 |  | 
| Tim Peters | 19fe14e | 2001-01-19 03:03:47 +0000 | [diff] [blame] | 1429 | 	seq = PySequence_Fast(orig, ""); | 
 | 1430 | 	if (seq == NULL) { | 
| Jeremy Hylton | 194e43e | 2000-07-10 21:30:28 +0000 | [diff] [blame] | 1431 | 		if (PyErr_ExceptionMatches(PyExc_TypeError)) | 
 | 1432 | 			PyErr_Format(PyExc_TypeError, | 
 | 1433 | 				     "sequence expected, %.80s found", | 
 | 1434 | 				     orig->ob_type->tp_name); | 
 | 1435 | 		return NULL; | 
 | 1436 | 	} | 
| Tim Peters | 19fe14e | 2001-01-19 03:03:47 +0000 | [diff] [blame] | 1437 |  | 
| Jeremy Hylton | 03657cf | 2000-07-12 13:05:33 +0000 | [diff] [blame] | 1438 | 	seqlen = PySequence_Size(seq); | 
| Tim Peters | 19fe14e | 2001-01-19 03:03:47 +0000 | [diff] [blame] | 1439 | 	if (seqlen == 0) { | 
 | 1440 | 		Py_DECREF(seq); | 
 | 1441 | 		return PyString_FromString(""); | 
 | 1442 | 	} | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1443 | 	if (seqlen == 1) { | 
| Jeremy Hylton | 194e43e | 2000-07-10 21:30:28 +0000 | [diff] [blame] | 1444 | 		item = PySequence_Fast_GET_ITEM(seq, 0); | 
| Tim Peters | 19fe14e | 2001-01-19 03:03:47 +0000 | [diff] [blame] | 1445 | 		if (!PyString_Check(item) && !PyUnicode_Check(item)) { | 
 | 1446 | 			PyErr_Format(PyExc_TypeError, | 
 | 1447 | 				     "sequence item 0: expected string," | 
 | 1448 | 				     " %.80s found", | 
 | 1449 | 				     item->ob_type->tp_name); | 
 | 1450 | 			Py_DECREF(seq); | 
 | 1451 | 			return NULL; | 
 | 1452 | 		} | 
| Jeremy Hylton | 194e43e | 2000-07-10 21:30:28 +0000 | [diff] [blame] | 1453 | 		Py_INCREF(item); | 
| Barry Warsaw | 771d067 | 2000-07-11 04:58:12 +0000 | [diff] [blame] | 1454 | 		Py_DECREF(seq); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1455 | 		return item; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1456 | 	} | 
| Jeremy Hylton | 194e43e | 2000-07-10 21:30:28 +0000 | [diff] [blame] | 1457 |  | 
| Tim Peters | 19fe14e | 2001-01-19 03:03:47 +0000 | [diff] [blame] | 1458 | 	/* There are at least two things to join.  Do a pre-pass to figure out | 
 | 1459 | 	 * the total amount of space we'll need (sz), see whether any argument | 
 | 1460 | 	 * is absurd, and defer to the Unicode join if appropriate. | 
 | 1461 | 	 */ | 
| Jeremy Hylton | 194e43e | 2000-07-10 21:30:28 +0000 | [diff] [blame] | 1462 | 	for (i = 0; i < seqlen; i++) { | 
| Tim Peters | 19fe14e | 2001-01-19 03:03:47 +0000 | [diff] [blame] | 1463 | 		const size_t old_sz = sz; | 
| Jeremy Hylton | 194e43e | 2000-07-10 21:30:28 +0000 | [diff] [blame] | 1464 | 		item = PySequence_Fast_GET_ITEM(seq, i); | 
 | 1465 | 		if (!PyString_Check(item)){ | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 1466 | #ifdef Py_USING_UNICODE | 
| Jeremy Hylton | 194e43e | 2000-07-10 21:30:28 +0000 | [diff] [blame] | 1467 | 			if (PyUnicode_Check(item)) { | 
| Tim Peters | 2cfe368 | 2001-05-05 05:36:48 +0000 | [diff] [blame] | 1468 | 				/* Defer to Unicode join. | 
 | 1469 | 				 * CAUTION:  There's no gurantee that the | 
 | 1470 | 				 * original sequence can be iterated over | 
 | 1471 | 				 * again, so we must pass seq here. | 
 | 1472 | 				 */ | 
 | 1473 | 				PyObject *result; | 
 | 1474 | 				result = PyUnicode_Join((PyObject *)self, seq); | 
| Barry Warsaw | 771d067 | 2000-07-11 04:58:12 +0000 | [diff] [blame] | 1475 | 				Py_DECREF(seq); | 
| Tim Peters | 2cfe368 | 2001-05-05 05:36:48 +0000 | [diff] [blame] | 1476 | 				return result; | 
| Jeremy Hylton | 194e43e | 2000-07-10 21:30:28 +0000 | [diff] [blame] | 1477 | 			} | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 1478 | #endif | 
| Jeremy Hylton | 194e43e | 2000-07-10 21:30:28 +0000 | [diff] [blame] | 1479 | 			PyErr_Format(PyExc_TypeError, | 
| Jeremy Hylton | 88887aa | 2000-07-11 20:55:38 +0000 | [diff] [blame] | 1480 | 				     "sequence item %i: expected string," | 
 | 1481 | 				     " %.80s found", | 
| Jeremy Hylton | 194e43e | 2000-07-10 21:30:28 +0000 | [diff] [blame] | 1482 | 				     i, item->ob_type->tp_name); | 
| Tim Peters | 19fe14e | 2001-01-19 03:03:47 +0000 | [diff] [blame] | 1483 | 			Py_DECREF(seq); | 
 | 1484 | 			return NULL; | 
| Jeremy Hylton | 194e43e | 2000-07-10 21:30:28 +0000 | [diff] [blame] | 1485 | 		} | 
| Tim Peters | 19fe14e | 2001-01-19 03:03:47 +0000 | [diff] [blame] | 1486 | 		sz += PyString_GET_SIZE(item); | 
 | 1487 | 		if (i != 0) | 
 | 1488 | 			sz += seplen; | 
 | 1489 | 		if (sz < old_sz || sz > INT_MAX) { | 
 | 1490 | 			PyErr_SetString(PyExc_OverflowError, | 
 | 1491 | 				"join() is too long for a Python string"); | 
 | 1492 | 			Py_DECREF(seq); | 
 | 1493 | 			return NULL; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1494 | 		} | 
| Tim Peters | 19fe14e | 2001-01-19 03:03:47 +0000 | [diff] [blame] | 1495 | 	} | 
 | 1496 |  | 
 | 1497 | 	/* Allocate result space. */ | 
 | 1498 | 	res = PyString_FromStringAndSize((char*)NULL, (int)sz); | 
 | 1499 | 	if (res == NULL) { | 
 | 1500 | 		Py_DECREF(seq); | 
 | 1501 | 		return NULL; | 
 | 1502 | 	} | 
 | 1503 |  | 
 | 1504 | 	/* Catenate everything. */ | 
 | 1505 | 	p = PyString_AS_STRING(res); | 
 | 1506 | 	for (i = 0; i < seqlen; ++i) { | 
 | 1507 | 		size_t n; | 
 | 1508 | 		item = PySequence_Fast_GET_ITEM(seq, i); | 
 | 1509 | 		n = PyString_GET_SIZE(item); | 
 | 1510 | 		memcpy(p, PyString_AS_STRING(item), n); | 
 | 1511 | 		p += n; | 
 | 1512 | 		if (i < seqlen - 1) { | 
| Jeremy Hylton | 194e43e | 2000-07-10 21:30:28 +0000 | [diff] [blame] | 1513 | 			memcpy(p, sep, seplen); | 
 | 1514 | 			p += seplen; | 
| Jeremy Hylton | 194e43e | 2000-07-10 21:30:28 +0000 | [diff] [blame] | 1515 | 		} | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1516 | 	} | 
| Tim Peters | 19fe14e | 2001-01-19 03:03:47 +0000 | [diff] [blame] | 1517 |  | 
| Jeremy Hylton | 4904829 | 2000-07-11 03:28:17 +0000 | [diff] [blame] | 1518 | 	Py_DECREF(seq); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1519 | 	return res; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1520 | } | 
 | 1521 |  | 
| Tim Peters | 52e155e | 2001-06-16 05:42:57 +0000 | [diff] [blame] | 1522 | PyObject * | 
 | 1523 | _PyString_Join(PyObject *sep, PyObject *x) | 
| Tim Peters | a725959 | 2001-06-16 05:11:17 +0000 | [diff] [blame] | 1524 | { | 
| Tim Peters | a725959 | 2001-06-16 05:11:17 +0000 | [diff] [blame] | 1525 | 	assert(sep != NULL && PyString_Check(sep)); | 
 | 1526 | 	assert(x != NULL); | 
| Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 1527 | 	return string_join((PyStringObject *)sep, x); | 
| Tim Peters | a725959 | 2001-06-16 05:11:17 +0000 | [diff] [blame] | 1528 | } | 
 | 1529 |  | 
| Neal Norwitz | 1f68fc7 | 2002-06-14 00:50:42 +0000 | [diff] [blame] | 1530 | static void | 
 | 1531 | string_adjust_indices(int *start, int *end, int len) | 
 | 1532 | { | 
 | 1533 | 	if (*end > len) | 
 | 1534 | 		*end = len; | 
 | 1535 | 	else if (*end < 0) | 
 | 1536 | 		*end += len; | 
 | 1537 | 	if (*end < 0) | 
 | 1538 | 		*end = 0; | 
 | 1539 | 	if (*start < 0) | 
 | 1540 | 		*start += len; | 
 | 1541 | 	if (*start < 0) | 
 | 1542 | 		*start = 0; | 
 | 1543 | } | 
 | 1544 |  | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1545 | static long | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 1546 | string_find_internal(PyStringObject *self, PyObject *args, int dir) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1547 | { | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1548 | 	const char *s = PyString_AS_STRING(self), *sub; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1549 | 	int len = PyString_GET_SIZE(self); | 
 | 1550 | 	int n, i = 0, last = INT_MAX; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1551 | 	PyObject *subobj; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1552 |  | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 1553 | 	if (!PyArg_ParseTuple(args, "O|O&O&:find/rfind/index/rindex", | 
| Guido van Rossum | c682140 | 2000-05-08 14:08:05 +0000 | [diff] [blame] | 1554 | 		&subobj, _PyEval_SliceIndex, &i, _PyEval_SliceIndex, &last)) | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1555 | 		return -2; | 
 | 1556 | 	if (PyString_Check(subobj)) { | 
 | 1557 | 		sub = PyString_AS_STRING(subobj); | 
 | 1558 | 		n = PyString_GET_SIZE(subobj); | 
 | 1559 | 	} | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 1560 | #ifdef Py_USING_UNICODE | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1561 | 	else if (PyUnicode_Check(subobj)) | 
| Guido van Rossum | 76afbd9 | 2002-08-20 17:29:29 +0000 | [diff] [blame] | 1562 | 		return PyUnicode_Find((PyObject *)self, subobj, i, last, dir); | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 1563 | #endif | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1564 | 	else if (PyObject_AsCharBuffer(subobj, &sub, &n)) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1565 | 		return -2; | 
 | 1566 |  | 
| Neal Norwitz | 1f68fc7 | 2002-06-14 00:50:42 +0000 | [diff] [blame] | 1567 | 	string_adjust_indices(&i, &last, len); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1568 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1569 | 	if (dir > 0) { | 
 | 1570 | 		if (n == 0 && i <= last) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1571 | 			return (long)i; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1572 | 		last -= n; | 
 | 1573 | 		for (; i <= last; ++i) | 
| Fred Drake | 396f6e0 | 2000-06-20 15:47:54 +0000 | [diff] [blame] | 1574 | 			if (s[i] == sub[0] && memcmp(&s[i], sub, n) == 0) | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1575 | 				return (long)i; | 
 | 1576 | 	} | 
 | 1577 | 	else { | 
 | 1578 | 		int j; | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 1579 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1580 |         	if (n == 0 && i <= last) | 
 | 1581 | 			return (long)last; | 
 | 1582 | 		for (j = last-n; j >= i; --j) | 
| Fred Drake | 396f6e0 | 2000-06-20 15:47:54 +0000 | [diff] [blame] | 1583 | 			if (s[j] == sub[0] && memcmp(&s[j], sub, n) == 0) | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1584 | 				return (long)j; | 
 | 1585 | 	} | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 1586 |  | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1587 | 	return -1; | 
 | 1588 | } | 
 | 1589 |  | 
 | 1590 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1591 | PyDoc_STRVAR(find__doc__, | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1592 | "S.find(sub [,start [,end]]) -> int\n\ | 
 | 1593 | \n\ | 
 | 1594 | Return the lowest index in S where substring sub is found,\n\ | 
 | 1595 | such that sub is contained within s[start,end].  Optional\n\ | 
 | 1596 | arguments start and end are interpreted as in slice notation.\n\ | 
 | 1597 | \n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1598 | Return -1 on failure."); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1599 |  | 
 | 1600 | static PyObject * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 1601 | string_find(PyStringObject *self, PyObject *args) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1602 | { | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1603 | 	long result = string_find_internal(self, args, +1); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1604 | 	if (result == -2) | 
 | 1605 | 		return NULL; | 
 | 1606 | 	return PyInt_FromLong(result); | 
 | 1607 | } | 
 | 1608 |  | 
 | 1609 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1610 | PyDoc_STRVAR(index__doc__, | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1611 | "S.index(sub [,start [,end]]) -> int\n\ | 
 | 1612 | \n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1613 | Like S.find() but raise ValueError when the substring is not found."); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1614 |  | 
 | 1615 | static PyObject * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 1616 | string_index(PyStringObject *self, PyObject *args) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1617 | { | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1618 | 	long result = string_find_internal(self, args, +1); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1619 | 	if (result == -2) | 
 | 1620 | 		return NULL; | 
 | 1621 | 	if (result == -1) { | 
 | 1622 | 		PyErr_SetString(PyExc_ValueError, | 
| Raymond Hettinger | 5d5e7c0 | 2003-01-15 05:32:57 +0000 | [diff] [blame] | 1623 | 				"substring not found"); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1624 | 		return NULL; | 
 | 1625 | 	} | 
 | 1626 | 	return PyInt_FromLong(result); | 
 | 1627 | } | 
 | 1628 |  | 
 | 1629 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1630 | PyDoc_STRVAR(rfind__doc__, | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1631 | "S.rfind(sub [,start [,end]]) -> int\n\ | 
 | 1632 | \n\ | 
 | 1633 | Return the highest index in S where substring sub is found,\n\ | 
 | 1634 | such that sub is contained within s[start,end].  Optional\n\ | 
 | 1635 | arguments start and end are interpreted as in slice notation.\n\ | 
 | 1636 | \n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1637 | Return -1 on failure."); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1638 |  | 
 | 1639 | static PyObject * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 1640 | string_rfind(PyStringObject *self, PyObject *args) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1641 | { | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1642 | 	long result = string_find_internal(self, args, -1); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1643 | 	if (result == -2) | 
 | 1644 | 		return NULL; | 
 | 1645 | 	return PyInt_FromLong(result); | 
 | 1646 | } | 
 | 1647 |  | 
 | 1648 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1649 | PyDoc_STRVAR(rindex__doc__, | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1650 | "S.rindex(sub [,start [,end]]) -> int\n\ | 
 | 1651 | \n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1652 | Like S.rfind() but raise ValueError when the substring is not found."); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1653 |  | 
 | 1654 | static PyObject * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 1655 | string_rindex(PyStringObject *self, PyObject *args) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1656 | { | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1657 | 	long result = string_find_internal(self, args, -1); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1658 | 	if (result == -2) | 
 | 1659 | 		return NULL; | 
 | 1660 | 	if (result == -1) { | 
 | 1661 | 		PyErr_SetString(PyExc_ValueError, | 
| Raymond Hettinger | 5d5e7c0 | 2003-01-15 05:32:57 +0000 | [diff] [blame] | 1662 | 				"substring not found"); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1663 | 		return NULL; | 
 | 1664 | 	} | 
 | 1665 | 	return PyInt_FromLong(result); | 
 | 1666 | } | 
 | 1667 |  | 
 | 1668 |  | 
 | 1669 | static PyObject * | 
| Guido van Rossum | 018b0eb | 2002-04-13 00:56:08 +0000 | [diff] [blame] | 1670 | do_xstrip(PyStringObject *self, int striptype, PyObject *sepobj) | 
 | 1671 | { | 
 | 1672 | 	char *s = PyString_AS_STRING(self); | 
 | 1673 | 	int len = PyString_GET_SIZE(self); | 
 | 1674 | 	char *sep = PyString_AS_STRING(sepobj); | 
 | 1675 | 	int seplen = PyString_GET_SIZE(sepobj); | 
 | 1676 | 	int i, j; | 
 | 1677 |  | 
 | 1678 | 	i = 0; | 
 | 1679 | 	if (striptype != RIGHTSTRIP) { | 
 | 1680 | 		while (i < len && memchr(sep, Py_CHARMASK(s[i]), seplen)) { | 
 | 1681 | 			i++; | 
 | 1682 | 		} | 
 | 1683 | 	} | 
 | 1684 |  | 
 | 1685 | 	j = len; | 
 | 1686 | 	if (striptype != LEFTSTRIP) { | 
 | 1687 | 		do { | 
 | 1688 | 			j--; | 
 | 1689 | 		} while (j >= i && memchr(sep, Py_CHARMASK(s[j]), seplen)); | 
 | 1690 | 		j++; | 
 | 1691 | 	} | 
 | 1692 |  | 
 | 1693 | 	if (i == 0 && j == len && PyString_CheckExact(self)) { | 
 | 1694 | 		Py_INCREF(self); | 
 | 1695 | 		return (PyObject*)self; | 
 | 1696 | 	} | 
 | 1697 | 	else | 
 | 1698 | 		return PyString_FromStringAndSize(s+i, j-i); | 
 | 1699 | } | 
 | 1700 |  | 
 | 1701 |  | 
 | 1702 | static PyObject * | 
| Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 1703 | do_strip(PyStringObject *self, int striptype) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1704 | { | 
 | 1705 | 	char *s = PyString_AS_STRING(self); | 
 | 1706 | 	int len = PyString_GET_SIZE(self), i, j; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1707 |  | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1708 | 	i = 0; | 
 | 1709 | 	if (striptype != RIGHTSTRIP) { | 
 | 1710 | 		while (i < len && isspace(Py_CHARMASK(s[i]))) { | 
 | 1711 | 			i++; | 
 | 1712 | 		} | 
 | 1713 | 	} | 
 | 1714 |  | 
 | 1715 | 	j = len; | 
 | 1716 | 	if (striptype != LEFTSTRIP) { | 
 | 1717 | 		do { | 
 | 1718 | 			j--; | 
 | 1719 | 		} while (j >= i && isspace(Py_CHARMASK(s[j]))); | 
 | 1720 | 		j++; | 
 | 1721 | 	} | 
 | 1722 |  | 
| Tim Peters | 8fa5dd0 | 2001-09-12 02:18:30 +0000 | [diff] [blame] | 1723 | 	if (i == 0 && j == len && PyString_CheckExact(self)) { | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1724 | 		Py_INCREF(self); | 
 | 1725 | 		return (PyObject*)self; | 
 | 1726 | 	} | 
 | 1727 | 	else | 
 | 1728 | 		return PyString_FromStringAndSize(s+i, j-i); | 
 | 1729 | } | 
 | 1730 |  | 
 | 1731 |  | 
| Guido van Rossum | 018b0eb | 2002-04-13 00:56:08 +0000 | [diff] [blame] | 1732 | static PyObject * | 
 | 1733 | do_argstrip(PyStringObject *self, int striptype, PyObject *args) | 
 | 1734 | { | 
 | 1735 | 	PyObject *sep = NULL; | 
 | 1736 |  | 
| Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 1737 | 	if (!PyArg_ParseTuple(args, (char *)stripformat[striptype], &sep)) | 
| Guido van Rossum | 018b0eb | 2002-04-13 00:56:08 +0000 | [diff] [blame] | 1738 | 		return NULL; | 
 | 1739 |  | 
 | 1740 | 	if (sep != NULL && sep != Py_None) { | 
| Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 1741 | 		if (PyString_Check(sep)) | 
 | 1742 | 			return do_xstrip(self, striptype, sep); | 
| Walter Dörwald | 775c11f | 2002-05-13 09:00:41 +0000 | [diff] [blame] | 1743 | #ifdef Py_USING_UNICODE | 
| Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 1744 | 		else if (PyUnicode_Check(sep)) { | 
 | 1745 | 			PyObject *uniself = PyUnicode_FromObject((PyObject *)self); | 
 | 1746 | 			PyObject *res; | 
 | 1747 | 			if (uniself==NULL) | 
 | 1748 | 				return NULL; | 
 | 1749 | 			res = _PyUnicode_XStrip((PyUnicodeObject *)uniself, | 
 | 1750 | 				striptype, sep); | 
 | 1751 | 			Py_DECREF(uniself); | 
 | 1752 | 			return res; | 
 | 1753 | 		} | 
| Walter Dörwald | 775c11f | 2002-05-13 09:00:41 +0000 | [diff] [blame] | 1754 | #endif | 
| Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 1755 | 		else { | 
| Guido van Rossum | 018b0eb | 2002-04-13 00:56:08 +0000 | [diff] [blame] | 1756 | 			PyErr_Format(PyExc_TypeError, | 
| Walter Dörwald | 775c11f | 2002-05-13 09:00:41 +0000 | [diff] [blame] | 1757 | #ifdef Py_USING_UNICODE | 
| Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 1758 | 				     "%s arg must be None, str or unicode", | 
| Walter Dörwald | 775c11f | 2002-05-13 09:00:41 +0000 | [diff] [blame] | 1759 | #else | 
 | 1760 | 				     "%s arg must be None or str", | 
 | 1761 | #endif | 
| Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 1762 | 				     STRIPNAME(striptype)); | 
| Guido van Rossum | 018b0eb | 2002-04-13 00:56:08 +0000 | [diff] [blame] | 1763 | 			return NULL; | 
 | 1764 | 		} | 
 | 1765 | 		return do_xstrip(self, striptype, sep); | 
 | 1766 | 	} | 
 | 1767 |  | 
 | 1768 | 	return do_strip(self, striptype); | 
 | 1769 | } | 
 | 1770 |  | 
 | 1771 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1772 | PyDoc_STRVAR(strip__doc__, | 
| Neal Norwitz | ffe33b7 | 2003-04-10 22:35:32 +0000 | [diff] [blame] | 1773 | "S.strip([chars]) -> string or unicode\n\ | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1774 | \n\ | 
 | 1775 | Return a copy of the string S with leading and trailing\n\ | 
| Guido van Rossum | 018b0eb | 2002-04-13 00:56:08 +0000 | [diff] [blame] | 1776 | whitespace removed.\n\ | 
| Neal Norwitz | ffe33b7 | 2003-04-10 22:35:32 +0000 | [diff] [blame] | 1777 | If chars is given and not None, remove characters in chars instead.\n\ | 
 | 1778 | If chars is unicode, S will be converted to unicode before stripping"); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1779 |  | 
 | 1780 | static PyObject * | 
| Guido van Rossum | 018b0eb | 2002-04-13 00:56:08 +0000 | [diff] [blame] | 1781 | string_strip(PyStringObject *self, PyObject *args) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1782 | { | 
| Guido van Rossum | 018b0eb | 2002-04-13 00:56:08 +0000 | [diff] [blame] | 1783 | 	if (PyTuple_GET_SIZE(args) == 0) | 
 | 1784 | 		return do_strip(self, BOTHSTRIP); /* Common case */ | 
 | 1785 | 	else | 
 | 1786 | 		return do_argstrip(self, BOTHSTRIP, args); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1787 | } | 
 | 1788 |  | 
 | 1789 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1790 | PyDoc_STRVAR(lstrip__doc__, | 
| Neal Norwitz | ffe33b7 | 2003-04-10 22:35:32 +0000 | [diff] [blame] | 1791 | "S.lstrip([chars]) -> string or unicode\n\ | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1792 | \n\ | 
| Guido van Rossum | 018b0eb | 2002-04-13 00:56:08 +0000 | [diff] [blame] | 1793 | Return a copy of the string S with leading whitespace removed.\n\ | 
| Neal Norwitz | ffe33b7 | 2003-04-10 22:35:32 +0000 | [diff] [blame] | 1794 | If chars is given and not None, remove characters in chars instead.\n\ | 
 | 1795 | If chars is unicode, S will be converted to unicode before stripping"); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1796 |  | 
 | 1797 | static PyObject * | 
| Guido van Rossum | 018b0eb | 2002-04-13 00:56:08 +0000 | [diff] [blame] | 1798 | string_lstrip(PyStringObject *self, PyObject *args) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1799 | { | 
| Guido van Rossum | 018b0eb | 2002-04-13 00:56:08 +0000 | [diff] [blame] | 1800 | 	if (PyTuple_GET_SIZE(args) == 0) | 
 | 1801 | 		return do_strip(self, LEFTSTRIP); /* Common case */ | 
 | 1802 | 	else | 
 | 1803 | 		return do_argstrip(self, LEFTSTRIP, args); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1804 | } | 
 | 1805 |  | 
 | 1806 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1807 | PyDoc_STRVAR(rstrip__doc__, | 
| Neal Norwitz | ffe33b7 | 2003-04-10 22:35:32 +0000 | [diff] [blame] | 1808 | "S.rstrip([chars]) -> string or unicode\n\ | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1809 | \n\ | 
| Guido van Rossum | 018b0eb | 2002-04-13 00:56:08 +0000 | [diff] [blame] | 1810 | Return a copy of the string S with trailing whitespace removed.\n\ | 
| Neal Norwitz | ffe33b7 | 2003-04-10 22:35:32 +0000 | [diff] [blame] | 1811 | If chars is given and not None, remove characters in chars instead.\n\ | 
 | 1812 | If chars is unicode, S will be converted to unicode before stripping"); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1813 |  | 
 | 1814 | static PyObject * | 
| Guido van Rossum | 018b0eb | 2002-04-13 00:56:08 +0000 | [diff] [blame] | 1815 | string_rstrip(PyStringObject *self, PyObject *args) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1816 | { | 
| Guido van Rossum | 018b0eb | 2002-04-13 00:56:08 +0000 | [diff] [blame] | 1817 | 	if (PyTuple_GET_SIZE(args) == 0) | 
 | 1818 | 		return do_strip(self, RIGHTSTRIP); /* Common case */ | 
 | 1819 | 	else | 
 | 1820 | 		return do_argstrip(self, RIGHTSTRIP, args); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1821 | } | 
 | 1822 |  | 
 | 1823 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1824 | PyDoc_STRVAR(lower__doc__, | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1825 | "S.lower() -> string\n\ | 
 | 1826 | \n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1827 | Return a copy of the string S converted to lowercase."); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1828 |  | 
 | 1829 | static PyObject * | 
| Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 1830 | string_lower(PyStringObject *self) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1831 | { | 
 | 1832 | 	char *s = PyString_AS_STRING(self), *s_new; | 
 | 1833 | 	int i, n = PyString_GET_SIZE(self); | 
 | 1834 | 	PyObject *new; | 
 | 1835 |  | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1836 | 	new = PyString_FromStringAndSize(NULL, n); | 
 | 1837 | 	if (new == NULL) | 
 | 1838 | 		return NULL; | 
 | 1839 | 	s_new = PyString_AsString(new); | 
 | 1840 | 	for (i = 0; i < n; i++) { | 
 | 1841 | 		int c = Py_CHARMASK(*s++); | 
 | 1842 | 		if (isupper(c)) { | 
 | 1843 | 			*s_new = tolower(c); | 
 | 1844 | 		} else | 
 | 1845 | 			*s_new = c; | 
 | 1846 | 		s_new++; | 
 | 1847 | 	} | 
 | 1848 | 	return new; | 
 | 1849 | } | 
 | 1850 |  | 
 | 1851 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1852 | PyDoc_STRVAR(upper__doc__, | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1853 | "S.upper() -> string\n\ | 
 | 1854 | \n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1855 | Return a copy of the string S converted to uppercase."); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1856 |  | 
 | 1857 | static PyObject * | 
| Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 1858 | string_upper(PyStringObject *self) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1859 | { | 
 | 1860 | 	char *s = PyString_AS_STRING(self), *s_new; | 
 | 1861 | 	int i, n = PyString_GET_SIZE(self); | 
 | 1862 | 	PyObject *new; | 
 | 1863 |  | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1864 | 	new = PyString_FromStringAndSize(NULL, n); | 
 | 1865 | 	if (new == NULL) | 
 | 1866 | 		return NULL; | 
 | 1867 | 	s_new = PyString_AsString(new); | 
 | 1868 | 	for (i = 0; i < n; i++) { | 
 | 1869 | 		int c = Py_CHARMASK(*s++); | 
 | 1870 | 		if (islower(c)) { | 
 | 1871 | 			*s_new = toupper(c); | 
 | 1872 | 		} else | 
 | 1873 | 			*s_new = c; | 
 | 1874 | 		s_new++; | 
 | 1875 | 	} | 
 | 1876 | 	return new; | 
 | 1877 | } | 
 | 1878 |  | 
 | 1879 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1880 | PyDoc_STRVAR(title__doc__, | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1881 | "S.title() -> string\n\ | 
 | 1882 | \n\ | 
 | 1883 | Return a titlecased version of S, i.e. words start with uppercase\n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1884 | characters, all remaining cased characters have lowercase."); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1885 |  | 
 | 1886 | static PyObject* | 
| Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 1887 | string_title(PyStringObject *self) | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1888 | { | 
 | 1889 | 	char *s = PyString_AS_STRING(self), *s_new; | 
 | 1890 | 	int i, n = PyString_GET_SIZE(self); | 
 | 1891 | 	int previous_is_cased = 0; | 
 | 1892 | 	PyObject *new; | 
 | 1893 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1894 | 	new = PyString_FromStringAndSize(NULL, n); | 
 | 1895 | 	if (new == NULL) | 
 | 1896 | 		return NULL; | 
 | 1897 | 	s_new = PyString_AsString(new); | 
 | 1898 | 	for (i = 0; i < n; i++) { | 
 | 1899 | 		int c = Py_CHARMASK(*s++); | 
 | 1900 | 		if (islower(c)) { | 
 | 1901 | 			if (!previous_is_cased) | 
 | 1902 | 			    c = toupper(c); | 
 | 1903 | 			previous_is_cased = 1; | 
 | 1904 | 		} else if (isupper(c)) { | 
 | 1905 | 			if (previous_is_cased) | 
 | 1906 | 			    c = tolower(c); | 
 | 1907 | 			previous_is_cased = 1; | 
 | 1908 | 		} else | 
 | 1909 | 			previous_is_cased = 0; | 
 | 1910 | 		*s_new++ = c; | 
 | 1911 | 	} | 
 | 1912 | 	return new; | 
 | 1913 | } | 
 | 1914 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1915 | PyDoc_STRVAR(capitalize__doc__, | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1916 | "S.capitalize() -> string\n\ | 
 | 1917 | \n\ | 
 | 1918 | Return a copy of the string S with only its first character\n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1919 | capitalized."); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1920 |  | 
 | 1921 | static PyObject * | 
| Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 1922 | string_capitalize(PyStringObject *self) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1923 | { | 
 | 1924 | 	char *s = PyString_AS_STRING(self), *s_new; | 
 | 1925 | 	int i, n = PyString_GET_SIZE(self); | 
 | 1926 | 	PyObject *new; | 
 | 1927 |  | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1928 | 	new = PyString_FromStringAndSize(NULL, n); | 
 | 1929 | 	if (new == NULL) | 
 | 1930 | 		return NULL; | 
 | 1931 | 	s_new = PyString_AsString(new); | 
 | 1932 | 	if (0 < n) { | 
 | 1933 | 		int c = Py_CHARMASK(*s++); | 
 | 1934 | 		if (islower(c)) | 
 | 1935 | 			*s_new = toupper(c); | 
 | 1936 | 		else | 
 | 1937 | 			*s_new = c; | 
 | 1938 | 		s_new++; | 
 | 1939 | 	} | 
 | 1940 | 	for (i = 1; i < n; i++) { | 
 | 1941 | 		int c = Py_CHARMASK(*s++); | 
 | 1942 | 		if (isupper(c)) | 
 | 1943 | 			*s_new = tolower(c); | 
 | 1944 | 		else | 
 | 1945 | 			*s_new = c; | 
 | 1946 | 		s_new++; | 
 | 1947 | 	} | 
 | 1948 | 	return new; | 
 | 1949 | } | 
 | 1950 |  | 
 | 1951 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1952 | PyDoc_STRVAR(count__doc__, | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1953 | "S.count(sub[, start[, end]]) -> int\n\ | 
 | 1954 | \n\ | 
 | 1955 | Return the number of occurrences of substring sub in string\n\ | 
 | 1956 | S[start:end].  Optional arguments start and end are\n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1957 | interpreted as in slice notation."); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1958 |  | 
 | 1959 | static PyObject * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 1960 | string_count(PyStringObject *self, PyObject *args) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1961 | { | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1962 | 	const char *s = PyString_AS_STRING(self), *sub; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1963 | 	int len = PyString_GET_SIZE(self), n; | 
 | 1964 | 	int i = 0, last = INT_MAX; | 
 | 1965 | 	int m, r; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1966 | 	PyObject *subobj; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1967 |  | 
| Guido van Rossum | c682140 | 2000-05-08 14:08:05 +0000 | [diff] [blame] | 1968 | 	if (!PyArg_ParseTuple(args, "O|O&O&:count", &subobj, | 
 | 1969 | 		_PyEval_SliceIndex, &i, _PyEval_SliceIndex, &last)) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1970 | 		return NULL; | 
| Guido van Rossum | c682140 | 2000-05-08 14:08:05 +0000 | [diff] [blame] | 1971 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1972 | 	if (PyString_Check(subobj)) { | 
 | 1973 | 		sub = PyString_AS_STRING(subobj); | 
 | 1974 | 		n = PyString_GET_SIZE(subobj); | 
 | 1975 | 	} | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 1976 | #ifdef Py_USING_UNICODE | 
| Marc-André Lemburg | 3a645e4 | 2001-01-16 11:54:12 +0000 | [diff] [blame] | 1977 | 	else if (PyUnicode_Check(subobj)) { | 
 | 1978 | 		int count; | 
 | 1979 | 		count = PyUnicode_Count((PyObject *)self, subobj, i, last); | 
 | 1980 | 		if (count == -1) | 
 | 1981 | 			return NULL; | 
 | 1982 | 		else | 
 | 1983 | 		    	return PyInt_FromLong((long) count); | 
 | 1984 | 	} | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 1985 | #endif | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1986 | 	else if (PyObject_AsCharBuffer(subobj, &sub, &n)) | 
 | 1987 | 		return NULL; | 
 | 1988 |  | 
| Neal Norwitz | 1f68fc7 | 2002-06-14 00:50:42 +0000 | [diff] [blame] | 1989 | 	string_adjust_indices(&i, &last, len); | 
 | 1990 |  | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 1991 | 	m = last + 1 - n; | 
 | 1992 | 	if (n == 0) | 
 | 1993 | 		return PyInt_FromLong((long) (m-i)); | 
 | 1994 |  | 
 | 1995 | 	r = 0; | 
 | 1996 | 	while (i < m) { | 
 | 1997 | 		if (!memcmp(s+i, sub, n)) { | 
 | 1998 | 			r++; | 
 | 1999 | 			i += n; | 
 | 2000 | 		} else { | 
 | 2001 | 			i++; | 
 | 2002 | 		} | 
 | 2003 | 	} | 
 | 2004 | 	return PyInt_FromLong((long) r); | 
 | 2005 | } | 
 | 2006 |  | 
 | 2007 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2008 | PyDoc_STRVAR(swapcase__doc__, | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2009 | "S.swapcase() -> string\n\ | 
 | 2010 | \n\ | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2011 | Return a copy of the string S with uppercase characters\n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2012 | converted to lowercase and vice versa."); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2013 |  | 
 | 2014 | static PyObject * | 
| Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 2015 | string_swapcase(PyStringObject *self) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2016 | { | 
 | 2017 | 	char *s = PyString_AS_STRING(self), *s_new; | 
 | 2018 | 	int i, n = PyString_GET_SIZE(self); | 
 | 2019 | 	PyObject *new; | 
 | 2020 |  | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2021 | 	new = PyString_FromStringAndSize(NULL, n); | 
 | 2022 | 	if (new == NULL) | 
 | 2023 | 		return NULL; | 
 | 2024 | 	s_new = PyString_AsString(new); | 
 | 2025 | 	for (i = 0; i < n; i++) { | 
 | 2026 | 		int c = Py_CHARMASK(*s++); | 
 | 2027 | 		if (islower(c)) { | 
 | 2028 | 			*s_new = toupper(c); | 
 | 2029 | 		} | 
 | 2030 | 		else if (isupper(c)) { | 
 | 2031 | 			*s_new = tolower(c); | 
 | 2032 | 		} | 
 | 2033 | 		else | 
 | 2034 | 			*s_new = c; | 
 | 2035 | 		s_new++; | 
 | 2036 | 	} | 
 | 2037 | 	return new; | 
 | 2038 | } | 
 | 2039 |  | 
 | 2040 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2041 | PyDoc_STRVAR(translate__doc__, | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2042 | "S.translate(table [,deletechars]) -> string\n\ | 
 | 2043 | \n\ | 
 | 2044 | Return a copy of the string S, where all characters occurring\n\ | 
 | 2045 | in the optional argument deletechars are removed, and the\n\ | 
 | 2046 | remaining characters have been mapped through the given\n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2047 | translation table, which must be a string of length 256."); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2048 |  | 
 | 2049 | static PyObject * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 2050 | string_translate(PyStringObject *self, PyObject *args) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2051 | { | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2052 | 	register char *input, *output; | 
 | 2053 | 	register const char *table; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2054 | 	register int i, c, changed = 0; | 
 | 2055 | 	PyObject *input_obj = (PyObject*)self; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2056 | 	const char *table1, *output_start, *del_table=NULL; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2057 | 	int inlen, tablen, dellen = 0; | 
 | 2058 | 	PyObject *result; | 
 | 2059 | 	int trans_table[256]; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2060 | 	PyObject *tableobj, *delobj = NULL; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2061 |  | 
| Raymond Hettinger | ea3fdf4 | 2002-12-29 16:33:45 +0000 | [diff] [blame] | 2062 | 	if (!PyArg_UnpackTuple(args, "translate", 1, 2, | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2063 | 			      &tableobj, &delobj)) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2064 | 		return NULL; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2065 |  | 
 | 2066 | 	if (PyString_Check(tableobj)) { | 
 | 2067 | 		table1 = PyString_AS_STRING(tableobj); | 
 | 2068 | 		tablen = PyString_GET_SIZE(tableobj); | 
 | 2069 | 	} | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 2070 | #ifdef Py_USING_UNICODE | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2071 | 	else if (PyUnicode_Check(tableobj)) { | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 2072 | 		/* Unicode .translate() does not support the deletechars | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2073 | 		   parameter; instead a mapping to None will cause characters | 
 | 2074 | 		   to be deleted. */ | 
 | 2075 | 		if (delobj != NULL) { | 
 | 2076 | 			PyErr_SetString(PyExc_TypeError, | 
 | 2077 | 			"deletions are implemented differently for unicode"); | 
 | 2078 | 			return NULL; | 
 | 2079 | 		} | 
 | 2080 | 		return PyUnicode_Translate((PyObject *)self, tableobj, NULL); | 
 | 2081 | 	} | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 2082 | #endif | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2083 | 	else if (PyObject_AsCharBuffer(tableobj, &table1, &tablen)) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2084 | 		return NULL; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2085 |  | 
| Martin v. Löwis | 00b6127 | 2002-12-12 20:03:19 +0000 | [diff] [blame] | 2086 | 	if (tablen != 256) { | 
 | 2087 | 		PyErr_SetString(PyExc_ValueError, | 
 | 2088 | 		  "translation table must be 256 characters long"); | 
 | 2089 | 		return NULL; | 
 | 2090 | 	} | 
 | 2091 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2092 | 	if (delobj != NULL) { | 
 | 2093 | 		if (PyString_Check(delobj)) { | 
 | 2094 | 			del_table = PyString_AS_STRING(delobj); | 
 | 2095 | 			dellen = PyString_GET_SIZE(delobj); | 
 | 2096 | 		} | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 2097 | #ifdef Py_USING_UNICODE | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2098 | 		else if (PyUnicode_Check(delobj)) { | 
 | 2099 | 			PyErr_SetString(PyExc_TypeError, | 
 | 2100 | 			"deletions are implemented differently for unicode"); | 
 | 2101 | 			return NULL; | 
 | 2102 | 		} | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 2103 | #endif | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2104 | 		else if (PyObject_AsCharBuffer(delobj, &del_table, &dellen)) | 
 | 2105 | 			return NULL; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2106 | 	} | 
 | 2107 | 	else { | 
 | 2108 | 		del_table = NULL; | 
 | 2109 | 		dellen = 0; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2110 | 	} | 
 | 2111 |  | 
 | 2112 | 	table = table1; | 
 | 2113 | 	inlen = PyString_Size(input_obj); | 
 | 2114 | 	result = PyString_FromStringAndSize((char *)NULL, inlen); | 
 | 2115 | 	if (result == NULL) | 
 | 2116 | 		return NULL; | 
 | 2117 | 	output_start = output = PyString_AsString(result); | 
 | 2118 | 	input = PyString_AsString(input_obj); | 
 | 2119 |  | 
 | 2120 | 	if (dellen == 0) { | 
 | 2121 | 		/* If no deletions are required, use faster code */ | 
 | 2122 | 		for (i = inlen; --i >= 0; ) { | 
 | 2123 | 			c = Py_CHARMASK(*input++); | 
 | 2124 | 			if (Py_CHARMASK((*output++ = table[c])) != c) | 
 | 2125 | 				changed = 1; | 
 | 2126 | 		} | 
| Tim Peters | 8fa5dd0 | 2001-09-12 02:18:30 +0000 | [diff] [blame] | 2127 | 		if (changed || !PyString_CheckExact(input_obj)) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2128 | 			return result; | 
 | 2129 | 		Py_DECREF(result); | 
 | 2130 | 		Py_INCREF(input_obj); | 
 | 2131 | 		return input_obj; | 
 | 2132 | 	} | 
 | 2133 |  | 
 | 2134 | 	for (i = 0; i < 256; i++) | 
 | 2135 | 		trans_table[i] = Py_CHARMASK(table[i]); | 
 | 2136 |  | 
 | 2137 | 	for (i = 0; i < dellen; i++) | 
 | 2138 | 		trans_table[(int) Py_CHARMASK(del_table[i])] = -1; | 
 | 2139 |  | 
 | 2140 | 	for (i = inlen; --i >= 0; ) { | 
 | 2141 | 		c = Py_CHARMASK(*input++); | 
 | 2142 | 		if (trans_table[c] != -1) | 
 | 2143 | 			if (Py_CHARMASK(*output++ = (char)trans_table[c]) == c) | 
 | 2144 | 				continue; | 
 | 2145 | 		changed = 1; | 
 | 2146 | 	} | 
| Tim Peters | 8fa5dd0 | 2001-09-12 02:18:30 +0000 | [diff] [blame] | 2147 | 	if (!changed && PyString_CheckExact(input_obj)) { | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2148 | 		Py_DECREF(result); | 
 | 2149 | 		Py_INCREF(input_obj); | 
 | 2150 | 		return input_obj; | 
 | 2151 | 	} | 
 | 2152 | 	/* Fix the size of the resulting string */ | 
| Tim Peters | 5de9842 | 2002-04-27 18:44:32 +0000 | [diff] [blame] | 2153 | 	if (inlen > 0) | 
 | 2154 | 		_PyString_Resize(&result, output - output_start); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2155 | 	return result; | 
 | 2156 | } | 
 | 2157 |  | 
 | 2158 |  | 
 | 2159 | /* What follows is used for implementing replace().  Perry Stoll. */ | 
 | 2160 |  | 
 | 2161 | /* | 
 | 2162 |   mymemfind | 
 | 2163 |  | 
 | 2164 |   strstr replacement for arbitrary blocks of memory. | 
 | 2165 |  | 
| Barry Warsaw | 51ac580 | 2000-03-20 16:36:48 +0000 | [diff] [blame] | 2166 |   Locates the first occurrence in the memory pointed to by MEM of the | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2167 |   contents of memory pointed to by PAT.  Returns the index into MEM if | 
 | 2168 |   found, or -1 if not found.  If len of PAT is greater than length of | 
 | 2169 |   MEM, the function returns -1. | 
 | 2170 | */ | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 2171 | static int | 
| Tim Peters | c2e7da9 | 2000-07-09 08:02:21 +0000 | [diff] [blame] | 2172 | mymemfind(const char *mem, int len, const char *pat, int pat_len) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2173 | { | 
 | 2174 | 	register int ii; | 
 | 2175 |  | 
 | 2176 | 	/* pattern can not occur in the last pat_len-1 chars */ | 
 | 2177 | 	len -= pat_len; | 
 | 2178 |  | 
 | 2179 | 	for (ii = 0; ii <= len; ii++) { | 
| Fred Drake | 396f6e0 | 2000-06-20 15:47:54 +0000 | [diff] [blame] | 2180 | 		if (mem[ii] == pat[0] && memcmp(&mem[ii], pat, pat_len) == 0) { | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2181 | 			return ii; | 
 | 2182 | 		} | 
 | 2183 | 	} | 
 | 2184 | 	return -1; | 
 | 2185 | } | 
 | 2186 |  | 
 | 2187 | /* | 
 | 2188 |   mymemcnt | 
 | 2189 |  | 
 | 2190 |    Return the number of distinct times PAT is found in MEM. | 
 | 2191 |    meaning mem=1111 and pat==11 returns 2. | 
 | 2192 |            mem=11111 and pat==11 also return 2. | 
 | 2193 |  */ | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 2194 | static int | 
| Tim Peters | c2e7da9 | 2000-07-09 08:02:21 +0000 | [diff] [blame] | 2195 | mymemcnt(const char *mem, int len, const char *pat, int pat_len) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2196 | { | 
 | 2197 | 	register int offset = 0; | 
 | 2198 | 	int nfound = 0; | 
 | 2199 |  | 
 | 2200 | 	while (len >= 0) { | 
 | 2201 | 		offset = mymemfind(mem, len, pat, pat_len); | 
 | 2202 | 		if (offset == -1) | 
 | 2203 | 			break; | 
 | 2204 | 		mem += offset + pat_len; | 
 | 2205 | 		len -= offset + pat_len; | 
 | 2206 | 		nfound++; | 
 | 2207 | 	} | 
 | 2208 | 	return nfound; | 
 | 2209 | } | 
 | 2210 |  | 
 | 2211 | /* | 
 | 2212 |    mymemreplace | 
 | 2213 |  | 
| Thomas Wouters | 7e47402 | 2000-07-16 12:04:32 +0000 | [diff] [blame] | 2214 |    Return a string in which all occurrences of PAT in memory STR are | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2215 |    replaced with SUB. | 
 | 2216 |  | 
| Thomas Wouters | 7e47402 | 2000-07-16 12:04:32 +0000 | [diff] [blame] | 2217 |    If length of PAT is less than length of STR or there are no occurrences | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2218 |    of PAT in STR, then the original string is returned. Otherwise, a new | 
 | 2219 |    string is allocated here and returned. | 
 | 2220 |  | 
 | 2221 |    on return, out_len is: | 
 | 2222 |        the length of output string, or | 
 | 2223 |        -1 if the input string is returned, or | 
 | 2224 |        unchanged if an error occurs (no memory). | 
 | 2225 |  | 
 | 2226 |    return value is: | 
 | 2227 |        the new string allocated locally, or | 
 | 2228 |        NULL if an error occurred. | 
 | 2229 | */ | 
 | 2230 | static char * | 
| Tim Peters | c2e7da9 | 2000-07-09 08:02:21 +0000 | [diff] [blame] | 2231 | mymemreplace(const char *str, int len,		/* input string */ | 
 | 2232 |              const char *pat, int pat_len,	/* pattern string to find */ | 
 | 2233 |              const char *sub, int sub_len,	/* substitution string */ | 
 | 2234 |              int count,				/* number of replacements */ | 
| Tim Peters | 4cd44ef | 2001-05-10 00:05:33 +0000 | [diff] [blame] | 2235 | 	     int *out_len) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2236 | { | 
 | 2237 | 	char *out_s; | 
 | 2238 | 	char *new_s; | 
 | 2239 | 	int nfound, offset, new_len; | 
 | 2240 |  | 
| Guido van Rossum | 8b1a6d6 | 2002-08-23 18:21:28 +0000 | [diff] [blame] | 2241 | 	if (len == 0 || (pat_len == 0 && sub_len == 0) || pat_len > len) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2242 | 		goto return_same; | 
 | 2243 |  | 
 | 2244 | 	/* find length of output string */ | 
| Guido van Rossum | 8b1a6d6 | 2002-08-23 18:21:28 +0000 | [diff] [blame] | 2245 | 	nfound = (pat_len > 0) ? mymemcnt(str, len, pat, pat_len) : len + 1; | 
| Tim Peters | 9c012af | 2001-05-10 00:32:57 +0000 | [diff] [blame] | 2246 | 	if (count < 0) | 
 | 2247 | 		count = INT_MAX; | 
 | 2248 | 	else if (nfound > count) | 
 | 2249 | 		nfound = count; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2250 | 	if (nfound == 0) | 
 | 2251 | 		goto return_same; | 
| Tim Peters | 4cd44ef | 2001-05-10 00:05:33 +0000 | [diff] [blame] | 2252 |  | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2253 | 	new_len = len + nfound*(sub_len - pat_len); | 
| Tim Peters | 4cd44ef | 2001-05-10 00:05:33 +0000 | [diff] [blame] | 2254 | 	if (new_len == 0) { | 
 | 2255 | 		/* Have to allocate something for the caller to free(). */ | 
 | 2256 | 		out_s = (char *)PyMem_MALLOC(1); | 
| Tim Peters | 9c012af | 2001-05-10 00:32:57 +0000 | [diff] [blame] | 2257 | 		if (out_s == NULL) | 
| Tim Peters | 4cd44ef | 2001-05-10 00:05:33 +0000 | [diff] [blame] | 2258 | 			return NULL; | 
 | 2259 | 		out_s[0] = '\0'; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2260 | 	} | 
| Tim Peters | 4cd44ef | 2001-05-10 00:05:33 +0000 | [diff] [blame] | 2261 | 	else { | 
 | 2262 | 		assert(new_len > 0); | 
 | 2263 | 		new_s = (char *)PyMem_MALLOC(new_len); | 
 | 2264 | 		if (new_s == NULL) | 
 | 2265 | 			return NULL; | 
 | 2266 | 		out_s = new_s; | 
 | 2267 |  | 
| Guido van Rossum | 8b1a6d6 | 2002-08-23 18:21:28 +0000 | [diff] [blame] | 2268 | 		if (pat_len > 0) { | 
 | 2269 | 			for (; nfound > 0; --nfound) { | 
 | 2270 | 				/* find index of next instance of pattern */ | 
 | 2271 | 				offset = mymemfind(str, len, pat, pat_len); | 
 | 2272 | 				if (offset == -1) | 
 | 2273 | 					break; | 
| Tim Peters | 4cd44ef | 2001-05-10 00:05:33 +0000 | [diff] [blame] | 2274 |  | 
| Guido van Rossum | 8b1a6d6 | 2002-08-23 18:21:28 +0000 | [diff] [blame] | 2275 | 				/* copy non matching part of input string */ | 
 | 2276 | 				memcpy(new_s, str, offset); | 
 | 2277 | 				str += offset + pat_len; | 
 | 2278 | 				len -= offset + pat_len; | 
| Tim Peters | 4cd44ef | 2001-05-10 00:05:33 +0000 | [diff] [blame] | 2279 |  | 
| Guido van Rossum | 8b1a6d6 | 2002-08-23 18:21:28 +0000 | [diff] [blame] | 2280 | 				/* copy substitute into the output string */ | 
 | 2281 | 				new_s += offset; | 
 | 2282 | 				memcpy(new_s, sub, sub_len); | 
 | 2283 | 				new_s += sub_len; | 
 | 2284 | 			} | 
 | 2285 | 			/* copy any remaining values into output string */ | 
 | 2286 | 			if (len > 0) | 
 | 2287 | 				memcpy(new_s, str, len); | 
| Tim Peters | 4cd44ef | 2001-05-10 00:05:33 +0000 | [diff] [blame] | 2288 | 		} | 
| Guido van Rossum | 8b1a6d6 | 2002-08-23 18:21:28 +0000 | [diff] [blame] | 2289 | 		else { | 
 | 2290 | 			for (;;++str, --len) { | 
 | 2291 | 				memcpy(new_s, sub, sub_len); | 
 | 2292 | 				new_s += sub_len; | 
 | 2293 | 				if (--nfound <= 0) { | 
 | 2294 | 					memcpy(new_s, str, len); | 
 | 2295 | 					break; | 
 | 2296 | 				} | 
 | 2297 | 				*new_s++ = *str; | 
 | 2298 | 			} | 
 | 2299 | 		} | 
| Tim Peters | 4cd44ef | 2001-05-10 00:05:33 +0000 | [diff] [blame] | 2300 | 	} | 
 | 2301 | 	*out_len = new_len; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2302 | 	return out_s; | 
 | 2303 |  | 
 | 2304 |   return_same: | 
 | 2305 | 	*out_len = -1; | 
| Tim Peters | 4cd44ef | 2001-05-10 00:05:33 +0000 | [diff] [blame] | 2306 | 	return (char *)str; /* cast away const */ | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2307 | } | 
 | 2308 |  | 
 | 2309 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2310 | PyDoc_STRVAR(replace__doc__, | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2311 | "S.replace (old, new[, maxsplit]) -> string\n\ | 
 | 2312 | \n\ | 
 | 2313 | Return a copy of string S with all occurrences of substring\n\ | 
 | 2314 | old replaced by new.  If the optional argument maxsplit is\n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2315 | given, only the first maxsplit occurrences are replaced."); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2316 |  | 
 | 2317 | static PyObject * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 2318 | string_replace(PyStringObject *self, PyObject *args) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2319 | { | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2320 | 	const char *str = PyString_AS_STRING(self), *sub, *repl; | 
 | 2321 | 	char *new_s; | 
| Tim Peters | 8fa5dd0 | 2001-09-12 02:18:30 +0000 | [diff] [blame] | 2322 | 	const int len = PyString_GET_SIZE(self); | 
 | 2323 | 	int sub_len, repl_len, out_len; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2324 | 	int count = -1; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2325 | 	PyObject *new; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2326 | 	PyObject *subobj, *replobj; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2327 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2328 | 	if (!PyArg_ParseTuple(args, "OO|i:replace", | 
 | 2329 | 			      &subobj, &replobj, &count)) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2330 | 		return NULL; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2331 |  | 
 | 2332 | 	if (PyString_Check(subobj)) { | 
 | 2333 | 		sub = PyString_AS_STRING(subobj); | 
 | 2334 | 		sub_len = PyString_GET_SIZE(subobj); | 
 | 2335 | 	} | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 2336 | #ifdef Py_USING_UNICODE | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2337 | 	else if (PyUnicode_Check(subobj)) | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 2338 | 		return PyUnicode_Replace((PyObject *)self, | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2339 | 					 subobj, replobj, count); | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 2340 | #endif | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2341 | 	else if (PyObject_AsCharBuffer(subobj, &sub, &sub_len)) | 
 | 2342 | 		return NULL; | 
 | 2343 |  | 
 | 2344 | 	if (PyString_Check(replobj)) { | 
 | 2345 | 		repl = PyString_AS_STRING(replobj); | 
 | 2346 | 		repl_len = PyString_GET_SIZE(replobj); | 
 | 2347 | 	} | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 2348 | #ifdef Py_USING_UNICODE | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2349 | 	else if (PyUnicode_Check(replobj)) | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 2350 | 		return PyUnicode_Replace((PyObject *)self, | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2351 | 					 subobj, replobj, count); | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 2352 | #endif | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2353 | 	else if (PyObject_AsCharBuffer(replobj, &repl, &repl_len)) | 
 | 2354 | 		return NULL; | 
 | 2355 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2356 | 	new_s = mymemreplace(str,len,sub,sub_len,repl,repl_len,count,&out_len); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2357 | 	if (new_s == NULL) { | 
 | 2358 | 		PyErr_NoMemory(); | 
 | 2359 | 		return NULL; | 
 | 2360 | 	} | 
 | 2361 | 	if (out_len == -1) { | 
| Tim Peters | 8fa5dd0 | 2001-09-12 02:18:30 +0000 | [diff] [blame] | 2362 | 		if (PyString_CheckExact(self)) { | 
 | 2363 | 			/* we're returning another reference to self */ | 
 | 2364 | 			new = (PyObject*)self; | 
 | 2365 | 			Py_INCREF(new); | 
 | 2366 | 		} | 
 | 2367 | 		else { | 
 | 2368 | 			new = PyString_FromStringAndSize(str, len); | 
 | 2369 | 			if (new == NULL) | 
 | 2370 | 				return NULL; | 
 | 2371 | 		} | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2372 | 	} | 
 | 2373 | 	else { | 
 | 2374 | 		new = PyString_FromStringAndSize(new_s, out_len); | 
| Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 2375 | 		PyMem_FREE(new_s); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2376 | 	} | 
 | 2377 | 	return new; | 
 | 2378 | } | 
 | 2379 |  | 
 | 2380 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2381 | PyDoc_STRVAR(startswith__doc__, | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2382 | "S.startswith(prefix[, start[, end]]) -> bool\n\ | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2383 | \n\ | 
| Guido van Rossum | a713218 | 2003-04-09 19:32:45 +0000 | [diff] [blame] | 2384 | Return True if S starts with the specified prefix, False otherwise.\n\ | 
 | 2385 | With optional start, test S beginning at that position.\n\ | 
 | 2386 | With optional end, stop comparing S at that position."); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2387 |  | 
 | 2388 | static PyObject * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 2389 | string_startswith(PyStringObject *self, PyObject *args) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2390 | { | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2391 | 	const char* str = PyString_AS_STRING(self); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2392 | 	int len = PyString_GET_SIZE(self); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2393 | 	const char* prefix; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2394 | 	int plen; | 
 | 2395 | 	int start = 0; | 
| Neal Norwitz | 1f68fc7 | 2002-06-14 00:50:42 +0000 | [diff] [blame] | 2396 | 	int end = INT_MAX; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2397 | 	PyObject *subobj; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2398 |  | 
| Guido van Rossum | c682140 | 2000-05-08 14:08:05 +0000 | [diff] [blame] | 2399 | 	if (!PyArg_ParseTuple(args, "O|O&O&:startswith", &subobj, | 
 | 2400 | 		_PyEval_SliceIndex, &start, _PyEval_SliceIndex, &end)) | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2401 | 		return NULL; | 
 | 2402 | 	if (PyString_Check(subobj)) { | 
 | 2403 | 		prefix = PyString_AS_STRING(subobj); | 
 | 2404 | 		plen = PyString_GET_SIZE(subobj); | 
 | 2405 | 	} | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 2406 | #ifdef Py_USING_UNICODE | 
| Marc-André Lemburg | 3a645e4 | 2001-01-16 11:54:12 +0000 | [diff] [blame] | 2407 | 	else if (PyUnicode_Check(subobj)) { | 
 | 2408 | 	    	int rc; | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 2409 | 		rc = PyUnicode_Tailmatch((PyObject *)self, | 
| Marc-André Lemburg | 3a645e4 | 2001-01-16 11:54:12 +0000 | [diff] [blame] | 2410 | 					  subobj, start, end, -1); | 
 | 2411 | 		if (rc == -1) | 
 | 2412 | 			return NULL; | 
 | 2413 | 		else | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2414 | 			return PyBool_FromLong((long) rc); | 
| Marc-André Lemburg | 3a645e4 | 2001-01-16 11:54:12 +0000 | [diff] [blame] | 2415 | 	} | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 2416 | #endif | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2417 | 	else if (PyObject_AsCharBuffer(subobj, &prefix, &plen)) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2418 | 		return NULL; | 
 | 2419 |  | 
| Neal Norwitz | 1f68fc7 | 2002-06-14 00:50:42 +0000 | [diff] [blame] | 2420 | 	string_adjust_indices(&start, &end, len); | 
 | 2421 |  | 
 | 2422 | 	if (start+plen > len) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2423 | 		return PyBool_FromLong(0); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2424 |  | 
| Neal Norwitz | 1f68fc7 | 2002-06-14 00:50:42 +0000 | [diff] [blame] | 2425 | 	if (end-start >= plen) | 
 | 2426 | 		return PyBool_FromLong(!memcmp(str+start, prefix, plen)); | 
 | 2427 | 	else | 
 | 2428 | 		return PyBool_FromLong(0); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2429 | } | 
 | 2430 |  | 
 | 2431 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2432 | PyDoc_STRVAR(endswith__doc__, | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2433 | "S.endswith(suffix[, start[, end]]) -> bool\n\ | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2434 | \n\ | 
| Guido van Rossum | a713218 | 2003-04-09 19:32:45 +0000 | [diff] [blame] | 2435 | Return True if S ends with the specified suffix, False otherwise.\n\ | 
 | 2436 | With optional start, test S beginning at that position.\n\ | 
 | 2437 | With optional end, stop comparing S at that position."); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2438 |  | 
 | 2439 | static PyObject * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 2440 | string_endswith(PyStringObject *self, PyObject *args) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2441 | { | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2442 | 	const char* str = PyString_AS_STRING(self); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2443 | 	int len = PyString_GET_SIZE(self); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2444 | 	const char* suffix; | 
 | 2445 | 	int slen; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2446 | 	int start = 0; | 
| Neal Norwitz | 1f68fc7 | 2002-06-14 00:50:42 +0000 | [diff] [blame] | 2447 | 	int end = INT_MAX; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2448 | 	PyObject *subobj; | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2449 |  | 
| Guido van Rossum | c682140 | 2000-05-08 14:08:05 +0000 | [diff] [blame] | 2450 | 	if (!PyArg_ParseTuple(args, "O|O&O&:endswith", &subobj, | 
 | 2451 | 		_PyEval_SliceIndex, &start, _PyEval_SliceIndex, &end)) | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2452 | 		return NULL; | 
 | 2453 | 	if (PyString_Check(subobj)) { | 
 | 2454 | 		suffix = PyString_AS_STRING(subobj); | 
 | 2455 | 		slen = PyString_GET_SIZE(subobj); | 
 | 2456 | 	} | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 2457 | #ifdef Py_USING_UNICODE | 
| Marc-André Lemburg | 3a645e4 | 2001-01-16 11:54:12 +0000 | [diff] [blame] | 2458 | 	else if (PyUnicode_Check(subobj)) { | 
 | 2459 | 	    	int rc; | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 2460 | 		rc = PyUnicode_Tailmatch((PyObject *)self, | 
| Marc-André Lemburg | 3a645e4 | 2001-01-16 11:54:12 +0000 | [diff] [blame] | 2461 | 					  subobj, start, end, +1); | 
 | 2462 | 		if (rc == -1) | 
 | 2463 | 			return NULL; | 
 | 2464 | 		else | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2465 | 			return PyBool_FromLong((long) rc); | 
| Marc-André Lemburg | 3a645e4 | 2001-01-16 11:54:12 +0000 | [diff] [blame] | 2466 | 	} | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 2467 | #endif | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2468 | 	else if (PyObject_AsCharBuffer(subobj, &suffix, &slen)) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2469 | 		return NULL; | 
 | 2470 |  | 
| Neal Norwitz | 1f68fc7 | 2002-06-14 00:50:42 +0000 | [diff] [blame] | 2471 | 	string_adjust_indices(&start, &end, len); | 
 | 2472 |  | 
 | 2473 | 	if (end-start < slen || start > len) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2474 | 		return PyBool_FromLong(0); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2475 |  | 
| Neal Norwitz | 1f68fc7 | 2002-06-14 00:50:42 +0000 | [diff] [blame] | 2476 | 	if (end-slen > start) | 
 | 2477 | 		start = end - slen; | 
 | 2478 | 	if (end-start >= slen) | 
 | 2479 | 		return PyBool_FromLong(!memcmp(str+start, suffix, slen)); | 
 | 2480 | 	else | 
 | 2481 | 		return PyBool_FromLong(0); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 2482 | } | 
 | 2483 |  | 
 | 2484 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2485 | PyDoc_STRVAR(encode__doc__, | 
| Marc-André Lemburg | 2d92041 | 2001-05-15 12:00:02 +0000 | [diff] [blame] | 2486 | "S.encode([encoding[,errors]]) -> object\n\ | 
| Marc-André Lemburg | 63f3d17 | 2000-07-06 11:29:01 +0000 | [diff] [blame] | 2487 | \n\ | 
| Marc-André Lemburg | 2d92041 | 2001-05-15 12:00:02 +0000 | [diff] [blame] | 2488 | Encodes S using the codec registered for encoding. encoding defaults\n\ | 
 | 2489 | to the default encoding. errors may be given to set a different error\n\ | 
| Marc-André Lemburg | 63f3d17 | 2000-07-06 11:29:01 +0000 | [diff] [blame] | 2490 | handling scheme. Default is 'strict' meaning that encoding errors raise\n\ | 
| Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 2491 | a UnicodeEncodeError. Other possible values are 'ignore', 'replace' and\n\ | 
 | 2492 | 'xmlcharrefreplace' as well as any other name registered with\n\ | 
 | 2493 | codecs.register_error that is able to handle UnicodeEncodeErrors."); | 
| Marc-André Lemburg | 63f3d17 | 2000-07-06 11:29:01 +0000 | [diff] [blame] | 2494 |  | 
 | 2495 | static PyObject * | 
 | 2496 | string_encode(PyStringObject *self, PyObject *args) | 
 | 2497 | { | 
 | 2498 |     char *encoding = NULL; | 
 | 2499 |     char *errors = NULL; | 
 | 2500 |     if (!PyArg_ParseTuple(args, "|ss:encode", &encoding, &errors)) | 
 | 2501 |         return NULL; | 
| Marc-André Lemburg | 2d92041 | 2001-05-15 12:00:02 +0000 | [diff] [blame] | 2502 |     return PyString_AsEncodedObject((PyObject *)self, encoding, errors); | 
 | 2503 | } | 
 | 2504 |  | 
 | 2505 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2506 | PyDoc_STRVAR(decode__doc__, | 
| Marc-André Lemburg | 2d92041 | 2001-05-15 12:00:02 +0000 | [diff] [blame] | 2507 | "S.decode([encoding[,errors]]) -> object\n\ | 
 | 2508 | \n\ | 
 | 2509 | Decodes S using the codec registered for encoding. encoding defaults\n\ | 
 | 2510 | to the default encoding. errors may be given to set a different error\n\ | 
 | 2511 | handling scheme. Default is 'strict' meaning that encoding errors raise\n\ | 
| Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 2512 | a UnicodeDecodeError. Other possible values are 'ignore' and 'replace'\n\ | 
 | 2513 | as well as any other name registerd with codecs.register_error that is\n\ | 
 | 2514 | able to handle UnicodeDecodeErrors."); | 
| Marc-André Lemburg | 2d92041 | 2001-05-15 12:00:02 +0000 | [diff] [blame] | 2515 |  | 
 | 2516 | static PyObject * | 
 | 2517 | string_decode(PyStringObject *self, PyObject *args) | 
 | 2518 | { | 
 | 2519 |     char *encoding = NULL; | 
 | 2520 |     char *errors = NULL; | 
 | 2521 |     if (!PyArg_ParseTuple(args, "|ss:decode", &encoding, &errors)) | 
 | 2522 |         return NULL; | 
 | 2523 |     return PyString_AsDecodedObject((PyObject *)self, encoding, errors); | 
| Marc-André Lemburg | 63f3d17 | 2000-07-06 11:29:01 +0000 | [diff] [blame] | 2524 | } | 
 | 2525 |  | 
 | 2526 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2527 | PyDoc_STRVAR(expandtabs__doc__, | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2528 | "S.expandtabs([tabsize]) -> string\n\ | 
 | 2529 | \n\ | 
 | 2530 | Return a copy of S where all tab characters are expanded using spaces.\n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2531 | If tabsize is not given, a tab size of 8 characters is assumed."); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2532 |  | 
 | 2533 | static PyObject* | 
 | 2534 | string_expandtabs(PyStringObject *self, PyObject *args) | 
 | 2535 | { | 
 | 2536 |     const char *e, *p; | 
 | 2537 |     char *q; | 
 | 2538 |     int i, j; | 
 | 2539 |     PyObject *u; | 
 | 2540 |     int tabsize = 8; | 
 | 2541 |  | 
 | 2542 |     if (!PyArg_ParseTuple(args, "|i:expandtabs", &tabsize)) | 
 | 2543 | 	return NULL; | 
 | 2544 |  | 
| Thomas Wouters | 7e47402 | 2000-07-16 12:04:32 +0000 | [diff] [blame] | 2545 |     /* First pass: determine size of output string */ | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2546 |     i = j = 0; | 
 | 2547 |     e = PyString_AS_STRING(self) + PyString_GET_SIZE(self); | 
 | 2548 |     for (p = PyString_AS_STRING(self); p < e; p++) | 
 | 2549 |         if (*p == '\t') { | 
 | 2550 | 	    if (tabsize > 0) | 
 | 2551 | 		j += tabsize - (j % tabsize); | 
 | 2552 | 	} | 
 | 2553 |         else { | 
 | 2554 |             j++; | 
 | 2555 |             if (*p == '\n' || *p == '\r') { | 
 | 2556 |                 i += j; | 
 | 2557 |                 j = 0; | 
 | 2558 |             } | 
 | 2559 |         } | 
 | 2560 |  | 
 | 2561 |     /* Second pass: create output string and fill it */ | 
 | 2562 |     u = PyString_FromStringAndSize(NULL, i + j); | 
 | 2563 |     if (!u) | 
 | 2564 |         return NULL; | 
 | 2565 |  | 
 | 2566 |     j = 0; | 
 | 2567 |     q = PyString_AS_STRING(u); | 
 | 2568 |  | 
 | 2569 |     for (p = PyString_AS_STRING(self); p < e; p++) | 
 | 2570 |         if (*p == '\t') { | 
 | 2571 | 	    if (tabsize > 0) { | 
 | 2572 | 		i = tabsize - (j % tabsize); | 
 | 2573 | 		j += i; | 
 | 2574 | 		while (i--) | 
 | 2575 | 		    *q++ = ' '; | 
 | 2576 | 	    } | 
 | 2577 | 	} | 
 | 2578 | 	else { | 
 | 2579 |             j++; | 
 | 2580 | 	    *q++ = *p; | 
 | 2581 |             if (*p == '\n' || *p == '\r') | 
 | 2582 |                 j = 0; | 
 | 2583 |         } | 
 | 2584 |  | 
 | 2585 |     return u; | 
 | 2586 | } | 
 | 2587 |  | 
| Tim Peters | 8fa5dd0 | 2001-09-12 02:18:30 +0000 | [diff] [blame] | 2588 | static PyObject * | 
 | 2589 | pad(PyStringObject *self, int left, int right, char fill) | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2590 | { | 
 | 2591 |     PyObject *u; | 
 | 2592 |  | 
 | 2593 |     if (left < 0) | 
 | 2594 |         left = 0; | 
 | 2595 |     if (right < 0) | 
 | 2596 |         right = 0; | 
 | 2597 |  | 
| Tim Peters | 8fa5dd0 | 2001-09-12 02:18:30 +0000 | [diff] [blame] | 2598 |     if (left == 0 && right == 0 && PyString_CheckExact(self)) { | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2599 |         Py_INCREF(self); | 
 | 2600 |         return (PyObject *)self; | 
 | 2601 |     } | 
 | 2602 |  | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 2603 |     u = PyString_FromStringAndSize(NULL, | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2604 | 				   left + PyString_GET_SIZE(self) + right); | 
 | 2605 |     if (u) { | 
 | 2606 |         if (left) | 
 | 2607 |             memset(PyString_AS_STRING(u), fill, left); | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 2608 |         memcpy(PyString_AS_STRING(u) + left, | 
 | 2609 | 	       PyString_AS_STRING(self), | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2610 | 	       PyString_GET_SIZE(self)); | 
 | 2611 |         if (right) | 
 | 2612 |             memset(PyString_AS_STRING(u) + left + PyString_GET_SIZE(self), | 
 | 2613 | 		   fill, right); | 
 | 2614 |     } | 
 | 2615 |  | 
 | 2616 |     return u; | 
 | 2617 | } | 
 | 2618 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2619 | PyDoc_STRVAR(ljust__doc__, | 
| Tim Peters | 8fa5dd0 | 2001-09-12 02:18:30 +0000 | [diff] [blame] | 2620 | "S.ljust(width) -> string\n" | 
 | 2621 | "\n" | 
 | 2622 | "Return S left justified in a string of length width. Padding is\n" | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2623 | "done using spaces."); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2624 |  | 
 | 2625 | static PyObject * | 
 | 2626 | string_ljust(PyStringObject *self, PyObject *args) | 
 | 2627 | { | 
 | 2628 |     int width; | 
 | 2629 |     if (!PyArg_ParseTuple(args, "i:ljust", &width)) | 
 | 2630 |         return NULL; | 
 | 2631 |  | 
| Tim Peters | 8fa5dd0 | 2001-09-12 02:18:30 +0000 | [diff] [blame] | 2632 |     if (PyString_GET_SIZE(self) >= width && PyString_CheckExact(self)) { | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2633 |         Py_INCREF(self); | 
 | 2634 |         return (PyObject*) self; | 
 | 2635 |     } | 
 | 2636 |  | 
 | 2637 |     return pad(self, 0, width - PyString_GET_SIZE(self), ' '); | 
 | 2638 | } | 
 | 2639 |  | 
 | 2640 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2641 | PyDoc_STRVAR(rjust__doc__, | 
| Tim Peters | 8fa5dd0 | 2001-09-12 02:18:30 +0000 | [diff] [blame] | 2642 | "S.rjust(width) -> string\n" | 
 | 2643 | "\n" | 
 | 2644 | "Return S right justified in a string of length width. Padding is\n" | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2645 | "done using spaces."); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2646 |  | 
 | 2647 | static PyObject * | 
 | 2648 | string_rjust(PyStringObject *self, PyObject *args) | 
 | 2649 | { | 
 | 2650 |     int width; | 
 | 2651 |     if (!PyArg_ParseTuple(args, "i:rjust", &width)) | 
 | 2652 |         return NULL; | 
 | 2653 |  | 
| Tim Peters | 8fa5dd0 | 2001-09-12 02:18:30 +0000 | [diff] [blame] | 2654 |     if (PyString_GET_SIZE(self) >= width && PyString_CheckExact(self)) { | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2655 |         Py_INCREF(self); | 
 | 2656 |         return (PyObject*) self; | 
 | 2657 |     } | 
 | 2658 |  | 
 | 2659 |     return pad(self, width - PyString_GET_SIZE(self), 0, ' '); | 
 | 2660 | } | 
 | 2661 |  | 
 | 2662 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2663 | PyDoc_STRVAR(center__doc__, | 
| Tim Peters | 8fa5dd0 | 2001-09-12 02:18:30 +0000 | [diff] [blame] | 2664 | "S.center(width) -> string\n" | 
 | 2665 | "\n" | 
 | 2666 | "Return S centered in a string of length width. Padding is done\n" | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2667 | "using spaces."); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2668 |  | 
 | 2669 | static PyObject * | 
 | 2670 | string_center(PyStringObject *self, PyObject *args) | 
 | 2671 | { | 
 | 2672 |     int marg, left; | 
 | 2673 |     int width; | 
 | 2674 |  | 
 | 2675 |     if (!PyArg_ParseTuple(args, "i:center", &width)) | 
 | 2676 |         return NULL; | 
 | 2677 |  | 
| Tim Peters | 8fa5dd0 | 2001-09-12 02:18:30 +0000 | [diff] [blame] | 2678 |     if (PyString_GET_SIZE(self) >= width && PyString_CheckExact(self)) { | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2679 |         Py_INCREF(self); | 
 | 2680 |         return (PyObject*) self; | 
 | 2681 |     } | 
 | 2682 |  | 
 | 2683 |     marg = width - PyString_GET_SIZE(self); | 
 | 2684 |     left = marg / 2 + (marg & width & 1); | 
 | 2685 |  | 
 | 2686 |     return pad(self, left, marg - left, ' '); | 
 | 2687 | } | 
 | 2688 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2689 | PyDoc_STRVAR(zfill__doc__, | 
| Walter Dörwald | 068325e | 2002-04-15 13:36:47 +0000 | [diff] [blame] | 2690 | "S.zfill(width) -> string\n" | 
 | 2691 | "\n" | 
 | 2692 | "Pad a numeric string S with zeros on the left, to fill a field\n" | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2693 | "of the specified width.  The string S is never truncated."); | 
| Walter Dörwald | 068325e | 2002-04-15 13:36:47 +0000 | [diff] [blame] | 2694 |  | 
 | 2695 | static PyObject * | 
 | 2696 | string_zfill(PyStringObject *self, PyObject *args) | 
 | 2697 | { | 
 | 2698 |     int fill; | 
 | 2699 |     PyObject *s; | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 2700 |     char *p; | 
| Walter Dörwald | 068325e | 2002-04-15 13:36:47 +0000 | [diff] [blame] | 2701 |  | 
 | 2702 |     int width; | 
 | 2703 |     if (!PyArg_ParseTuple(args, "i:zfill", &width)) | 
 | 2704 |         return NULL; | 
 | 2705 |  | 
 | 2706 |     if (PyString_GET_SIZE(self) >= width) { | 
| Walter Dörwald | 0fe940c | 2002-04-15 18:42:15 +0000 | [diff] [blame] | 2707 |         if (PyString_CheckExact(self)) { | 
 | 2708 |             Py_INCREF(self); | 
 | 2709 |             return (PyObject*) self; | 
 | 2710 |         } | 
 | 2711 |         else | 
 | 2712 |             return PyString_FromStringAndSize( | 
 | 2713 |                 PyString_AS_STRING(self), | 
 | 2714 |                 PyString_GET_SIZE(self) | 
 | 2715 |             ); | 
| Walter Dörwald | 068325e | 2002-04-15 13:36:47 +0000 | [diff] [blame] | 2716 |     } | 
 | 2717 |  | 
 | 2718 |     fill = width - PyString_GET_SIZE(self); | 
 | 2719 |  | 
 | 2720 |     s = pad(self, fill, 0, '0'); | 
 | 2721 |  | 
 | 2722 |     if (s == NULL) | 
 | 2723 |         return NULL; | 
 | 2724 |  | 
 | 2725 |     p = PyString_AS_STRING(s); | 
 | 2726 |     if (p[fill] == '+' || p[fill] == '-') { | 
 | 2727 |         /* move sign to beginning of string */ | 
 | 2728 |         p[0] = p[fill]; | 
 | 2729 |         p[fill] = '0'; | 
 | 2730 |     } | 
 | 2731 |  | 
 | 2732 |     return (PyObject*) s; | 
 | 2733 | } | 
 | 2734 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2735 | PyDoc_STRVAR(isspace__doc__, | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2736 | "S.isspace() -> bool\n" | 
| Tim Peters | 8fa5dd0 | 2001-09-12 02:18:30 +0000 | [diff] [blame] | 2737 | "\n" | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2738 | "Return True if there are only whitespace characters in S,\n" | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2739 | "False otherwise."); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2740 |  | 
 | 2741 | static PyObject* | 
| Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 2742 | string_isspace(PyStringObject *self) | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2743 | { | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 2744 |     register const unsigned char *p | 
 | 2745 |         = (unsigned char *) PyString_AS_STRING(self); | 
| Guido van Rossum | b8f820c | 2000-05-05 20:44:24 +0000 | [diff] [blame] | 2746 |     register const unsigned char *e; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2747 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2748 |     /* Shortcut for single character strings */ | 
 | 2749 |     if (PyString_GET_SIZE(self) == 1 && | 
 | 2750 | 	isspace(*p)) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2751 | 	return PyBool_FromLong(1); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2752 |  | 
| Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 2753 |     /* Special case for empty strings */ | 
 | 2754 |     if (PyString_GET_SIZE(self) == 0) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2755 | 	return PyBool_FromLong(0); | 
| Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 2756 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2757 |     e = p + PyString_GET_SIZE(self); | 
 | 2758 |     for (; p < e; p++) { | 
 | 2759 | 	if (!isspace(*p)) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2760 | 	    return PyBool_FromLong(0); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2761 |     } | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2762 |     return PyBool_FromLong(1); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2763 | } | 
 | 2764 |  | 
 | 2765 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2766 | PyDoc_STRVAR(isalpha__doc__, | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2767 | "S.isalpha() -> bool\n\ | 
| Marc-André Lemburg | 4027f8f | 2000-07-05 09:47:46 +0000 | [diff] [blame] | 2768 | \n\ | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2769 | Return True if  all characters in S are alphabetic\n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2770 | and there is at least one character in S, False otherwise."); | 
| Marc-André Lemburg | 4027f8f | 2000-07-05 09:47:46 +0000 | [diff] [blame] | 2771 |  | 
 | 2772 | static PyObject* | 
| Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 2773 | string_isalpha(PyStringObject *self) | 
| Marc-André Lemburg | 4027f8f | 2000-07-05 09:47:46 +0000 | [diff] [blame] | 2774 | { | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 2775 |     register const unsigned char *p | 
 | 2776 |         = (unsigned char *) PyString_AS_STRING(self); | 
| Marc-André Lemburg | 4027f8f | 2000-07-05 09:47:46 +0000 | [diff] [blame] | 2777 |     register const unsigned char *e; | 
 | 2778 |  | 
| Marc-André Lemburg | 4027f8f | 2000-07-05 09:47:46 +0000 | [diff] [blame] | 2779 |     /* Shortcut for single character strings */ | 
 | 2780 |     if (PyString_GET_SIZE(self) == 1 && | 
 | 2781 | 	isalpha(*p)) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2782 | 	return PyBool_FromLong(1); | 
| Marc-André Lemburg | 4027f8f | 2000-07-05 09:47:46 +0000 | [diff] [blame] | 2783 |  | 
 | 2784 |     /* Special case for empty strings */ | 
 | 2785 |     if (PyString_GET_SIZE(self) == 0) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2786 | 	return PyBool_FromLong(0); | 
| Marc-André Lemburg | 4027f8f | 2000-07-05 09:47:46 +0000 | [diff] [blame] | 2787 |  | 
 | 2788 |     e = p + PyString_GET_SIZE(self); | 
 | 2789 |     for (; p < e; p++) { | 
 | 2790 | 	if (!isalpha(*p)) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2791 | 	    return PyBool_FromLong(0); | 
| Marc-André Lemburg | 4027f8f | 2000-07-05 09:47:46 +0000 | [diff] [blame] | 2792 |     } | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2793 |     return PyBool_FromLong(1); | 
| Marc-André Lemburg | 4027f8f | 2000-07-05 09:47:46 +0000 | [diff] [blame] | 2794 | } | 
 | 2795 |  | 
 | 2796 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2797 | PyDoc_STRVAR(isalnum__doc__, | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2798 | "S.isalnum() -> bool\n\ | 
| Marc-André Lemburg | 4027f8f | 2000-07-05 09:47:46 +0000 | [diff] [blame] | 2799 | \n\ | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2800 | Return True if  all characters in S are alphanumeric\n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2801 | and there is at least one character in S, False otherwise."); | 
| Marc-André Lemburg | 4027f8f | 2000-07-05 09:47:46 +0000 | [diff] [blame] | 2802 |  | 
 | 2803 | static PyObject* | 
| Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 2804 | string_isalnum(PyStringObject *self) | 
| Marc-André Lemburg | 4027f8f | 2000-07-05 09:47:46 +0000 | [diff] [blame] | 2805 | { | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 2806 |     register const unsigned char *p | 
 | 2807 |         = (unsigned char *) PyString_AS_STRING(self); | 
| Marc-André Lemburg | 4027f8f | 2000-07-05 09:47:46 +0000 | [diff] [blame] | 2808 |     register const unsigned char *e; | 
 | 2809 |  | 
| Marc-André Lemburg | 4027f8f | 2000-07-05 09:47:46 +0000 | [diff] [blame] | 2810 |     /* Shortcut for single character strings */ | 
 | 2811 |     if (PyString_GET_SIZE(self) == 1 && | 
 | 2812 | 	isalnum(*p)) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2813 | 	return PyBool_FromLong(1); | 
| Marc-André Lemburg | 4027f8f | 2000-07-05 09:47:46 +0000 | [diff] [blame] | 2814 |  | 
 | 2815 |     /* Special case for empty strings */ | 
 | 2816 |     if (PyString_GET_SIZE(self) == 0) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2817 | 	return PyBool_FromLong(0); | 
| Marc-André Lemburg | 4027f8f | 2000-07-05 09:47:46 +0000 | [diff] [blame] | 2818 |  | 
 | 2819 |     e = p + PyString_GET_SIZE(self); | 
 | 2820 |     for (; p < e; p++) { | 
 | 2821 | 	if (!isalnum(*p)) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2822 | 	    return PyBool_FromLong(0); | 
| Marc-André Lemburg | 4027f8f | 2000-07-05 09:47:46 +0000 | [diff] [blame] | 2823 |     } | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2824 |     return PyBool_FromLong(1); | 
| Marc-André Lemburg | 4027f8f | 2000-07-05 09:47:46 +0000 | [diff] [blame] | 2825 | } | 
 | 2826 |  | 
 | 2827 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2828 | PyDoc_STRVAR(isdigit__doc__, | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2829 | "S.isdigit() -> bool\n\ | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2830 | \n\ | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2831 | Return True if there are only digit characters in S,\n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2832 | False otherwise."); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2833 |  | 
 | 2834 | static PyObject* | 
| Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 2835 | string_isdigit(PyStringObject *self) | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2836 | { | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 2837 |     register const unsigned char *p | 
 | 2838 |         = (unsigned char *) PyString_AS_STRING(self); | 
| Guido van Rossum | b8f820c | 2000-05-05 20:44:24 +0000 | [diff] [blame] | 2839 |     register const unsigned char *e; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2840 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2841 |     /* Shortcut for single character strings */ | 
 | 2842 |     if (PyString_GET_SIZE(self) == 1 && | 
 | 2843 | 	isdigit(*p)) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2844 | 	return PyBool_FromLong(1); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2845 |  | 
| Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 2846 |     /* Special case for empty strings */ | 
 | 2847 |     if (PyString_GET_SIZE(self) == 0) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2848 | 	return PyBool_FromLong(0); | 
| Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 2849 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2850 |     e = p + PyString_GET_SIZE(self); | 
 | 2851 |     for (; p < e; p++) { | 
 | 2852 | 	if (!isdigit(*p)) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2853 | 	    return PyBool_FromLong(0); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2854 |     } | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2855 |     return PyBool_FromLong(1); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2856 | } | 
 | 2857 |  | 
 | 2858 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2859 | PyDoc_STRVAR(islower__doc__, | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2860 | "S.islower() -> bool\n\ | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2861 | \n\ | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2862 | Return True if all cased characters in S are lowercase and there is\n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2863 | at least one cased character in S, False otherwise."); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2864 |  | 
 | 2865 | static PyObject* | 
| Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 2866 | string_islower(PyStringObject *self) | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2867 | { | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 2868 |     register const unsigned char *p | 
 | 2869 |         = (unsigned char *) PyString_AS_STRING(self); | 
| Guido van Rossum | b8f820c | 2000-05-05 20:44:24 +0000 | [diff] [blame] | 2870 |     register const unsigned char *e; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2871 |     int cased; | 
 | 2872 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2873 |     /* Shortcut for single character strings */ | 
 | 2874 |     if (PyString_GET_SIZE(self) == 1) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2875 | 	return PyBool_FromLong(islower(*p) != 0); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2876 |  | 
| Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 2877 |     /* Special case for empty strings */ | 
 | 2878 |     if (PyString_GET_SIZE(self) == 0) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2879 | 	return PyBool_FromLong(0); | 
| Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 2880 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2881 |     e = p + PyString_GET_SIZE(self); | 
 | 2882 |     cased = 0; | 
 | 2883 |     for (; p < e; p++) { | 
 | 2884 | 	if (isupper(*p)) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2885 | 	    return PyBool_FromLong(0); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2886 | 	else if (!cased && islower(*p)) | 
 | 2887 | 	    cased = 1; | 
 | 2888 |     } | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2889 |     return PyBool_FromLong(cased); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2890 | } | 
 | 2891 |  | 
 | 2892 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2893 | PyDoc_STRVAR(isupper__doc__, | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2894 | "S.isupper() -> bool\n\ | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2895 | \n\ | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2896 | Return True if  all cased characters in S are uppercase and there is\n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2897 | at least one cased character in S, False otherwise."); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2898 |  | 
 | 2899 | static PyObject* | 
| Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 2900 | string_isupper(PyStringObject *self) | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2901 | { | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 2902 |     register const unsigned char *p | 
 | 2903 |         = (unsigned char *) PyString_AS_STRING(self); | 
| Guido van Rossum | b8f820c | 2000-05-05 20:44:24 +0000 | [diff] [blame] | 2904 |     register const unsigned char *e; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2905 |     int cased; | 
 | 2906 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2907 |     /* Shortcut for single character strings */ | 
 | 2908 |     if (PyString_GET_SIZE(self) == 1) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2909 | 	return PyBool_FromLong(isupper(*p) != 0); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2910 |  | 
| Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 2911 |     /* Special case for empty strings */ | 
 | 2912 |     if (PyString_GET_SIZE(self) == 0) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2913 | 	return PyBool_FromLong(0); | 
| Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 2914 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2915 |     e = p + PyString_GET_SIZE(self); | 
 | 2916 |     cased = 0; | 
 | 2917 |     for (; p < e; p++) { | 
 | 2918 | 	if (islower(*p)) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2919 | 	    return PyBool_FromLong(0); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2920 | 	else if (!cased && isupper(*p)) | 
 | 2921 | 	    cased = 1; | 
 | 2922 |     } | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2923 |     return PyBool_FromLong(cased); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2924 | } | 
 | 2925 |  | 
 | 2926 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2927 | PyDoc_STRVAR(istitle__doc__, | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2928 | "S.istitle() -> bool\n\ | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2929 | \n\ | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2930 | Return True if S is a titlecased string, i.e. uppercase characters\n\ | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2931 | may only follow uncased characters and lowercase characters only cased\n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2932 | ones. Return False otherwise."); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2933 |  | 
 | 2934 | static PyObject* | 
| Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 2935 | string_istitle(PyStringObject *self, PyObject *uncased) | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2936 | { | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 2937 |     register const unsigned char *p | 
 | 2938 |         = (unsigned char *) PyString_AS_STRING(self); | 
| Guido van Rossum | b8f820c | 2000-05-05 20:44:24 +0000 | [diff] [blame] | 2939 |     register const unsigned char *e; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2940 |     int cased, previous_is_cased; | 
 | 2941 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2942 |     /* Shortcut for single character strings */ | 
 | 2943 |     if (PyString_GET_SIZE(self) == 1) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2944 | 	return PyBool_FromLong(isupper(*p) != 0); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2945 |  | 
| Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 2946 |     /* Special case for empty strings */ | 
 | 2947 |     if (PyString_GET_SIZE(self) == 0) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2948 | 	return PyBool_FromLong(0); | 
| Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 2949 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2950 |     e = p + PyString_GET_SIZE(self); | 
 | 2951 |     cased = 0; | 
 | 2952 |     previous_is_cased = 0; | 
 | 2953 |     for (; p < e; p++) { | 
| Guido van Rossum | b8f820c | 2000-05-05 20:44:24 +0000 | [diff] [blame] | 2954 | 	register const unsigned char ch = *p; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2955 |  | 
 | 2956 | 	if (isupper(ch)) { | 
 | 2957 | 	    if (previous_is_cased) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2958 | 		return PyBool_FromLong(0); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2959 | 	    previous_is_cased = 1; | 
 | 2960 | 	    cased = 1; | 
 | 2961 | 	} | 
 | 2962 | 	else if (islower(ch)) { | 
 | 2963 | 	    if (!previous_is_cased) | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2964 | 		return PyBool_FromLong(0); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2965 | 	    previous_is_cased = 1; | 
 | 2966 | 	    cased = 1; | 
 | 2967 | 	} | 
 | 2968 | 	else | 
 | 2969 | 	    previous_is_cased = 0; | 
 | 2970 |     } | 
| Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2971 |     return PyBool_FromLong(cased); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2972 | } | 
 | 2973 |  | 
 | 2974 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2975 | PyDoc_STRVAR(splitlines__doc__, | 
| Fred Drake | 2bae4fa | 2001-10-13 15:57:55 +0000 | [diff] [blame] | 2976 | "S.splitlines([keepends]) -> list of strings\n\ | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2977 | \n\ | 
 | 2978 | Return a list of the lines in S, breaking at line boundaries.\n\ | 
| Guido van Rossum | f0b7b04 | 2000-04-11 15:39:26 +0000 | [diff] [blame] | 2979 | Line breaks are not included in the resulting list unless keepends\n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2980 | is given and true."); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2981 |  | 
 | 2982 | #define SPLIT_APPEND(data, left, right)					\ | 
 | 2983 | 	str = PyString_FromStringAndSize(data + left, right - left);	\ | 
 | 2984 | 	if (!str)							\ | 
 | 2985 | 	    goto onError;						\ | 
 | 2986 | 	if (PyList_Append(list, str)) {					\ | 
 | 2987 | 	    Py_DECREF(str);						\ | 
 | 2988 | 	    goto onError;						\ | 
 | 2989 | 	}								\ | 
 | 2990 |         else								\ | 
 | 2991 |             Py_DECREF(str); | 
 | 2992 |  | 
 | 2993 | static PyObject* | 
 | 2994 | string_splitlines(PyStringObject *self, PyObject *args) | 
 | 2995 | { | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 2996 |     register int i; | 
 | 2997 |     register int j; | 
 | 2998 |     int len; | 
| Guido van Rossum | f0b7b04 | 2000-04-11 15:39:26 +0000 | [diff] [blame] | 2999 |     int keepends = 0; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 3000 |     PyObject *list; | 
 | 3001 |     PyObject *str; | 
 | 3002 |     char *data; | 
 | 3003 |  | 
| Guido van Rossum | f0b7b04 | 2000-04-11 15:39:26 +0000 | [diff] [blame] | 3004 |     if (!PyArg_ParseTuple(args, "|i:splitlines", &keepends)) | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 3005 |         return NULL; | 
 | 3006 |  | 
 | 3007 |     data = PyString_AS_STRING(self); | 
 | 3008 |     len = PyString_GET_SIZE(self); | 
 | 3009 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 3010 |     list = PyList_New(0); | 
 | 3011 |     if (!list) | 
 | 3012 |         goto onError; | 
 | 3013 |  | 
 | 3014 |     for (i = j = 0; i < len; ) { | 
| Guido van Rossum | f0b7b04 | 2000-04-11 15:39:26 +0000 | [diff] [blame] | 3015 | 	int eol; | 
 | 3016 |  | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 3017 | 	/* Find a line and append it */ | 
 | 3018 | 	while (i < len && data[i] != '\n' && data[i] != '\r') | 
 | 3019 | 	    i++; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 3020 |  | 
 | 3021 | 	/* Skip the line break reading CRLF as one line break */ | 
| Guido van Rossum | f0b7b04 | 2000-04-11 15:39:26 +0000 | [diff] [blame] | 3022 | 	eol = i; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 3023 | 	if (i < len) { | 
 | 3024 | 	    if (data[i] == '\r' && i + 1 < len && | 
 | 3025 | 		data[i+1] == '\n') | 
 | 3026 | 		i += 2; | 
 | 3027 | 	    else | 
 | 3028 | 		i++; | 
| Guido van Rossum | f0b7b04 | 2000-04-11 15:39:26 +0000 | [diff] [blame] | 3029 | 	    if (keepends) | 
 | 3030 | 		eol = i; | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 3031 | 	} | 
| Guido van Rossum | f0b7b04 | 2000-04-11 15:39:26 +0000 | [diff] [blame] | 3032 | 	SPLIT_APPEND(data, j, eol); | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 3033 | 	j = i; | 
 | 3034 |     } | 
 | 3035 |     if (j < len) { | 
 | 3036 | 	SPLIT_APPEND(data, j, len); | 
 | 3037 |     } | 
 | 3038 |  | 
 | 3039 |     return list; | 
 | 3040 |  | 
 | 3041 |  onError: | 
 | 3042 |     Py_DECREF(list); | 
 | 3043 |     return NULL; | 
 | 3044 | } | 
 | 3045 |  | 
 | 3046 | #undef SPLIT_APPEND | 
 | 3047 |  | 
| Guido van Rossum | 5d9113d | 2003-01-29 17:58:45 +0000 | [diff] [blame] | 3048 | static PyObject * | 
 | 3049 | string_getnewargs(PyStringObject *v) | 
 | 3050 | { | 
 | 3051 | 	return Py_BuildValue("(s#)", v->ob_sval, v->ob_size); | 
 | 3052 | } | 
 | 3053 |  | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 3054 |  | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 3055 | static PyMethodDef | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 3056 | string_methods[] = { | 
| Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 3057 | 	/* Counterparts of the obsolete stropmodule functions; except | 
 | 3058 | 	   string.maketrans(). */ | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 3059 | 	{"join", (PyCFunction)string_join, METH_O, join__doc__}, | 
 | 3060 | 	{"split", (PyCFunction)string_split, METH_VARARGS, split__doc__}, | 
 | 3061 | 	{"lower", (PyCFunction)string_lower, METH_NOARGS, lower__doc__}, | 
 | 3062 | 	{"upper", (PyCFunction)string_upper, METH_NOARGS, upper__doc__}, | 
| Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 3063 | 	{"islower", (PyCFunction)string_islower, METH_NOARGS, islower__doc__}, | 
 | 3064 | 	{"isupper", (PyCFunction)string_isupper, METH_NOARGS, isupper__doc__}, | 
 | 3065 | 	{"isspace", (PyCFunction)string_isspace, METH_NOARGS, isspace__doc__}, | 
 | 3066 | 	{"isdigit", (PyCFunction)string_isdigit, METH_NOARGS, isdigit__doc__}, | 
 | 3067 | 	{"istitle", (PyCFunction)string_istitle, METH_NOARGS, istitle__doc__}, | 
 | 3068 | 	{"isalpha", (PyCFunction)string_isalpha, METH_NOARGS, isalpha__doc__}, | 
 | 3069 | 	{"isalnum", (PyCFunction)string_isalnum, METH_NOARGS, isalnum__doc__}, | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 3070 | 	{"capitalize", (PyCFunction)string_capitalize, METH_NOARGS, | 
 | 3071 | 	 capitalize__doc__}, | 
 | 3072 | 	{"count", (PyCFunction)string_count, METH_VARARGS, count__doc__}, | 
 | 3073 | 	{"endswith", (PyCFunction)string_endswith, METH_VARARGS, | 
 | 3074 | 	 endswith__doc__}, | 
 | 3075 | 	{"find", (PyCFunction)string_find, METH_VARARGS, find__doc__}, | 
 | 3076 | 	{"index", (PyCFunction)string_index, METH_VARARGS, index__doc__}, | 
 | 3077 | 	{"lstrip", (PyCFunction)string_lstrip, METH_VARARGS, lstrip__doc__}, | 
 | 3078 | 	{"replace", (PyCFunction)string_replace, METH_VARARGS, replace__doc__}, | 
 | 3079 | 	{"rfind", (PyCFunction)string_rfind, METH_VARARGS, rfind__doc__}, | 
 | 3080 | 	{"rindex", (PyCFunction)string_rindex, METH_VARARGS, rindex__doc__}, | 
 | 3081 | 	{"rstrip", (PyCFunction)string_rstrip, METH_VARARGS, rstrip__doc__}, | 
 | 3082 | 	{"startswith", (PyCFunction)string_startswith, METH_VARARGS, | 
 | 3083 | 	 startswith__doc__}, | 
 | 3084 | 	{"strip", (PyCFunction)string_strip, METH_VARARGS, strip__doc__}, | 
 | 3085 | 	{"swapcase", (PyCFunction)string_swapcase, METH_NOARGS, | 
 | 3086 | 	 swapcase__doc__}, | 
 | 3087 | 	{"translate", (PyCFunction)string_translate, METH_VARARGS, | 
 | 3088 | 	 translate__doc__}, | 
 | 3089 | 	{"title", (PyCFunction)string_title, METH_NOARGS, title__doc__}, | 
 | 3090 | 	{"ljust", (PyCFunction)string_ljust, METH_VARARGS, ljust__doc__}, | 
 | 3091 | 	{"rjust", (PyCFunction)string_rjust, METH_VARARGS, rjust__doc__}, | 
 | 3092 | 	{"center", (PyCFunction)string_center, METH_VARARGS, center__doc__}, | 
 | 3093 | 	{"zfill", (PyCFunction)string_zfill, METH_VARARGS, zfill__doc__}, | 
 | 3094 | 	{"encode", (PyCFunction)string_encode, METH_VARARGS, encode__doc__}, | 
 | 3095 | 	{"decode", (PyCFunction)string_decode, METH_VARARGS, decode__doc__}, | 
 | 3096 | 	{"expandtabs", (PyCFunction)string_expandtabs, METH_VARARGS, | 
 | 3097 | 	 expandtabs__doc__}, | 
 | 3098 | 	{"splitlines", (PyCFunction)string_splitlines, METH_VARARGS, | 
 | 3099 | 	 splitlines__doc__}, | 
| Guido van Rossum | 5d9113d | 2003-01-29 17:58:45 +0000 | [diff] [blame] | 3100 | 	{"__getnewargs__",	(PyCFunction)string_getnewargs,	METH_NOARGS}, | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 3101 | 	{NULL,     NULL}		     /* sentinel */ | 
 | 3102 | }; | 
 | 3103 |  | 
| Jeremy Hylton | 938ace6 | 2002-07-17 16:30:39 +0000 | [diff] [blame] | 3104 | static PyObject * | 
| Guido van Rossum | ae960af | 2001-08-30 03:11:59 +0000 | [diff] [blame] | 3105 | str_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds); | 
 | 3106 |  | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 3107 | static PyObject * | 
| Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 3108 | string_new(PyTypeObject *type, PyObject *args, PyObject *kwds) | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 3109 | { | 
| Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 3110 | 	PyObject *x = NULL; | 
 | 3111 | 	static char *kwlist[] = {"object", 0}; | 
 | 3112 |  | 
| Guido van Rossum | ae960af | 2001-08-30 03:11:59 +0000 | [diff] [blame] | 3113 | 	if (type != &PyString_Type) | 
 | 3114 | 		return str_subtype_new(type, args, kwds); | 
| Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 3115 | 	if (!PyArg_ParseTupleAndKeywords(args, kwds, "|O:str", kwlist, &x)) | 
 | 3116 | 		return NULL; | 
 | 3117 | 	if (x == NULL) | 
 | 3118 | 		return PyString_FromString(""); | 
 | 3119 | 	return PyObject_Str(x); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 3120 | } | 
 | 3121 |  | 
| Guido van Rossum | ae960af | 2001-08-30 03:11:59 +0000 | [diff] [blame] | 3122 | static PyObject * | 
 | 3123 | str_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds) | 
 | 3124 | { | 
| Tim Peters | af90b3e | 2001-09-12 05:18:58 +0000 | [diff] [blame] | 3125 | 	PyObject *tmp, *pnew; | 
| Guido van Rossum | ae960af | 2001-08-30 03:11:59 +0000 | [diff] [blame] | 3126 | 	int n; | 
 | 3127 |  | 
 | 3128 | 	assert(PyType_IsSubtype(type, &PyString_Type)); | 
 | 3129 | 	tmp = string_new(&PyString_Type, args, kwds); | 
 | 3130 | 	if (tmp == NULL) | 
 | 3131 | 		return NULL; | 
| Tim Peters | 5a49ade | 2001-09-11 01:41:59 +0000 | [diff] [blame] | 3132 | 	assert(PyString_CheckExact(tmp)); | 
| Tim Peters | af90b3e | 2001-09-12 05:18:58 +0000 | [diff] [blame] | 3133 | 	n = PyString_GET_SIZE(tmp); | 
 | 3134 | 	pnew = type->tp_alloc(type, n); | 
 | 3135 | 	if (pnew != NULL) { | 
 | 3136 | 		memcpy(PyString_AS_STRING(pnew), PyString_AS_STRING(tmp), n+1); | 
| Tim Peters | af90b3e | 2001-09-12 05:18:58 +0000 | [diff] [blame] | 3137 | 		((PyStringObject *)pnew)->ob_shash = | 
 | 3138 | 			((PyStringObject *)tmp)->ob_shash; | 
| Guido van Rossum | 45ec02a | 2002-08-19 21:43:18 +0000 | [diff] [blame] | 3139 | 		((PyStringObject *)pnew)->ob_sstate = SSTATE_NOT_INTERNED; | 
| Tim Peters | af90b3e | 2001-09-12 05:18:58 +0000 | [diff] [blame] | 3140 | 	} | 
| Guido van Rossum | 29d55a3 | 2001-08-31 16:11:15 +0000 | [diff] [blame] | 3141 | 	Py_DECREF(tmp); | 
| Tim Peters | af90b3e | 2001-09-12 05:18:58 +0000 | [diff] [blame] | 3142 | 	return pnew; | 
| Guido van Rossum | ae960af | 2001-08-30 03:11:59 +0000 | [diff] [blame] | 3143 | } | 
 | 3144 |  | 
| Guido van Rossum | cacfc07 | 2002-05-24 19:01:59 +0000 | [diff] [blame] | 3145 | static PyObject * | 
 | 3146 | basestring_new(PyTypeObject *type, PyObject *args, PyObject *kwds) | 
 | 3147 | { | 
 | 3148 | 	PyErr_SetString(PyExc_TypeError, | 
| Neal Norwitz | 32a7e7f | 2002-05-31 19:58:02 +0000 | [diff] [blame] | 3149 | 			"The basestring type cannot be instantiated"); | 
| Guido van Rossum | cacfc07 | 2002-05-24 19:01:59 +0000 | [diff] [blame] | 3150 | 	return NULL; | 
 | 3151 | } | 
 | 3152 |  | 
| Neil Schemenauer | a6cd4e6 | 2002-11-18 16:09:38 +0000 | [diff] [blame] | 3153 | static PyObject * | 
 | 3154 | string_mod(PyObject *v, PyObject *w) | 
 | 3155 | { | 
 | 3156 | 	if (!PyString_Check(v)) { | 
 | 3157 | 		Py_INCREF(Py_NotImplemented); | 
 | 3158 | 		return Py_NotImplemented; | 
 | 3159 | 	} | 
 | 3160 | 	return PyString_Format(v, w); | 
 | 3161 | } | 
 | 3162 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3163 | PyDoc_STRVAR(basestring_doc, | 
 | 3164 | "Type basestring cannot be instantiated; it is the base for str and unicode."); | 
| Guido van Rossum | cacfc07 | 2002-05-24 19:01:59 +0000 | [diff] [blame] | 3165 |  | 
| Neil Schemenauer | a6cd4e6 | 2002-11-18 16:09:38 +0000 | [diff] [blame] | 3166 | static PyNumberMethods string_as_number = { | 
 | 3167 | 	0,			/*nb_add*/ | 
 | 3168 | 	0,			/*nb_subtract*/ | 
 | 3169 | 	0,			/*nb_multiply*/ | 
 | 3170 | 	0, 			/*nb_divide*/ | 
 | 3171 | 	string_mod,		/*nb_remainder*/ | 
 | 3172 | }; | 
 | 3173 |  | 
 | 3174 |  | 
| Guido van Rossum | cacfc07 | 2002-05-24 19:01:59 +0000 | [diff] [blame] | 3175 | PyTypeObject PyBaseString_Type = { | 
 | 3176 | 	PyObject_HEAD_INIT(&PyType_Type) | 
 | 3177 | 	0, | 
| Neal Norwitz | 32a7e7f | 2002-05-31 19:58:02 +0000 | [diff] [blame] | 3178 | 	"basestring", | 
| Guido van Rossum | cacfc07 | 2002-05-24 19:01:59 +0000 | [diff] [blame] | 3179 | 	0, | 
 | 3180 | 	0, | 
 | 3181 |  	0,			 		/* tp_dealloc */ | 
 | 3182 | 	0,			 		/* tp_print */ | 
 | 3183 | 	0,					/* tp_getattr */ | 
 | 3184 | 	0,					/* tp_setattr */ | 
 | 3185 | 	0,					/* tp_compare */ | 
 | 3186 | 	0,		 			/* tp_repr */ | 
 | 3187 | 	0,					/* tp_as_number */ | 
 | 3188 | 	0,					/* tp_as_sequence */ | 
 | 3189 | 	0,					/* tp_as_mapping */ | 
 | 3190 | 	0,		 			/* tp_hash */ | 
 | 3191 | 	0,					/* tp_call */ | 
 | 3192 | 	0,					/* tp_str */ | 
 | 3193 | 	0,					/* tp_getattro */ | 
 | 3194 | 	0,					/* tp_setattro */ | 
 | 3195 | 	0,					/* tp_as_buffer */ | 
 | 3196 | 	Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ | 
 | 3197 | 	basestring_doc,				/* tp_doc */ | 
 | 3198 | 	0,					/* tp_traverse */ | 
 | 3199 | 	0,					/* tp_clear */ | 
 | 3200 | 	0,					/* tp_richcompare */ | 
 | 3201 | 	0,					/* tp_weaklistoffset */ | 
 | 3202 | 	0,					/* tp_iter */ | 
 | 3203 | 	0,					/* tp_iternext */ | 
 | 3204 | 	0,					/* tp_methods */ | 
 | 3205 | 	0,					/* tp_members */ | 
 | 3206 | 	0,					/* tp_getset */ | 
 | 3207 | 	&PyBaseObject_Type,			/* tp_base */ | 
 | 3208 | 	0,					/* tp_dict */ | 
 | 3209 | 	0,					/* tp_descr_get */ | 
 | 3210 | 	0,					/* tp_descr_set */ | 
 | 3211 | 	0,					/* tp_dictoffset */ | 
 | 3212 | 	0,					/* tp_init */ | 
 | 3213 | 	0,					/* tp_alloc */ | 
 | 3214 | 	basestring_new,				/* tp_new */ | 
 | 3215 | 	0,		                	/* tp_free */ | 
 | 3216 | }; | 
 | 3217 |  | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3218 | PyDoc_STRVAR(string_doc, | 
| Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 3219 | "str(object) -> string\n\ | 
 | 3220 | \n\ | 
 | 3221 | Return a nice string representation of the object.\n\ | 
| Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3222 | If the argument is a string, the return value is the same object."); | 
| Barry Warsaw | 226ae6c | 1999-10-12 19:54:53 +0000 | [diff] [blame] | 3223 |  | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3224 | PyTypeObject PyString_Type = { | 
 | 3225 | 	PyObject_HEAD_INIT(&PyType_Type) | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3226 | 	0, | 
| Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 3227 | 	"str", | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3228 | 	sizeof(PyStringObject), | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3229 | 	sizeof(char), | 
| Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 3230 |  	(destructor)string_dealloc, 		/* tp_dealloc */ | 
 | 3231 | 	(printfunc)string_print, 		/* tp_print */ | 
 | 3232 | 	0,					/* tp_getattr */ | 
 | 3233 | 	0,					/* tp_setattr */ | 
 | 3234 | 	0,					/* tp_compare */ | 
 | 3235 | 	(reprfunc)string_repr, 			/* tp_repr */ | 
| Neil Schemenauer | a6cd4e6 | 2002-11-18 16:09:38 +0000 | [diff] [blame] | 3236 | 	&string_as_number,			/* tp_as_number */ | 
| Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 3237 | 	&string_as_sequence,			/* tp_as_sequence */ | 
| Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 3238 | 	&string_as_mapping,			/* tp_as_mapping */ | 
| Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 3239 | 	(hashfunc)string_hash, 			/* tp_hash */ | 
 | 3240 | 	0,					/* tp_call */ | 
 | 3241 | 	(reprfunc)string_str,			/* tp_str */ | 
 | 3242 | 	PyObject_GenericGetAttr,		/* tp_getattro */ | 
 | 3243 | 	0,					/* tp_setattro */ | 
 | 3244 | 	&string_as_buffer,			/* tp_as_buffer */ | 
| Neil Schemenauer | a6cd4e6 | 2002-11-18 16:09:38 +0000 | [diff] [blame] | 3245 | 	Py_TPFLAGS_DEFAULT | Py_TPFLAGS_CHECKTYPES |  | 
 | 3246 | 		Py_TPFLAGS_BASETYPE,		/* tp_flags */ | 
| Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 3247 | 	string_doc,				/* tp_doc */ | 
 | 3248 | 	0,					/* tp_traverse */ | 
 | 3249 | 	0,					/* tp_clear */ | 
 | 3250 | 	(richcmpfunc)string_richcompare,	/* tp_richcompare */ | 
 | 3251 | 	0,					/* tp_weaklistoffset */ | 
 | 3252 | 	0,					/* tp_iter */ | 
 | 3253 | 	0,					/* tp_iternext */ | 
 | 3254 | 	string_methods,				/* tp_methods */ | 
 | 3255 | 	0,					/* tp_members */ | 
 | 3256 | 	0,					/* tp_getset */ | 
| Guido van Rossum | cacfc07 | 2002-05-24 19:01:59 +0000 | [diff] [blame] | 3257 | 	&PyBaseString_Type,			/* tp_base */ | 
| Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 3258 | 	0,					/* tp_dict */ | 
 | 3259 | 	0,					/* tp_descr_get */ | 
 | 3260 | 	0,					/* tp_descr_set */ | 
 | 3261 | 	0,					/* tp_dictoffset */ | 
 | 3262 | 	0,					/* tp_init */ | 
 | 3263 | 	0,					/* tp_alloc */ | 
 | 3264 | 	string_new,				/* tp_new */ | 
| Neil Schemenauer | 510492e | 2002-04-12 03:05:19 +0000 | [diff] [blame] | 3265 | 	PyObject_Del,	                	/* tp_free */ | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3266 | }; | 
 | 3267 |  | 
 | 3268 | void | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 3269 | PyString_Concat(register PyObject **pv, register PyObject *w) | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3270 | { | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3271 | 	register PyObject *v; | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 3272 | 	if (*pv == NULL) | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3273 | 		return; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3274 | 	if (w == NULL || !PyString_Check(*pv)) { | 
 | 3275 | 		Py_DECREF(*pv); | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 3276 | 		*pv = NULL; | 
 | 3277 | 		return; | 
 | 3278 | 	} | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3279 | 	v = string_concat((PyStringObject *) *pv, w); | 
 | 3280 | 	Py_DECREF(*pv); | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3281 | 	*pv = v; | 
 | 3282 | } | 
 | 3283 |  | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 3284 | void | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 3285 | PyString_ConcatAndDel(register PyObject **pv, register PyObject *w) | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 3286 | { | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3287 | 	PyString_Concat(pv, w); | 
 | 3288 | 	Py_XDECREF(w); | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 3289 | } | 
 | 3290 |  | 
 | 3291 |  | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3292 | /* The following function breaks the notion that strings are immutable: | 
 | 3293 |    it changes the size of a string.  We get away with this only if there | 
 | 3294 |    is only one module referencing the object.  You can also think of it | 
 | 3295 |    as creating a new string object and destroying the old one, only | 
 | 3296 |    more efficiently.  In any case, don't use this if the string may | 
| Tim Peters | 5de9842 | 2002-04-27 18:44:32 +0000 | [diff] [blame] | 3297 |    already be known to some other part of the code... | 
 | 3298 |    Note that if there's not enough memory to resize the string, the original | 
 | 3299 |    string object at *pv is deallocated, *pv is set to NULL, an "out of | 
 | 3300 |    memory" exception is set, and -1 is returned.  Else (on success) 0 is | 
 | 3301 |    returned, and the value in *pv may or may not be the same as on input. | 
 | 3302 |    As always, an extra byte is allocated for a trailing \0 byte (newsize | 
 | 3303 |    does *not* include that), and a trailing \0 byte is stored. | 
 | 3304 | */ | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3305 |  | 
 | 3306 | int | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 3307 | _PyString_Resize(PyObject **pv, int newsize) | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3308 | { | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3309 | 	register PyObject *v; | 
 | 3310 | 	register PyStringObject *sv; | 
| Guido van Rossum | 921842f | 1990-11-18 17:30:23 +0000 | [diff] [blame] | 3311 | 	v = *pv; | 
| Guido van Rossum | 049cd6b | 2002-10-11 00:43:48 +0000 | [diff] [blame] | 3312 | 	if (!PyString_Check(v) || v->ob_refcnt != 1 || newsize < 0) { | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3313 | 		*pv = 0; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3314 | 		Py_DECREF(v); | 
 | 3315 | 		PyErr_BadInternalCall(); | 
| Guido van Rossum | 2a9096b | 1990-10-21 22:15:08 +0000 | [diff] [blame] | 3316 | 		return -1; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3317 | 	} | 
| Guido van Rossum | 921842f | 1990-11-18 17:30:23 +0000 | [diff] [blame] | 3318 | 	/* XXX UNREF/NEWREF interface should be more symmetrical */ | 
| Tim Peters | 3459251 | 2002-07-11 06:23:50 +0000 | [diff] [blame] | 3319 | 	_Py_DEC_REFTOTAL; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3320 | 	_Py_ForgetReference(v); | 
 | 3321 | 	*pv = (PyObject *) | 
| Neil Schemenauer | 510492e | 2002-04-12 03:05:19 +0000 | [diff] [blame] | 3322 | 		PyObject_REALLOC((char *)v, | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3323 | 			sizeof(PyStringObject) + newsize * sizeof(char)); | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3324 | 	if (*pv == NULL) { | 
| Neil Schemenauer | 510492e | 2002-04-12 03:05:19 +0000 | [diff] [blame] | 3325 | 		PyObject_Del(v); | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3326 | 		PyErr_NoMemory(); | 
| Guido van Rossum | 2a9096b | 1990-10-21 22:15:08 +0000 | [diff] [blame] | 3327 | 		return -1; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3328 | 	} | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3329 | 	_Py_NewReference(*pv); | 
 | 3330 | 	sv = (PyStringObject *) *pv; | 
| Guido van Rossum | 921842f | 1990-11-18 17:30:23 +0000 | [diff] [blame] | 3331 | 	sv->ob_size = newsize; | 
 | 3332 | 	sv->ob_sval[newsize] = '\0'; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3333 | 	return 0; | 
 | 3334 | } | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3335 |  | 
 | 3336 | /* Helpers for formatstring */ | 
 | 3337 |  | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3338 | static PyObject * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 3339 | getnextarg(PyObject *args, int arglen, int *p_argidx) | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3340 | { | 
 | 3341 | 	int argidx = *p_argidx; | 
 | 3342 | 	if (argidx < arglen) { | 
 | 3343 | 		(*p_argidx)++; | 
 | 3344 | 		if (arglen < 0) | 
 | 3345 | 			return args; | 
 | 3346 | 		else | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3347 | 			return PyTuple_GetItem(args, argidx); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3348 | 	} | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3349 | 	PyErr_SetString(PyExc_TypeError, | 
 | 3350 | 			"not enough arguments for format string"); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3351 | 	return NULL; | 
 | 3352 | } | 
 | 3353 |  | 
| Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 3354 | /* Format codes | 
 | 3355 |  * F_LJUST	'-' | 
 | 3356 |  * F_SIGN	'+' | 
 | 3357 |  * F_BLANK	' ' | 
 | 3358 |  * F_ALT	'#' | 
 | 3359 |  * F_ZERO	'0' | 
 | 3360 |  */ | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3361 | #define F_LJUST (1<<0) | 
 | 3362 | #define F_SIGN	(1<<1) | 
 | 3363 | #define F_BLANK (1<<2) | 
 | 3364 | #define F_ALT	(1<<3) | 
 | 3365 | #define F_ZERO	(1<<4) | 
 | 3366 |  | 
| Guido van Rossum | a04d47b | 1997-01-21 16:12:09 +0000 | [diff] [blame] | 3367 | static int | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 3368 | formatfloat(char *buf, size_t buflen, int flags, | 
 | 3369 |             int prec, int type, PyObject *v) | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3370 | { | 
| Marc-André Lemburg | f28dd83 | 2000-06-30 10:29:57 +0000 | [diff] [blame] | 3371 | 	/* fmt = '%#.' + `prec` + `type` | 
 | 3372 | 	   worst case length = 3 + 10 (len of INT_MAX) + 1 = 14 (use 20)*/ | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3373 | 	char fmt[20]; | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3374 | 	double x; | 
| Neal Norwitz | 88fe4ff | 2002-07-28 16:44:23 +0000 | [diff] [blame] | 3375 | 	x = PyFloat_AsDouble(v); | 
 | 3376 | 	if (x == -1.0 && PyErr_Occurred()) { | 
 | 3377 | 		PyErr_SetString(PyExc_TypeError, "float argument required"); | 
| Guido van Rossum | a04d47b | 1997-01-21 16:12:09 +0000 | [diff] [blame] | 3378 | 		return -1; | 
| Neal Norwitz | 88fe4ff | 2002-07-28 16:44:23 +0000 | [diff] [blame] | 3379 | 	} | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3380 | 	if (prec < 0) | 
 | 3381 | 		prec = 6; | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3382 | 	if (type == 'f' && fabs(x)/1e25 >= 1e25) | 
 | 3383 | 		type = 'g'; | 
| Marc-André Lemburg | 79f5783 | 2002-12-29 19:44:06 +0000 | [diff] [blame] | 3384 | 	/* Worst case length calc to ensure no buffer overrun: | 
 | 3385 |  | 
 | 3386 | 	   'g' formats: | 
| Marc-André Lemburg | f28dd83 | 2000-06-30 10:29:57 +0000 | [diff] [blame] | 3387 | 	     fmt = %#.<prec>g | 
 | 3388 | 	     buf = '-' + [0-9]*prec + '.' + 'e+' + (longest exp | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 3389 | 	        for any double rep.) | 
| Marc-André Lemburg | f28dd83 | 2000-06-30 10:29:57 +0000 | [diff] [blame] | 3390 | 	     len = 1 + prec + 1 + 2 + 5 = 9 + prec | 
| Marc-André Lemburg | 79f5783 | 2002-12-29 19:44:06 +0000 | [diff] [blame] | 3391 |  | 
 | 3392 | 	   'f' formats: | 
 | 3393 | 	     buf = '-' + [0-9]*x + '.' + [0-9]*prec (with x < 50) | 
 | 3394 | 	     len = 1 + 50 + 1 + prec = 52 + prec | 
 | 3395 |  | 
| Marc-André Lemburg | f28dd83 | 2000-06-30 10:29:57 +0000 | [diff] [blame] | 3396 | 	   If prec=0 the effective precision is 1 (the leading digit is | 
| Marc-André Lemburg | 79f5783 | 2002-12-29 19:44:06 +0000 | [diff] [blame] | 3397 | 	   always given), therefore increase the length by one.  | 
 | 3398 |  | 
 | 3399 | 	*/ | 
 | 3400 | 	if ((type == 'g' && buflen <= (size_t)10 + (size_t)prec) || | 
 | 3401 | 	    (type == 'f' && buflen <= (size_t)53 + (size_t)prec)) { | 
| Marc-André Lemburg | f28dd83 | 2000-06-30 10:29:57 +0000 | [diff] [blame] | 3402 | 		PyErr_SetString(PyExc_OverflowError, | 
| Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 3403 | 			"formatted float is too long (precision too large?)"); | 
| Marc-André Lemburg | f28dd83 | 2000-06-30 10:29:57 +0000 | [diff] [blame] | 3404 | 		return -1; | 
 | 3405 | 	} | 
| Marc-André Lemburg | 79f5783 | 2002-12-29 19:44:06 +0000 | [diff] [blame] | 3406 | 	PyOS_snprintf(fmt, sizeof(fmt), "%%%s.%d%c", | 
 | 3407 | 		      (flags&F_ALT) ? "#" : "", | 
 | 3408 | 		      prec, type); | 
| Tim Peters | 885d457 | 2001-11-28 20:27:42 +0000 | [diff] [blame] | 3409 | 	PyOS_snprintf(buf, buflen, fmt, x); | 
| Guido van Rossum | a04d47b | 1997-01-21 16:12:09 +0000 | [diff] [blame] | 3410 | 	return strlen(buf); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3411 | } | 
 | 3412 |  | 
| Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 3413 | /* _PyString_FormatLong emulates the format codes d, u, o, x and X, and | 
 | 3414 |  * the F_ALT flag, for Python's long (unbounded) ints.  It's not used for | 
 | 3415 |  * Python's regular ints. | 
 | 3416 |  * Return value:  a new PyString*, or NULL if error. | 
 | 3417 |  *  .  *pbuf is set to point into it, | 
 | 3418 |  *     *plen set to the # of chars following that. | 
 | 3419 |  *     Caller must decref it when done using pbuf. | 
 | 3420 |  *     The string starting at *pbuf is of the form | 
 | 3421 |  *         "-"? ("0x" | "0X")? digit+ | 
 | 3422 |  *     "0x"/"0X" are present only for x and X conversions, with F_ALT | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 3423 |  *         set in flags.  The case of hex digits will be correct, | 
| Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 3424 |  *     There will be at least prec digits, zero-filled on the left if | 
 | 3425 |  *         necessary to get that many. | 
 | 3426 |  * val		object to be converted | 
 | 3427 |  * flags	bitmask of format flags; only F_ALT is looked at | 
 | 3428 |  * prec		minimum number of digits; 0-fill on left if needed | 
 | 3429 |  * type		a character in [duoxX]; u acts the same as d | 
 | 3430 |  * | 
 | 3431 |  * CAUTION:  o, x and X conversions on regular ints can never | 
 | 3432 |  * produce a '-' sign, but can for Python's unbounded ints. | 
 | 3433 |  */ | 
 | 3434 | PyObject* | 
 | 3435 | _PyString_FormatLong(PyObject *val, int flags, int prec, int type, | 
 | 3436 | 		     char **pbuf, int *plen) | 
 | 3437 | { | 
 | 3438 | 	PyObject *result = NULL; | 
 | 3439 | 	char *buf; | 
 | 3440 | 	int i; | 
 | 3441 | 	int sign;	/* 1 if '-', else 0 */ | 
 | 3442 | 	int len;	/* number of characters */ | 
 | 3443 | 	int numdigits;	/* len == numnondigits + numdigits */ | 
 | 3444 | 	int numnondigits = 0; | 
 | 3445 |  | 
 | 3446 | 	switch (type) { | 
 | 3447 | 	case 'd': | 
 | 3448 | 	case 'u': | 
 | 3449 | 		result = val->ob_type->tp_str(val); | 
 | 3450 | 		break; | 
 | 3451 | 	case 'o': | 
 | 3452 | 		result = val->ob_type->tp_as_number->nb_oct(val); | 
 | 3453 | 		break; | 
 | 3454 | 	case 'x': | 
 | 3455 | 	case 'X': | 
 | 3456 | 		numnondigits = 2; | 
 | 3457 | 		result = val->ob_type->tp_as_number->nb_hex(val); | 
 | 3458 | 		break; | 
 | 3459 | 	default: | 
 | 3460 | 		assert(!"'type' not in [duoxX]"); | 
 | 3461 | 	} | 
 | 3462 | 	if (!result) | 
 | 3463 | 		return NULL; | 
 | 3464 |  | 
 | 3465 | 	/* To modify the string in-place, there can only be one reference. */ | 
 | 3466 | 	if (result->ob_refcnt != 1) { | 
 | 3467 | 		PyErr_BadInternalCall(); | 
 | 3468 | 		return NULL; | 
 | 3469 | 	} | 
 | 3470 | 	buf = PyString_AsString(result); | 
 | 3471 | 	len = PyString_Size(result); | 
 | 3472 | 	if (buf[len-1] == 'L') { | 
 | 3473 | 		--len; | 
 | 3474 | 		buf[len] = '\0'; | 
 | 3475 | 	} | 
 | 3476 | 	sign = buf[0] == '-'; | 
 | 3477 | 	numnondigits += sign; | 
 | 3478 | 	numdigits = len - numnondigits; | 
 | 3479 | 	assert(numdigits > 0); | 
 | 3480 |  | 
| Tim Peters | fff5325 | 2001-04-12 18:38:48 +0000 | [diff] [blame] | 3481 | 	/* Get rid of base marker unless F_ALT */ | 
 | 3482 | 	if ((flags & F_ALT) == 0) { | 
| Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 3483 | 		/* Need to skip 0x, 0X or 0. */ | 
 | 3484 | 		int skipped = 0; | 
 | 3485 | 		switch (type) { | 
 | 3486 | 		case 'o': | 
 | 3487 | 			assert(buf[sign] == '0'); | 
 | 3488 | 			/* If 0 is only digit, leave it alone. */ | 
 | 3489 | 			if (numdigits > 1) { | 
 | 3490 | 				skipped = 1; | 
 | 3491 | 				--numdigits; | 
 | 3492 | 			} | 
 | 3493 | 			break; | 
 | 3494 | 		case 'x': | 
 | 3495 | 		case 'X': | 
 | 3496 | 			assert(buf[sign] == '0'); | 
 | 3497 | 			assert(buf[sign + 1] == 'x'); | 
 | 3498 | 			skipped = 2; | 
 | 3499 | 			numnondigits -= 2; | 
 | 3500 | 			break; | 
 | 3501 | 		} | 
 | 3502 | 		if (skipped) { | 
 | 3503 | 			buf += skipped; | 
 | 3504 | 			len -= skipped; | 
 | 3505 | 			if (sign) | 
 | 3506 | 				buf[0] = '-'; | 
 | 3507 | 		} | 
 | 3508 | 		assert(len == numnondigits + numdigits); | 
 | 3509 | 		assert(numdigits > 0); | 
 | 3510 | 	} | 
 | 3511 |  | 
 | 3512 | 	/* Fill with leading zeroes to meet minimum width. */ | 
 | 3513 | 	if (prec > numdigits) { | 
 | 3514 | 		PyObject *r1 = PyString_FromStringAndSize(NULL, | 
 | 3515 | 					numnondigits + prec); | 
 | 3516 | 		char *b1; | 
 | 3517 | 		if (!r1) { | 
 | 3518 | 			Py_DECREF(result); | 
 | 3519 | 			return NULL; | 
 | 3520 | 		} | 
 | 3521 | 		b1 = PyString_AS_STRING(r1); | 
 | 3522 | 		for (i = 0; i < numnondigits; ++i) | 
 | 3523 | 			*b1++ = *buf++; | 
 | 3524 | 		for (i = 0; i < prec - numdigits; i++) | 
 | 3525 | 			*b1++ = '0'; | 
 | 3526 | 		for (i = 0; i < numdigits; i++) | 
 | 3527 | 			*b1++ = *buf++; | 
 | 3528 | 		*b1 = '\0'; | 
 | 3529 | 		Py_DECREF(result); | 
 | 3530 | 		result = r1; | 
 | 3531 | 		buf = PyString_AS_STRING(result); | 
 | 3532 | 		len = numnondigits + prec; | 
 | 3533 | 	} | 
 | 3534 |  | 
 | 3535 | 	/* Fix up case for hex conversions. */ | 
 | 3536 | 	switch (type) { | 
 | 3537 | 	case 'x': | 
 | 3538 | 		/* Need to convert all upper case letters to lower case. */ | 
 | 3539 | 		for (i = 0; i < len; i++) | 
 | 3540 | 			if (buf[i] >= 'A' && buf[i] <= 'F') | 
 | 3541 | 				buf[i] += 'a'-'A'; | 
 | 3542 | 		break; | 
 | 3543 | 	case 'X': | 
 | 3544 | 		/* Need to convert 0x to 0X (and -0x to -0X). */ | 
 | 3545 | 		if (buf[sign + 1] == 'x') | 
 | 3546 | 			buf[sign + 1] = 'X'; | 
 | 3547 | 		break; | 
 | 3548 | 	} | 
 | 3549 | 	*pbuf = buf; | 
 | 3550 | 	*plen = len; | 
 | 3551 | 	return result; | 
 | 3552 | } | 
 | 3553 |  | 
| Guido van Rossum | a04d47b | 1997-01-21 16:12:09 +0000 | [diff] [blame] | 3554 | static int | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 3555 | formatint(char *buf, size_t buflen, int flags, | 
 | 3556 |           int prec, int type, PyObject *v) | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3557 | { | 
| Marc-André Lemburg | f28dd83 | 2000-06-30 10:29:57 +0000 | [diff] [blame] | 3558 | 	/* fmt = '%#.' + `prec` + 'l' + `type` | 
| Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 3559 | 	   worst case length = 3 + 19 (worst len of INT_MAX on 64-bit machine) | 
 | 3560 | 	   + 1 + 1 = 24 */ | 
 | 3561 | 	char fmt[64];	/* plenty big enough! */ | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3562 | 	long x; | 
| Andrew MacIntyre | 5e9c80d | 2002-02-28 11:38:24 +0000 | [diff] [blame] | 3563 |  | 
| Neal Norwitz | 88fe4ff | 2002-07-28 16:44:23 +0000 | [diff] [blame] | 3564 | 	x = PyInt_AsLong(v); | 
 | 3565 | 	if (x == -1 && PyErr_Occurred()) { | 
 | 3566 | 		PyErr_SetString(PyExc_TypeError, "int argument required"); | 
| Guido van Rossum | a04d47b | 1997-01-21 16:12:09 +0000 | [diff] [blame] | 3567 | 		return -1; | 
| Neal Norwitz | 88fe4ff | 2002-07-28 16:44:23 +0000 | [diff] [blame] | 3568 | 	} | 
| Guido van Rossum | 078151d | 2002-08-11 04:24:12 +0000 | [diff] [blame] | 3569 | 	if (x < 0 && type != 'd' && type != 'i') { | 
| Guido van Rossum | 54df53a | 2002-08-14 18:38:27 +0000 | [diff] [blame] | 3570 | 		if (PyErr_Warn(PyExc_FutureWarning, | 
| Guido van Rossum | 078151d | 2002-08-11 04:24:12 +0000 | [diff] [blame] | 3571 | 			       "%u/%o/%x/%X of negative int will return " | 
 | 3572 | 			       "a signed string in Python 2.4 and up") < 0) | 
 | 3573 | 			return -1; | 
 | 3574 | 	} | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3575 | 	if (prec < 0) | 
 | 3576 | 		prec = 1; | 
| Andrew MacIntyre | 5e9c80d | 2002-02-28 11:38:24 +0000 | [diff] [blame] | 3577 |  | 
 | 3578 | 	if ((flags & F_ALT) && | 
 | 3579 | 	    (type == 'x' || type == 'X')) { | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 3580 | 		/* When converting under %#x or %#X, there are a number | 
| Andrew MacIntyre | 5e9c80d | 2002-02-28 11:38:24 +0000 | [diff] [blame] | 3581 | 		 * of issues that cause pain: | 
 | 3582 | 		 * - when 0 is being converted, the C standard leaves off | 
 | 3583 | 		 *   the '0x' or '0X', which is inconsistent with other | 
 | 3584 | 		 *   %#x/%#X conversions and inconsistent with Python's | 
 | 3585 | 		 *   hex() function | 
 | 3586 | 		 * - there are platforms that violate the standard and | 
 | 3587 | 		 *   convert 0 with the '0x' or '0X' | 
 | 3588 | 		 *   (Metrowerks, Compaq Tru64) | 
 | 3589 | 		 * - there are platforms that give '0x' when converting | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 3590 | 		 *   under %#X, but convert 0 in accordance with the | 
| Andrew MacIntyre | 5e9c80d | 2002-02-28 11:38:24 +0000 | [diff] [blame] | 3591 | 		 *   standard (OS/2 EMX) | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 3592 | 		 * | 
| Andrew MacIntyre | 5e9c80d | 2002-02-28 11:38:24 +0000 | [diff] [blame] | 3593 | 		 * We can achieve the desired consistency by inserting our | 
 | 3594 | 		 * own '0x' or '0X' prefix, and substituting %x/%X in place | 
 | 3595 | 		 * of %#x/%#X. | 
 | 3596 | 		 * | 
 | 3597 | 		 * Note that this is the same approach as used in | 
 | 3598 | 		 * formatint() in unicodeobject.c | 
 | 3599 | 		 */ | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 3600 | 		PyOS_snprintf(fmt, sizeof(fmt), "0%c%%.%dl%c", | 
| Andrew MacIntyre | 5e9c80d | 2002-02-28 11:38:24 +0000 | [diff] [blame] | 3601 | 			      type, prec, type); | 
 | 3602 | 	} | 
 | 3603 | 	else { | 
 | 3604 | 		PyOS_snprintf(fmt, sizeof(fmt), "%%%s.%dl%c", | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 3605 | 			      (flags&F_ALT) ? "#" : "", | 
| Andrew MacIntyre | 5e9c80d | 2002-02-28 11:38:24 +0000 | [diff] [blame] | 3606 | 			      prec, type); | 
 | 3607 | 	} | 
 | 3608 |  | 
| Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 3609 | 	/* buf = '+'/'-'/'0'/'0x' + '[0-9]'*max(prec, len(x in octal)) | 
| Andrew MacIntyre | 5e9c80d | 2002-02-28 11:38:24 +0000 | [diff] [blame] | 3610 | 	 * worst case buf = '0x' + [0-9]*prec, where prec >= 11 | 
 | 3611 | 	 */ | 
| Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 3612 | 	if (buflen <= 13 || buflen <= (size_t)2 + (size_t)prec) { | 
| Marc-André Lemburg | f28dd83 | 2000-06-30 10:29:57 +0000 | [diff] [blame] | 3613 | 		PyErr_SetString(PyExc_OverflowError, | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 3614 | 		    "formatted integer is too long (precision too large?)"); | 
| Marc-André Lemburg | f28dd83 | 2000-06-30 10:29:57 +0000 | [diff] [blame] | 3615 | 		return -1; | 
 | 3616 | 	} | 
| Tim Peters | 885d457 | 2001-11-28 20:27:42 +0000 | [diff] [blame] | 3617 | 	PyOS_snprintf(buf, buflen, fmt, x); | 
| Guido van Rossum | a04d47b | 1997-01-21 16:12:09 +0000 | [diff] [blame] | 3618 | 	return strlen(buf); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3619 | } | 
 | 3620 |  | 
| Guido van Rossum | a04d47b | 1997-01-21 16:12:09 +0000 | [diff] [blame] | 3621 | static int | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 3622 | formatchar(char *buf, size_t buflen, PyObject *v) | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3623 | { | 
| Marc-André Lemburg | f28dd83 | 2000-06-30 10:29:57 +0000 | [diff] [blame] | 3624 | 	/* presume that the buffer is at least 2 characters long */ | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3625 | 	if (PyString_Check(v)) { | 
 | 3626 | 		if (!PyArg_Parse(v, "c;%c requires int or char", &buf[0])) | 
| Guido van Rossum | a04d47b | 1997-01-21 16:12:09 +0000 | [diff] [blame] | 3627 | 			return -1; | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3628 | 	} | 
 | 3629 | 	else { | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3630 | 		if (!PyArg_Parse(v, "b;%c requires int or char", &buf[0])) | 
| Guido van Rossum | a04d47b | 1997-01-21 16:12:09 +0000 | [diff] [blame] | 3631 | 			return -1; | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3632 | 	} | 
 | 3633 | 	buf[1] = '\0'; | 
| Guido van Rossum | a04d47b | 1997-01-21 16:12:09 +0000 | [diff] [blame] | 3634 | 	return 1; | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3635 | } | 
 | 3636 |  | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 3637 |  | 
| Marc-André Lemburg | f28dd83 | 2000-06-30 10:29:57 +0000 | [diff] [blame] | 3638 | /* fmt%(v1,v2,...) is roughly equivalent to sprintf(fmt, v1, v2, ...) | 
 | 3639 |  | 
 | 3640 |    FORMATBUFLEN is the length of the buffer in which the floats, ints, & | 
 | 3641 |    chars are formatted. XXX This is a magic number. Each formatting | 
 | 3642 |    routine does bounds checking to ensure no overflow, but a better | 
 | 3643 |    solution may be to malloc a buffer of appropriate size for each | 
 | 3644 |    format. For now, the current solution is sufficient. | 
 | 3645 | */ | 
 | 3646 | #define FORMATBUFLEN (size_t)120 | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3647 |  | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3648 | PyObject * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 3649 | PyString_Format(PyObject *format, PyObject *args) | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3650 | { | 
 | 3651 | 	char *fmt, *res; | 
 | 3652 | 	int fmtcnt, rescnt, reslen, arglen, argidx; | 
| Guido van Rossum | 993952b | 1996-05-21 22:44:20 +0000 | [diff] [blame] | 3653 | 	int args_owned = 0; | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 3654 | 	PyObject *result, *orig_args; | 
 | 3655 | #ifdef Py_USING_UNICODE | 
 | 3656 | 	PyObject *v, *w; | 
 | 3657 | #endif | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3658 | 	PyObject *dict = NULL; | 
 | 3659 | 	if (format == NULL || !PyString_Check(format) || args == NULL) { | 
 | 3660 | 		PyErr_BadInternalCall(); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3661 | 		return NULL; | 
 | 3662 | 	} | 
| Guido van Rossum | 90daa87 | 2000-04-10 13:47:21 +0000 | [diff] [blame] | 3663 | 	orig_args = args; | 
| Jeremy Hylton | 7802a53 | 2001-12-06 15:18:48 +0000 | [diff] [blame] | 3664 | 	fmt = PyString_AS_STRING(format); | 
 | 3665 | 	fmtcnt = PyString_GET_SIZE(format); | 
| Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 3666 | 	reslen = rescnt = fmtcnt + 100; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3667 | 	result = PyString_FromStringAndSize((char *)NULL, reslen); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3668 | 	if (result == NULL) | 
 | 3669 | 		return NULL; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3670 | 	res = PyString_AsString(result); | 
 | 3671 | 	if (PyTuple_Check(args)) { | 
| Jeremy Hylton | 7802a53 | 2001-12-06 15:18:48 +0000 | [diff] [blame] | 3672 | 		arglen = PyTuple_GET_SIZE(args); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3673 | 		argidx = 0; | 
 | 3674 | 	} | 
 | 3675 | 	else { | 
 | 3676 | 		arglen = -1; | 
 | 3677 | 		argidx = -2; | 
 | 3678 | 	} | 
| Neal Norwitz | 80a1bf4 | 2002-11-12 23:01:12 +0000 | [diff] [blame] | 3679 | 	if (args->ob_type->tp_as_mapping && !PyTuple_Check(args) && | 
 | 3680 | 	    !PyObject_TypeCheck(args, &PyBaseString_Type)) | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 3681 | 		dict = args; | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3682 | 	while (--fmtcnt >= 0) { | 
 | 3683 | 		if (*fmt != '%') { | 
 | 3684 | 			if (--rescnt < 0) { | 
| Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 3685 | 				rescnt = fmtcnt + 100; | 
 | 3686 | 				reslen += rescnt; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3687 | 				if (_PyString_Resize(&result, reslen) < 0) | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3688 | 					return NULL; | 
| Jeremy Hylton | 7802a53 | 2001-12-06 15:18:48 +0000 | [diff] [blame] | 3689 | 				res = PyString_AS_STRING(result) | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3690 | 					+ reslen - rescnt; | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 3691 | 				--rescnt; | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3692 | 			} | 
 | 3693 | 			*res++ = *fmt++; | 
 | 3694 | 		} | 
 | 3695 | 		else { | 
 | 3696 | 			/* Got a format specifier */ | 
 | 3697 | 			int flags = 0; | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3698 | 			int width = -1; | 
 | 3699 | 			int prec = -1; | 
| Guido van Rossum | 6938a29 | 1993-11-11 14:51:57 +0000 | [diff] [blame] | 3700 | 			int c = '\0'; | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3701 | 			int fill; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3702 | 			PyObject *v = NULL; | 
 | 3703 | 			PyObject *temp = NULL; | 
| Marc-André Lemburg | f28dd83 | 2000-06-30 10:29:57 +0000 | [diff] [blame] | 3704 | 			char *pbuf; | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3705 | 			int sign; | 
 | 3706 | 			int len; | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 3707 | 			char formatbuf[FORMATBUFLEN]; | 
 | 3708 | 			     /* For format{float,int,char}() */ | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 3709 | #ifdef Py_USING_UNICODE | 
| Guido van Rossum | 90daa87 | 2000-04-10 13:47:21 +0000 | [diff] [blame] | 3710 | 			char *fmt_start = fmt; | 
| Marc-André Lemburg | 542fe56 | 2001-05-02 14:21:53 +0000 | [diff] [blame] | 3711 | 		        int argidx_start = argidx; | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 3712 | #endif | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 3713 |  | 
| Guido van Rossum | da9c271 | 1996-12-05 21:58:58 +0000 | [diff] [blame] | 3714 | 			fmt++; | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 3715 | 			if (*fmt == '(') { | 
 | 3716 | 				char *keystart; | 
 | 3717 | 				int keylen; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3718 | 				PyObject *key; | 
| Guido van Rossum | 045e688 | 1997-09-08 18:30:11 +0000 | [diff] [blame] | 3719 | 				int pcount = 1; | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 3720 |  | 
 | 3721 | 				if (dict == NULL) { | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3722 | 					PyErr_SetString(PyExc_TypeError, | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 3723 | 						 "format requires a mapping"); | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 3724 | 					goto error; | 
 | 3725 | 				} | 
 | 3726 | 				++fmt; | 
 | 3727 | 				--fmtcnt; | 
 | 3728 | 				keystart = fmt; | 
| Guido van Rossum | 045e688 | 1997-09-08 18:30:11 +0000 | [diff] [blame] | 3729 | 				/* Skip over balanced parentheses */ | 
 | 3730 | 				while (pcount > 0 && --fmtcnt >= 0) { | 
 | 3731 | 					if (*fmt == ')') | 
 | 3732 | 						--pcount; | 
 | 3733 | 					else if (*fmt == '(') | 
 | 3734 | 						++pcount; | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 3735 | 					fmt++; | 
| Guido van Rossum | 045e688 | 1997-09-08 18:30:11 +0000 | [diff] [blame] | 3736 | 				} | 
 | 3737 | 				keylen = fmt - keystart - 1; | 
 | 3738 | 				if (fmtcnt < 0 || pcount > 0) { | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3739 | 					PyErr_SetString(PyExc_ValueError, | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 3740 | 						   "incomplete format key"); | 
 | 3741 | 					goto error; | 
 | 3742 | 				} | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3743 | 				key = PyString_FromStringAndSize(keystart, | 
 | 3744 | 								 keylen); | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 3745 | 				if (key == NULL) | 
 | 3746 | 					goto error; | 
| Guido van Rossum | 993952b | 1996-05-21 22:44:20 +0000 | [diff] [blame] | 3747 | 				if (args_owned) { | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3748 | 					Py_DECREF(args); | 
| Guido van Rossum | 993952b | 1996-05-21 22:44:20 +0000 | [diff] [blame] | 3749 | 					args_owned = 0; | 
 | 3750 | 				} | 
 | 3751 | 				args = PyObject_GetItem(dict, key); | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3752 | 				Py_DECREF(key); | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 3753 | 				if (args == NULL) { | 
 | 3754 | 					goto error; | 
 | 3755 | 				} | 
| Guido van Rossum | 993952b | 1996-05-21 22:44:20 +0000 | [diff] [blame] | 3756 | 				args_owned = 1; | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 3757 | 				arglen = -1; | 
 | 3758 | 				argidx = -2; | 
 | 3759 | 			} | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3760 | 			while (--fmtcnt >= 0) { | 
 | 3761 | 				switch (c = *fmt++) { | 
 | 3762 | 				case '-': flags |= F_LJUST; continue; | 
 | 3763 | 				case '+': flags |= F_SIGN; continue; | 
 | 3764 | 				case ' ': flags |= F_BLANK; continue; | 
 | 3765 | 				case '#': flags |= F_ALT; continue; | 
 | 3766 | 				case '0': flags |= F_ZERO; continue; | 
 | 3767 | 				} | 
 | 3768 | 				break; | 
 | 3769 | 			} | 
 | 3770 | 			if (c == '*') { | 
 | 3771 | 				v = getnextarg(args, arglen, &argidx); | 
 | 3772 | 				if (v == NULL) | 
 | 3773 | 					goto error; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3774 | 				if (!PyInt_Check(v)) { | 
 | 3775 | 					PyErr_SetString(PyExc_TypeError, | 
 | 3776 | 							"* wants int"); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3777 | 					goto error; | 
 | 3778 | 				} | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3779 | 				width = PyInt_AsLong(v); | 
| Guido van Rossum | 98c9eba | 1999-06-07 15:12:32 +0000 | [diff] [blame] | 3780 | 				if (width < 0) { | 
 | 3781 | 					flags |= F_LJUST; | 
 | 3782 | 					width = -width; | 
 | 3783 | 				} | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3784 | 				if (--fmtcnt >= 0) | 
 | 3785 | 					c = *fmt++; | 
 | 3786 | 			} | 
| Guido van Rossum | 9fa2c11 | 1995-02-10 17:00:37 +0000 | [diff] [blame] | 3787 | 			else if (c >= 0 && isdigit(c)) { | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3788 | 				width = c - '0'; | 
 | 3789 | 				while (--fmtcnt >= 0) { | 
| Guido van Rossum | 9fa2c11 | 1995-02-10 17:00:37 +0000 | [diff] [blame] | 3790 | 					c = Py_CHARMASK(*fmt++); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3791 | 					if (!isdigit(c)) | 
 | 3792 | 						break; | 
 | 3793 | 					if ((width*10) / 10 != width) { | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3794 | 						PyErr_SetString( | 
 | 3795 | 							PyExc_ValueError, | 
 | 3796 | 							"width too big"); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3797 | 						goto error; | 
 | 3798 | 					} | 
 | 3799 | 					width = width*10 + (c - '0'); | 
 | 3800 | 				} | 
 | 3801 | 			} | 
 | 3802 | 			if (c == '.') { | 
 | 3803 | 				prec = 0; | 
 | 3804 | 				if (--fmtcnt >= 0) | 
 | 3805 | 					c = *fmt++; | 
 | 3806 | 				if (c == '*') { | 
 | 3807 | 					v = getnextarg(args, arglen, &argidx); | 
 | 3808 | 					if (v == NULL) | 
 | 3809 | 						goto error; | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3810 | 					if (!PyInt_Check(v)) { | 
 | 3811 | 						PyErr_SetString( | 
 | 3812 | 							PyExc_TypeError, | 
 | 3813 | 							"* wants int"); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3814 | 						goto error; | 
 | 3815 | 					} | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3816 | 					prec = PyInt_AsLong(v); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3817 | 					if (prec < 0) | 
 | 3818 | 						prec = 0; | 
 | 3819 | 					if (--fmtcnt >= 0) | 
 | 3820 | 						c = *fmt++; | 
 | 3821 | 				} | 
| Guido van Rossum | 9fa2c11 | 1995-02-10 17:00:37 +0000 | [diff] [blame] | 3822 | 				else if (c >= 0 && isdigit(c)) { | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3823 | 					prec = c - '0'; | 
 | 3824 | 					while (--fmtcnt >= 0) { | 
| Guido van Rossum | 9fa2c11 | 1995-02-10 17:00:37 +0000 | [diff] [blame] | 3825 | 						c = Py_CHARMASK(*fmt++); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3826 | 						if (!isdigit(c)) | 
 | 3827 | 							break; | 
 | 3828 | 						if ((prec*10) / 10 != prec) { | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3829 | 							PyErr_SetString( | 
 | 3830 | 							    PyExc_ValueError, | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3831 | 							    "prec too big"); | 
 | 3832 | 							goto error; | 
 | 3833 | 						} | 
 | 3834 | 						prec = prec*10 + (c - '0'); | 
 | 3835 | 					} | 
 | 3836 | 				} | 
 | 3837 | 			} /* prec */ | 
 | 3838 | 			if (fmtcnt >= 0) { | 
 | 3839 | 				if (c == 'h' || c == 'l' || c == 'L') { | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3840 | 					if (--fmtcnt >= 0) | 
 | 3841 | 						c = *fmt++; | 
 | 3842 | 				} | 
 | 3843 | 			} | 
 | 3844 | 			if (fmtcnt < 0) { | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3845 | 				PyErr_SetString(PyExc_ValueError, | 
 | 3846 | 						"incomplete format"); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3847 | 				goto error; | 
 | 3848 | 			} | 
 | 3849 | 			if (c != '%') { | 
 | 3850 | 				v = getnextarg(args, arglen, &argidx); | 
 | 3851 | 				if (v == NULL) | 
 | 3852 | 					goto error; | 
 | 3853 | 			} | 
 | 3854 | 			sign = 0; | 
 | 3855 | 			fill = ' '; | 
 | 3856 | 			switch (c) { | 
 | 3857 | 			case '%': | 
| Marc-André Lemburg | f28dd83 | 2000-06-30 10:29:57 +0000 | [diff] [blame] | 3858 | 				pbuf = "%"; | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3859 | 				len = 1; | 
 | 3860 | 				break; | 
 | 3861 | 			case 's': | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 3862 | #ifdef Py_USING_UNICODE | 
| Guido van Rossum | 90daa87 | 2000-04-10 13:47:21 +0000 | [diff] [blame] | 3863 | 				if (PyUnicode_Check(v)) { | 
 | 3864 | 					fmt = fmt_start; | 
| Marc-André Lemburg | 542fe56 | 2001-05-02 14:21:53 +0000 | [diff] [blame] | 3865 | 					argidx = argidx_start; | 
| Guido van Rossum | 90daa87 | 2000-04-10 13:47:21 +0000 | [diff] [blame] | 3866 | 					goto unicode; | 
 | 3867 | 				} | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 3868 | #endif | 
| Guido van Rossum | b00c07f | 2002-10-09 19:07:53 +0000 | [diff] [blame] | 3869 | 				/* Fall through */ | 
 | 3870 |   			case 'r': | 
| Guido van Rossum | f0b7b04 | 2000-04-11 15:39:26 +0000 | [diff] [blame] | 3871 | 				if (c == 's') | 
| Jeremy Hylton | 7802a53 | 2001-12-06 15:18:48 +0000 | [diff] [blame] | 3872 | 					temp = PyObject_Str(v); | 
| Guido van Rossum | f0b7b04 | 2000-04-11 15:39:26 +0000 | [diff] [blame] | 3873 | 				else | 
 | 3874 | 					temp = PyObject_Repr(v); | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 3875 | 				if (temp == NULL) | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3876 | 					goto error; | 
| Guido van Rossum | 4a0144c | 1998-06-09 15:08:41 +0000 | [diff] [blame] | 3877 | 				if (!PyString_Check(temp)) { | 
| Guido van Rossum | 8052f89 | 2002-10-09 19:14:30 +0000 | [diff] [blame] | 3878 | 					/* XXX Note: this should never happen, | 
 | 3879 | 					   since PyObject_Repr() and | 
 | 3880 | 					   PyObject_Str() assure this */ | 
| Guido van Rossum | 4a0144c | 1998-06-09 15:08:41 +0000 | [diff] [blame] | 3881 | 					PyErr_SetString(PyExc_TypeError, | 
| Guido van Rossum | 8052f89 | 2002-10-09 19:14:30 +0000 | [diff] [blame] | 3882 | 					  "%s argument has non-string str()"); | 
| Jeremy Hylton | 7802a53 | 2001-12-06 15:18:48 +0000 | [diff] [blame] | 3883 | 					Py_DECREF(temp); | 
| Guido van Rossum | 4a0144c | 1998-06-09 15:08:41 +0000 | [diff] [blame] | 3884 | 					goto error; | 
 | 3885 | 				} | 
| Jeremy Hylton | 7802a53 | 2001-12-06 15:18:48 +0000 | [diff] [blame] | 3886 | 				pbuf = PyString_AS_STRING(temp); | 
 | 3887 | 				len = PyString_GET_SIZE(temp); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3888 | 				if (prec >= 0 && len > prec) | 
 | 3889 | 					len = prec; | 
 | 3890 | 				break; | 
 | 3891 | 			case 'i': | 
 | 3892 | 			case 'd': | 
 | 3893 | 			case 'u': | 
 | 3894 | 			case 'o': | 
 | 3895 | 			case 'x': | 
 | 3896 | 			case 'X': | 
 | 3897 | 				if (c == 'i') | 
 | 3898 | 					c = 'd'; | 
| Tim Peters | a3a3a03 | 2000-11-30 05:22:44 +0000 | [diff] [blame] | 3899 | 				if (PyLong_Check(v)) { | 
| Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 3900 | 					temp = _PyString_FormatLong(v, flags, | 
 | 3901 | 						prec, c, &pbuf, &len); | 
 | 3902 | 					if (!temp) | 
 | 3903 | 						goto error; | 
 | 3904 | 					/* unbounded ints can always produce | 
 | 3905 | 					   a sign character! */ | 
 | 3906 | 					sign = 1; | 
| Guido van Rossum | 4acdc23 | 1997-01-29 06:00:24 +0000 | [diff] [blame] | 3907 | 				} | 
| Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 3908 | 				else { | 
 | 3909 | 					pbuf = formatbuf; | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 3910 | 					len = formatint(pbuf, | 
 | 3911 | 							sizeof(formatbuf), | 
| Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 3912 | 							flags, prec, c, v); | 
 | 3913 | 					if (len < 0) | 
 | 3914 | 						goto error; | 
 | 3915 | 					/* only d conversion is signed */ | 
 | 3916 | 					sign = c == 'd'; | 
 | 3917 | 				} | 
 | 3918 | 				if (flags & F_ZERO) | 
 | 3919 | 					fill = '0'; | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3920 | 				break; | 
 | 3921 | 			case 'e': | 
 | 3922 | 			case 'E': | 
 | 3923 | 			case 'f': | 
 | 3924 | 			case 'g': | 
 | 3925 | 			case 'G': | 
| Marc-André Lemburg | f28dd83 | 2000-06-30 10:29:57 +0000 | [diff] [blame] | 3926 | 				pbuf = formatbuf; | 
| Guido van Rossum | 3aa3fc4 | 2002-04-15 13:48:52 +0000 | [diff] [blame] | 3927 | 				len = formatfloat(pbuf, sizeof(formatbuf), | 
 | 3928 | 						  flags, prec, c, v); | 
| Guido van Rossum | a04d47b | 1997-01-21 16:12:09 +0000 | [diff] [blame] | 3929 | 				if (len < 0) | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3930 | 					goto error; | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3931 | 				sign = 1; | 
| Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 3932 | 				if (flags & F_ZERO) | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3933 | 					fill = '0'; | 
 | 3934 | 				break; | 
 | 3935 | 			case 'c': | 
| Walter Dörwald | 43440a6 | 2003-03-31 18:07:50 +0000 | [diff] [blame] | 3936 | #ifdef Py_USING_UNICODE | 
 | 3937 | 				if (PyUnicode_Check(v)) { | 
 | 3938 | 					fmt = fmt_start; | 
 | 3939 | 					argidx = argidx_start; | 
 | 3940 | 					goto unicode; | 
 | 3941 | 				} | 
 | 3942 | #endif | 
| Marc-André Lemburg | f28dd83 | 2000-06-30 10:29:57 +0000 | [diff] [blame] | 3943 | 				pbuf = formatbuf; | 
 | 3944 | 				len = formatchar(pbuf, sizeof(formatbuf), v); | 
| Guido van Rossum | a04d47b | 1997-01-21 16:12:09 +0000 | [diff] [blame] | 3945 | 				if (len < 0) | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3946 | 					goto error; | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3947 | 				break; | 
 | 3948 | 			default: | 
| Guido van Rossum | 045e688 | 1997-09-08 18:30:11 +0000 | [diff] [blame] | 3949 | 				PyErr_Format(PyExc_ValueError, | 
| Andrew M. Kuchling | 6ca8917 | 2000-12-15 13:07:46 +0000 | [diff] [blame] | 3950 | 				  "unsupported format character '%c' (0x%x) " | 
 | 3951 | 				  "at index %i", | 
| Guido van Rossum | efc1188 | 2002-09-12 14:43:41 +0000 | [diff] [blame] | 3952 | 				  c, c, | 
 | 3953 | 				  (int)(fmt - 1 - PyString_AsString(format))); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3954 | 				goto error; | 
 | 3955 | 			} | 
 | 3956 | 			if (sign) { | 
| Marc-André Lemburg | f28dd83 | 2000-06-30 10:29:57 +0000 | [diff] [blame] | 3957 | 				if (*pbuf == '-' || *pbuf == '+') { | 
 | 3958 | 					sign = *pbuf++; | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3959 | 					len--; | 
 | 3960 | 				} | 
 | 3961 | 				else if (flags & F_SIGN) | 
 | 3962 | 					sign = '+'; | 
 | 3963 | 				else if (flags & F_BLANK) | 
 | 3964 | 					sign = ' '; | 
 | 3965 | 				else | 
| Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 3966 | 					sign = 0; | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3967 | 			} | 
 | 3968 | 			if (width < len) | 
 | 3969 | 				width = len; | 
| Guido van Rossum | 049cd6b | 2002-10-11 00:43:48 +0000 | [diff] [blame] | 3970 | 			if (rescnt - (sign != 0) < width) { | 
| Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 3971 | 				reslen -= rescnt; | 
 | 3972 | 				rescnt = width + fmtcnt + 100; | 
 | 3973 | 				reslen += rescnt; | 
| Guido van Rossum | 049cd6b | 2002-10-11 00:43:48 +0000 | [diff] [blame] | 3974 | 				if (reslen < 0) { | 
 | 3975 | 					Py_DECREF(result); | 
 | 3976 | 					return PyErr_NoMemory(); | 
 | 3977 | 				} | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3978 | 				if (_PyString_Resize(&result, reslen) < 0) | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3979 | 					return NULL; | 
| Jeremy Hylton | 7802a53 | 2001-12-06 15:18:48 +0000 | [diff] [blame] | 3980 | 				res = PyString_AS_STRING(result) | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 3981 | 					+ reslen - rescnt; | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3982 | 			} | 
 | 3983 | 			if (sign) { | 
| Guido van Rossum | 71e57d0 | 1993-11-11 15:03:51 +0000 | [diff] [blame] | 3984 | 				if (fill != ' ') | 
 | 3985 | 					*res++ = sign; | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 3986 | 				rescnt--; | 
 | 3987 | 				if (width > len) | 
 | 3988 | 					width--; | 
 | 3989 | 			} | 
| Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 3990 | 			if ((flags & F_ALT) && (c == 'x' || c == 'X')) { | 
 | 3991 | 				assert(pbuf[0] == '0'); | 
| Tim Peters | fff5325 | 2001-04-12 18:38:48 +0000 | [diff] [blame] | 3992 | 				assert(pbuf[1] == c); | 
 | 3993 | 				if (fill != ' ') { | 
 | 3994 | 					*res++ = *pbuf++; | 
 | 3995 | 					*res++ = *pbuf++; | 
| Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 3996 | 				} | 
| Tim Peters | fff5325 | 2001-04-12 18:38:48 +0000 | [diff] [blame] | 3997 | 				rescnt -= 2; | 
 | 3998 | 				width -= 2; | 
 | 3999 | 				if (width < 0) | 
 | 4000 | 					width = 0; | 
 | 4001 | 				len -= 2; | 
| Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 4002 | 			} | 
 | 4003 | 			if (width > len && !(flags & F_LJUST)) { | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 4004 | 				do { | 
 | 4005 | 					--rescnt; | 
 | 4006 | 					*res++ = fill; | 
 | 4007 | 				} while (--width > len); | 
 | 4008 | 			} | 
| Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 4009 | 			if (fill == ' ') { | 
 | 4010 | 				if (sign) | 
 | 4011 | 					*res++ = sign; | 
 | 4012 | 				if ((flags & F_ALT) && | 
| Tim Peters | fff5325 | 2001-04-12 18:38:48 +0000 | [diff] [blame] | 4013 | 				    (c == 'x' || c == 'X')) { | 
 | 4014 | 					assert(pbuf[0] == '0'); | 
 | 4015 | 					assert(pbuf[1] == c); | 
| Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 4016 | 					*res++ = *pbuf++; | 
 | 4017 | 					*res++ = *pbuf++; | 
 | 4018 | 				} | 
 | 4019 | 			} | 
| Marc-André Lemburg | f28dd83 | 2000-06-30 10:29:57 +0000 | [diff] [blame] | 4020 | 			memcpy(res, pbuf, len); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 4021 | 			res += len; | 
 | 4022 | 			rescnt -= len; | 
 | 4023 | 			while (--width >= len) { | 
 | 4024 | 				--rescnt; | 
 | 4025 | 				*res++ = ' '; | 
 | 4026 | 			} | 
| Guido van Rossum | 9fa2c11 | 1995-02-10 17:00:37 +0000 | [diff] [blame] | 4027 |                         if (dict && (argidx < arglen) && c != '%') { | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 4028 |                                 PyErr_SetString(PyExc_TypeError, | 
| Raymond Hettinger | 0ebac97 | 2002-05-21 15:14:57 +0000 | [diff] [blame] | 4029 |                                            "not all arguments converted during string formatting"); | 
| Guido van Rossum | 013142a | 1994-08-30 08:19:36 +0000 | [diff] [blame] | 4030 |                                 goto error; | 
 | 4031 |                         } | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 4032 | 			Py_XDECREF(temp); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 4033 | 		} /* '%' */ | 
 | 4034 | 	} /* until end */ | 
| Guido van Rossum | caeaafc | 1995-02-27 10:13:23 +0000 | [diff] [blame] | 4035 | 	if (argidx < arglen && !dict) { | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 4036 | 		PyErr_SetString(PyExc_TypeError, | 
| Raymond Hettinger | 0ebac97 | 2002-05-21 15:14:57 +0000 | [diff] [blame] | 4037 | 				"not all arguments converted during string formatting"); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 4038 | 		goto error; | 
 | 4039 | 	} | 
| Guido van Rossum | 1109fbc | 1998-04-10 22:16:39 +0000 | [diff] [blame] | 4040 | 	if (args_owned) { | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 4041 | 		Py_DECREF(args); | 
| Guido van Rossum | 1109fbc | 1998-04-10 22:16:39 +0000 | [diff] [blame] | 4042 | 	} | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 4043 | 	_PyString_Resize(&result, reslen - rescnt); | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 4044 | 	return result; | 
| Guido van Rossum | 90daa87 | 2000-04-10 13:47:21 +0000 | [diff] [blame] | 4045 |  | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 4046 | #ifdef Py_USING_UNICODE | 
| Guido van Rossum | 90daa87 | 2000-04-10 13:47:21 +0000 | [diff] [blame] | 4047 |  unicode: | 
 | 4048 | 	if (args_owned) { | 
 | 4049 | 		Py_DECREF(args); | 
 | 4050 | 		args_owned = 0; | 
 | 4051 | 	} | 
| Marc-André Lemburg | 542fe56 | 2001-05-02 14:21:53 +0000 | [diff] [blame] | 4052 | 	/* Fiddle args right (remove the first argidx arguments) */ | 
| Guido van Rossum | 90daa87 | 2000-04-10 13:47:21 +0000 | [diff] [blame] | 4053 | 	if (PyTuple_Check(orig_args) && argidx > 0) { | 
 | 4054 | 		PyObject *v; | 
 | 4055 | 		int n = PyTuple_GET_SIZE(orig_args) - argidx; | 
 | 4056 | 		v = PyTuple_New(n); | 
 | 4057 | 		if (v == NULL) | 
 | 4058 | 			goto error; | 
 | 4059 | 		while (--n >= 0) { | 
 | 4060 | 			PyObject *w = PyTuple_GET_ITEM(orig_args, n + argidx); | 
 | 4061 | 			Py_INCREF(w); | 
 | 4062 | 			PyTuple_SET_ITEM(v, n, w); | 
 | 4063 | 		} | 
 | 4064 | 		args = v; | 
 | 4065 | 	} else { | 
 | 4066 | 		Py_INCREF(orig_args); | 
 | 4067 | 		args = orig_args; | 
 | 4068 | 	} | 
| Marc-André Lemburg | 53f3d4a | 2000-10-07 08:54:09 +0000 | [diff] [blame] | 4069 | 	args_owned = 1; | 
 | 4070 | 	/* Take what we have of the result and let the Unicode formatting | 
 | 4071 | 	   function format the rest of the input. */ | 
| Guido van Rossum | 90daa87 | 2000-04-10 13:47:21 +0000 | [diff] [blame] | 4072 | 	rescnt = res - PyString_AS_STRING(result); | 
| Marc-André Lemburg | 53f3d4a | 2000-10-07 08:54:09 +0000 | [diff] [blame] | 4073 | 	if (_PyString_Resize(&result, rescnt)) | 
 | 4074 | 		goto error; | 
| Guido van Rossum | 90daa87 | 2000-04-10 13:47:21 +0000 | [diff] [blame] | 4075 | 	fmtcnt = PyString_GET_SIZE(format) - \ | 
 | 4076 | 		 (fmt - PyString_AS_STRING(format)); | 
| Marc-André Lemburg | 53f3d4a | 2000-10-07 08:54:09 +0000 | [diff] [blame] | 4077 | 	format = PyUnicode_Decode(fmt, fmtcnt, NULL, NULL); | 
 | 4078 | 	if (format == NULL) | 
| Guido van Rossum | 90daa87 | 2000-04-10 13:47:21 +0000 | [diff] [blame] | 4079 | 		goto error; | 
| Marc-André Lemburg | 53f3d4a | 2000-10-07 08:54:09 +0000 | [diff] [blame] | 4080 | 	v = PyUnicode_Format(format, args); | 
| Guido van Rossum | 90daa87 | 2000-04-10 13:47:21 +0000 | [diff] [blame] | 4081 | 	Py_DECREF(format); | 
| Marc-André Lemburg | 53f3d4a | 2000-10-07 08:54:09 +0000 | [diff] [blame] | 4082 | 	if (v == NULL) | 
 | 4083 | 		goto error; | 
 | 4084 | 	/* Paste what we have (result) to what the Unicode formatting | 
 | 4085 | 	   function returned (v) and return the result (or error) */ | 
 | 4086 | 	w = PyUnicode_Concat(result, v); | 
 | 4087 | 	Py_DECREF(result); | 
 | 4088 | 	Py_DECREF(v); | 
| Guido van Rossum | 90daa87 | 2000-04-10 13:47:21 +0000 | [diff] [blame] | 4089 | 	Py_DECREF(args); | 
| Marc-André Lemburg | 53f3d4a | 2000-10-07 08:54:09 +0000 | [diff] [blame] | 4090 | 	return w; | 
| Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 4091 | #endif /* Py_USING_UNICODE */ | 
| Tim Peters | b3d8d1f | 2001-04-28 05:38:26 +0000 | [diff] [blame] | 4092 |  | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 4093 |  error: | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 4094 | 	Py_DECREF(result); | 
| Guido van Rossum | 1109fbc | 1998-04-10 22:16:39 +0000 | [diff] [blame] | 4095 | 	if (args_owned) { | 
| Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 4096 | 		Py_DECREF(args); | 
| Guido van Rossum | 1109fbc | 1998-04-10 22:16:39 +0000 | [diff] [blame] | 4097 | 	} | 
| Guido van Rossum | e537240 | 1993-03-16 12:15:04 +0000 | [diff] [blame] | 4098 | 	return NULL; | 
 | 4099 | } | 
| Guido van Rossum | 2a61e74 | 1997-01-18 07:55:05 +0000 | [diff] [blame] | 4100 |  | 
| Guido van Rossum | 2a61e74 | 1997-01-18 07:55:05 +0000 | [diff] [blame] | 4101 | void | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 4102 | PyString_InternInPlace(PyObject **p) | 
| Guido van Rossum | 2a61e74 | 1997-01-18 07:55:05 +0000 | [diff] [blame] | 4103 | { | 
 | 4104 | 	register PyStringObject *s = (PyStringObject *)(*p); | 
 | 4105 | 	PyObject *t; | 
 | 4106 | 	if (s == NULL || !PyString_Check(s)) | 
 | 4107 | 		Py_FatalError("PyString_InternInPlace: strings only please!"); | 
| Guido van Rossum | 45ec02a | 2002-08-19 21:43:18 +0000 | [diff] [blame] | 4108 | 	if (PyString_CHECK_INTERNED(s)) | 
| Guido van Rossum | 2a61e74 | 1997-01-18 07:55:05 +0000 | [diff] [blame] | 4109 | 		return; | 
| Guido van Rossum | 2a61e74 | 1997-01-18 07:55:05 +0000 | [diff] [blame] | 4110 | 	if (interned == NULL) { | 
 | 4111 | 		interned = PyDict_New(); | 
| Guido van Rossum | 45ec02a | 2002-08-19 21:43:18 +0000 | [diff] [blame] | 4112 | 		if (interned == NULL) { | 
 | 4113 | 			PyErr_Clear(); /* Don't leave an exception */ | 
| Guido van Rossum | 2a61e74 | 1997-01-18 07:55:05 +0000 | [diff] [blame] | 4114 | 			return; | 
| Guido van Rossum | 45ec02a | 2002-08-19 21:43:18 +0000 | [diff] [blame] | 4115 | 		} | 
| Guido van Rossum | 2a61e74 | 1997-01-18 07:55:05 +0000 | [diff] [blame] | 4116 | 	} | 
 | 4117 | 	if ((t = PyDict_GetItem(interned, (PyObject *)s)) != NULL) { | 
 | 4118 | 		Py_INCREF(t); | 
| Guido van Rossum | 45ec02a | 2002-08-19 21:43:18 +0000 | [diff] [blame] | 4119 | 		Py_DECREF(*p); | 
 | 4120 | 		*p = t; | 
| Guido van Rossum | 2a61e74 | 1997-01-18 07:55:05 +0000 | [diff] [blame] | 4121 | 		return; | 
 | 4122 | 	} | 
| Guido van Rossum | 45ec02a | 2002-08-19 21:43:18 +0000 | [diff] [blame] | 4123 | 	/* Ensure that only true string objects appear in the intern dict */ | 
 | 4124 | 	if (!PyString_CheckExact(s)) { | 
| Tim Peters | 111f609 | 2001-09-12 07:54:51 +0000 | [diff] [blame] | 4125 | 		t = PyString_FromStringAndSize(PyString_AS_STRING(s), | 
 | 4126 | 						PyString_GET_SIZE(s)); | 
| Guido van Rossum | 45ec02a | 2002-08-19 21:43:18 +0000 | [diff] [blame] | 4127 | 		if (t == NULL) { | 
 | 4128 | 			PyErr_Clear(); | 
 | 4129 | 			return; | 
| Tim Peters | 111f609 | 2001-09-12 07:54:51 +0000 | [diff] [blame] | 4130 | 		} | 
| Guido van Rossum | 45ec02a | 2002-08-19 21:43:18 +0000 | [diff] [blame] | 4131 | 	} else { | 
 | 4132 | 		t = (PyObject*) s; | 
 | 4133 | 		Py_INCREF(t); | 
| Guido van Rossum | 2a61e74 | 1997-01-18 07:55:05 +0000 | [diff] [blame] | 4134 | 	} | 
| Guido van Rossum | 45ec02a | 2002-08-19 21:43:18 +0000 | [diff] [blame] | 4135 |  | 
 | 4136 | 	if (PyDict_SetItem(interned, t, t) == 0) { | 
 | 4137 | 		/* The two references in interned are not counted by | 
 | 4138 | 		refcnt.  The string deallocator will take care of this */ | 
 | 4139 | 		((PyObject *)t)->ob_refcnt-=2; | 
 | 4140 | 		PyString_CHECK_INTERNED(t) = SSTATE_INTERNED_MORTAL; | 
 | 4141 | 		Py_DECREF(*p); | 
 | 4142 | 		*p = t; | 
 | 4143 | 		return; | 
 | 4144 | 	} | 
 | 4145 | 	Py_DECREF(t); | 
| Guido van Rossum | 2a61e74 | 1997-01-18 07:55:05 +0000 | [diff] [blame] | 4146 | 	PyErr_Clear(); | 
 | 4147 | } | 
 | 4148 |  | 
| Guido van Rossum | 45ec02a | 2002-08-19 21:43:18 +0000 | [diff] [blame] | 4149 | void | 
 | 4150 | PyString_InternImmortal(PyObject **p) | 
 | 4151 | { | 
 | 4152 | 	PyString_InternInPlace(p); | 
 | 4153 | 	if (PyString_CHECK_INTERNED(*p) != SSTATE_INTERNED_IMMORTAL) { | 
 | 4154 | 		PyString_CHECK_INTERNED(*p) = SSTATE_INTERNED_IMMORTAL; | 
 | 4155 | 		Py_INCREF(*p); | 
 | 4156 | 	} | 
 | 4157 | } | 
 | 4158 |  | 
| Guido van Rossum | 2a61e74 | 1997-01-18 07:55:05 +0000 | [diff] [blame] | 4159 |  | 
 | 4160 | PyObject * | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 4161 | PyString_InternFromString(const char *cp) | 
| Guido van Rossum | 2a61e74 | 1997-01-18 07:55:05 +0000 | [diff] [blame] | 4162 | { | 
 | 4163 | 	PyObject *s = PyString_FromString(cp); | 
 | 4164 | 	if (s == NULL) | 
 | 4165 | 		return NULL; | 
 | 4166 | 	PyString_InternInPlace(&s); | 
 | 4167 | 	return s; | 
 | 4168 | } | 
 | 4169 |  | 
| Guido van Rossum | 8cf0476 | 1997-08-02 02:57:45 +0000 | [diff] [blame] | 4170 | void | 
| Fred Drake | ba09633 | 2000-07-09 07:04:36 +0000 | [diff] [blame] | 4171 | PyString_Fini(void) | 
| Guido van Rossum | 8cf0476 | 1997-08-02 02:57:45 +0000 | [diff] [blame] | 4172 | { | 
 | 4173 | 	int i; | 
| Guido van Rossum | 8cf0476 | 1997-08-02 02:57:45 +0000 | [diff] [blame] | 4174 | 	for (i = 0; i < UCHAR_MAX + 1; i++) { | 
 | 4175 | 		Py_XDECREF(characters[i]); | 
 | 4176 | 		characters[i] = NULL; | 
 | 4177 | 	} | 
| Guido van Rossum | 8cf0476 | 1997-08-02 02:57:45 +0000 | [diff] [blame] | 4178 | 	Py_XDECREF(nullstring); | 
 | 4179 | 	nullstring = NULL; | 
| Guido van Rossum | 8cf0476 | 1997-08-02 02:57:45 +0000 | [diff] [blame] | 4180 | } | 
| Barry Warsaw | a903ad98 | 2001-02-23 16:40:48 +0000 | [diff] [blame] | 4181 |  | 
| Barry Warsaw | a903ad98 | 2001-02-23 16:40:48 +0000 | [diff] [blame] | 4182 | void _Py_ReleaseInternedStrings(void) | 
 | 4183 | { | 
| Guido van Rossum | 45ec02a | 2002-08-19 21:43:18 +0000 | [diff] [blame] | 4184 | 	PyObject *keys; | 
 | 4185 | 	PyStringObject *s; | 
 | 4186 | 	int i, n; | 
 | 4187 |  | 
 | 4188 | 	if (interned == NULL || !PyDict_Check(interned)) | 
 | 4189 | 		return; | 
 | 4190 | 	keys = PyDict_Keys(interned); | 
 | 4191 | 	if (keys == NULL || !PyList_Check(keys)) { | 
 | 4192 | 		PyErr_Clear(); | 
 | 4193 | 		return; | 
| Barry Warsaw | a903ad98 | 2001-02-23 16:40:48 +0000 | [diff] [blame] | 4194 | 	} | 
| Guido van Rossum | 45ec02a | 2002-08-19 21:43:18 +0000 | [diff] [blame] | 4195 |  | 
 | 4196 | 	/* Since _Py_ReleaseInternedStrings() is intended to help a leak | 
 | 4197 | 	   detector, interned strings are not forcibly deallocated; rather, we | 
 | 4198 | 	   give them their stolen references back, and then clear and DECREF | 
 | 4199 | 	   the interned dict. */ | 
 | 4200 | 	    | 
 | 4201 | 	fprintf(stderr, "releasing interned strings\n"); | 
 | 4202 | 	n = PyList_GET_SIZE(keys); | 
 | 4203 | 	for (i = 0; i < n; i++) { | 
 | 4204 | 		s = (PyStringObject *) PyList_GET_ITEM(keys, i); | 
 | 4205 | 		switch (s->ob_sstate) { | 
 | 4206 | 		case SSTATE_NOT_INTERNED: | 
 | 4207 | 			/* XXX Shouldn't happen */ | 
 | 4208 | 			break; | 
 | 4209 | 		case SSTATE_INTERNED_IMMORTAL: | 
 | 4210 | 			s->ob_refcnt += 1; | 
 | 4211 | 			break; | 
 | 4212 | 		case SSTATE_INTERNED_MORTAL: | 
 | 4213 | 			s->ob_refcnt += 2; | 
 | 4214 | 			break; | 
 | 4215 | 		default: | 
 | 4216 | 			Py_FatalError("Inconsistent interned string state."); | 
 | 4217 | 		} | 
 | 4218 | 		s->ob_sstate = SSTATE_NOT_INTERNED; | 
 | 4219 | 	} | 
 | 4220 | 	Py_DECREF(keys); | 
 | 4221 | 	PyDict_Clear(interned); | 
 | 4222 | 	Py_DECREF(interned); | 
 | 4223 | 	interned = NULL; | 
| Barry Warsaw | a903ad98 | 2001-02-23 16:40:48 +0000 | [diff] [blame] | 4224 | } |