Benjamin Peterson | 4116f36 | 2008-05-27 00:36:20 +0000 | [diff] [blame] | 1 | /* bytes object implementation */ |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 2 | |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 3 | #define PY_SSIZE_T_CLEAN |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 4 | |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 5 | #include "Python.h" |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 6 | |
Gregory P. Smith | 60d241f | 2007-10-16 06:31:30 +0000 | [diff] [blame] | 7 | #include "bytes_methods.h" |
Mark Dickinson | fd24b32 | 2008-12-06 15:33:31 +0000 | [diff] [blame] | 8 | #include <stddef.h> |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 9 | |
Neal Norwitz | 2bad970 | 2007-08-27 06:19:22 +0000 | [diff] [blame] | 10 | static Py_ssize_t |
Travis E. Oliphant | 8ae62b6 | 2007-09-23 02:00:13 +0000 | [diff] [blame] | 11 | _getbuffer(PyObject *obj, Py_buffer *view) |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 12 | { |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 13 | PyBufferProcs *buffer = Py_TYPE(obj)->tp_as_buffer; |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 14 | |
Gregory P. Smith | 60d241f | 2007-10-16 06:31:30 +0000 | [diff] [blame] | 15 | if (buffer == NULL || buffer->bf_getbuffer == NULL) |
Guido van Rossum | a74184e | 2007-08-29 04:05:57 +0000 | [diff] [blame] | 16 | { |
| 17 | PyErr_Format(PyExc_TypeError, |
| 18 | "Type %.100s doesn't support the buffer API", |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 19 | Py_TYPE(obj)->tp_name); |
Guido van Rossum | a74184e | 2007-08-29 04:05:57 +0000 | [diff] [blame] | 20 | return -1; |
| 21 | } |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 22 | |
Travis E. Oliphant | b99f762 | 2007-08-18 11:21:56 +0000 | [diff] [blame] | 23 | if (buffer->bf_getbuffer(obj, view, PyBUF_SIMPLE) < 0) |
| 24 | return -1; |
| 25 | return view->len; |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 26 | } |
| 27 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 28 | #ifdef COUNT_ALLOCS |
Benjamin Peterson | a4a37fe | 2009-01-11 17:13:55 +0000 | [diff] [blame] | 29 | Py_ssize_t null_strings, one_strings; |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 30 | #endif |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 31 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 32 | static PyBytesObject *characters[UCHAR_MAX + 1]; |
| 33 | static PyBytesObject *nullstring; |
| 34 | |
Mark Dickinson | fd24b32 | 2008-12-06 15:33:31 +0000 | [diff] [blame] | 35 | /* PyBytesObject_SIZE gives the basic size of a string; any memory allocation |
| 36 | for a string of length n should request PyBytesObject_SIZE + n bytes. |
| 37 | |
| 38 | Using PyBytesObject_SIZE instead of sizeof(PyBytesObject) saves |
| 39 | 3 bytes per string allocation on a typical system. |
| 40 | */ |
| 41 | #define PyBytesObject_SIZE (offsetof(PyBytesObject, ob_sval) + 1) |
| 42 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 43 | /* |
| 44 | For both PyBytes_FromString() and PyBytes_FromStringAndSize(), the |
| 45 | parameter `size' denotes number of characters to allocate, not counting any |
| 46 | null terminating character. |
| 47 | |
| 48 | For PyBytes_FromString(), the parameter `str' points to a null-terminated |
| 49 | string containing exactly `size' bytes. |
| 50 | |
| 51 | For PyBytes_FromStringAndSize(), the parameter the parameter `str' is |
| 52 | either NULL or else points to a string containing at least `size' bytes. |
| 53 | For PyBytes_FromStringAndSize(), the string in the `str' parameter does |
| 54 | not have to be null-terminated. (Therefore it is safe to construct a |
| 55 | substring by calling `PyBytes_FromStringAndSize(origstring, substrlen)'.) |
| 56 | If `str' is NULL then PyBytes_FromStringAndSize() will allocate `size+1' |
| 57 | bytes (setting the last byte to the null terminating character) and you can |
| 58 | fill in the data yourself. If `str' is non-NULL then the resulting |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 59 | PyBytes object must be treated as immutable and you must not fill in nor |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 60 | alter the data yourself, since the strings may be shared. |
| 61 | |
| 62 | The PyObject member `op->ob_size', which denotes the number of "extra |
| 63 | items" in a variable-size object, will contain the number of bytes |
| 64 | allocated for string data, not counting the null terminating character. It |
| 65 | is therefore equal to the equal to the `size' parameter (for |
| 66 | PyBytes_FromStringAndSize()) or the length of the string in the `str' |
| 67 | parameter (for PyBytes_FromString()). |
| 68 | */ |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 69 | PyObject * |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 70 | PyBytes_FromStringAndSize(const char *str, Py_ssize_t size) |
Guido van Rossum | d624f18 | 2006-04-24 13:47:05 +0000 | [diff] [blame] | 71 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 72 | register PyBytesObject *op; |
| 73 | if (size < 0) { |
| 74 | PyErr_SetString(PyExc_SystemError, |
| 75 | "Negative size passed to PyBytes_FromStringAndSize"); |
| 76 | return NULL; |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 77 | } |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 78 | if (size == 0 && (op = nullstring) != NULL) { |
| 79 | #ifdef COUNT_ALLOCS |
| 80 | null_strings++; |
| 81 | #endif |
| 82 | Py_INCREF(op); |
| 83 | return (PyObject *)op; |
| 84 | } |
| 85 | if (size == 1 && str != NULL && |
| 86 | (op = characters[*str & UCHAR_MAX]) != NULL) |
| 87 | { |
| 88 | #ifdef COUNT_ALLOCS |
| 89 | one_strings++; |
| 90 | #endif |
| 91 | Py_INCREF(op); |
| 92 | return (PyObject *)op; |
| 93 | } |
| 94 | |
Mark Dickinson | fd24b32 | 2008-12-06 15:33:31 +0000 | [diff] [blame] | 95 | if (size > PY_SSIZE_T_MAX - PyBytesObject_SIZE) { |
Neal Norwitz | 3ce5d92 | 2008-08-24 07:08:55 +0000 | [diff] [blame] | 96 | PyErr_SetString(PyExc_OverflowError, |
| 97 | "byte string is too large"); |
| 98 | return NULL; |
| 99 | } |
| 100 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 101 | /* Inline PyObject_NewVar */ |
Mark Dickinson | fd24b32 | 2008-12-06 15:33:31 +0000 | [diff] [blame] | 102 | op = (PyBytesObject *)PyObject_MALLOC(PyBytesObject_SIZE + size); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 103 | if (op == NULL) |
| 104 | return PyErr_NoMemory(); |
| 105 | PyObject_INIT_VAR(op, &PyBytes_Type, size); |
| 106 | op->ob_shash = -1; |
| 107 | if (str != NULL) |
| 108 | Py_MEMCPY(op->ob_sval, str, size); |
| 109 | op->ob_sval[size] = '\0'; |
| 110 | /* share short strings */ |
| 111 | if (size == 0) { |
| 112 | nullstring = op; |
| 113 | Py_INCREF(op); |
| 114 | } else if (size == 1 && str != NULL) { |
| 115 | characters[*str & UCHAR_MAX] = op; |
| 116 | Py_INCREF(op); |
| 117 | } |
| 118 | return (PyObject *) op; |
Guido van Rossum | d624f18 | 2006-04-24 13:47:05 +0000 | [diff] [blame] | 119 | } |
| 120 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 121 | PyObject * |
| 122 | PyBytes_FromString(const char *str) |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 123 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 124 | register size_t size; |
| 125 | register PyBytesObject *op; |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 126 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 127 | assert(str != NULL); |
| 128 | size = strlen(str); |
Mark Dickinson | fd24b32 | 2008-12-06 15:33:31 +0000 | [diff] [blame] | 129 | if (size > PY_SSIZE_T_MAX - PyBytesObject_SIZE) { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 130 | PyErr_SetString(PyExc_OverflowError, |
Benjamin Peterson | 4116f36 | 2008-05-27 00:36:20 +0000 | [diff] [blame] | 131 | "byte string is too long"); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 132 | return NULL; |
| 133 | } |
| 134 | if (size == 0 && (op = nullstring) != NULL) { |
| 135 | #ifdef COUNT_ALLOCS |
| 136 | null_strings++; |
| 137 | #endif |
| 138 | Py_INCREF(op); |
| 139 | return (PyObject *)op; |
| 140 | } |
| 141 | if (size == 1 && (op = characters[*str & UCHAR_MAX]) != NULL) { |
| 142 | #ifdef COUNT_ALLOCS |
| 143 | one_strings++; |
| 144 | #endif |
| 145 | Py_INCREF(op); |
| 146 | return (PyObject *)op; |
| 147 | } |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 148 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 149 | /* Inline PyObject_NewVar */ |
Mark Dickinson | fd24b32 | 2008-12-06 15:33:31 +0000 | [diff] [blame] | 150 | op = (PyBytesObject *)PyObject_MALLOC(PyBytesObject_SIZE + size); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 151 | if (op == NULL) |
| 152 | return PyErr_NoMemory(); |
| 153 | PyObject_INIT_VAR(op, &PyBytes_Type, size); |
| 154 | op->ob_shash = -1; |
| 155 | Py_MEMCPY(op->ob_sval, str, size+1); |
| 156 | /* share short strings */ |
| 157 | if (size == 0) { |
| 158 | nullstring = op; |
| 159 | Py_INCREF(op); |
| 160 | } else if (size == 1) { |
| 161 | characters[*str & UCHAR_MAX] = op; |
| 162 | Py_INCREF(op); |
| 163 | } |
| 164 | return (PyObject *) op; |
| 165 | } |
Guido van Rossum | ebea9be | 2007-04-09 00:49:13 +0000 | [diff] [blame] | 166 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 167 | PyObject * |
| 168 | PyBytes_FromFormatV(const char *format, va_list vargs) |
| 169 | { |
| 170 | va_list count; |
| 171 | Py_ssize_t n = 0; |
| 172 | const char* f; |
| 173 | char *s; |
| 174 | PyObject* string; |
Guido van Rossum | 343e97f | 2007-04-09 00:43:24 +0000 | [diff] [blame] | 175 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 176 | #ifdef VA_LIST_IS_ARRAY |
| 177 | Py_MEMCPY(count, vargs, sizeof(va_list)); |
| 178 | #else |
| 179 | #ifdef __va_copy |
| 180 | __va_copy(count, vargs); |
| 181 | #else |
| 182 | count = vargs; |
| 183 | #endif |
| 184 | #endif |
| 185 | /* step 1: figure out how large a buffer we need */ |
| 186 | for (f = format; *f; f++) { |
| 187 | if (*f == '%') { |
| 188 | const char* p = f; |
| 189 | while (*++f && *f != '%' && !ISALPHA(*f)) |
| 190 | ; |
Guido van Rossum | 343e97f | 2007-04-09 00:43:24 +0000 | [diff] [blame] | 191 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 192 | /* skip the 'l' or 'z' in {%ld, %zd, %lu, %zu} since |
| 193 | * they don't affect the amount of space we reserve. |
| 194 | */ |
| 195 | if ((*f == 'l' || *f == 'z') && |
| 196 | (f[1] == 'd' || f[1] == 'u')) |
| 197 | ++f; |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 198 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 199 | switch (*f) { |
| 200 | case 'c': |
| 201 | (void)va_arg(count, int); |
| 202 | /* fall through... */ |
| 203 | case '%': |
| 204 | n++; |
| 205 | break; |
| 206 | case 'd': case 'u': case 'i': case 'x': |
| 207 | (void) va_arg(count, int); |
| 208 | /* 20 bytes is enough to hold a 64-bit |
| 209 | integer. Decimal takes the most space. |
| 210 | This isn't enough for octal. */ |
| 211 | n += 20; |
| 212 | break; |
| 213 | case 's': |
| 214 | s = va_arg(count, char*); |
| 215 | n += strlen(s); |
| 216 | break; |
| 217 | case 'p': |
| 218 | (void) va_arg(count, int); |
| 219 | /* maximum 64-bit pointer representation: |
| 220 | * 0xffffffffffffffff |
| 221 | * so 19 characters is enough. |
| 222 | * XXX I count 18 -- what's the extra for? |
| 223 | */ |
| 224 | n += 19; |
| 225 | break; |
| 226 | default: |
| 227 | /* if we stumble upon an unknown |
| 228 | formatting code, copy the rest of |
| 229 | the format string to the output |
| 230 | string. (we cannot just skip the |
| 231 | code, since there's no way to know |
| 232 | what's in the argument list) */ |
| 233 | n += strlen(p); |
| 234 | goto expand; |
| 235 | } |
| 236 | } else |
| 237 | n++; |
| 238 | } |
| 239 | expand: |
| 240 | /* step 2: fill the buffer */ |
| 241 | /* Since we've analyzed how much space we need for the worst case, |
| 242 | use sprintf directly instead of the slower PyOS_snprintf. */ |
| 243 | string = PyBytes_FromStringAndSize(NULL, n); |
| 244 | if (!string) |
| 245 | return NULL; |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 246 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 247 | s = PyBytes_AsString(string); |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 248 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 249 | for (f = format; *f; f++) { |
| 250 | if (*f == '%') { |
| 251 | const char* p = f++; |
| 252 | Py_ssize_t i; |
| 253 | int longflag = 0; |
| 254 | int size_tflag = 0; |
| 255 | /* parse the width.precision part (we're only |
| 256 | interested in the precision value, if any) */ |
| 257 | n = 0; |
| 258 | while (ISDIGIT(*f)) |
| 259 | n = (n*10) + *f++ - '0'; |
| 260 | if (*f == '.') { |
| 261 | f++; |
| 262 | n = 0; |
| 263 | while (ISDIGIT(*f)) |
| 264 | n = (n*10) + *f++ - '0'; |
| 265 | } |
| 266 | while (*f && *f != '%' && !ISALPHA(*f)) |
| 267 | f++; |
| 268 | /* handle the long flag, but only for %ld and %lu. |
| 269 | others can be added when necessary. */ |
| 270 | if (*f == 'l' && (f[1] == 'd' || f[1] == 'u')) { |
| 271 | longflag = 1; |
| 272 | ++f; |
| 273 | } |
| 274 | /* handle the size_t flag. */ |
| 275 | if (*f == 'z' && (f[1] == 'd' || f[1] == 'u')) { |
| 276 | size_tflag = 1; |
| 277 | ++f; |
| 278 | } |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 279 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 280 | switch (*f) { |
| 281 | case 'c': |
| 282 | *s++ = va_arg(vargs, int); |
| 283 | break; |
| 284 | case 'd': |
| 285 | if (longflag) |
| 286 | sprintf(s, "%ld", va_arg(vargs, long)); |
| 287 | else if (size_tflag) |
| 288 | sprintf(s, "%" PY_FORMAT_SIZE_T "d", |
| 289 | va_arg(vargs, Py_ssize_t)); |
| 290 | else |
| 291 | sprintf(s, "%d", va_arg(vargs, int)); |
| 292 | s += strlen(s); |
| 293 | break; |
| 294 | case 'u': |
| 295 | if (longflag) |
| 296 | sprintf(s, "%lu", |
| 297 | va_arg(vargs, unsigned long)); |
| 298 | else if (size_tflag) |
| 299 | sprintf(s, "%" PY_FORMAT_SIZE_T "u", |
| 300 | va_arg(vargs, size_t)); |
| 301 | else |
| 302 | sprintf(s, "%u", |
| 303 | va_arg(vargs, unsigned int)); |
| 304 | s += strlen(s); |
| 305 | break; |
| 306 | case 'i': |
| 307 | sprintf(s, "%i", va_arg(vargs, int)); |
| 308 | s += strlen(s); |
| 309 | break; |
| 310 | case 'x': |
| 311 | sprintf(s, "%x", va_arg(vargs, int)); |
| 312 | s += strlen(s); |
| 313 | break; |
| 314 | case 's': |
| 315 | p = va_arg(vargs, char*); |
| 316 | i = strlen(p); |
| 317 | if (n > 0 && i > n) |
| 318 | i = n; |
| 319 | Py_MEMCPY(s, p, i); |
| 320 | s += i; |
| 321 | break; |
| 322 | case 'p': |
| 323 | sprintf(s, "%p", va_arg(vargs, void*)); |
| 324 | /* %p is ill-defined: ensure leading 0x. */ |
| 325 | if (s[1] == 'X') |
| 326 | s[1] = 'x'; |
| 327 | else if (s[1] != 'x') { |
| 328 | memmove(s+2, s, strlen(s)+1); |
| 329 | s[0] = '0'; |
| 330 | s[1] = 'x'; |
| 331 | } |
| 332 | s += strlen(s); |
| 333 | break; |
| 334 | case '%': |
| 335 | *s++ = '%'; |
| 336 | break; |
| 337 | default: |
| 338 | strcpy(s, p); |
| 339 | s += strlen(s); |
| 340 | goto end; |
| 341 | } |
| 342 | } else |
| 343 | *s++ = *f; |
| 344 | } |
| 345 | |
| 346 | end: |
| 347 | _PyBytes_Resize(&string, s - PyBytes_AS_STRING(string)); |
| 348 | return string; |
| 349 | } |
| 350 | |
| 351 | PyObject * |
| 352 | PyBytes_FromFormat(const char *format, ...) |
| 353 | { |
| 354 | PyObject* ret; |
| 355 | va_list vargs; |
| 356 | |
| 357 | #ifdef HAVE_STDARG_PROTOTYPES |
| 358 | va_start(vargs, format); |
| 359 | #else |
| 360 | va_start(vargs); |
| 361 | #endif |
| 362 | ret = PyBytes_FromFormatV(format, vargs); |
| 363 | va_end(vargs); |
| 364 | return ret; |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | static void |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 368 | bytes_dealloc(PyObject *op) |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 369 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 370 | Py_TYPE(op)->tp_free(op); |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 371 | } |
| 372 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 373 | /* Unescape a backslash-escaped string. If unicode is non-zero, |
| 374 | the string is a u-literal. If recode_encoding is non-zero, |
| 375 | the string is UTF-8 encoded and should be re-encoded in the |
| 376 | specified encoding. */ |
| 377 | |
| 378 | PyObject *PyBytes_DecodeEscape(const char *s, |
| 379 | Py_ssize_t len, |
| 380 | const char *errors, |
| 381 | Py_ssize_t unicode, |
| 382 | const char *recode_encoding) |
| 383 | { |
| 384 | int c; |
| 385 | char *p, *buf; |
| 386 | const char *end; |
| 387 | PyObject *v; |
| 388 | Py_ssize_t newlen = recode_encoding ? 4*len:len; |
| 389 | v = PyBytes_FromStringAndSize((char *)NULL, newlen); |
| 390 | if (v == NULL) |
| 391 | return NULL; |
| 392 | p = buf = PyBytes_AsString(v); |
| 393 | end = s + len; |
| 394 | while (s < end) { |
| 395 | if (*s != '\\') { |
| 396 | non_esc: |
| 397 | if (recode_encoding && (*s & 0x80)) { |
| 398 | PyObject *u, *w; |
| 399 | char *r; |
| 400 | const char* t; |
| 401 | Py_ssize_t rn; |
| 402 | t = s; |
| 403 | /* Decode non-ASCII bytes as UTF-8. */ |
| 404 | while (t < end && (*t & 0x80)) t++; |
| 405 | u = PyUnicode_DecodeUTF8(s, t - s, errors); |
| 406 | if(!u) goto failed; |
| 407 | |
| 408 | /* Recode them in target encoding. */ |
| 409 | w = PyUnicode_AsEncodedString( |
| 410 | u, recode_encoding, errors); |
| 411 | Py_DECREF(u); |
| 412 | if (!w) goto failed; |
| 413 | |
| 414 | /* Append bytes to output buffer. */ |
| 415 | assert(PyBytes_Check(w)); |
| 416 | r = PyBytes_AS_STRING(w); |
| 417 | rn = PyBytes_GET_SIZE(w); |
| 418 | Py_MEMCPY(p, r, rn); |
| 419 | p += rn; |
| 420 | Py_DECREF(w); |
| 421 | s = t; |
| 422 | } else { |
| 423 | *p++ = *s++; |
| 424 | } |
| 425 | continue; |
| 426 | } |
| 427 | s++; |
| 428 | if (s==end) { |
| 429 | PyErr_SetString(PyExc_ValueError, |
| 430 | "Trailing \\ in string"); |
| 431 | goto failed; |
| 432 | } |
| 433 | switch (*s++) { |
| 434 | /* XXX This assumes ASCII! */ |
| 435 | case '\n': break; |
| 436 | case '\\': *p++ = '\\'; break; |
| 437 | case '\'': *p++ = '\''; break; |
| 438 | case '\"': *p++ = '\"'; break; |
| 439 | case 'b': *p++ = '\b'; break; |
| 440 | case 'f': *p++ = '\014'; break; /* FF */ |
| 441 | case 't': *p++ = '\t'; break; |
| 442 | case 'n': *p++ = '\n'; break; |
| 443 | case 'r': *p++ = '\r'; break; |
| 444 | case 'v': *p++ = '\013'; break; /* VT */ |
| 445 | case 'a': *p++ = '\007'; break; /* BEL, not classic C */ |
| 446 | case '0': case '1': case '2': case '3': |
| 447 | case '4': case '5': case '6': case '7': |
| 448 | c = s[-1] - '0'; |
| 449 | if (s < end && '0' <= *s && *s <= '7') { |
| 450 | c = (c<<3) + *s++ - '0'; |
| 451 | if (s < end && '0' <= *s && *s <= '7') |
| 452 | c = (c<<3) + *s++ - '0'; |
| 453 | } |
| 454 | *p++ = c; |
| 455 | break; |
| 456 | case 'x': |
| 457 | if (s+1 < end && ISXDIGIT(s[0]) && ISXDIGIT(s[1])) { |
| 458 | unsigned int x = 0; |
| 459 | c = Py_CHARMASK(*s); |
| 460 | s++; |
| 461 | if (ISDIGIT(c)) |
| 462 | x = c - '0'; |
| 463 | else if (ISLOWER(c)) |
| 464 | x = 10 + c - 'a'; |
| 465 | else |
| 466 | x = 10 + c - 'A'; |
| 467 | x = x << 4; |
| 468 | c = Py_CHARMASK(*s); |
| 469 | s++; |
| 470 | if (ISDIGIT(c)) |
| 471 | x += c - '0'; |
| 472 | else if (ISLOWER(c)) |
| 473 | x += 10 + c - 'a'; |
| 474 | else |
| 475 | x += 10 + c - 'A'; |
| 476 | *p++ = x; |
| 477 | break; |
| 478 | } |
| 479 | if (!errors || strcmp(errors, "strict") == 0) { |
| 480 | PyErr_SetString(PyExc_ValueError, |
| 481 | "invalid \\x escape"); |
| 482 | goto failed; |
| 483 | } |
| 484 | if (strcmp(errors, "replace") == 0) { |
| 485 | *p++ = '?'; |
| 486 | } else if (strcmp(errors, "ignore") == 0) |
| 487 | /* do nothing */; |
| 488 | else { |
| 489 | PyErr_Format(PyExc_ValueError, |
| 490 | "decoding error; unknown " |
| 491 | "error handling code: %.400s", |
| 492 | errors); |
| 493 | goto failed; |
| 494 | } |
| 495 | default: |
| 496 | *p++ = '\\'; |
| 497 | s--; |
| 498 | goto non_esc; /* an arbitry number of unescaped |
| 499 | UTF-8 bytes may follow. */ |
| 500 | } |
| 501 | } |
| 502 | if (p-buf < newlen) |
| 503 | _PyBytes_Resize(&v, p - buf); |
| 504 | return v; |
| 505 | failed: |
| 506 | Py_DECREF(v); |
| 507 | return NULL; |
| 508 | } |
| 509 | |
| 510 | /* -------------------------------------------------------------------- */ |
| 511 | /* object api */ |
| 512 | |
| 513 | Py_ssize_t |
| 514 | PyBytes_Size(register PyObject *op) |
| 515 | { |
| 516 | if (!PyBytes_Check(op)) { |
| 517 | PyErr_Format(PyExc_TypeError, |
| 518 | "expected bytes, %.200s found", Py_TYPE(op)->tp_name); |
| 519 | return -1; |
| 520 | } |
| 521 | return Py_SIZE(op); |
| 522 | } |
| 523 | |
| 524 | char * |
| 525 | PyBytes_AsString(register PyObject *op) |
| 526 | { |
| 527 | if (!PyBytes_Check(op)) { |
| 528 | PyErr_Format(PyExc_TypeError, |
| 529 | "expected bytes, %.200s found", Py_TYPE(op)->tp_name); |
| 530 | return NULL; |
| 531 | } |
| 532 | return ((PyBytesObject *)op)->ob_sval; |
| 533 | } |
| 534 | |
| 535 | int |
| 536 | PyBytes_AsStringAndSize(register PyObject *obj, |
| 537 | register char **s, |
| 538 | register Py_ssize_t *len) |
| 539 | { |
| 540 | if (s == NULL) { |
| 541 | PyErr_BadInternalCall(); |
| 542 | return -1; |
| 543 | } |
| 544 | |
| 545 | if (!PyBytes_Check(obj)) { |
| 546 | PyErr_Format(PyExc_TypeError, |
| 547 | "expected bytes, %.200s found", Py_TYPE(obj)->tp_name); |
| 548 | return -1; |
| 549 | } |
| 550 | |
| 551 | *s = PyBytes_AS_STRING(obj); |
| 552 | if (len != NULL) |
| 553 | *len = PyBytes_GET_SIZE(obj); |
| 554 | else if (strlen(*s) != (size_t)PyBytes_GET_SIZE(obj)) { |
| 555 | PyErr_SetString(PyExc_TypeError, |
| 556 | "expected bytes with no null"); |
| 557 | return -1; |
| 558 | } |
| 559 | return 0; |
| 560 | } |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 561 | |
| 562 | /* -------------------------------------------------------------------- */ |
| 563 | /* Methods */ |
| 564 | |
Eric Smith | 0923d1d | 2009-04-16 20:16:10 +0000 | [diff] [blame] | 565 | #include "stringlib/stringdefs.h" |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 566 | |
| 567 | #include "stringlib/fastsearch.h" |
| 568 | #include "stringlib/count.h" |
| 569 | #include "stringlib/find.h" |
| 570 | #include "stringlib/partition.h" |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 571 | #include "stringlib/split.h" |
Gregory P. Smith | 60d241f | 2007-10-16 06:31:30 +0000 | [diff] [blame] | 572 | #include "stringlib/ctype.h" |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 573 | |
Eric Smith | 0f78bff | 2009-11-30 01:01:42 +0000 | [diff] [blame] | 574 | #include "stringlib/transmogrify.h" |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 575 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 576 | PyObject * |
| 577 | PyBytes_Repr(PyObject *obj, int smartquotes) |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 578 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 579 | static const char *hexdigits = "0123456789abcdef"; |
| 580 | register PyBytesObject* op = (PyBytesObject*) obj; |
| 581 | Py_ssize_t length = Py_SIZE(op); |
| 582 | size_t newsize = 3 + 4 * length; |
| 583 | PyObject *v; |
| 584 | if (newsize > PY_SSIZE_T_MAX || (newsize-3) / 4 != length) { |
| 585 | PyErr_SetString(PyExc_OverflowError, |
| 586 | "bytes object is too large to make repr"); |
| 587 | return NULL; |
| 588 | } |
| 589 | v = PyUnicode_FromUnicode(NULL, newsize); |
| 590 | if (v == NULL) { |
| 591 | return NULL; |
| 592 | } |
| 593 | else { |
| 594 | register Py_ssize_t i; |
| 595 | register Py_UNICODE c; |
| 596 | register Py_UNICODE *p = PyUnicode_AS_UNICODE(v); |
| 597 | int quote; |
| 598 | |
| 599 | /* Figure out which quote to use; single is preferred */ |
| 600 | quote = '\''; |
| 601 | if (smartquotes) { |
| 602 | char *test, *start; |
| 603 | start = PyBytes_AS_STRING(op); |
| 604 | for (test = start; test < start+length; ++test) { |
| 605 | if (*test == '"') { |
| 606 | quote = '\''; /* back to single */ |
| 607 | goto decided; |
| 608 | } |
| 609 | else if (*test == '\'') |
| 610 | quote = '"'; |
| 611 | } |
| 612 | decided: |
| 613 | ; |
| 614 | } |
| 615 | |
| 616 | *p++ = 'b', *p++ = quote; |
| 617 | for (i = 0; i < length; i++) { |
| 618 | /* There's at least enough room for a hex escape |
| 619 | and a closing quote. */ |
| 620 | assert(newsize - (p - PyUnicode_AS_UNICODE(v)) >= 5); |
| 621 | c = op->ob_sval[i]; |
| 622 | if (c == quote || c == '\\') |
| 623 | *p++ = '\\', *p++ = c; |
| 624 | else if (c == '\t') |
| 625 | *p++ = '\\', *p++ = 't'; |
| 626 | else if (c == '\n') |
| 627 | *p++ = '\\', *p++ = 'n'; |
| 628 | else if (c == '\r') |
| 629 | *p++ = '\\', *p++ = 'r'; |
| 630 | else if (c < ' ' || c >= 0x7f) { |
| 631 | *p++ = '\\'; |
| 632 | *p++ = 'x'; |
| 633 | *p++ = hexdigits[(c & 0xf0) >> 4]; |
| 634 | *p++ = hexdigits[c & 0xf]; |
| 635 | } |
| 636 | else |
| 637 | *p++ = c; |
| 638 | } |
| 639 | assert(newsize - (p - PyUnicode_AS_UNICODE(v)) >= 1); |
| 640 | *p++ = quote; |
| 641 | *p = '\0'; |
| 642 | if (PyUnicode_Resize(&v, (p - PyUnicode_AS_UNICODE(v)))) { |
| 643 | Py_DECREF(v); |
| 644 | return NULL; |
| 645 | } |
| 646 | return v; |
| 647 | } |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 648 | } |
| 649 | |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 650 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 651 | bytes_repr(PyObject *op) |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 652 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 653 | return PyBytes_Repr(op, 1); |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 654 | } |
| 655 | |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 656 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 657 | bytes_str(PyObject *op) |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 658 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 659 | if (Py_BytesWarningFlag) { |
| 660 | if (PyErr_WarnEx(PyExc_BytesWarning, |
| 661 | "str() on a bytes instance", 1)) |
| 662 | return NULL; |
| 663 | } |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 664 | return bytes_repr(op); |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 665 | } |
| 666 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 667 | static Py_ssize_t |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 668 | bytes_length(PyBytesObject *a) |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 669 | { |
| 670 | return Py_SIZE(a); |
| 671 | } |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 672 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 673 | /* This is also used by PyBytes_Concat() */ |
| 674 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 675 | bytes_concat(PyObject *a, PyObject *b) |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 676 | { |
| 677 | Py_ssize_t size; |
| 678 | Py_buffer va, vb; |
| 679 | PyObject *result = NULL; |
| 680 | |
| 681 | va.len = -1; |
| 682 | vb.len = -1; |
| 683 | if (_getbuffer(a, &va) < 0 || |
| 684 | _getbuffer(b, &vb) < 0) { |
| 685 | PyErr_Format(PyExc_TypeError, "can't concat %.100s to %.100s", |
| 686 | Py_TYPE(a)->tp_name, Py_TYPE(b)->tp_name); |
| 687 | goto done; |
| 688 | } |
| 689 | |
| 690 | /* Optimize end cases */ |
| 691 | if (va.len == 0 && PyBytes_CheckExact(b)) { |
| 692 | result = b; |
| 693 | Py_INCREF(result); |
| 694 | goto done; |
| 695 | } |
| 696 | if (vb.len == 0 && PyBytes_CheckExact(a)) { |
| 697 | result = a; |
| 698 | Py_INCREF(result); |
| 699 | goto done; |
| 700 | } |
| 701 | |
| 702 | size = va.len + vb.len; |
| 703 | if (size < 0) { |
| 704 | PyErr_NoMemory(); |
| 705 | goto done; |
| 706 | } |
| 707 | |
| 708 | result = PyBytes_FromStringAndSize(NULL, size); |
| 709 | if (result != NULL) { |
| 710 | memcpy(PyBytes_AS_STRING(result), va.buf, va.len); |
| 711 | memcpy(PyBytes_AS_STRING(result) + va.len, vb.buf, vb.len); |
| 712 | } |
| 713 | |
| 714 | done: |
| 715 | if (va.len != -1) |
Martin v. Löwis | 423be95 | 2008-08-13 15:53:07 +0000 | [diff] [blame] | 716 | PyBuffer_Release(&va); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 717 | if (vb.len != -1) |
Martin v. Löwis | 423be95 | 2008-08-13 15:53:07 +0000 | [diff] [blame] | 718 | PyBuffer_Release(&vb); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 719 | return result; |
| 720 | } |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 721 | |
| 722 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 723 | bytes_repeat(register PyBytesObject *a, register Py_ssize_t n) |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 724 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 725 | register Py_ssize_t i; |
| 726 | register Py_ssize_t j; |
| 727 | register Py_ssize_t size; |
| 728 | register PyBytesObject *op; |
| 729 | size_t nbytes; |
| 730 | if (n < 0) |
| 731 | n = 0; |
| 732 | /* watch out for overflows: the size can overflow int, |
| 733 | * and the # of bytes needed can overflow size_t |
| 734 | */ |
| 735 | size = Py_SIZE(a) * n; |
| 736 | if (n && size / n != Py_SIZE(a)) { |
| 737 | PyErr_SetString(PyExc_OverflowError, |
Benjamin Peterson | 4116f36 | 2008-05-27 00:36:20 +0000 | [diff] [blame] | 738 | "repeated bytes are too long"); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 739 | return NULL; |
| 740 | } |
| 741 | if (size == Py_SIZE(a) && PyBytes_CheckExact(a)) { |
| 742 | Py_INCREF(a); |
| 743 | return (PyObject *)a; |
| 744 | } |
| 745 | nbytes = (size_t)size; |
Mark Dickinson | fd24b32 | 2008-12-06 15:33:31 +0000 | [diff] [blame] | 746 | if (nbytes + PyBytesObject_SIZE <= nbytes) { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 747 | PyErr_SetString(PyExc_OverflowError, |
Benjamin Peterson | 4116f36 | 2008-05-27 00:36:20 +0000 | [diff] [blame] | 748 | "repeated bytes are too long"); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 749 | return NULL; |
| 750 | } |
Mark Dickinson | fd24b32 | 2008-12-06 15:33:31 +0000 | [diff] [blame] | 751 | op = (PyBytesObject *)PyObject_MALLOC(PyBytesObject_SIZE + nbytes); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 752 | if (op == NULL) |
| 753 | return PyErr_NoMemory(); |
| 754 | PyObject_INIT_VAR(op, &PyBytes_Type, size); |
| 755 | op->ob_shash = -1; |
| 756 | op->ob_sval[size] = '\0'; |
| 757 | if (Py_SIZE(a) == 1 && n > 0) { |
| 758 | memset(op->ob_sval, a->ob_sval[0] , n); |
| 759 | return (PyObject *) op; |
| 760 | } |
| 761 | i = 0; |
| 762 | if (i < size) { |
| 763 | Py_MEMCPY(op->ob_sval, a->ob_sval, Py_SIZE(a)); |
| 764 | i = Py_SIZE(a); |
| 765 | } |
| 766 | while (i < size) { |
| 767 | j = (i <= size-i) ? i : size-i; |
| 768 | Py_MEMCPY(op->ob_sval+i, op->ob_sval, j); |
| 769 | i += j; |
| 770 | } |
| 771 | return (PyObject *) op; |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 772 | } |
| 773 | |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 774 | static int |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 775 | bytes_contains(PyObject *self, PyObject *arg) |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 776 | { |
| 777 | Py_ssize_t ival = PyNumber_AsSsize_t(arg, PyExc_ValueError); |
| 778 | if (ival == -1 && PyErr_Occurred()) { |
| 779 | Py_buffer varg; |
| 780 | int pos; |
| 781 | PyErr_Clear(); |
| 782 | if (_getbuffer(arg, &varg) < 0) |
| 783 | return -1; |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 784 | pos = stringlib_find(PyBytes_AS_STRING(self), Py_SIZE(self), |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 785 | varg.buf, varg.len, 0); |
Martin v. Löwis | 423be95 | 2008-08-13 15:53:07 +0000 | [diff] [blame] | 786 | PyBuffer_Release(&varg); |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 787 | return pos >= 0; |
| 788 | } |
| 789 | if (ival < 0 || ival >= 256) { |
| 790 | PyErr_SetString(PyExc_ValueError, "byte must be in range(0, 256)"); |
| 791 | return -1; |
| 792 | } |
| 793 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 794 | return memchr(PyBytes_AS_STRING(self), ival, Py_SIZE(self)) != NULL; |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 795 | } |
| 796 | |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 797 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 798 | bytes_item(PyBytesObject *a, register Py_ssize_t i) |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 799 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 800 | if (i < 0 || i >= Py_SIZE(a)) { |
Benjamin Peterson | 4116f36 | 2008-05-27 00:36:20 +0000 | [diff] [blame] | 801 | PyErr_SetString(PyExc_IndexError, "index out of range"); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 802 | return NULL; |
| 803 | } |
| 804 | return PyLong_FromLong((unsigned char)a->ob_sval[i]); |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 805 | } |
| 806 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 807 | static PyObject* |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 808 | bytes_richcompare(PyBytesObject *a, PyBytesObject *b, int op) |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 809 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 810 | int c; |
| 811 | Py_ssize_t len_a, len_b; |
| 812 | Py_ssize_t min_len; |
| 813 | PyObject *result; |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 814 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 815 | /* Make sure both arguments are strings. */ |
| 816 | if (!(PyBytes_Check(a) && PyBytes_Check(b))) { |
Barry Warsaw | 9e9dcd6 | 2008-10-17 01:50:37 +0000 | [diff] [blame] | 817 | if (Py_BytesWarningFlag && (op == Py_EQ || op == Py_NE) && |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 818 | (PyObject_IsInstance((PyObject*)a, |
| 819 | (PyObject*)&PyUnicode_Type) || |
| 820 | PyObject_IsInstance((PyObject*)b, |
| 821 | (PyObject*)&PyUnicode_Type))) { |
| 822 | if (PyErr_WarnEx(PyExc_BytesWarning, |
Georg Brandl | e5d68ac | 2008-06-04 11:30:26 +0000 | [diff] [blame] | 823 | "Comparison between bytes and string", 1)) |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 824 | return NULL; |
| 825 | } |
| 826 | result = Py_NotImplemented; |
| 827 | goto out; |
| 828 | } |
| 829 | if (a == b) { |
| 830 | switch (op) { |
| 831 | case Py_EQ:case Py_LE:case Py_GE: |
| 832 | result = Py_True; |
| 833 | goto out; |
| 834 | case Py_NE:case Py_LT:case Py_GT: |
| 835 | result = Py_False; |
| 836 | goto out; |
| 837 | } |
| 838 | } |
| 839 | if (op == Py_EQ) { |
| 840 | /* Supporting Py_NE here as well does not save |
| 841 | much time, since Py_NE is rarely used. */ |
| 842 | if (Py_SIZE(a) == Py_SIZE(b) |
| 843 | && (a->ob_sval[0] == b->ob_sval[0] |
| 844 | && memcmp(a->ob_sval, b->ob_sval, Py_SIZE(a)) == 0)) { |
| 845 | result = Py_True; |
| 846 | } else { |
| 847 | result = Py_False; |
| 848 | } |
| 849 | goto out; |
| 850 | } |
| 851 | len_a = Py_SIZE(a); len_b = Py_SIZE(b); |
| 852 | min_len = (len_a < len_b) ? len_a : len_b; |
| 853 | if (min_len > 0) { |
| 854 | c = Py_CHARMASK(*a->ob_sval) - Py_CHARMASK(*b->ob_sval); |
| 855 | if (c==0) |
| 856 | c = memcmp(a->ob_sval, b->ob_sval, min_len); |
| 857 | } else |
| 858 | c = 0; |
| 859 | if (c == 0) |
| 860 | c = (len_a < len_b) ? -1 : (len_a > len_b) ? 1 : 0; |
| 861 | switch (op) { |
| 862 | case Py_LT: c = c < 0; break; |
| 863 | case Py_LE: c = c <= 0; break; |
| 864 | case Py_EQ: assert(0); break; /* unreachable */ |
| 865 | case Py_NE: c = c != 0; break; |
| 866 | case Py_GT: c = c > 0; break; |
| 867 | case Py_GE: c = c >= 0; break; |
| 868 | default: |
| 869 | result = Py_NotImplemented; |
| 870 | goto out; |
| 871 | } |
| 872 | result = c ? Py_True : Py_False; |
| 873 | out: |
| 874 | Py_INCREF(result); |
| 875 | return result; |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 876 | } |
| 877 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 878 | static long |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 879 | bytes_hash(PyBytesObject *a) |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 880 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 881 | register Py_ssize_t len; |
| 882 | register unsigned char *p; |
| 883 | register long x; |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 884 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 885 | if (a->ob_shash != -1) |
| 886 | return a->ob_shash; |
| 887 | len = Py_SIZE(a); |
| 888 | p = (unsigned char *) a->ob_sval; |
| 889 | x = *p << 7; |
| 890 | while (--len >= 0) |
| 891 | x = (1000003*x) ^ *p++; |
| 892 | x ^= Py_SIZE(a); |
| 893 | if (x == -1) |
| 894 | x = -2; |
| 895 | a->ob_shash = x; |
| 896 | return x; |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 897 | } |
| 898 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 899 | static PyObject* |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 900 | bytes_subscript(PyBytesObject* self, PyObject* item) |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 901 | { |
| 902 | if (PyIndex_Check(item)) { |
| 903 | Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError); |
| 904 | if (i == -1 && PyErr_Occurred()) |
| 905 | return NULL; |
| 906 | if (i < 0) |
| 907 | i += PyBytes_GET_SIZE(self); |
| 908 | if (i < 0 || i >= PyBytes_GET_SIZE(self)) { |
| 909 | PyErr_SetString(PyExc_IndexError, |
Benjamin Peterson | 4116f36 | 2008-05-27 00:36:20 +0000 | [diff] [blame] | 910 | "index out of range"); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 911 | return NULL; |
| 912 | } |
| 913 | return PyLong_FromLong((unsigned char)self->ob_sval[i]); |
| 914 | } |
| 915 | else if (PySlice_Check(item)) { |
| 916 | Py_ssize_t start, stop, step, slicelength, cur, i; |
| 917 | char* source_buf; |
| 918 | char* result_buf; |
| 919 | PyObject* result; |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 920 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 921 | if (PySlice_GetIndicesEx((PySliceObject*)item, |
| 922 | PyBytes_GET_SIZE(self), |
| 923 | &start, &stop, &step, &slicelength) < 0) { |
| 924 | return NULL; |
| 925 | } |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 926 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 927 | if (slicelength <= 0) { |
| 928 | return PyBytes_FromStringAndSize("", 0); |
| 929 | } |
| 930 | else if (start == 0 && step == 1 && |
| 931 | slicelength == PyBytes_GET_SIZE(self) && |
| 932 | PyBytes_CheckExact(self)) { |
| 933 | Py_INCREF(self); |
| 934 | return (PyObject *)self; |
| 935 | } |
| 936 | else if (step == 1) { |
| 937 | return PyBytes_FromStringAndSize( |
| 938 | PyBytes_AS_STRING(self) + start, |
| 939 | slicelength); |
| 940 | } |
| 941 | else { |
Alexandre Vassalotti | e2641f4 | 2009-04-03 06:38:02 +0000 | [diff] [blame] | 942 | source_buf = PyBytes_AS_STRING(self); |
| 943 | result = PyBytes_FromStringAndSize(NULL, slicelength); |
| 944 | if (result == NULL) |
| 945 | return NULL; |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 946 | |
Alexandre Vassalotti | e2641f4 | 2009-04-03 06:38:02 +0000 | [diff] [blame] | 947 | result_buf = PyBytes_AS_STRING(result); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 948 | for (cur = start, i = 0; i < slicelength; |
| 949 | cur += step, i++) { |
| 950 | result_buf[i] = source_buf[cur]; |
| 951 | } |
| 952 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 953 | return result; |
| 954 | } |
| 955 | } |
| 956 | else { |
| 957 | PyErr_Format(PyExc_TypeError, |
Benjamin Peterson | 4116f36 | 2008-05-27 00:36:20 +0000 | [diff] [blame] | 958 | "byte indices must be integers, not %.200s", |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 959 | Py_TYPE(item)->tp_name); |
| 960 | return NULL; |
| 961 | } |
| 962 | } |
| 963 | |
| 964 | static int |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 965 | bytes_buffer_getbuffer(PyBytesObject *self, Py_buffer *view, int flags) |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 966 | { |
Martin v. Löwis | 423be95 | 2008-08-13 15:53:07 +0000 | [diff] [blame] | 967 | return PyBuffer_FillInfo(view, (PyObject*)self, (void *)self->ob_sval, Py_SIZE(self), |
Antoine Pitrou | 2f89aa6 | 2008-08-02 21:02:48 +0000 | [diff] [blame] | 968 | 1, flags); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 969 | } |
| 970 | |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 971 | static PySequenceMethods bytes_as_sequence = { |
| 972 | (lenfunc)bytes_length, /*sq_length*/ |
| 973 | (binaryfunc)bytes_concat, /*sq_concat*/ |
| 974 | (ssizeargfunc)bytes_repeat, /*sq_repeat*/ |
| 975 | (ssizeargfunc)bytes_item, /*sq_item*/ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 976 | 0, /*sq_slice*/ |
| 977 | 0, /*sq_ass_item*/ |
| 978 | 0, /*sq_ass_slice*/ |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 979 | (objobjproc)bytes_contains /*sq_contains*/ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 980 | }; |
| 981 | |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 982 | static PyMappingMethods bytes_as_mapping = { |
| 983 | (lenfunc)bytes_length, |
| 984 | (binaryfunc)bytes_subscript, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 985 | 0, |
| 986 | }; |
| 987 | |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 988 | static PyBufferProcs bytes_as_buffer = { |
| 989 | (getbufferproc)bytes_buffer_getbuffer, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 990 | NULL, |
| 991 | }; |
| 992 | |
| 993 | |
| 994 | #define LEFTSTRIP 0 |
| 995 | #define RIGHTSTRIP 1 |
| 996 | #define BOTHSTRIP 2 |
| 997 | |
| 998 | /* Arrays indexed by above */ |
| 999 | static const char *stripformat[] = {"|O:lstrip", "|O:rstrip", "|O:strip"}; |
| 1000 | |
| 1001 | #define STRIPNAME(i) (stripformat[i]+3) |
| 1002 | |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1003 | PyDoc_STRVAR(split__doc__, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1004 | "B.split([sep[, maxsplit]]) -> list of bytes\n\ |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1005 | \n\ |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1006 | Return a list of the sections in B, using sep as the delimiter.\n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1007 | If sep is not specified or is None, B is split on ASCII whitespace\n\ |
| 1008 | characters (space, tab, return, newline, formfeed, vertical tab).\n\ |
Guido van Rossum | 8f95067 | 2007-09-10 16:53:45 +0000 | [diff] [blame] | 1009 | If maxsplit is given, at most maxsplit splits are done."); |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1010 | |
| 1011 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1012 | bytes_split(PyBytesObject *self, PyObject *args) |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1013 | { |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 1014 | Py_ssize_t len = PyBytes_GET_SIZE(self), n; |
| 1015 | Py_ssize_t maxsplit = -1; |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1016 | const char *s = PyBytes_AS_STRING(self), *sub; |
| 1017 | Py_buffer vsub; |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 1018 | PyObject *list, *subobj = Py_None; |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1019 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1020 | if (!PyArg_ParseTuple(args, "|On:split", &subobj, &maxsplit)) |
| 1021 | return NULL; |
| 1022 | if (maxsplit < 0) |
| 1023 | maxsplit = PY_SSIZE_T_MAX; |
| 1024 | if (subobj == Py_None) |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 1025 | return stringlib_split_whitespace((PyObject*) self, s, len, maxsplit); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1026 | if (_getbuffer(subobj, &vsub) < 0) |
| 1027 | return NULL; |
| 1028 | sub = vsub.buf; |
| 1029 | n = vsub.len; |
Guido van Rossum | 8f95067 | 2007-09-10 16:53:45 +0000 | [diff] [blame] | 1030 | |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 1031 | list = stringlib_split((PyObject*) self, s, len, sub, n, maxsplit); |
Martin v. Löwis | 423be95 | 2008-08-13 15:53:07 +0000 | [diff] [blame] | 1032 | PyBuffer_Release(&vsub); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1033 | return list; |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1034 | } |
| 1035 | |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1036 | PyDoc_STRVAR(partition__doc__, |
| 1037 | "B.partition(sep) -> (head, sep, tail)\n\ |
| 1038 | \n\ |
Georg Brandl | 17cb8a8 | 2008-05-30 08:20:09 +0000 | [diff] [blame] | 1039 | Search for the separator sep in B, and return the part before it,\n\ |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1040 | the separator itself, and the part after it. If the separator is not\n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1041 | found, returns B and two empty bytes objects."); |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1042 | |
| 1043 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1044 | bytes_partition(PyBytesObject *self, PyObject *sep_obj) |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1045 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1046 | const char *sep; |
| 1047 | Py_ssize_t sep_len; |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1048 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1049 | if (PyBytes_Check(sep_obj)) { |
| 1050 | sep = PyBytes_AS_STRING(sep_obj); |
| 1051 | sep_len = PyBytes_GET_SIZE(sep_obj); |
| 1052 | } |
| 1053 | else if (PyObject_AsCharBuffer(sep_obj, &sep, &sep_len)) |
| 1054 | return NULL; |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1055 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1056 | return stringlib_partition( |
| 1057 | (PyObject*) self, |
| 1058 | PyBytes_AS_STRING(self), PyBytes_GET_SIZE(self), |
| 1059 | sep_obj, sep, sep_len |
| 1060 | ); |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1061 | } |
| 1062 | |
| 1063 | PyDoc_STRVAR(rpartition__doc__, |
Ezio Melotti | 5b2b242 | 2010-01-25 11:58:28 +0000 | [diff] [blame] | 1064 | "B.rpartition(sep) -> (head, sep, tail)\n\ |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1065 | \n\ |
Georg Brandl | 17cb8a8 | 2008-05-30 08:20:09 +0000 | [diff] [blame] | 1066 | Search for the separator sep in B, starting at the end of B,\n\ |
| 1067 | and return the part before it, the separator itself, and the\n\ |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1068 | part after it. If the separator is not found, returns two empty\n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1069 | bytes objects and B."); |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1070 | |
| 1071 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1072 | bytes_rpartition(PyBytesObject *self, PyObject *sep_obj) |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1073 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1074 | const char *sep; |
| 1075 | Py_ssize_t sep_len; |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1076 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1077 | if (PyBytes_Check(sep_obj)) { |
| 1078 | sep = PyBytes_AS_STRING(sep_obj); |
| 1079 | sep_len = PyBytes_GET_SIZE(sep_obj); |
| 1080 | } |
| 1081 | else if (PyObject_AsCharBuffer(sep_obj, &sep, &sep_len)) |
| 1082 | return NULL; |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1083 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1084 | return stringlib_rpartition( |
| 1085 | (PyObject*) self, |
| 1086 | PyBytes_AS_STRING(self), PyBytes_GET_SIZE(self), |
| 1087 | sep_obj, sep, sep_len |
| 1088 | ); |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1089 | } |
| 1090 | |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1091 | PyDoc_STRVAR(rsplit__doc__, |
Benjamin Peterson | 4116f36 | 2008-05-27 00:36:20 +0000 | [diff] [blame] | 1092 | "B.rsplit([sep[, maxsplit]]) -> list of bytes\n\ |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1093 | \n\ |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1094 | Return a list of the sections in B, using sep as the delimiter,\n\ |
| 1095 | starting at the end of B and working to the front.\n\ |
Guido van Rossum | 8f95067 | 2007-09-10 16:53:45 +0000 | [diff] [blame] | 1096 | If sep is not given, B is split on ASCII whitespace characters\n\ |
| 1097 | (space, tab, return, newline, formfeed, vertical tab).\n\ |
| 1098 | If maxsplit is given, at most maxsplit splits are done."); |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1099 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1100 | |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1101 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1102 | bytes_rsplit(PyBytesObject *self, PyObject *args) |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1103 | { |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 1104 | Py_ssize_t len = PyBytes_GET_SIZE(self), n; |
| 1105 | Py_ssize_t maxsplit = -1; |
| 1106 | const char *s = PyBytes_AS_STRING(self), *sub; |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1107 | Py_buffer vsub; |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 1108 | PyObject *list, *subobj = Py_None; |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1109 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1110 | if (!PyArg_ParseTuple(args, "|On:rsplit", &subobj, &maxsplit)) |
| 1111 | return NULL; |
| 1112 | if (maxsplit < 0) |
| 1113 | maxsplit = PY_SSIZE_T_MAX; |
| 1114 | if (subobj == Py_None) |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 1115 | return stringlib_rsplit_whitespace((PyObject*) self, s, len, maxsplit); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1116 | if (_getbuffer(subobj, &vsub) < 0) |
| 1117 | return NULL; |
| 1118 | sub = vsub.buf; |
| 1119 | n = vsub.len; |
Guido van Rossum | 8f95067 | 2007-09-10 16:53:45 +0000 | [diff] [blame] | 1120 | |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 1121 | list = stringlib_rsplit((PyObject*) self, s, len, sub, n, maxsplit); |
Martin v. Löwis | 423be95 | 2008-08-13 15:53:07 +0000 | [diff] [blame] | 1122 | PyBuffer_Release(&vsub); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1123 | return list; |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1124 | } |
| 1125 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1126 | |
| 1127 | PyDoc_STRVAR(join__doc__, |
| 1128 | "B.join(iterable_of_bytes) -> bytes\n\ |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1129 | \n\ |
Georg Brandl | 17cb8a8 | 2008-05-30 08:20:09 +0000 | [diff] [blame] | 1130 | Concatenate any number of bytes objects, with B in between each pair.\n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1131 | Example: b'.'.join([b'ab', b'pq', b'rs']) -> b'ab.pq.rs'."); |
| 1132 | |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1133 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1134 | bytes_join(PyObject *self, PyObject *orig) |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1135 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1136 | char *sep = PyBytes_AS_STRING(self); |
| 1137 | const Py_ssize_t seplen = PyBytes_GET_SIZE(self); |
| 1138 | PyObject *res = NULL; |
| 1139 | char *p; |
| 1140 | Py_ssize_t seqlen = 0; |
| 1141 | size_t sz = 0; |
| 1142 | Py_ssize_t i; |
| 1143 | PyObject *seq, *item; |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1144 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1145 | seq = PySequence_Fast(orig, ""); |
| 1146 | if (seq == NULL) { |
| 1147 | return NULL; |
| 1148 | } |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1149 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1150 | seqlen = PySequence_Size(seq); |
| 1151 | if (seqlen == 0) { |
| 1152 | Py_DECREF(seq); |
| 1153 | return PyBytes_FromString(""); |
| 1154 | } |
| 1155 | if (seqlen == 1) { |
| 1156 | item = PySequence_Fast_GET_ITEM(seq, 0); |
| 1157 | if (PyBytes_CheckExact(item)) { |
| 1158 | Py_INCREF(item); |
| 1159 | Py_DECREF(seq); |
| 1160 | return item; |
| 1161 | } |
| 1162 | } |
| 1163 | |
| 1164 | /* There are at least two things to join, or else we have a subclass |
| 1165 | * of the builtin types in the sequence. |
| 1166 | * Do a pre-pass to figure out the total amount of space we'll |
| 1167 | * need (sz), and see whether all argument are bytes. |
| 1168 | */ |
| 1169 | /* XXX Shouldn't we use _getbuffer() on these items instead? */ |
| 1170 | for (i = 0; i < seqlen; i++) { |
| 1171 | const size_t old_sz = sz; |
| 1172 | item = PySequence_Fast_GET_ITEM(seq, i); |
| 1173 | if (!PyBytes_Check(item) && !PyByteArray_Check(item)) { |
| 1174 | PyErr_Format(PyExc_TypeError, |
| 1175 | "sequence item %zd: expected bytes," |
| 1176 | " %.80s found", |
| 1177 | i, Py_TYPE(item)->tp_name); |
| 1178 | Py_DECREF(seq); |
| 1179 | return NULL; |
| 1180 | } |
| 1181 | sz += Py_SIZE(item); |
| 1182 | if (i != 0) |
| 1183 | sz += seplen; |
| 1184 | if (sz < old_sz || sz > PY_SSIZE_T_MAX) { |
| 1185 | PyErr_SetString(PyExc_OverflowError, |
Benjamin Peterson | 4116f36 | 2008-05-27 00:36:20 +0000 | [diff] [blame] | 1186 | "join() result is too long for bytes"); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1187 | Py_DECREF(seq); |
| 1188 | return NULL; |
| 1189 | } |
| 1190 | } |
| 1191 | |
| 1192 | /* Allocate result space. */ |
| 1193 | res = PyBytes_FromStringAndSize((char*)NULL, sz); |
| 1194 | if (res == NULL) { |
| 1195 | Py_DECREF(seq); |
| 1196 | return NULL; |
| 1197 | } |
| 1198 | |
| 1199 | /* Catenate everything. */ |
| 1200 | /* I'm not worried about a PyByteArray item growing because there's |
| 1201 | nowhere in this function where we release the GIL. */ |
| 1202 | p = PyBytes_AS_STRING(res); |
| 1203 | for (i = 0; i < seqlen; ++i) { |
| 1204 | size_t n; |
| 1205 | char *q; |
| 1206 | if (i) { |
| 1207 | Py_MEMCPY(p, sep, seplen); |
| 1208 | p += seplen; |
| 1209 | } |
| 1210 | item = PySequence_Fast_GET_ITEM(seq, i); |
| 1211 | n = Py_SIZE(item); |
| 1212 | if (PyBytes_Check(item)) |
| 1213 | q = PyBytes_AS_STRING(item); |
| 1214 | else |
| 1215 | q = PyByteArray_AS_STRING(item); |
| 1216 | Py_MEMCPY(p, q, n); |
| 1217 | p += n; |
| 1218 | } |
| 1219 | |
| 1220 | Py_DECREF(seq); |
| 1221 | return res; |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1222 | } |
| 1223 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1224 | PyObject * |
| 1225 | _PyBytes_Join(PyObject *sep, PyObject *x) |
| 1226 | { |
| 1227 | assert(sep != NULL && PyBytes_Check(sep)); |
| 1228 | assert(x != NULL); |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1229 | return bytes_join(sep, x); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1230 | } |
| 1231 | |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 1232 | /* helper macro to fixup start/end slice values */ |
| 1233 | #define ADJUST_INDICES(start, end, len) \ |
| 1234 | if (end > len) \ |
| 1235 | end = len; \ |
| 1236 | else if (end < 0) { \ |
| 1237 | end += len; \ |
| 1238 | if (end < 0) \ |
| 1239 | end = 0; \ |
| 1240 | } \ |
| 1241 | if (start < 0) { \ |
| 1242 | start += len; \ |
| 1243 | if (start < 0) \ |
| 1244 | start = 0; \ |
| 1245 | } |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1246 | |
| 1247 | Py_LOCAL_INLINE(Py_ssize_t) |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1248 | bytes_find_internal(PyBytesObject *self, PyObject *args, int dir) |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1249 | { |
| 1250 | PyObject *subobj; |
| 1251 | const char *sub; |
| 1252 | Py_ssize_t sub_len; |
| 1253 | Py_ssize_t start=0, end=PY_SSIZE_T_MAX; |
| 1254 | PyObject *obj_start=Py_None, *obj_end=Py_None; |
| 1255 | |
| 1256 | if (!PyArg_ParseTuple(args, "O|OO:find/rfind/index/rindex", &subobj, |
| 1257 | &obj_start, &obj_end)) |
| 1258 | return -2; |
| 1259 | /* To support None in "start" and "end" arguments, meaning |
| 1260 | the same as if they were not passed. |
| 1261 | */ |
| 1262 | if (obj_start != Py_None) |
| 1263 | if (!_PyEval_SliceIndex(obj_start, &start)) |
| 1264 | return -2; |
| 1265 | if (obj_end != Py_None) |
| 1266 | if (!_PyEval_SliceIndex(obj_end, &end)) |
| 1267 | return -2; |
| 1268 | |
| 1269 | if (PyBytes_Check(subobj)) { |
| 1270 | sub = PyBytes_AS_STRING(subobj); |
| 1271 | sub_len = PyBytes_GET_SIZE(subobj); |
| 1272 | } |
| 1273 | else if (PyObject_AsCharBuffer(subobj, &sub, &sub_len)) |
| 1274 | /* XXX - the "expected a character buffer object" is pretty |
| 1275 | confusing for a non-expert. remap to something else ? */ |
| 1276 | return -2; |
| 1277 | |
| 1278 | if (dir > 0) |
| 1279 | return stringlib_find_slice( |
| 1280 | PyBytes_AS_STRING(self), PyBytes_GET_SIZE(self), |
| 1281 | sub, sub_len, start, end); |
| 1282 | else |
| 1283 | return stringlib_rfind_slice( |
| 1284 | PyBytes_AS_STRING(self), PyBytes_GET_SIZE(self), |
| 1285 | sub, sub_len, start, end); |
| 1286 | } |
| 1287 | |
| 1288 | |
| 1289 | PyDoc_STRVAR(find__doc__, |
Georg Brandl | 17cb8a8 | 2008-05-30 08:20:09 +0000 | [diff] [blame] | 1290 | "B.find(sub[, start[, end]]) -> int\n\ |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1291 | \n\ |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 1292 | Return the lowest index in B where substring sub is found,\n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1293 | such that sub is contained within s[start:end]. Optional\n\ |
| 1294 | arguments start and end are interpreted as in slice notation.\n\ |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1295 | \n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1296 | Return -1 on failure."); |
| 1297 | |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1298 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1299 | bytes_find(PyBytesObject *self, PyObject *args) |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1300 | { |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1301 | Py_ssize_t result = bytes_find_internal(self, args, +1); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1302 | if (result == -2) |
| 1303 | return NULL; |
| 1304 | return PyLong_FromSsize_t(result); |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1305 | } |
| 1306 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1307 | |
| 1308 | PyDoc_STRVAR(index__doc__, |
Georg Brandl | 17cb8a8 | 2008-05-30 08:20:09 +0000 | [diff] [blame] | 1309 | "B.index(sub[, start[, end]]) -> int\n\ |
Alexandre Vassalotti | 09121e8 | 2007-12-04 05:51:13 +0000 | [diff] [blame] | 1310 | \n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1311 | Like B.find() but raise ValueError when the substring is not found."); |
| 1312 | |
Alexandre Vassalotti | 09121e8 | 2007-12-04 05:51:13 +0000 | [diff] [blame] | 1313 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1314 | bytes_index(PyBytesObject *self, PyObject *args) |
Alexandre Vassalotti | 09121e8 | 2007-12-04 05:51:13 +0000 | [diff] [blame] | 1315 | { |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1316 | Py_ssize_t result = bytes_find_internal(self, args, +1); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1317 | if (result == -2) |
| 1318 | return NULL; |
| 1319 | if (result == -1) { |
| 1320 | PyErr_SetString(PyExc_ValueError, |
| 1321 | "substring not found"); |
| 1322 | return NULL; |
| 1323 | } |
| 1324 | return PyLong_FromSsize_t(result); |
Alexandre Vassalotti | 09121e8 | 2007-12-04 05:51:13 +0000 | [diff] [blame] | 1325 | } |
| 1326 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1327 | |
| 1328 | PyDoc_STRVAR(rfind__doc__, |
Georg Brandl | 17cb8a8 | 2008-05-30 08:20:09 +0000 | [diff] [blame] | 1329 | "B.rfind(sub[, start[, end]]) -> int\n\ |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1330 | \n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1331 | Return the highest index in B where substring sub is found,\n\ |
| 1332 | such that sub is contained within s[start:end]. Optional\n\ |
| 1333 | arguments start and end are interpreted as in slice notation.\n\ |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1334 | \n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1335 | Return -1 on failure."); |
| 1336 | |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1337 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1338 | bytes_rfind(PyBytesObject *self, PyObject *args) |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1339 | { |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1340 | Py_ssize_t result = bytes_find_internal(self, args, -1); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1341 | if (result == -2) |
| 1342 | return NULL; |
| 1343 | return PyLong_FromSsize_t(result); |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1344 | } |
| 1345 | |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1346 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1347 | PyDoc_STRVAR(rindex__doc__, |
Georg Brandl | 17cb8a8 | 2008-05-30 08:20:09 +0000 | [diff] [blame] | 1348 | "B.rindex(sub[, start[, end]]) -> int\n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1349 | \n\ |
| 1350 | Like B.rfind() but raise ValueError when the substring is not found."); |
| 1351 | |
| 1352 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1353 | bytes_rindex(PyBytesObject *self, PyObject *args) |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1354 | { |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1355 | Py_ssize_t result = bytes_find_internal(self, args, -1); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1356 | if (result == -2) |
| 1357 | return NULL; |
| 1358 | if (result == -1) { |
| 1359 | PyErr_SetString(PyExc_ValueError, |
| 1360 | "substring not found"); |
| 1361 | return NULL; |
| 1362 | } |
| 1363 | return PyLong_FromSsize_t(result); |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1364 | } |
| 1365 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1366 | |
| 1367 | Py_LOCAL_INLINE(PyObject *) |
| 1368 | do_xstrip(PyBytesObject *self, int striptype, PyObject *sepobj) |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1369 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1370 | Py_buffer vsep; |
| 1371 | char *s = PyBytes_AS_STRING(self); |
| 1372 | Py_ssize_t len = PyBytes_GET_SIZE(self); |
| 1373 | char *sep; |
| 1374 | Py_ssize_t seplen; |
| 1375 | Py_ssize_t i, j; |
| 1376 | |
| 1377 | if (_getbuffer(sepobj, &vsep) < 0) |
| 1378 | return NULL; |
| 1379 | sep = vsep.buf; |
| 1380 | seplen = vsep.len; |
| 1381 | |
| 1382 | i = 0; |
| 1383 | if (striptype != RIGHTSTRIP) { |
| 1384 | while (i < len && memchr(sep, Py_CHARMASK(s[i]), seplen)) { |
| 1385 | i++; |
| 1386 | } |
| 1387 | } |
| 1388 | |
| 1389 | j = len; |
| 1390 | if (striptype != LEFTSTRIP) { |
| 1391 | do { |
| 1392 | j--; |
| 1393 | } while (j >= i && memchr(sep, Py_CHARMASK(s[j]), seplen)); |
| 1394 | j++; |
| 1395 | } |
| 1396 | |
Martin v. Löwis | 423be95 | 2008-08-13 15:53:07 +0000 | [diff] [blame] | 1397 | PyBuffer_Release(&vsep); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1398 | |
| 1399 | if (i == 0 && j == len && PyBytes_CheckExact(self)) { |
| 1400 | Py_INCREF(self); |
| 1401 | return (PyObject*)self; |
| 1402 | } |
| 1403 | else |
| 1404 | return PyBytes_FromStringAndSize(s+i, j-i); |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1405 | } |
| 1406 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1407 | |
| 1408 | Py_LOCAL_INLINE(PyObject *) |
| 1409 | do_strip(PyBytesObject *self, int striptype) |
| 1410 | { |
| 1411 | char *s = PyBytes_AS_STRING(self); |
| 1412 | Py_ssize_t len = PyBytes_GET_SIZE(self), i, j; |
| 1413 | |
| 1414 | i = 0; |
| 1415 | if (striptype != RIGHTSTRIP) { |
| 1416 | while (i < len && ISSPACE(s[i])) { |
| 1417 | i++; |
| 1418 | } |
| 1419 | } |
| 1420 | |
| 1421 | j = len; |
| 1422 | if (striptype != LEFTSTRIP) { |
| 1423 | do { |
| 1424 | j--; |
| 1425 | } while (j >= i && ISSPACE(s[j])); |
| 1426 | j++; |
| 1427 | } |
| 1428 | |
| 1429 | if (i == 0 && j == len && PyBytes_CheckExact(self)) { |
| 1430 | Py_INCREF(self); |
| 1431 | return (PyObject*)self; |
| 1432 | } |
| 1433 | else |
| 1434 | return PyBytes_FromStringAndSize(s+i, j-i); |
| 1435 | } |
| 1436 | |
| 1437 | |
| 1438 | Py_LOCAL_INLINE(PyObject *) |
| 1439 | do_argstrip(PyBytesObject *self, int striptype, PyObject *args) |
| 1440 | { |
| 1441 | PyObject *sep = NULL; |
| 1442 | |
| 1443 | if (!PyArg_ParseTuple(args, (char *)stripformat[striptype], &sep)) |
| 1444 | return NULL; |
| 1445 | |
| 1446 | if (sep != NULL && sep != Py_None) { |
| 1447 | return do_xstrip(self, striptype, sep); |
| 1448 | } |
| 1449 | return do_strip(self, striptype); |
| 1450 | } |
| 1451 | |
| 1452 | |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1453 | PyDoc_STRVAR(strip__doc__, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1454 | "B.strip([bytes]) -> bytes\n\ |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1455 | \n\ |
Guido van Rossum | 8f95067 | 2007-09-10 16:53:45 +0000 | [diff] [blame] | 1456 | Strip leading and trailing bytes contained in the argument.\n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1457 | If the argument is omitted, strip trailing ASCII whitespace."); |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1458 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1459 | bytes_strip(PyBytesObject *self, PyObject *args) |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1460 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1461 | if (PyTuple_GET_SIZE(args) == 0) |
| 1462 | return do_strip(self, BOTHSTRIP); /* Common case */ |
| 1463 | else |
| 1464 | return do_argstrip(self, BOTHSTRIP, args); |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1465 | } |
| 1466 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1467 | |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1468 | PyDoc_STRVAR(lstrip__doc__, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1469 | "B.lstrip([bytes]) -> bytes\n\ |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1470 | \n\ |
Guido van Rossum | 8f95067 | 2007-09-10 16:53:45 +0000 | [diff] [blame] | 1471 | Strip leading bytes contained in the argument.\n\ |
| 1472 | If the argument is omitted, strip leading ASCII whitespace."); |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1473 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1474 | bytes_lstrip(PyBytesObject *self, PyObject *args) |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1475 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1476 | if (PyTuple_GET_SIZE(args) == 0) |
| 1477 | return do_strip(self, LEFTSTRIP); /* Common case */ |
| 1478 | else |
| 1479 | return do_argstrip(self, LEFTSTRIP, args); |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1480 | } |
| 1481 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1482 | |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1483 | PyDoc_STRVAR(rstrip__doc__, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1484 | "B.rstrip([bytes]) -> bytes\n\ |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1485 | \n\ |
Guido van Rossum | 8f95067 | 2007-09-10 16:53:45 +0000 | [diff] [blame] | 1486 | Strip trailing bytes contained in the argument.\n\ |
| 1487 | If the argument is omitted, strip trailing ASCII whitespace."); |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1488 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1489 | bytes_rstrip(PyBytesObject *self, PyObject *args) |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1490 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1491 | if (PyTuple_GET_SIZE(args) == 0) |
| 1492 | return do_strip(self, RIGHTSTRIP); /* Common case */ |
| 1493 | else |
| 1494 | return do_argstrip(self, RIGHTSTRIP, args); |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1495 | } |
Neal Norwitz | 6968b05 | 2007-02-27 19:02:19 +0000 | [diff] [blame] | 1496 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1497 | |
| 1498 | PyDoc_STRVAR(count__doc__, |
Georg Brandl | 17cb8a8 | 2008-05-30 08:20:09 +0000 | [diff] [blame] | 1499 | "B.count(sub[, start[, end]]) -> int\n\ |
Guido van Rossum | d624f18 | 2006-04-24 13:47:05 +0000 | [diff] [blame] | 1500 | \n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1501 | Return the number of non-overlapping occurrences of substring sub in\n\ |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 1502 | string B[start:end]. Optional arguments start and end are interpreted\n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1503 | as in slice notation."); |
| 1504 | |
| 1505 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1506 | bytes_count(PyBytesObject *self, PyObject *args) |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1507 | { |
| 1508 | PyObject *sub_obj; |
| 1509 | const char *str = PyBytes_AS_STRING(self), *sub; |
| 1510 | Py_ssize_t sub_len; |
| 1511 | Py_ssize_t start = 0, end = PY_SSIZE_T_MAX; |
| 1512 | |
| 1513 | if (!PyArg_ParseTuple(args, "O|O&O&:count", &sub_obj, |
| 1514 | _PyEval_SliceIndex, &start, _PyEval_SliceIndex, &end)) |
| 1515 | return NULL; |
| 1516 | |
| 1517 | if (PyBytes_Check(sub_obj)) { |
| 1518 | sub = PyBytes_AS_STRING(sub_obj); |
| 1519 | sub_len = PyBytes_GET_SIZE(sub_obj); |
| 1520 | } |
| 1521 | else if (PyObject_AsCharBuffer(sub_obj, &sub, &sub_len)) |
| 1522 | return NULL; |
| 1523 | |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 1524 | ADJUST_INDICES(start, end, PyBytes_GET_SIZE(self)); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1525 | |
| 1526 | return PyLong_FromSsize_t( |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 1527 | stringlib_count(str + start, end - start, sub, sub_len, PY_SSIZE_T_MAX) |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1528 | ); |
| 1529 | } |
| 1530 | |
| 1531 | |
| 1532 | PyDoc_STRVAR(translate__doc__, |
| 1533 | "B.translate(table[, deletechars]) -> bytes\n\ |
| 1534 | \n\ |
| 1535 | Return a copy of B, where all characters occurring in the\n\ |
| 1536 | optional argument deletechars are removed, and the remaining\n\ |
| 1537 | characters have been mapped through the given translation\n\ |
| 1538 | table, which must be a bytes object of length 256."); |
| 1539 | |
| 1540 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1541 | bytes_translate(PyBytesObject *self, PyObject *args) |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1542 | { |
| 1543 | register char *input, *output; |
| 1544 | const char *table; |
| 1545 | register Py_ssize_t i, c, changed = 0; |
| 1546 | PyObject *input_obj = (PyObject*)self; |
| 1547 | const char *output_start, *del_table=NULL; |
| 1548 | Py_ssize_t inlen, tablen, dellen = 0; |
| 1549 | PyObject *result; |
| 1550 | int trans_table[256]; |
| 1551 | PyObject *tableobj, *delobj = NULL; |
| 1552 | |
| 1553 | if (!PyArg_UnpackTuple(args, "translate", 1, 2, |
| 1554 | &tableobj, &delobj)) |
| 1555 | return NULL; |
| 1556 | |
| 1557 | if (PyBytes_Check(tableobj)) { |
| 1558 | table = PyBytes_AS_STRING(tableobj); |
| 1559 | tablen = PyBytes_GET_SIZE(tableobj); |
| 1560 | } |
| 1561 | else if (tableobj == Py_None) { |
| 1562 | table = NULL; |
| 1563 | tablen = 256; |
| 1564 | } |
| 1565 | else if (PyObject_AsCharBuffer(tableobj, &table, &tablen)) |
| 1566 | return NULL; |
| 1567 | |
| 1568 | if (tablen != 256) { |
| 1569 | PyErr_SetString(PyExc_ValueError, |
| 1570 | "translation table must be 256 characters long"); |
| 1571 | return NULL; |
| 1572 | } |
| 1573 | |
| 1574 | if (delobj != NULL) { |
| 1575 | if (PyBytes_Check(delobj)) { |
| 1576 | del_table = PyBytes_AS_STRING(delobj); |
| 1577 | dellen = PyBytes_GET_SIZE(delobj); |
| 1578 | } |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1579 | else if (PyObject_AsCharBuffer(delobj, &del_table, &dellen)) |
| 1580 | return NULL; |
| 1581 | } |
| 1582 | else { |
| 1583 | del_table = NULL; |
| 1584 | dellen = 0; |
| 1585 | } |
| 1586 | |
| 1587 | inlen = PyBytes_GET_SIZE(input_obj); |
| 1588 | result = PyBytes_FromStringAndSize((char *)NULL, inlen); |
| 1589 | if (result == NULL) |
| 1590 | return NULL; |
| 1591 | output_start = output = PyBytes_AsString(result); |
| 1592 | input = PyBytes_AS_STRING(input_obj); |
| 1593 | |
| 1594 | if (dellen == 0 && table != NULL) { |
| 1595 | /* If no deletions are required, use faster code */ |
| 1596 | for (i = inlen; --i >= 0; ) { |
| 1597 | c = Py_CHARMASK(*input++); |
| 1598 | if (Py_CHARMASK((*output++ = table[c])) != c) |
| 1599 | changed = 1; |
| 1600 | } |
| 1601 | if (changed || !PyBytes_CheckExact(input_obj)) |
| 1602 | return result; |
| 1603 | Py_DECREF(result); |
| 1604 | Py_INCREF(input_obj); |
| 1605 | return input_obj; |
| 1606 | } |
| 1607 | |
| 1608 | if (table == NULL) { |
| 1609 | for (i = 0; i < 256; i++) |
| 1610 | trans_table[i] = Py_CHARMASK(i); |
| 1611 | } else { |
| 1612 | for (i = 0; i < 256; i++) |
| 1613 | trans_table[i] = Py_CHARMASK(table[i]); |
| 1614 | } |
| 1615 | |
| 1616 | for (i = 0; i < dellen; i++) |
| 1617 | trans_table[(int) Py_CHARMASK(del_table[i])] = -1; |
| 1618 | |
| 1619 | for (i = inlen; --i >= 0; ) { |
| 1620 | c = Py_CHARMASK(*input++); |
| 1621 | if (trans_table[c] != -1) |
| 1622 | if (Py_CHARMASK(*output++ = (char)trans_table[c]) == c) |
| 1623 | continue; |
| 1624 | changed = 1; |
| 1625 | } |
| 1626 | if (!changed && PyBytes_CheckExact(input_obj)) { |
| 1627 | Py_DECREF(result); |
| 1628 | Py_INCREF(input_obj); |
| 1629 | return input_obj; |
| 1630 | } |
| 1631 | /* Fix the size of the resulting string */ |
| 1632 | if (inlen > 0) |
| 1633 | _PyBytes_Resize(&result, output - output_start); |
| 1634 | return result; |
| 1635 | } |
| 1636 | |
| 1637 | |
Georg Brandl | abc3877 | 2009-04-12 15:51:51 +0000 | [diff] [blame] | 1638 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 1639 | bytes_maketrans(PyObject *null, PyObject *args) |
Georg Brandl | abc3877 | 2009-04-12 15:51:51 +0000 | [diff] [blame] | 1640 | { |
| 1641 | return _Py_bytes_maketrans(args); |
| 1642 | } |
| 1643 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1644 | /* find and count characters and substrings */ |
| 1645 | |
| 1646 | #define findchar(target, target_len, c) \ |
| 1647 | ((char *)memchr((const void *)(target), c, target_len)) |
| 1648 | |
| 1649 | /* String ops must return a string. */ |
| 1650 | /* If the object is subclass of string, create a copy */ |
| 1651 | Py_LOCAL(PyBytesObject *) |
| 1652 | return_self(PyBytesObject *self) |
| 1653 | { |
| 1654 | if (PyBytes_CheckExact(self)) { |
| 1655 | Py_INCREF(self); |
| 1656 | return self; |
| 1657 | } |
| 1658 | return (PyBytesObject *)PyBytes_FromStringAndSize( |
| 1659 | PyBytes_AS_STRING(self), |
| 1660 | PyBytes_GET_SIZE(self)); |
| 1661 | } |
| 1662 | |
| 1663 | Py_LOCAL_INLINE(Py_ssize_t) |
| 1664 | countchar(const char *target, int target_len, char c, Py_ssize_t maxcount) |
| 1665 | { |
| 1666 | Py_ssize_t count=0; |
| 1667 | const char *start=target; |
| 1668 | const char *end=target+target_len; |
| 1669 | |
| 1670 | while ( (start=findchar(start, end-start, c)) != NULL ) { |
| 1671 | count++; |
| 1672 | if (count >= maxcount) |
| 1673 | break; |
| 1674 | start += 1; |
| 1675 | } |
| 1676 | return count; |
| 1677 | } |
| 1678 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1679 | |
| 1680 | /* Algorithms for different cases of string replacement */ |
| 1681 | |
| 1682 | /* len(self)>=1, from="", len(to)>=1, maxcount>=1 */ |
| 1683 | Py_LOCAL(PyBytesObject *) |
| 1684 | replace_interleave(PyBytesObject *self, |
| 1685 | const char *to_s, Py_ssize_t to_len, |
| 1686 | Py_ssize_t maxcount) |
| 1687 | { |
| 1688 | char *self_s, *result_s; |
| 1689 | Py_ssize_t self_len, result_len; |
| 1690 | Py_ssize_t count, i, product; |
| 1691 | PyBytesObject *result; |
| 1692 | |
| 1693 | self_len = PyBytes_GET_SIZE(self); |
| 1694 | |
| 1695 | /* 1 at the end plus 1 after every character */ |
| 1696 | count = self_len+1; |
| 1697 | if (maxcount < count) |
| 1698 | count = maxcount; |
| 1699 | |
| 1700 | /* Check for overflow */ |
| 1701 | /* result_len = count * to_len + self_len; */ |
| 1702 | product = count * to_len; |
| 1703 | if (product / to_len != count) { |
| 1704 | PyErr_SetString(PyExc_OverflowError, |
Benjamin Peterson | 4116f36 | 2008-05-27 00:36:20 +0000 | [diff] [blame] | 1705 | "replacement bytes are too long"); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1706 | return NULL; |
| 1707 | } |
| 1708 | result_len = product + self_len; |
| 1709 | if (result_len < 0) { |
| 1710 | PyErr_SetString(PyExc_OverflowError, |
Benjamin Peterson | 4116f36 | 2008-05-27 00:36:20 +0000 | [diff] [blame] | 1711 | "replacement bytes are too long"); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1712 | return NULL; |
| 1713 | } |
| 1714 | |
| 1715 | if (! (result = (PyBytesObject *) |
| 1716 | PyBytes_FromStringAndSize(NULL, result_len)) ) |
| 1717 | return NULL; |
| 1718 | |
| 1719 | self_s = PyBytes_AS_STRING(self); |
| 1720 | result_s = PyBytes_AS_STRING(result); |
| 1721 | |
| 1722 | /* TODO: special case single character, which doesn't need memcpy */ |
| 1723 | |
| 1724 | /* Lay the first one down (guaranteed this will occur) */ |
| 1725 | Py_MEMCPY(result_s, to_s, to_len); |
| 1726 | result_s += to_len; |
| 1727 | count -= 1; |
| 1728 | |
| 1729 | for (i=0; i<count; i++) { |
| 1730 | *result_s++ = *self_s++; |
| 1731 | Py_MEMCPY(result_s, to_s, to_len); |
| 1732 | result_s += to_len; |
| 1733 | } |
| 1734 | |
| 1735 | /* Copy the rest of the original string */ |
| 1736 | Py_MEMCPY(result_s, self_s, self_len-i); |
| 1737 | |
| 1738 | return result; |
| 1739 | } |
| 1740 | |
| 1741 | /* Special case for deleting a single character */ |
| 1742 | /* len(self)>=1, len(from)==1, to="", maxcount>=1 */ |
| 1743 | Py_LOCAL(PyBytesObject *) |
| 1744 | replace_delete_single_character(PyBytesObject *self, |
| 1745 | char from_c, Py_ssize_t maxcount) |
| 1746 | { |
| 1747 | char *self_s, *result_s; |
| 1748 | char *start, *next, *end; |
| 1749 | Py_ssize_t self_len, result_len; |
| 1750 | Py_ssize_t count; |
| 1751 | PyBytesObject *result; |
| 1752 | |
| 1753 | self_len = PyBytes_GET_SIZE(self); |
| 1754 | self_s = PyBytes_AS_STRING(self); |
| 1755 | |
| 1756 | count = countchar(self_s, self_len, from_c, maxcount); |
| 1757 | if (count == 0) { |
| 1758 | return return_self(self); |
| 1759 | } |
| 1760 | |
| 1761 | result_len = self_len - count; /* from_len == 1 */ |
| 1762 | assert(result_len>=0); |
| 1763 | |
| 1764 | if ( (result = (PyBytesObject *) |
| 1765 | PyBytes_FromStringAndSize(NULL, result_len)) == NULL) |
| 1766 | return NULL; |
| 1767 | result_s = PyBytes_AS_STRING(result); |
| 1768 | |
| 1769 | start = self_s; |
| 1770 | end = self_s + self_len; |
| 1771 | while (count-- > 0) { |
| 1772 | next = findchar(start, end-start, from_c); |
| 1773 | if (next == NULL) |
| 1774 | break; |
| 1775 | Py_MEMCPY(result_s, start, next-start); |
| 1776 | result_s += (next-start); |
| 1777 | start = next+1; |
| 1778 | } |
| 1779 | Py_MEMCPY(result_s, start, end-start); |
| 1780 | |
| 1781 | return result; |
| 1782 | } |
| 1783 | |
| 1784 | /* len(self)>=1, len(from)>=2, to="", maxcount>=1 */ |
| 1785 | |
| 1786 | Py_LOCAL(PyBytesObject *) |
| 1787 | replace_delete_substring(PyBytesObject *self, |
| 1788 | const char *from_s, Py_ssize_t from_len, |
| 1789 | Py_ssize_t maxcount) { |
| 1790 | char *self_s, *result_s; |
| 1791 | char *start, *next, *end; |
| 1792 | Py_ssize_t self_len, result_len; |
| 1793 | Py_ssize_t count, offset; |
| 1794 | PyBytesObject *result; |
| 1795 | |
| 1796 | self_len = PyBytes_GET_SIZE(self); |
| 1797 | self_s = PyBytes_AS_STRING(self); |
| 1798 | |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 1799 | count = stringlib_count(self_s, self_len, |
| 1800 | from_s, from_len, |
| 1801 | maxcount); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1802 | |
| 1803 | if (count == 0) { |
| 1804 | /* no matches */ |
| 1805 | return return_self(self); |
| 1806 | } |
| 1807 | |
| 1808 | result_len = self_len - (count * from_len); |
| 1809 | assert (result_len>=0); |
| 1810 | |
| 1811 | if ( (result = (PyBytesObject *) |
| 1812 | PyBytes_FromStringAndSize(NULL, result_len)) == NULL ) |
| 1813 | return NULL; |
| 1814 | |
| 1815 | result_s = PyBytes_AS_STRING(result); |
| 1816 | |
| 1817 | start = self_s; |
| 1818 | end = self_s + self_len; |
| 1819 | while (count-- > 0) { |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 1820 | offset = stringlib_find(start, end-start, |
| 1821 | from_s, from_len, |
| 1822 | 0); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1823 | if (offset == -1) |
| 1824 | break; |
| 1825 | next = start + offset; |
| 1826 | |
| 1827 | Py_MEMCPY(result_s, start, next-start); |
| 1828 | |
| 1829 | result_s += (next-start); |
| 1830 | start = next+from_len; |
| 1831 | } |
| 1832 | Py_MEMCPY(result_s, start, end-start); |
| 1833 | return result; |
| 1834 | } |
| 1835 | |
| 1836 | /* len(self)>=1, len(from)==len(to)==1, maxcount>=1 */ |
| 1837 | Py_LOCAL(PyBytesObject *) |
| 1838 | replace_single_character_in_place(PyBytesObject *self, |
| 1839 | char from_c, char to_c, |
| 1840 | Py_ssize_t maxcount) |
| 1841 | { |
| 1842 | char *self_s, *result_s, *start, *end, *next; |
| 1843 | Py_ssize_t self_len; |
| 1844 | PyBytesObject *result; |
| 1845 | |
| 1846 | /* The result string will be the same size */ |
| 1847 | self_s = PyBytes_AS_STRING(self); |
| 1848 | self_len = PyBytes_GET_SIZE(self); |
| 1849 | |
| 1850 | next = findchar(self_s, self_len, from_c); |
| 1851 | |
| 1852 | if (next == NULL) { |
| 1853 | /* No matches; return the original string */ |
| 1854 | return return_self(self); |
| 1855 | } |
| 1856 | |
| 1857 | /* Need to make a new string */ |
| 1858 | result = (PyBytesObject *) PyBytes_FromStringAndSize(NULL, self_len); |
| 1859 | if (result == NULL) |
| 1860 | return NULL; |
| 1861 | result_s = PyBytes_AS_STRING(result); |
| 1862 | Py_MEMCPY(result_s, self_s, self_len); |
| 1863 | |
| 1864 | /* change everything in-place, starting with this one */ |
| 1865 | start = result_s + (next-self_s); |
| 1866 | *start = to_c; |
| 1867 | start++; |
| 1868 | end = result_s + self_len; |
| 1869 | |
| 1870 | while (--maxcount > 0) { |
| 1871 | next = findchar(start, end-start, from_c); |
| 1872 | if (next == NULL) |
| 1873 | break; |
| 1874 | *next = to_c; |
| 1875 | start = next+1; |
| 1876 | } |
| 1877 | |
| 1878 | return result; |
| 1879 | } |
| 1880 | |
| 1881 | /* len(self)>=1, len(from)==len(to)>=2, maxcount>=1 */ |
| 1882 | Py_LOCAL(PyBytesObject *) |
| 1883 | replace_substring_in_place(PyBytesObject *self, |
| 1884 | const char *from_s, Py_ssize_t from_len, |
| 1885 | const char *to_s, Py_ssize_t to_len, |
| 1886 | Py_ssize_t maxcount) |
| 1887 | { |
| 1888 | char *result_s, *start, *end; |
| 1889 | char *self_s; |
| 1890 | Py_ssize_t self_len, offset; |
| 1891 | PyBytesObject *result; |
| 1892 | |
| 1893 | /* The result string will be the same size */ |
| 1894 | |
| 1895 | self_s = PyBytes_AS_STRING(self); |
| 1896 | self_len = PyBytes_GET_SIZE(self); |
| 1897 | |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 1898 | offset = stringlib_find(self_s, self_len, |
| 1899 | from_s, from_len, |
| 1900 | 0); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1901 | if (offset == -1) { |
| 1902 | /* No matches; return the original string */ |
| 1903 | return return_self(self); |
| 1904 | } |
| 1905 | |
| 1906 | /* Need to make a new string */ |
| 1907 | result = (PyBytesObject *) PyBytes_FromStringAndSize(NULL, self_len); |
| 1908 | if (result == NULL) |
| 1909 | return NULL; |
| 1910 | result_s = PyBytes_AS_STRING(result); |
| 1911 | Py_MEMCPY(result_s, self_s, self_len); |
| 1912 | |
| 1913 | /* change everything in-place, starting with this one */ |
| 1914 | start = result_s + offset; |
| 1915 | Py_MEMCPY(start, to_s, from_len); |
| 1916 | start += from_len; |
| 1917 | end = result_s + self_len; |
| 1918 | |
| 1919 | while ( --maxcount > 0) { |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 1920 | offset = stringlib_find(start, end-start, |
| 1921 | from_s, from_len, |
| 1922 | 0); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1923 | if (offset==-1) |
| 1924 | break; |
| 1925 | Py_MEMCPY(start+offset, to_s, from_len); |
| 1926 | start += offset+from_len; |
| 1927 | } |
| 1928 | |
| 1929 | return result; |
| 1930 | } |
| 1931 | |
| 1932 | /* len(self)>=1, len(from)==1, len(to)>=2, maxcount>=1 */ |
| 1933 | Py_LOCAL(PyBytesObject *) |
| 1934 | replace_single_character(PyBytesObject *self, |
| 1935 | char from_c, |
| 1936 | const char *to_s, Py_ssize_t to_len, |
| 1937 | Py_ssize_t maxcount) |
| 1938 | { |
| 1939 | char *self_s, *result_s; |
| 1940 | char *start, *next, *end; |
| 1941 | Py_ssize_t self_len, result_len; |
| 1942 | Py_ssize_t count, product; |
| 1943 | PyBytesObject *result; |
| 1944 | |
| 1945 | self_s = PyBytes_AS_STRING(self); |
| 1946 | self_len = PyBytes_GET_SIZE(self); |
| 1947 | |
| 1948 | count = countchar(self_s, self_len, from_c, maxcount); |
| 1949 | if (count == 0) { |
| 1950 | /* no matches, return unchanged */ |
| 1951 | return return_self(self); |
| 1952 | } |
| 1953 | |
| 1954 | /* use the difference between current and new, hence the "-1" */ |
| 1955 | /* result_len = self_len + count * (to_len-1) */ |
| 1956 | product = count * (to_len-1); |
| 1957 | if (product / (to_len-1) != count) { |
| 1958 | PyErr_SetString(PyExc_OverflowError, |
Benjamin Peterson | 4116f36 | 2008-05-27 00:36:20 +0000 | [diff] [blame] | 1959 | "replacement bytes are too long"); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1960 | return NULL; |
| 1961 | } |
| 1962 | result_len = self_len + product; |
| 1963 | if (result_len < 0) { |
| 1964 | PyErr_SetString(PyExc_OverflowError, |
Benjamin Peterson | 4116f36 | 2008-05-27 00:36:20 +0000 | [diff] [blame] | 1965 | "replacment bytes are too long"); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 1966 | return NULL; |
| 1967 | } |
| 1968 | |
| 1969 | if ( (result = (PyBytesObject *) |
| 1970 | PyBytes_FromStringAndSize(NULL, result_len)) == NULL) |
| 1971 | return NULL; |
| 1972 | result_s = PyBytes_AS_STRING(result); |
| 1973 | |
| 1974 | start = self_s; |
| 1975 | end = self_s + self_len; |
| 1976 | while (count-- > 0) { |
| 1977 | next = findchar(start, end-start, from_c); |
| 1978 | if (next == NULL) |
| 1979 | break; |
| 1980 | |
| 1981 | if (next == start) { |
| 1982 | /* replace with the 'to' */ |
| 1983 | Py_MEMCPY(result_s, to_s, to_len); |
| 1984 | result_s += to_len; |
| 1985 | start += 1; |
| 1986 | } else { |
| 1987 | /* copy the unchanged old then the 'to' */ |
| 1988 | Py_MEMCPY(result_s, start, next-start); |
| 1989 | result_s += (next-start); |
| 1990 | Py_MEMCPY(result_s, to_s, to_len); |
| 1991 | result_s += to_len; |
| 1992 | start = next+1; |
| 1993 | } |
| 1994 | } |
| 1995 | /* Copy the remainder of the remaining string */ |
| 1996 | Py_MEMCPY(result_s, start, end-start); |
| 1997 | |
| 1998 | return result; |
| 1999 | } |
| 2000 | |
| 2001 | /* len(self)>=1, len(from)>=2, len(to)>=2, maxcount>=1 */ |
| 2002 | Py_LOCAL(PyBytesObject *) |
| 2003 | replace_substring(PyBytesObject *self, |
| 2004 | const char *from_s, Py_ssize_t from_len, |
| 2005 | const char *to_s, Py_ssize_t to_len, |
| 2006 | Py_ssize_t maxcount) { |
| 2007 | char *self_s, *result_s; |
| 2008 | char *start, *next, *end; |
| 2009 | Py_ssize_t self_len, result_len; |
| 2010 | Py_ssize_t count, offset, product; |
| 2011 | PyBytesObject *result; |
| 2012 | |
| 2013 | self_s = PyBytes_AS_STRING(self); |
| 2014 | self_len = PyBytes_GET_SIZE(self); |
| 2015 | |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 2016 | count = stringlib_count(self_s, self_len, |
| 2017 | from_s, from_len, |
| 2018 | maxcount); |
| 2019 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2020 | if (count == 0) { |
| 2021 | /* no matches, return unchanged */ |
| 2022 | return return_self(self); |
| 2023 | } |
| 2024 | |
| 2025 | /* Check for overflow */ |
| 2026 | /* result_len = self_len + count * (to_len-from_len) */ |
| 2027 | product = count * (to_len-from_len); |
| 2028 | if (product / (to_len-from_len) != count) { |
| 2029 | PyErr_SetString(PyExc_OverflowError, |
Benjamin Peterson | 4116f36 | 2008-05-27 00:36:20 +0000 | [diff] [blame] | 2030 | "replacement bytes are too long"); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2031 | return NULL; |
| 2032 | } |
| 2033 | result_len = self_len + product; |
| 2034 | if (result_len < 0) { |
| 2035 | PyErr_SetString(PyExc_OverflowError, |
Benjamin Peterson | 4116f36 | 2008-05-27 00:36:20 +0000 | [diff] [blame] | 2036 | "replacement bytes are too long"); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2037 | return NULL; |
| 2038 | } |
| 2039 | |
| 2040 | if ( (result = (PyBytesObject *) |
| 2041 | PyBytes_FromStringAndSize(NULL, result_len)) == NULL) |
| 2042 | return NULL; |
| 2043 | result_s = PyBytes_AS_STRING(result); |
| 2044 | |
| 2045 | start = self_s; |
| 2046 | end = self_s + self_len; |
| 2047 | while (count-- > 0) { |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 2048 | offset = stringlib_find(start, end-start, |
| 2049 | from_s, from_len, |
| 2050 | 0); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2051 | if (offset == -1) |
| 2052 | break; |
| 2053 | next = start+offset; |
| 2054 | if (next == start) { |
| 2055 | /* replace with the 'to' */ |
| 2056 | Py_MEMCPY(result_s, to_s, to_len); |
| 2057 | result_s += to_len; |
| 2058 | start += from_len; |
| 2059 | } else { |
| 2060 | /* copy the unchanged old then the 'to' */ |
| 2061 | Py_MEMCPY(result_s, start, next-start); |
| 2062 | result_s += (next-start); |
| 2063 | Py_MEMCPY(result_s, to_s, to_len); |
| 2064 | result_s += to_len; |
| 2065 | start = next+from_len; |
| 2066 | } |
| 2067 | } |
| 2068 | /* Copy the remainder of the remaining string */ |
| 2069 | Py_MEMCPY(result_s, start, end-start); |
| 2070 | |
| 2071 | return result; |
| 2072 | } |
| 2073 | |
| 2074 | |
| 2075 | Py_LOCAL(PyBytesObject *) |
| 2076 | replace(PyBytesObject *self, |
| 2077 | const char *from_s, Py_ssize_t from_len, |
| 2078 | const char *to_s, Py_ssize_t to_len, |
| 2079 | Py_ssize_t maxcount) |
| 2080 | { |
| 2081 | if (maxcount < 0) { |
| 2082 | maxcount = PY_SSIZE_T_MAX; |
| 2083 | } else if (maxcount == 0 || PyBytes_GET_SIZE(self) == 0) { |
| 2084 | /* nothing to do; return the original string */ |
| 2085 | return return_self(self); |
| 2086 | } |
| 2087 | |
| 2088 | if (maxcount == 0 || |
| 2089 | (from_len == 0 && to_len == 0)) { |
| 2090 | /* nothing to do; return the original string */ |
| 2091 | return return_self(self); |
| 2092 | } |
| 2093 | |
| 2094 | /* Handle zero-length special cases */ |
| 2095 | |
| 2096 | if (from_len == 0) { |
| 2097 | /* insert the 'to' string everywhere. */ |
| 2098 | /* >>> "Python".replace("", ".") */ |
| 2099 | /* '.P.y.t.h.o.n.' */ |
| 2100 | return replace_interleave(self, to_s, to_len, maxcount); |
| 2101 | } |
| 2102 | |
| 2103 | /* Except for "".replace("", "A") == "A" there is no way beyond this */ |
| 2104 | /* point for an empty self string to generate a non-empty string */ |
| 2105 | /* Special case so the remaining code always gets a non-empty string */ |
| 2106 | if (PyBytes_GET_SIZE(self) == 0) { |
| 2107 | return return_self(self); |
| 2108 | } |
| 2109 | |
| 2110 | if (to_len == 0) { |
Georg Brandl | 17cb8a8 | 2008-05-30 08:20:09 +0000 | [diff] [blame] | 2111 | /* delete all occurrences of 'from' string */ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2112 | if (from_len == 1) { |
| 2113 | return replace_delete_single_character( |
| 2114 | self, from_s[0], maxcount); |
| 2115 | } else { |
| 2116 | return replace_delete_substring(self, from_s, |
| 2117 | from_len, maxcount); |
| 2118 | } |
| 2119 | } |
| 2120 | |
| 2121 | /* Handle special case where both strings have the same length */ |
| 2122 | |
| 2123 | if (from_len == to_len) { |
| 2124 | if (from_len == 1) { |
| 2125 | return replace_single_character_in_place( |
| 2126 | self, |
| 2127 | from_s[0], |
| 2128 | to_s[0], |
| 2129 | maxcount); |
| 2130 | } else { |
| 2131 | return replace_substring_in_place( |
| 2132 | self, from_s, from_len, to_s, to_len, |
| 2133 | maxcount); |
| 2134 | } |
| 2135 | } |
| 2136 | |
| 2137 | /* Otherwise use the more generic algorithms */ |
| 2138 | if (from_len == 1) { |
| 2139 | return replace_single_character(self, from_s[0], |
| 2140 | to_s, to_len, maxcount); |
| 2141 | } else { |
| 2142 | /* len('from')>=2, len('to')>=1 */ |
| 2143 | return replace_substring(self, from_s, from_len, to_s, to_len, |
| 2144 | maxcount); |
| 2145 | } |
| 2146 | } |
| 2147 | |
| 2148 | PyDoc_STRVAR(replace__doc__, |
| 2149 | "B.replace(old, new[, count]) -> bytes\n\ |
| 2150 | \n\ |
| 2151 | Return a copy of B with all occurrences of subsection\n\ |
| 2152 | old replaced by new. If the optional argument count is\n\ |
| 2153 | given, only the first count occurrences are replaced."); |
| 2154 | |
| 2155 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2156 | bytes_replace(PyBytesObject *self, PyObject *args) |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2157 | { |
| 2158 | Py_ssize_t count = -1; |
| 2159 | PyObject *from, *to; |
| 2160 | const char *from_s, *to_s; |
| 2161 | Py_ssize_t from_len, to_len; |
| 2162 | |
| 2163 | if (!PyArg_ParseTuple(args, "OO|n:replace", &from, &to, &count)) |
| 2164 | return NULL; |
| 2165 | |
| 2166 | if (PyBytes_Check(from)) { |
| 2167 | from_s = PyBytes_AS_STRING(from); |
| 2168 | from_len = PyBytes_GET_SIZE(from); |
| 2169 | } |
| 2170 | else if (PyObject_AsCharBuffer(from, &from_s, &from_len)) |
| 2171 | return NULL; |
| 2172 | |
| 2173 | if (PyBytes_Check(to)) { |
| 2174 | to_s = PyBytes_AS_STRING(to); |
| 2175 | to_len = PyBytes_GET_SIZE(to); |
| 2176 | } |
| 2177 | else if (PyObject_AsCharBuffer(to, &to_s, &to_len)) |
| 2178 | return NULL; |
| 2179 | |
| 2180 | return (PyObject *)replace((PyBytesObject *) self, |
| 2181 | from_s, from_len, |
| 2182 | to_s, to_len, count); |
| 2183 | } |
| 2184 | |
| 2185 | /** End DALKE **/ |
| 2186 | |
| 2187 | /* Matches the end (direction >= 0) or start (direction < 0) of self |
| 2188 | * against substr, using the start and end arguments. Returns |
| 2189 | * -1 on error, 0 if not found and 1 if found. |
| 2190 | */ |
| 2191 | Py_LOCAL(int) |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2192 | _bytes_tailmatch(PyBytesObject *self, PyObject *substr, Py_ssize_t start, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2193 | Py_ssize_t end, int direction) |
| 2194 | { |
| 2195 | Py_ssize_t len = PyBytes_GET_SIZE(self); |
| 2196 | Py_ssize_t slen; |
| 2197 | const char* sub; |
| 2198 | const char* str; |
| 2199 | |
| 2200 | if (PyBytes_Check(substr)) { |
| 2201 | sub = PyBytes_AS_STRING(substr); |
| 2202 | slen = PyBytes_GET_SIZE(substr); |
| 2203 | } |
| 2204 | else if (PyObject_AsCharBuffer(substr, &sub, &slen)) |
| 2205 | return -1; |
| 2206 | str = PyBytes_AS_STRING(self); |
| 2207 | |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 2208 | ADJUST_INDICES(start, end, len); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2209 | |
| 2210 | if (direction < 0) { |
| 2211 | /* startswith */ |
| 2212 | if (start+slen > len) |
| 2213 | return 0; |
| 2214 | } else { |
| 2215 | /* endswith */ |
| 2216 | if (end-start < slen || start > len) |
| 2217 | return 0; |
| 2218 | |
| 2219 | if (end-slen > start) |
| 2220 | start = end - slen; |
| 2221 | } |
| 2222 | if (end-start >= slen) |
| 2223 | return ! memcmp(str+start, sub, slen); |
| 2224 | return 0; |
| 2225 | } |
| 2226 | |
| 2227 | |
| 2228 | PyDoc_STRVAR(startswith__doc__, |
Georg Brandl | 17cb8a8 | 2008-05-30 08:20:09 +0000 | [diff] [blame] | 2229 | "B.startswith(prefix[, start[, end]]) -> bool\n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2230 | \n\ |
| 2231 | Return True if B starts with the specified prefix, False otherwise.\n\ |
| 2232 | With optional start, test B beginning at that position.\n\ |
| 2233 | With optional end, stop comparing B at that position.\n\ |
Benjamin Peterson | 4116f36 | 2008-05-27 00:36:20 +0000 | [diff] [blame] | 2234 | prefix can also be a tuple of bytes to try."); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2235 | |
| 2236 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2237 | bytes_startswith(PyBytesObject *self, PyObject *args) |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2238 | { |
| 2239 | Py_ssize_t start = 0; |
| 2240 | Py_ssize_t end = PY_SSIZE_T_MAX; |
| 2241 | PyObject *subobj; |
| 2242 | int result; |
| 2243 | |
| 2244 | if (!PyArg_ParseTuple(args, "O|O&O&:startswith", &subobj, |
| 2245 | _PyEval_SliceIndex, &start, _PyEval_SliceIndex, &end)) |
| 2246 | return NULL; |
| 2247 | if (PyTuple_Check(subobj)) { |
| 2248 | Py_ssize_t i; |
| 2249 | for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) { |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2250 | result = _bytes_tailmatch(self, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2251 | PyTuple_GET_ITEM(subobj, i), |
| 2252 | start, end, -1); |
| 2253 | if (result == -1) |
| 2254 | return NULL; |
| 2255 | else if (result) { |
| 2256 | Py_RETURN_TRUE; |
| 2257 | } |
| 2258 | } |
| 2259 | Py_RETURN_FALSE; |
| 2260 | } |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2261 | result = _bytes_tailmatch(self, subobj, start, end, -1); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2262 | if (result == -1) |
| 2263 | return NULL; |
| 2264 | else |
| 2265 | return PyBool_FromLong(result); |
| 2266 | } |
| 2267 | |
| 2268 | |
| 2269 | PyDoc_STRVAR(endswith__doc__, |
Georg Brandl | 17cb8a8 | 2008-05-30 08:20:09 +0000 | [diff] [blame] | 2270 | "B.endswith(suffix[, start[, end]]) -> bool\n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2271 | \n\ |
| 2272 | Return True if B ends with the specified suffix, False otherwise.\n\ |
| 2273 | With optional start, test B beginning at that position.\n\ |
| 2274 | With optional end, stop comparing B at that position.\n\ |
Benjamin Peterson | 4116f36 | 2008-05-27 00:36:20 +0000 | [diff] [blame] | 2275 | suffix can also be a tuple of bytes to try."); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2276 | |
| 2277 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2278 | bytes_endswith(PyBytesObject *self, PyObject *args) |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2279 | { |
| 2280 | Py_ssize_t start = 0; |
| 2281 | Py_ssize_t end = PY_SSIZE_T_MAX; |
| 2282 | PyObject *subobj; |
| 2283 | int result; |
| 2284 | |
| 2285 | if (!PyArg_ParseTuple(args, "O|O&O&:endswith", &subobj, |
| 2286 | _PyEval_SliceIndex, &start, _PyEval_SliceIndex, &end)) |
| 2287 | return NULL; |
| 2288 | if (PyTuple_Check(subobj)) { |
| 2289 | Py_ssize_t i; |
| 2290 | for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) { |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2291 | result = _bytes_tailmatch(self, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2292 | PyTuple_GET_ITEM(subobj, i), |
| 2293 | start, end, +1); |
| 2294 | if (result == -1) |
| 2295 | return NULL; |
| 2296 | else if (result) { |
| 2297 | Py_RETURN_TRUE; |
| 2298 | } |
| 2299 | } |
| 2300 | Py_RETURN_FALSE; |
| 2301 | } |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2302 | result = _bytes_tailmatch(self, subobj, start, end, +1); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2303 | if (result == -1) |
| 2304 | return NULL; |
| 2305 | else |
| 2306 | return PyBool_FromLong(result); |
| 2307 | } |
| 2308 | |
| 2309 | |
| 2310 | PyDoc_STRVAR(decode__doc__, |
Georg Brandl | 17cb8a8 | 2008-05-30 08:20:09 +0000 | [diff] [blame] | 2311 | "B.decode([encoding[, errors]]) -> str\n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2312 | \n\ |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 2313 | Decode B using the codec registered for encoding. encoding defaults\n\ |
Guido van Rossum | d624f18 | 2006-04-24 13:47:05 +0000 | [diff] [blame] | 2314 | to the default encoding. errors may be given to set a different error\n\ |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 2315 | handling scheme. Default is 'strict' meaning that encoding errors raise\n\ |
| 2316 | a UnicodeDecodeError. Other possible values are 'ignore' and 'replace'\n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2317 | as well as any other name registerd with codecs.register_error that is\n\ |
Guido van Rossum | d624f18 | 2006-04-24 13:47:05 +0000 | [diff] [blame] | 2318 | able to handle UnicodeDecodeErrors."); |
| 2319 | |
| 2320 | static PyObject * |
Benjamin Peterson | 308d637 | 2009-09-18 21:42:35 +0000 | [diff] [blame] | 2321 | bytes_decode(PyObject *self, PyObject *args, PyObject *kwargs) |
Guido van Rossum | b6f1fdc | 2007-04-12 22:49:52 +0000 | [diff] [blame] | 2322 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2323 | const char *encoding = NULL; |
| 2324 | const char *errors = NULL; |
Benjamin Peterson | 308d637 | 2009-09-18 21:42:35 +0000 | [diff] [blame] | 2325 | static char *kwlist[] = {"encoding", "errors", 0}; |
Guido van Rossum | d624f18 | 2006-04-24 13:47:05 +0000 | [diff] [blame] | 2326 | |
Benjamin Peterson | 308d637 | 2009-09-18 21:42:35 +0000 | [diff] [blame] | 2327 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|ss:decode", kwlist, &encoding, &errors)) |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2328 | return NULL; |
| 2329 | if (encoding == NULL) |
| 2330 | encoding = PyUnicode_GetDefaultEncoding(); |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 2331 | return PyUnicode_FromEncodedObject(self, encoding, errors); |
Guido van Rossum | d624f18 | 2006-04-24 13:47:05 +0000 | [diff] [blame] | 2332 | } |
| 2333 | |
Guido van Rossum | 2018831 | 2006-05-05 15:15:40 +0000 | [diff] [blame] | 2334 | |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 2335 | PyDoc_STRVAR(splitlines__doc__, |
| 2336 | "B.splitlines([keepends]) -> list of lines\n\ |
| 2337 | \n\ |
| 2338 | Return a list of the lines in B, breaking at line boundaries.\n\ |
| 2339 | Line breaks are not included in the resulting list unless keepends\n\ |
| 2340 | is given and true."); |
| 2341 | |
| 2342 | static PyObject* |
| 2343 | bytes_splitlines(PyObject *self, PyObject *args) |
| 2344 | { |
| 2345 | int keepends = 0; |
| 2346 | |
| 2347 | if (!PyArg_ParseTuple(args, "|i:splitlines", &keepends)) |
| 2348 | return NULL; |
| 2349 | |
| 2350 | return stringlib_splitlines( |
| 2351 | (PyObject*) self, PyBytes_AS_STRING(self), |
| 2352 | PyBytes_GET_SIZE(self), keepends |
| 2353 | ); |
| 2354 | } |
| 2355 | |
| 2356 | |
Georg Brandl | 0b9b9e0 | 2007-02-27 08:40:54 +0000 | [diff] [blame] | 2357 | PyDoc_STRVAR(fromhex_doc, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2358 | "bytes.fromhex(string) -> bytes\n\ |
Georg Brandl | 0b9b9e0 | 2007-02-27 08:40:54 +0000 | [diff] [blame] | 2359 | \n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2360 | Create a bytes object from a string of hexadecimal numbers.\n\ |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 2361 | Spaces between two numbers are accepted.\n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2362 | Example: bytes.fromhex('B9 01EF') -> b'\\xb9\\x01\\xef'."); |
Georg Brandl | 0b9b9e0 | 2007-02-27 08:40:54 +0000 | [diff] [blame] | 2363 | |
| 2364 | static int |
Guido van Rossum | ae404e2 | 2007-10-26 21:46:44 +0000 | [diff] [blame] | 2365 | hex_digit_to_int(Py_UNICODE c) |
Georg Brandl | 0b9b9e0 | 2007-02-27 08:40:54 +0000 | [diff] [blame] | 2366 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2367 | if (c >= 128) |
| 2368 | return -1; |
| 2369 | if (ISDIGIT(c)) |
| 2370 | return c - '0'; |
| 2371 | else { |
| 2372 | if (ISUPPER(c)) |
| 2373 | c = TOLOWER(c); |
| 2374 | if (c >= 'a' && c <= 'f') |
| 2375 | return c - 'a' + 10; |
| 2376 | } |
| 2377 | return -1; |
Georg Brandl | 0b9b9e0 | 2007-02-27 08:40:54 +0000 | [diff] [blame] | 2378 | } |
| 2379 | |
| 2380 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2381 | bytes_fromhex(PyObject *cls, PyObject *args) |
Georg Brandl | 0b9b9e0 | 2007-02-27 08:40:54 +0000 | [diff] [blame] | 2382 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2383 | PyObject *newstring, *hexobj; |
| 2384 | char *buf; |
| 2385 | Py_UNICODE *hex; |
| 2386 | Py_ssize_t hexlen, byteslen, i, j; |
| 2387 | int top, bot; |
Georg Brandl | 0b9b9e0 | 2007-02-27 08:40:54 +0000 | [diff] [blame] | 2388 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2389 | if (!PyArg_ParseTuple(args, "U:fromhex", &hexobj)) |
| 2390 | return NULL; |
| 2391 | assert(PyUnicode_Check(hexobj)); |
| 2392 | hexlen = PyUnicode_GET_SIZE(hexobj); |
| 2393 | hex = PyUnicode_AS_UNICODE(hexobj); |
| 2394 | byteslen = hexlen/2; /* This overestimates if there are spaces */ |
| 2395 | newstring = PyBytes_FromStringAndSize(NULL, byteslen); |
| 2396 | if (!newstring) |
| 2397 | return NULL; |
| 2398 | buf = PyBytes_AS_STRING(newstring); |
| 2399 | for (i = j = 0; i < hexlen; i += 2) { |
| 2400 | /* skip over spaces in the input */ |
| 2401 | while (hex[i] == ' ') |
| 2402 | i++; |
| 2403 | if (i >= hexlen) |
| 2404 | break; |
| 2405 | top = hex_digit_to_int(hex[i]); |
| 2406 | bot = hex_digit_to_int(hex[i+1]); |
| 2407 | if (top == -1 || bot == -1) { |
| 2408 | PyErr_Format(PyExc_ValueError, |
| 2409 | "non-hexadecimal number found in " |
| 2410 | "fromhex() arg at position %zd", i); |
| 2411 | goto error; |
| 2412 | } |
| 2413 | buf[j++] = (top << 4) + bot; |
| 2414 | } |
| 2415 | if (j != byteslen && _PyBytes_Resize(&newstring, j) < 0) |
| 2416 | goto error; |
| 2417 | return newstring; |
Georg Brandl | 0b9b9e0 | 2007-02-27 08:40:54 +0000 | [diff] [blame] | 2418 | |
| 2419 | error: |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2420 | Py_XDECREF(newstring); |
| 2421 | return NULL; |
Georg Brandl | 0b9b9e0 | 2007-02-27 08:40:54 +0000 | [diff] [blame] | 2422 | } |
| 2423 | |
Martin v. Löwis | 00709aa | 2008-06-04 14:18:43 +0000 | [diff] [blame] | 2424 | PyDoc_STRVAR(sizeof__doc__, |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2425 | "B.__sizeof__() -> size of B in memory, in bytes"); |
Martin v. Löwis | 00709aa | 2008-06-04 14:18:43 +0000 | [diff] [blame] | 2426 | |
| 2427 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2428 | bytes_sizeof(PyBytesObject *v) |
Martin v. Löwis | 00709aa | 2008-06-04 14:18:43 +0000 | [diff] [blame] | 2429 | { |
| 2430 | Py_ssize_t res; |
Mark Dickinson | fd24b32 | 2008-12-06 15:33:31 +0000 | [diff] [blame] | 2431 | res = PyBytesObject_SIZE + Py_SIZE(v) * Py_TYPE(v)->tp_itemsize; |
Martin v. Löwis | 00709aa | 2008-06-04 14:18:43 +0000 | [diff] [blame] | 2432 | return PyLong_FromSsize_t(res); |
| 2433 | } |
| 2434 | |
Guido van Rossum | 0dd32e2 | 2007-04-11 05:40:58 +0000 | [diff] [blame] | 2435 | |
| 2436 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2437 | bytes_getnewargs(PyBytesObject *v) |
Guido van Rossum | 0dd32e2 | 2007-04-11 05:40:58 +0000 | [diff] [blame] | 2438 | { |
Alexandre Vassalotti | 41f58a7 | 2010-01-12 01:23:09 +0000 | [diff] [blame] | 2439 | return Py_BuildValue("(y#)", v->ob_sval, Py_SIZE(v)); |
Guido van Rossum | 0dd32e2 | 2007-04-11 05:40:58 +0000 | [diff] [blame] | 2440 | } |
| 2441 | |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 2442 | |
| 2443 | static PyMethodDef |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2444 | bytes_methods[] = { |
| 2445 | {"__getnewargs__", (PyCFunction)bytes_getnewargs, METH_NOARGS}, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2446 | {"capitalize", (PyCFunction)stringlib_capitalize, METH_NOARGS, |
| 2447 | _Py_capitalize__doc__}, |
| 2448 | {"center", (PyCFunction)stringlib_center, METH_VARARGS, center__doc__}, |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2449 | {"count", (PyCFunction)bytes_count, METH_VARARGS, count__doc__}, |
Benjamin Peterson | 308d637 | 2009-09-18 21:42:35 +0000 | [diff] [blame] | 2450 | {"decode", (PyCFunction)bytes_decode, METH_VARARGS | METH_KEYWORDS, decode__doc__}, |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2451 | {"endswith", (PyCFunction)bytes_endswith, METH_VARARGS, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2452 | endswith__doc__}, |
| 2453 | {"expandtabs", (PyCFunction)stringlib_expandtabs, METH_VARARGS, |
| 2454 | expandtabs__doc__}, |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2455 | {"find", (PyCFunction)bytes_find, METH_VARARGS, find__doc__}, |
| 2456 | {"fromhex", (PyCFunction)bytes_fromhex, METH_VARARGS|METH_CLASS, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2457 | fromhex_doc}, |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2458 | {"index", (PyCFunction)bytes_index, METH_VARARGS, index__doc__}, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2459 | {"isalnum", (PyCFunction)stringlib_isalnum, METH_NOARGS, |
| 2460 | _Py_isalnum__doc__}, |
| 2461 | {"isalpha", (PyCFunction)stringlib_isalpha, METH_NOARGS, |
| 2462 | _Py_isalpha__doc__}, |
| 2463 | {"isdigit", (PyCFunction)stringlib_isdigit, METH_NOARGS, |
| 2464 | _Py_isdigit__doc__}, |
| 2465 | {"islower", (PyCFunction)stringlib_islower, METH_NOARGS, |
| 2466 | _Py_islower__doc__}, |
| 2467 | {"isspace", (PyCFunction)stringlib_isspace, METH_NOARGS, |
| 2468 | _Py_isspace__doc__}, |
| 2469 | {"istitle", (PyCFunction)stringlib_istitle, METH_NOARGS, |
| 2470 | _Py_istitle__doc__}, |
| 2471 | {"isupper", (PyCFunction)stringlib_isupper, METH_NOARGS, |
| 2472 | _Py_isupper__doc__}, |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2473 | {"join", (PyCFunction)bytes_join, METH_O, join__doc__}, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2474 | {"ljust", (PyCFunction)stringlib_ljust, METH_VARARGS, ljust__doc__}, |
| 2475 | {"lower", (PyCFunction)stringlib_lower, METH_NOARGS, _Py_lower__doc__}, |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2476 | {"lstrip", (PyCFunction)bytes_lstrip, METH_VARARGS, lstrip__doc__}, |
| 2477 | {"maketrans", (PyCFunction)bytes_maketrans, METH_VARARGS|METH_STATIC, |
Georg Brandl | abc3877 | 2009-04-12 15:51:51 +0000 | [diff] [blame] | 2478 | _Py_maketrans__doc__}, |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2479 | {"partition", (PyCFunction)bytes_partition, METH_O, partition__doc__}, |
| 2480 | {"replace", (PyCFunction)bytes_replace, METH_VARARGS, replace__doc__}, |
| 2481 | {"rfind", (PyCFunction)bytes_rfind, METH_VARARGS, rfind__doc__}, |
| 2482 | {"rindex", (PyCFunction)bytes_rindex, METH_VARARGS, rindex__doc__}, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2483 | {"rjust", (PyCFunction)stringlib_rjust, METH_VARARGS, rjust__doc__}, |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2484 | {"rpartition", (PyCFunction)bytes_rpartition, METH_O, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2485 | rpartition__doc__}, |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2486 | {"rsplit", (PyCFunction)bytes_rsplit, METH_VARARGS, rsplit__doc__}, |
| 2487 | {"rstrip", (PyCFunction)bytes_rstrip, METH_VARARGS, rstrip__doc__}, |
| 2488 | {"split", (PyCFunction)bytes_split, METH_VARARGS, split__doc__}, |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 2489 | {"splitlines", (PyCFunction)bytes_splitlines, METH_VARARGS, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2490 | splitlines__doc__}, |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2491 | {"startswith", (PyCFunction)bytes_startswith, METH_VARARGS, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2492 | startswith__doc__}, |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2493 | {"strip", (PyCFunction)bytes_strip, METH_VARARGS, strip__doc__}, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2494 | {"swapcase", (PyCFunction)stringlib_swapcase, METH_NOARGS, |
| 2495 | _Py_swapcase__doc__}, |
| 2496 | {"title", (PyCFunction)stringlib_title, METH_NOARGS, _Py_title__doc__}, |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2497 | {"translate", (PyCFunction)bytes_translate, METH_VARARGS, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2498 | translate__doc__}, |
| 2499 | {"upper", (PyCFunction)stringlib_upper, METH_NOARGS, _Py_upper__doc__}, |
| 2500 | {"zfill", (PyCFunction)stringlib_zfill, METH_VARARGS, zfill__doc__}, |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2501 | {"__sizeof__", (PyCFunction)bytes_sizeof, METH_NOARGS, |
Martin v. Löwis | 00709aa | 2008-06-04 14:18:43 +0000 | [diff] [blame] | 2502 | sizeof__doc__}, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2503 | {NULL, NULL} /* sentinel */ |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 2504 | }; |
| 2505 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2506 | static PyObject * |
| 2507 | str_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds); |
| 2508 | |
| 2509 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2510 | bytes_new(PyTypeObject *type, PyObject *args, PyObject *kwds) |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2511 | { |
Benjamin Peterson | c15a073 | 2008-08-26 16:46:47 +0000 | [diff] [blame] | 2512 | PyObject *x = NULL; |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2513 | const char *encoding = NULL; |
| 2514 | const char *errors = NULL; |
| 2515 | PyObject *new = NULL; |
Alexandre Vassalotti | eb6f8de | 2009-12-31 03:56:09 +0000 | [diff] [blame] | 2516 | Py_ssize_t size; |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2517 | static char *kwlist[] = {"source", "encoding", "errors", 0}; |
| 2518 | |
| 2519 | if (type != &PyBytes_Type) |
| 2520 | return str_subtype_new(type, args, kwds); |
| 2521 | if (!PyArg_ParseTupleAndKeywords(args, kwds, "|Oss:bytes", kwlist, &x, |
| 2522 | &encoding, &errors)) |
| 2523 | return NULL; |
| 2524 | if (x == NULL) { |
| 2525 | if (encoding != NULL || errors != NULL) { |
| 2526 | PyErr_SetString(PyExc_TypeError, |
| 2527 | "encoding or errors without sequence " |
| 2528 | "argument"); |
| 2529 | return NULL; |
| 2530 | } |
| 2531 | return PyBytes_FromString(""); |
| 2532 | } |
| 2533 | |
| 2534 | if (PyUnicode_Check(x)) { |
| 2535 | /* Encode via the codec registry */ |
| 2536 | if (encoding == NULL) { |
| 2537 | PyErr_SetString(PyExc_TypeError, |
| 2538 | "string argument without an encoding"); |
| 2539 | return NULL; |
| 2540 | } |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 2541 | new = PyUnicode_AsEncodedString(x, encoding, errors); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2542 | if (new == NULL) |
| 2543 | return NULL; |
| 2544 | assert(PyBytes_Check(new)); |
| 2545 | return new; |
| 2546 | } |
Alexandre Vassalotti | eb6f8de | 2009-12-31 03:56:09 +0000 | [diff] [blame] | 2547 | /* Is it an integer? */ |
| 2548 | size = PyNumber_AsSsize_t(x, PyExc_ValueError); |
| 2549 | if (size == -1 && PyErr_Occurred()) { |
| 2550 | PyErr_Clear(); |
| 2551 | } |
| 2552 | else { |
| 2553 | if (size < 0) { |
| 2554 | PyErr_SetString(PyExc_ValueError, "negative count"); |
| 2555 | return NULL; |
| 2556 | } |
| 2557 | new = PyBytes_FromStringAndSize(NULL, size); |
| 2558 | if (new == NULL) { |
| 2559 | return NULL; |
| 2560 | } |
| 2561 | if (size > 0) { |
| 2562 | memset(((PyBytesObject*)new)->ob_sval, 0, size); |
| 2563 | } |
| 2564 | return new; |
| 2565 | } |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2566 | |
| 2567 | /* If it's not unicode, there can't be encoding or errors */ |
| 2568 | if (encoding != NULL || errors != NULL) { |
| 2569 | PyErr_SetString(PyExc_TypeError, |
| 2570 | "encoding or errors without a string argument"); |
| 2571 | return NULL; |
| 2572 | } |
Benjamin Peterson | c15a073 | 2008-08-26 16:46:47 +0000 | [diff] [blame] | 2573 | return PyObject_Bytes(x); |
| 2574 | } |
| 2575 | |
| 2576 | PyObject * |
| 2577 | PyBytes_FromObject(PyObject *x) |
| 2578 | { |
| 2579 | PyObject *new, *it; |
| 2580 | Py_ssize_t i, size; |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2581 | |
Benjamin Peterson | 4b24a42 | 2008-08-27 00:28:34 +0000 | [diff] [blame] | 2582 | if (x == NULL) { |
| 2583 | PyErr_BadInternalCall(); |
| 2584 | return NULL; |
| 2585 | } |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2586 | /* Use the modern buffer interface */ |
| 2587 | if (PyObject_CheckBuffer(x)) { |
| 2588 | Py_buffer view; |
| 2589 | if (PyObject_GetBuffer(x, &view, PyBUF_FULL_RO) < 0) |
| 2590 | return NULL; |
| 2591 | new = PyBytes_FromStringAndSize(NULL, view.len); |
| 2592 | if (!new) |
| 2593 | goto fail; |
Christian Heimes | 1a8501c | 2008-10-02 19:56:01 +0000 | [diff] [blame] | 2594 | /* XXX(brett.cannon): Better way to get to internal buffer? */ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2595 | if (PyBuffer_ToContiguous(((PyBytesObject *)new)->ob_sval, |
| 2596 | &view, view.len, 'C') < 0) |
| 2597 | goto fail; |
Martin v. Löwis | 423be95 | 2008-08-13 15:53:07 +0000 | [diff] [blame] | 2598 | PyBuffer_Release(&view); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2599 | return new; |
| 2600 | fail: |
| 2601 | Py_XDECREF(new); |
Martin v. Löwis | 423be95 | 2008-08-13 15:53:07 +0000 | [diff] [blame] | 2602 | PyBuffer_Release(&view); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2603 | return NULL; |
| 2604 | } |
Alexandre Vassalotti | eb6f8de | 2009-12-31 03:56:09 +0000 | [diff] [blame] | 2605 | if (PyUnicode_Check(x)) { |
| 2606 | PyErr_SetString(PyExc_TypeError, |
| 2607 | "cannot convert unicode object to bytes"); |
| 2608 | return NULL; |
| 2609 | } |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2610 | |
Alexandre Vassalotti | a5c565a | 2010-01-09 22:14:46 +0000 | [diff] [blame] | 2611 | if (PyList_CheckExact(x)) { |
| 2612 | new = PyBytes_FromStringAndSize(NULL, Py_SIZE(x)); |
| 2613 | if (new == NULL) |
| 2614 | return NULL; |
| 2615 | for (i = 0; i < Py_SIZE(x); i++) { |
| 2616 | Py_ssize_t value = PyNumber_AsSsize_t( |
| 2617 | PyList_GET_ITEM(x, i), PyExc_ValueError); |
| 2618 | if (value == -1 && PyErr_Occurred()) { |
| 2619 | Py_DECREF(new); |
| 2620 | return NULL; |
| 2621 | } |
| 2622 | if (value < 0 || value >= 256) { |
| 2623 | PyErr_SetString(PyExc_ValueError, |
| 2624 | "bytes must be in range(0, 256)"); |
| 2625 | Py_DECREF(new); |
| 2626 | return NULL; |
| 2627 | } |
| 2628 | ((PyBytesObject *)new)->ob_sval[i] = value; |
| 2629 | } |
| 2630 | return new; |
| 2631 | } |
| 2632 | if (PyTuple_CheckExact(x)) { |
| 2633 | new = PyBytes_FromStringAndSize(NULL, Py_SIZE(x)); |
| 2634 | if (new == NULL) |
| 2635 | return NULL; |
| 2636 | for (i = 0; i < Py_SIZE(x); i++) { |
| 2637 | Py_ssize_t value = PyNumber_AsSsize_t( |
| 2638 | PyTuple_GET_ITEM(x, i), PyExc_ValueError); |
| 2639 | if (value == -1 && PyErr_Occurred()) { |
| 2640 | Py_DECREF(new); |
| 2641 | return NULL; |
| 2642 | } |
| 2643 | if (value < 0 || value >= 256) { |
| 2644 | PyErr_SetString(PyExc_ValueError, |
| 2645 | "bytes must be in range(0, 256)"); |
| 2646 | Py_DECREF(new); |
| 2647 | return NULL; |
| 2648 | } |
| 2649 | ((PyBytesObject *)new)->ob_sval[i] = value; |
| 2650 | } |
| 2651 | return new; |
| 2652 | } |
| 2653 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2654 | /* For iterator version, create a string object and resize as needed */ |
Alexandre Vassalotti | a5c565a | 2010-01-09 22:14:46 +0000 | [diff] [blame] | 2655 | size = _PyObject_LengthHint(x, 64); |
| 2656 | if (size == -1 && PyErr_Occurred()) |
| 2657 | return NULL; |
| 2658 | /* Allocate an extra byte to prevent PyBytes_FromStringAndSize() from |
| 2659 | returning a shared empty bytes string. This required because we |
| 2660 | want to call _PyBytes_Resize() the returned object, which we can |
| 2661 | only do on bytes objects with refcount == 1. */ |
| 2662 | size += 1; |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2663 | new = PyBytes_FromStringAndSize(NULL, size); |
| 2664 | if (new == NULL) |
| 2665 | return NULL; |
| 2666 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2667 | /* Get the iterator */ |
| 2668 | it = PyObject_GetIter(x); |
| 2669 | if (it == NULL) |
| 2670 | goto error; |
| 2671 | |
| 2672 | /* Run the iterator to exhaustion */ |
| 2673 | for (i = 0; ; i++) { |
| 2674 | PyObject *item; |
| 2675 | Py_ssize_t value; |
| 2676 | |
| 2677 | /* Get the next item */ |
| 2678 | item = PyIter_Next(it); |
| 2679 | if (item == NULL) { |
| 2680 | if (PyErr_Occurred()) |
| 2681 | goto error; |
| 2682 | break; |
| 2683 | } |
| 2684 | |
| 2685 | /* Interpret it as an int (__index__) */ |
| 2686 | value = PyNumber_AsSsize_t(item, PyExc_ValueError); |
| 2687 | Py_DECREF(item); |
| 2688 | if (value == -1 && PyErr_Occurred()) |
| 2689 | goto error; |
| 2690 | |
| 2691 | /* Range check */ |
| 2692 | if (value < 0 || value >= 256) { |
| 2693 | PyErr_SetString(PyExc_ValueError, |
| 2694 | "bytes must be in range(0, 256)"); |
| 2695 | goto error; |
| 2696 | } |
| 2697 | |
| 2698 | /* Append the byte */ |
| 2699 | if (i >= size) { |
Alexandre Vassalotti | a5c565a | 2010-01-09 22:14:46 +0000 | [diff] [blame] | 2700 | size = 2 * size + 1; |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2701 | if (_PyBytes_Resize(&new, size) < 0) |
| 2702 | goto error; |
| 2703 | } |
| 2704 | ((PyBytesObject *)new)->ob_sval[i] = value; |
| 2705 | } |
| 2706 | _PyBytes_Resize(&new, i); |
| 2707 | |
| 2708 | /* Clean up and return success */ |
| 2709 | Py_DECREF(it); |
| 2710 | return new; |
| 2711 | |
| 2712 | error: |
| 2713 | /* Error handling when new != NULL */ |
| 2714 | Py_XDECREF(it); |
| 2715 | Py_DECREF(new); |
| 2716 | return NULL; |
| 2717 | } |
| 2718 | |
| 2719 | static PyObject * |
| 2720 | str_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds) |
| 2721 | { |
| 2722 | PyObject *tmp, *pnew; |
| 2723 | Py_ssize_t n; |
| 2724 | |
| 2725 | assert(PyType_IsSubtype(type, &PyBytes_Type)); |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2726 | tmp = bytes_new(&PyBytes_Type, args, kwds); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2727 | if (tmp == NULL) |
| 2728 | return NULL; |
| 2729 | assert(PyBytes_CheckExact(tmp)); |
| 2730 | n = PyBytes_GET_SIZE(tmp); |
| 2731 | pnew = type->tp_alloc(type, n); |
| 2732 | if (pnew != NULL) { |
| 2733 | Py_MEMCPY(PyBytes_AS_STRING(pnew), |
| 2734 | PyBytes_AS_STRING(tmp), n+1); |
| 2735 | ((PyBytesObject *)pnew)->ob_shash = |
| 2736 | ((PyBytesObject *)tmp)->ob_shash; |
| 2737 | } |
| 2738 | Py_DECREF(tmp); |
| 2739 | return pnew; |
| 2740 | } |
| 2741 | |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2742 | PyDoc_STRVAR(bytes_doc, |
Georg Brandl | 17cb8a8 | 2008-05-30 08:20:09 +0000 | [diff] [blame] | 2743 | "bytes(iterable_of_ints) -> bytes\n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2744 | bytes(string, encoding[, errors]) -> bytes\n\ |
Georg Brandl | 17cb8a8 | 2008-05-30 08:20:09 +0000 | [diff] [blame] | 2745 | bytes(bytes_or_buffer) -> immutable copy of bytes_or_buffer\n\ |
| 2746 | bytes(memory_view) -> bytes\n\ |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 2747 | \n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2748 | Construct an immutable array of bytes from:\n\ |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 2749 | - an iterable yielding integers in range(256)\n\ |
| 2750 | - a text string encoded using the specified encoding\n\ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2751 | - a bytes or a buffer object\n\ |
| 2752 | - any object implementing the buffer API."); |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 2753 | |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2754 | static PyObject *bytes_iter(PyObject *seq); |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 2755 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2756 | PyTypeObject PyBytes_Type = { |
| 2757 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
| 2758 | "bytes", |
Mark Dickinson | fd24b32 | 2008-12-06 15:33:31 +0000 | [diff] [blame] | 2759 | PyBytesObject_SIZE, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2760 | sizeof(char), |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2761 | bytes_dealloc, /* tp_dealloc */ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2762 | 0, /* tp_print */ |
| 2763 | 0, /* tp_getattr */ |
| 2764 | 0, /* tp_setattr */ |
Mark Dickinson | e94c679 | 2009-02-02 20:36:42 +0000 | [diff] [blame] | 2765 | 0, /* tp_reserved */ |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2766 | (reprfunc)bytes_repr, /* tp_repr */ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2767 | 0, /* tp_as_number */ |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2768 | &bytes_as_sequence, /* tp_as_sequence */ |
| 2769 | &bytes_as_mapping, /* tp_as_mapping */ |
| 2770 | (hashfunc)bytes_hash, /* tp_hash */ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2771 | 0, /* tp_call */ |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2772 | bytes_str, /* tp_str */ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2773 | PyObject_GenericGetAttr, /* tp_getattro */ |
| 2774 | 0, /* tp_setattro */ |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2775 | &bytes_as_buffer, /* tp_as_buffer */ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2776 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | |
| 2777 | Py_TPFLAGS_BYTES_SUBCLASS, /* tp_flags */ |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2778 | bytes_doc, /* tp_doc */ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2779 | 0, /* tp_traverse */ |
| 2780 | 0, /* tp_clear */ |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2781 | (richcmpfunc)bytes_richcompare, /* tp_richcompare */ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2782 | 0, /* tp_weaklistoffset */ |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2783 | bytes_iter, /* tp_iter */ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2784 | 0, /* tp_iternext */ |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2785 | bytes_methods, /* tp_methods */ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2786 | 0, /* tp_members */ |
| 2787 | 0, /* tp_getset */ |
| 2788 | &PyBaseObject_Type, /* tp_base */ |
| 2789 | 0, /* tp_dict */ |
| 2790 | 0, /* tp_descr_get */ |
| 2791 | 0, /* tp_descr_set */ |
| 2792 | 0, /* tp_dictoffset */ |
| 2793 | 0, /* tp_init */ |
| 2794 | 0, /* tp_alloc */ |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2795 | bytes_new, /* tp_new */ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2796 | PyObject_Del, /* tp_free */ |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 2797 | }; |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 2798 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2799 | void |
| 2800 | PyBytes_Concat(register PyObject **pv, register PyObject *w) |
| 2801 | { |
| 2802 | register PyObject *v; |
| 2803 | assert(pv != NULL); |
| 2804 | if (*pv == NULL) |
| 2805 | return; |
| 2806 | if (w == NULL) { |
| 2807 | Py_DECREF(*pv); |
| 2808 | *pv = NULL; |
| 2809 | return; |
| 2810 | } |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 2811 | v = bytes_concat(*pv, w); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2812 | Py_DECREF(*pv); |
| 2813 | *pv = v; |
| 2814 | } |
| 2815 | |
| 2816 | void |
| 2817 | PyBytes_ConcatAndDel(register PyObject **pv, register PyObject *w) |
| 2818 | { |
| 2819 | PyBytes_Concat(pv, w); |
| 2820 | Py_XDECREF(w); |
| 2821 | } |
| 2822 | |
| 2823 | |
| 2824 | /* The following function breaks the notion that strings are immutable: |
| 2825 | it changes the size of a string. We get away with this only if there |
| 2826 | is only one module referencing the object. You can also think of it |
| 2827 | as creating a new string object and destroying the old one, only |
| 2828 | more efficiently. In any case, don't use this if the string may |
| 2829 | already be known to some other part of the code... |
| 2830 | Note that if there's not enough memory to resize the string, the original |
| 2831 | string object at *pv is deallocated, *pv is set to NULL, an "out of |
| 2832 | memory" exception is set, and -1 is returned. Else (on success) 0 is |
| 2833 | returned, and the value in *pv may or may not be the same as on input. |
| 2834 | As always, an extra byte is allocated for a trailing \0 byte (newsize |
| 2835 | does *not* include that), and a trailing \0 byte is stored. |
| 2836 | */ |
| 2837 | |
| 2838 | int |
| 2839 | _PyBytes_Resize(PyObject **pv, Py_ssize_t newsize) |
| 2840 | { |
| 2841 | register PyObject *v; |
| 2842 | register PyBytesObject *sv; |
| 2843 | v = *pv; |
| 2844 | if (!PyBytes_Check(v) || Py_REFCNT(v) != 1 || newsize < 0) { |
| 2845 | *pv = 0; |
| 2846 | Py_DECREF(v); |
| 2847 | PyErr_BadInternalCall(); |
| 2848 | return -1; |
| 2849 | } |
| 2850 | /* XXX UNREF/NEWREF interface should be more symmetrical */ |
| 2851 | _Py_DEC_REFTOTAL; |
| 2852 | _Py_ForgetReference(v); |
| 2853 | *pv = (PyObject *) |
Mark Dickinson | fd24b32 | 2008-12-06 15:33:31 +0000 | [diff] [blame] | 2854 | PyObject_REALLOC((char *)v, PyBytesObject_SIZE + newsize); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2855 | if (*pv == NULL) { |
| 2856 | PyObject_Del(v); |
| 2857 | PyErr_NoMemory(); |
| 2858 | return -1; |
| 2859 | } |
| 2860 | _Py_NewReference(*pv); |
| 2861 | sv = (PyBytesObject *) *pv; |
| 2862 | Py_SIZE(sv) = newsize; |
| 2863 | sv->ob_sval[newsize] = '\0'; |
| 2864 | sv->ob_shash = -1; /* invalidate cached hash value */ |
| 2865 | return 0; |
| 2866 | } |
| 2867 | |
| 2868 | /* _PyBytes_FormatLong emulates the format codes d, u, o, x and X, and |
| 2869 | * the F_ALT flag, for Python's long (unbounded) ints. It's not used for |
| 2870 | * Python's regular ints. |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 2871 | * Return value: a new PyBytes*, or NULL if error. |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2872 | * . *pbuf is set to point into it, |
| 2873 | * *plen set to the # of chars following that. |
| 2874 | * Caller must decref it when done using pbuf. |
| 2875 | * The string starting at *pbuf is of the form |
| 2876 | * "-"? ("0x" | "0X")? digit+ |
| 2877 | * "0x"/"0X" are present only for x and X conversions, with F_ALT |
| 2878 | * set in flags. The case of hex digits will be correct, |
| 2879 | * There will be at least prec digits, zero-filled on the left if |
| 2880 | * necessary to get that many. |
| 2881 | * val object to be converted |
| 2882 | * flags bitmask of format flags; only F_ALT is looked at |
| 2883 | * prec minimum number of digits; 0-fill on left if needed |
| 2884 | * type a character in [duoxX]; u acts the same as d |
| 2885 | * |
| 2886 | * CAUTION: o, x and X conversions on regular ints can never |
| 2887 | * produce a '-' sign, but can for Python's unbounded ints. |
| 2888 | */ |
| 2889 | PyObject* |
| 2890 | _PyBytes_FormatLong(PyObject *val, int flags, int prec, int type, |
| 2891 | char **pbuf, int *plen) |
| 2892 | { |
| 2893 | PyObject *result = NULL; |
| 2894 | char *buf; |
| 2895 | Py_ssize_t i; |
| 2896 | int sign; /* 1 if '-', else 0 */ |
| 2897 | int len; /* number of characters */ |
| 2898 | Py_ssize_t llen; |
| 2899 | int numdigits; /* len == numnondigits + numdigits */ |
| 2900 | int numnondigits = 0; |
| 2901 | |
| 2902 | /* Avoid exceeding SSIZE_T_MAX */ |
Christian Heimes | ce694b7 | 2008-08-24 16:15:19 +0000 | [diff] [blame] | 2903 | if (prec > INT_MAX-3) { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2904 | PyErr_SetString(PyExc_OverflowError, |
| 2905 | "precision too large"); |
| 2906 | return NULL; |
| 2907 | } |
| 2908 | |
| 2909 | switch (type) { |
| 2910 | case 'd': |
| 2911 | case 'u': |
| 2912 | /* Special-case boolean: we want 0/1 */ |
| 2913 | if (PyBool_Check(val)) |
| 2914 | result = PyNumber_ToBase(val, 10); |
| 2915 | else |
| 2916 | result = Py_TYPE(val)->tp_str(val); |
| 2917 | break; |
| 2918 | case 'o': |
| 2919 | numnondigits = 2; |
| 2920 | result = PyNumber_ToBase(val, 8); |
| 2921 | break; |
| 2922 | case 'x': |
| 2923 | case 'X': |
| 2924 | numnondigits = 2; |
| 2925 | result = PyNumber_ToBase(val, 16); |
| 2926 | break; |
| 2927 | default: |
| 2928 | assert(!"'type' not in [duoxX]"); |
| 2929 | } |
| 2930 | if (!result) |
| 2931 | return NULL; |
| 2932 | |
Marc-André Lemburg | 4cc0f24 | 2008-08-07 18:54:33 +0000 | [diff] [blame] | 2933 | buf = _PyUnicode_AsString(result); |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 2934 | if (!buf) { |
| 2935 | Py_DECREF(result); |
| 2936 | return NULL; |
| 2937 | } |
| 2938 | |
| 2939 | /* To modify the string in-place, there can only be one reference. */ |
| 2940 | if (Py_REFCNT(result) != 1) { |
| 2941 | PyErr_BadInternalCall(); |
| 2942 | return NULL; |
| 2943 | } |
| 2944 | llen = PyUnicode_GetSize(result); |
| 2945 | if (llen > INT_MAX) { |
| 2946 | PyErr_SetString(PyExc_ValueError, |
| 2947 | "string too large in _PyBytes_FormatLong"); |
| 2948 | return NULL; |
| 2949 | } |
| 2950 | len = (int)llen; |
| 2951 | if (buf[len-1] == 'L') { |
| 2952 | --len; |
| 2953 | buf[len] = '\0'; |
| 2954 | } |
| 2955 | sign = buf[0] == '-'; |
| 2956 | numnondigits += sign; |
| 2957 | numdigits = len - numnondigits; |
| 2958 | assert(numdigits > 0); |
| 2959 | |
| 2960 | /* Get rid of base marker unless F_ALT */ |
| 2961 | if (((flags & F_ALT) == 0 && |
| 2962 | (type == 'o' || type == 'x' || type == 'X'))) { |
| 2963 | assert(buf[sign] == '0'); |
| 2964 | assert(buf[sign+1] == 'x' || buf[sign+1] == 'X' || |
| 2965 | buf[sign+1] == 'o'); |
| 2966 | numnondigits -= 2; |
| 2967 | buf += 2; |
| 2968 | len -= 2; |
| 2969 | if (sign) |
| 2970 | buf[0] = '-'; |
| 2971 | assert(len == numnondigits + numdigits); |
| 2972 | assert(numdigits > 0); |
| 2973 | } |
| 2974 | |
| 2975 | /* Fill with leading zeroes to meet minimum width. */ |
| 2976 | if (prec > numdigits) { |
| 2977 | PyObject *r1 = PyBytes_FromStringAndSize(NULL, |
| 2978 | numnondigits + prec); |
| 2979 | char *b1; |
| 2980 | if (!r1) { |
| 2981 | Py_DECREF(result); |
| 2982 | return NULL; |
| 2983 | } |
| 2984 | b1 = PyBytes_AS_STRING(r1); |
| 2985 | for (i = 0; i < numnondigits; ++i) |
| 2986 | *b1++ = *buf++; |
| 2987 | for (i = 0; i < prec - numdigits; i++) |
| 2988 | *b1++ = '0'; |
| 2989 | for (i = 0; i < numdigits; i++) |
| 2990 | *b1++ = *buf++; |
| 2991 | *b1 = '\0'; |
| 2992 | Py_DECREF(result); |
| 2993 | result = r1; |
| 2994 | buf = PyBytes_AS_STRING(result); |
| 2995 | len = numnondigits + prec; |
| 2996 | } |
| 2997 | |
| 2998 | /* Fix up case for hex conversions. */ |
| 2999 | if (type == 'X') { |
| 3000 | /* Need to convert all lower case letters to upper case. |
| 3001 | and need to convert 0x to 0X (and -0x to -0X). */ |
| 3002 | for (i = 0; i < len; i++) |
| 3003 | if (buf[i] >= 'a' && buf[i] <= 'x') |
| 3004 | buf[i] -= 'a'-'A'; |
| 3005 | } |
| 3006 | *pbuf = buf; |
| 3007 | *plen = len; |
| 3008 | return result; |
| 3009 | } |
| 3010 | |
| 3011 | void |
| 3012 | PyBytes_Fini(void) |
| 3013 | { |
| 3014 | int i; |
| 3015 | for (i = 0; i < UCHAR_MAX + 1; i++) { |
| 3016 | Py_XDECREF(characters[i]); |
| 3017 | characters[i] = NULL; |
| 3018 | } |
| 3019 | Py_XDECREF(nullstring); |
| 3020 | nullstring = NULL; |
| 3021 | } |
| 3022 | |
Benjamin Peterson | 4116f36 | 2008-05-27 00:36:20 +0000 | [diff] [blame] | 3023 | /*********************** Bytes Iterator ****************************/ |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 3024 | |
| 3025 | typedef struct { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 3026 | PyObject_HEAD |
| 3027 | Py_ssize_t it_index; |
| 3028 | PyBytesObject *it_seq; /* Set to NULL when iterator is exhausted */ |
| 3029 | } striterobject; |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 3030 | |
| 3031 | static void |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 3032 | striter_dealloc(striterobject *it) |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 3033 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 3034 | _PyObject_GC_UNTRACK(it); |
| 3035 | Py_XDECREF(it->it_seq); |
| 3036 | PyObject_GC_Del(it); |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 3037 | } |
| 3038 | |
| 3039 | static int |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 3040 | striter_traverse(striterobject *it, visitproc visit, void *arg) |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 3041 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 3042 | Py_VISIT(it->it_seq); |
| 3043 | return 0; |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 3044 | } |
| 3045 | |
| 3046 | static PyObject * |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 3047 | striter_next(striterobject *it) |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 3048 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 3049 | PyBytesObject *seq; |
| 3050 | PyObject *item; |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 3051 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 3052 | assert(it != NULL); |
| 3053 | seq = it->it_seq; |
| 3054 | if (seq == NULL) |
| 3055 | return NULL; |
| 3056 | assert(PyBytes_Check(seq)); |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 3057 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 3058 | if (it->it_index < PyBytes_GET_SIZE(seq)) { |
| 3059 | item = PyLong_FromLong( |
| 3060 | (unsigned char)seq->ob_sval[it->it_index]); |
| 3061 | if (item != NULL) |
| 3062 | ++it->it_index; |
| 3063 | return item; |
| 3064 | } |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 3065 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 3066 | Py_DECREF(seq); |
| 3067 | it->it_seq = NULL; |
| 3068 | return NULL; |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 3069 | } |
| 3070 | |
| 3071 | static PyObject * |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 3072 | striter_len(striterobject *it) |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 3073 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 3074 | Py_ssize_t len = 0; |
| 3075 | if (it->it_seq) |
| 3076 | len = PyBytes_GET_SIZE(it->it_seq) - it->it_index; |
| 3077 | return PyLong_FromSsize_t(len); |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 3078 | } |
| 3079 | |
| 3080 | PyDoc_STRVAR(length_hint_doc, |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 3081 | "Private method returning an estimate of len(list(it))."); |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 3082 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 3083 | static PyMethodDef striter_methods[] = { |
| 3084 | {"__length_hint__", (PyCFunction)striter_len, METH_NOARGS, |
| 3085 | length_hint_doc}, |
| 3086 | {NULL, NULL} /* sentinel */ |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 3087 | }; |
| 3088 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 3089 | PyTypeObject PyBytesIter_Type = { |
| 3090 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
| 3091 | "bytes_iterator", /* tp_name */ |
| 3092 | sizeof(striterobject), /* tp_basicsize */ |
| 3093 | 0, /* tp_itemsize */ |
| 3094 | /* methods */ |
| 3095 | (destructor)striter_dealloc, /* tp_dealloc */ |
| 3096 | 0, /* tp_print */ |
| 3097 | 0, /* tp_getattr */ |
| 3098 | 0, /* tp_setattr */ |
Mark Dickinson | e94c679 | 2009-02-02 20:36:42 +0000 | [diff] [blame] | 3099 | 0, /* tp_reserved */ |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 3100 | 0, /* tp_repr */ |
| 3101 | 0, /* tp_as_number */ |
| 3102 | 0, /* tp_as_sequence */ |
| 3103 | 0, /* tp_as_mapping */ |
| 3104 | 0, /* tp_hash */ |
| 3105 | 0, /* tp_call */ |
| 3106 | 0, /* tp_str */ |
| 3107 | PyObject_GenericGetAttr, /* tp_getattro */ |
| 3108 | 0, /* tp_setattro */ |
| 3109 | 0, /* tp_as_buffer */ |
| 3110 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */ |
| 3111 | 0, /* tp_doc */ |
| 3112 | (traverseproc)striter_traverse, /* tp_traverse */ |
| 3113 | 0, /* tp_clear */ |
| 3114 | 0, /* tp_richcompare */ |
| 3115 | 0, /* tp_weaklistoffset */ |
| 3116 | PyObject_SelfIter, /* tp_iter */ |
| 3117 | (iternextfunc)striter_next, /* tp_iternext */ |
| 3118 | striter_methods, /* tp_methods */ |
| 3119 | 0, |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 3120 | }; |
| 3121 | |
| 3122 | static PyObject * |
Benjamin Peterson | 80688ef | 2009-04-18 15:17:02 +0000 | [diff] [blame] | 3123 | bytes_iter(PyObject *seq) |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 3124 | { |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 3125 | striterobject *it; |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 3126 | |
Christian Heimes | 2c9c7a5 | 2008-05-26 13:42:13 +0000 | [diff] [blame] | 3127 | if (!PyBytes_Check(seq)) { |
| 3128 | PyErr_BadInternalCall(); |
| 3129 | return NULL; |
| 3130 | } |
| 3131 | it = PyObject_GC_New(striterobject, &PyBytesIter_Type); |
| 3132 | if (it == NULL) |
| 3133 | return NULL; |
| 3134 | it->it_index = 0; |
| 3135 | Py_INCREF(seq); |
| 3136 | it->it_seq = (PyBytesObject *)seq; |
| 3137 | _PyObject_GC_TRACK(it); |
| 3138 | return (PyObject *)it; |
Guido van Rossum | a5d2d55 | 2007-10-26 17:39:48 +0000 | [diff] [blame] | 3139 | } |