blob: d75eb53e437c4027af008719e339851af62f2cbc [file] [log] [blame]
Christian Heimes44720832008-05-26 13:01:01 +00001/* PyBytes (bytearray) implementation */
2
3#define PY_SSIZE_T_CLEAN
4#include "Python.h"
5#include "structmember.h"
6#include "bytes_methods.h"
7
8static PyByteArrayObject *nullbytes = NULL;
9
10void
11PyByteArray_Fini(void)
12{
13 Py_CLEAR(nullbytes);
14}
15
16int
17PyByteArray_Init(void)
18{
19 nullbytes = PyObject_New(PyByteArrayObject, &PyByteArray_Type);
20 if (nullbytes == NULL)
21 return 0;
22 nullbytes->ob_bytes = NULL;
23 Py_SIZE(nullbytes) = nullbytes->ob_alloc = 0;
24 nullbytes->ob_exports = 0;
25 return 1;
26}
27
28/* end nullbytes support */
29
30/* Helpers */
31
32static int
33_getbytevalue(PyObject* arg, int *value)
34{
35 long face_value;
36
Georg Brandl3e483f62008-07-16 22:57:41 +000037 if (PyBytes_CheckExact(arg)) {
Christian Heimes44720832008-05-26 13:01:01 +000038 if (Py_SIZE(arg) != 1) {
39 PyErr_SetString(PyExc_ValueError, "string must be of size 1");
40 return 0;
41 }
Georg Brandl3e483f62008-07-16 22:57:41 +000042 *value = Py_CHARMASK(((PyBytesObject*)arg)->ob_sval[0]);
43 return 1;
44 }
45 else if (PyInt_Check(arg) || PyLong_Check(arg)) {
46 face_value = PyLong_AsLong(arg);
Christian Heimes44720832008-05-26 13:01:01 +000047 }
48 else {
Georg Brandl3e483f62008-07-16 22:57:41 +000049 PyObject *index = PyNumber_Index(arg);
50 if (index == NULL) {
51 PyErr_Format(PyExc_TypeError,
52 "an integer or string of size 1 is required");
53 return 0;
54 }
55 face_value = PyLong_AsLong(index);
56 Py_DECREF(index);
57 }
Georg Brandl3e483f62008-07-16 22:57:41 +000058
59 if (face_value < 0 || face_value >= 256) {
Georg Brandl3238a3e2008-07-16 23:17:46 +000060 /* this includes the OverflowError in case the long is too large */
Georg Brandl3e483f62008-07-16 22:57:41 +000061 PyErr_SetString(PyExc_ValueError, "byte must be in range(0, 256)");
Christian Heimes44720832008-05-26 13:01:01 +000062 return 0;
63 }
64
65 *value = face_value;
66 return 1;
67}
68
69static Py_ssize_t
70bytes_buffer_getreadbuf(PyByteArrayObject *self, Py_ssize_t index, const void **ptr)
71{
72 if ( index != 0 ) {
73 PyErr_SetString(PyExc_SystemError,
74 "accessing non-existent bytes segment");
75 return -1;
76 }
77 *ptr = (void *)self->ob_bytes;
78 return Py_SIZE(self);
79}
80
81static Py_ssize_t
82bytes_buffer_getwritebuf(PyByteArrayObject *self, Py_ssize_t index, const void **ptr)
83{
84 if ( index != 0 ) {
85 PyErr_SetString(PyExc_SystemError,
86 "accessing non-existent bytes segment");
87 return -1;
88 }
89 *ptr = (void *)self->ob_bytes;
90 return Py_SIZE(self);
91}
92
93static Py_ssize_t
94bytes_buffer_getsegcount(PyByteArrayObject *self, Py_ssize_t *lenp)
95{
96 if ( lenp )
97 *lenp = Py_SIZE(self);
98 return 1;
99}
100
101static Py_ssize_t
102bytes_buffer_getcharbuf(PyByteArrayObject *self, Py_ssize_t index, const char **ptr)
103{
104 if ( index != 0 ) {
105 PyErr_SetString(PyExc_SystemError,
106 "accessing non-existent bytes segment");
107 return -1;
108 }
109 *ptr = self->ob_bytes;
110 return Py_SIZE(self);
111}
112
113static int
114bytes_getbuffer(PyByteArrayObject *obj, Py_buffer *view, int flags)
115{
116 int ret;
117 void *ptr;
118 if (view == NULL) {
119 obj->ob_exports++;
120 return 0;
121 }
122 if (obj->ob_bytes == NULL)
123 ptr = "";
124 else
125 ptr = obj->ob_bytes;
Martin v. Löwisf91d46a2008-08-12 14:49:50 +0000126 ret = PyBuffer_FillInfo(view, (PyObject*)obj, ptr, Py_SIZE(obj), 0, flags);
Christian Heimes44720832008-05-26 13:01:01 +0000127 if (ret >= 0) {
128 obj->ob_exports++;
129 }
130 return ret;
131}
132
133static void
134bytes_releasebuffer(PyByteArrayObject *obj, Py_buffer *view)
135{
136 obj->ob_exports--;
137}
138
139static Py_ssize_t
140_getbuffer(PyObject *obj, Py_buffer *view)
141{
142 PyBufferProcs *buffer = Py_TYPE(obj)->tp_as_buffer;
143
144 if (buffer == NULL || buffer->bf_getbuffer == NULL)
145 {
146 PyErr_Format(PyExc_TypeError,
147 "Type %.100s doesn't support the buffer API",
148 Py_TYPE(obj)->tp_name);
149 return -1;
150 }
151
152 if (buffer->bf_getbuffer(obj, view, PyBUF_SIMPLE) < 0)
153 return -1;
154 return view->len;
155}
156
Antoine Pitrou599db7f2008-12-07 00:07:51 +0000157static int
158_canresize(PyByteArrayObject *self)
159{
160 if (self->ob_exports > 0) {
161 PyErr_SetString(PyExc_BufferError,
162 "Existing exports of data: object cannot be re-sized");
163 return 0;
164 }
165 return 1;
166}
167
Christian Heimes44720832008-05-26 13:01:01 +0000168/* Direct API functions */
169
170PyObject *
171PyByteArray_FromObject(PyObject *input)
172{
173 return PyObject_CallFunctionObjArgs((PyObject *)&PyByteArray_Type,
174 input, NULL);
175}
176
177PyObject *
178PyByteArray_FromStringAndSize(const char *bytes, Py_ssize_t size)
179{
180 PyByteArrayObject *new;
181 Py_ssize_t alloc;
182
183 if (size < 0) {
184 PyErr_SetString(PyExc_SystemError,
185 "Negative size passed to PyByteArray_FromStringAndSize");
186 return NULL;
187 }
188
189 new = PyObject_New(PyByteArrayObject, &PyByteArray_Type);
190 if (new == NULL)
191 return NULL;
192
193 if (size == 0) {
194 new->ob_bytes = NULL;
195 alloc = 0;
196 }
197 else {
198 alloc = size + 1;
199 new->ob_bytes = PyMem_Malloc(alloc);
200 if (new->ob_bytes == NULL) {
201 Py_DECREF(new);
202 return PyErr_NoMemory();
203 }
204 if (bytes != NULL)
205 memcpy(new->ob_bytes, bytes, size);
206 new->ob_bytes[size] = '\0'; /* Trailing null byte */
207 }
208 Py_SIZE(new) = size;
209 new->ob_alloc = alloc;
210 new->ob_exports = 0;
211
212 return (PyObject *)new;
213}
214
215Py_ssize_t
216PyByteArray_Size(PyObject *self)
217{
218 assert(self != NULL);
219 assert(PyByteArray_Check(self));
220
221 return PyByteArray_GET_SIZE(self);
222}
223
224char *
225PyByteArray_AsString(PyObject *self)
226{
227 assert(self != NULL);
228 assert(PyByteArray_Check(self));
229
230 return PyByteArray_AS_STRING(self);
231}
232
233int
234PyByteArray_Resize(PyObject *self, Py_ssize_t size)
235{
236 void *sval;
237 Py_ssize_t alloc = ((PyByteArrayObject *)self)->ob_alloc;
238
239 assert(self != NULL);
240 assert(PyByteArray_Check(self));
241 assert(size >= 0);
242
Antoine Pitrou599db7f2008-12-07 00:07:51 +0000243 if (size == Py_SIZE(self)) {
244 return 0;
245 }
246 if (!_canresize((PyByteArrayObject *)self)) {
247 return -1;
248 }
249
Christian Heimes44720832008-05-26 13:01:01 +0000250 if (size < alloc / 2) {
251 /* Major downsize; resize down to exact size */
252 alloc = size + 1;
253 }
254 else if (size < alloc) {
255 /* Within allocated size; quick exit */
256 Py_SIZE(self) = size;
257 ((PyByteArrayObject *)self)->ob_bytes[size] = '\0'; /* Trailing null */
258 return 0;
259 }
260 else if (size <= alloc * 1.125) {
261 /* Moderate upsize; overallocate similar to list_resize() */
262 alloc = size + (size >> 3) + (size < 9 ? 3 : 6);
263 }
264 else {
265 /* Major upsize; resize up to exact size */
266 alloc = size + 1;
267 }
268
Christian Heimes44720832008-05-26 13:01:01 +0000269 sval = PyMem_Realloc(((PyByteArrayObject *)self)->ob_bytes, alloc);
270 if (sval == NULL) {
271 PyErr_NoMemory();
272 return -1;
273 }
274
275 ((PyByteArrayObject *)self)->ob_bytes = sval;
276 Py_SIZE(self) = size;
277 ((PyByteArrayObject *)self)->ob_alloc = alloc;
278 ((PyByteArrayObject *)self)->ob_bytes[size] = '\0'; /* Trailing null byte */
279
280 return 0;
281}
282
283PyObject *
284PyByteArray_Concat(PyObject *a, PyObject *b)
285{
286 Py_ssize_t size;
287 Py_buffer va, vb;
288 PyByteArrayObject *result = NULL;
289
290 va.len = -1;
291 vb.len = -1;
292 if (_getbuffer(a, &va) < 0 ||
293 _getbuffer(b, &vb) < 0) {
294 PyErr_Format(PyExc_TypeError, "can't concat %.100s to %.100s",
295 Py_TYPE(a)->tp_name, Py_TYPE(b)->tp_name);
296 goto done;
297 }
298
299 size = va.len + vb.len;
300 if (size < 0) {
301 return PyErr_NoMemory();
302 goto done;
303 }
304
305 result = (PyByteArrayObject *) PyByteArray_FromStringAndSize(NULL, size);
306 if (result != NULL) {
307 memcpy(result->ob_bytes, va.buf, va.len);
308 memcpy(result->ob_bytes + va.len, vb.buf, vb.len);
309 }
310
311 done:
312 if (va.len != -1)
Martin v. Löwisf91d46a2008-08-12 14:49:50 +0000313 PyBuffer_Release(&va);
Christian Heimes44720832008-05-26 13:01:01 +0000314 if (vb.len != -1)
Martin v. Löwisf91d46a2008-08-12 14:49:50 +0000315 PyBuffer_Release(&vb);
Christian Heimes44720832008-05-26 13:01:01 +0000316 return (PyObject *)result;
317}
318
319/* Functions stuffed into the type object */
320
321static Py_ssize_t
322bytes_length(PyByteArrayObject *self)
323{
324 return Py_SIZE(self);
325}
326
327static PyObject *
328bytes_iconcat(PyByteArrayObject *self, PyObject *other)
329{
330 Py_ssize_t mysize;
331 Py_ssize_t size;
332 Py_buffer vo;
333
334 if (_getbuffer(other, &vo) < 0) {
335 PyErr_Format(PyExc_TypeError, "can't concat %.100s to %.100s",
336 Py_TYPE(other)->tp_name, Py_TYPE(self)->tp_name);
337 return NULL;
338 }
339
340 mysize = Py_SIZE(self);
341 size = mysize + vo.len;
342 if (size < 0) {
Martin v. Löwisf91d46a2008-08-12 14:49:50 +0000343 PyBuffer_Release(&vo);
Christian Heimes44720832008-05-26 13:01:01 +0000344 return PyErr_NoMemory();
345 }
346 if (size < self->ob_alloc) {
347 Py_SIZE(self) = size;
348 self->ob_bytes[Py_SIZE(self)] = '\0'; /* Trailing null byte */
349 }
350 else if (PyByteArray_Resize((PyObject *)self, size) < 0) {
Martin v. Löwisf91d46a2008-08-12 14:49:50 +0000351 PyBuffer_Release(&vo);
Christian Heimes44720832008-05-26 13:01:01 +0000352 return NULL;
353 }
354 memcpy(self->ob_bytes + mysize, vo.buf, vo.len);
Martin v. Löwisf91d46a2008-08-12 14:49:50 +0000355 PyBuffer_Release(&vo);
Christian Heimes44720832008-05-26 13:01:01 +0000356 Py_INCREF(self);
357 return (PyObject *)self;
358}
359
360static PyObject *
361bytes_repeat(PyByteArrayObject *self, Py_ssize_t count)
362{
363 PyByteArrayObject *result;
364 Py_ssize_t mysize;
365 Py_ssize_t size;
366
367 if (count < 0)
368 count = 0;
369 mysize = Py_SIZE(self);
370 size = mysize * count;
371 if (count != 0 && size / count != mysize)
372 return PyErr_NoMemory();
373 result = (PyByteArrayObject *)PyByteArray_FromStringAndSize(NULL, size);
374 if (result != NULL && size != 0) {
375 if (mysize == 1)
376 memset(result->ob_bytes, self->ob_bytes[0], size);
377 else {
378 Py_ssize_t i;
379 for (i = 0; i < count; i++)
380 memcpy(result->ob_bytes + i*mysize, self->ob_bytes, mysize);
381 }
382 }
383 return (PyObject *)result;
384}
385
386static PyObject *
387bytes_irepeat(PyByteArrayObject *self, Py_ssize_t count)
388{
389 Py_ssize_t mysize;
390 Py_ssize_t size;
391
392 if (count < 0)
393 count = 0;
394 mysize = Py_SIZE(self);
395 size = mysize * count;
396 if (count != 0 && size / count != mysize)
397 return PyErr_NoMemory();
398 if (size < self->ob_alloc) {
399 Py_SIZE(self) = size;
400 self->ob_bytes[Py_SIZE(self)] = '\0'; /* Trailing null byte */
401 }
402 else if (PyByteArray_Resize((PyObject *)self, size) < 0)
403 return NULL;
404
405 if (mysize == 1)
406 memset(self->ob_bytes, self->ob_bytes[0], size);
407 else {
408 Py_ssize_t i;
409 for (i = 1; i < count; i++)
410 memcpy(self->ob_bytes + i*mysize, self->ob_bytes, mysize);
411 }
412
413 Py_INCREF(self);
414 return (PyObject *)self;
415}
416
417static PyObject *
418bytes_getitem(PyByteArrayObject *self, Py_ssize_t i)
419{
420 if (i < 0)
421 i += Py_SIZE(self);
422 if (i < 0 || i >= Py_SIZE(self)) {
423 PyErr_SetString(PyExc_IndexError, "bytearray index out of range");
424 return NULL;
425 }
426 return PyInt_FromLong((unsigned char)(self->ob_bytes[i]));
427}
428
429static PyObject *
Georg Brandl3e483f62008-07-16 22:57:41 +0000430bytes_subscript(PyByteArrayObject *self, PyObject *index)
Christian Heimes44720832008-05-26 13:01:01 +0000431{
Georg Brandl3e483f62008-07-16 22:57:41 +0000432 if (PyIndex_Check(index)) {
433 Py_ssize_t i = PyNumber_AsSsize_t(index, PyExc_IndexError);
Christian Heimes44720832008-05-26 13:01:01 +0000434
435 if (i == -1 && PyErr_Occurred())
436 return NULL;
437
438 if (i < 0)
439 i += PyByteArray_GET_SIZE(self);
440
441 if (i < 0 || i >= Py_SIZE(self)) {
442 PyErr_SetString(PyExc_IndexError, "bytearray index out of range");
443 return NULL;
444 }
445 return PyInt_FromLong((unsigned char)(self->ob_bytes[i]));
446 }
Georg Brandl3e483f62008-07-16 22:57:41 +0000447 else if (PySlice_Check(index)) {
Christian Heimes44720832008-05-26 13:01:01 +0000448 Py_ssize_t start, stop, step, slicelength, cur, i;
Georg Brandl3e483f62008-07-16 22:57:41 +0000449 if (PySlice_GetIndicesEx((PySliceObject *)index,
Christian Heimes44720832008-05-26 13:01:01 +0000450 PyByteArray_GET_SIZE(self),
451 &start, &stop, &step, &slicelength) < 0) {
452 return NULL;
453 }
454
455 if (slicelength <= 0)
456 return PyByteArray_FromStringAndSize("", 0);
457 else if (step == 1) {
458 return PyByteArray_FromStringAndSize(self->ob_bytes + start,
459 slicelength);
460 }
461 else {
462 char *source_buf = PyByteArray_AS_STRING(self);
463 char *result_buf = (char *)PyMem_Malloc(slicelength);
464 PyObject *result;
465
466 if (result_buf == NULL)
467 return PyErr_NoMemory();
468
469 for (cur = start, i = 0; i < slicelength;
470 cur += step, i++) {
471 result_buf[i] = source_buf[cur];
472 }
473 result = PyByteArray_FromStringAndSize(result_buf, slicelength);
474 PyMem_Free(result_buf);
475 return result;
476 }
477 }
478 else {
479 PyErr_SetString(PyExc_TypeError, "bytearray indices must be integers");
480 return NULL;
481 }
482}
483
484static int
485bytes_setslice(PyByteArrayObject *self, Py_ssize_t lo, Py_ssize_t hi,
486 PyObject *values)
487{
488 Py_ssize_t avail, needed;
489 void *bytes;
490 Py_buffer vbytes;
491 int res = 0;
492
493 vbytes.len = -1;
494 if (values == (PyObject *)self) {
495 /* Make a copy and call this function recursively */
496 int err;
497 values = PyByteArray_FromObject(values);
498 if (values == NULL)
499 return -1;
500 err = bytes_setslice(self, lo, hi, values);
501 Py_DECREF(values);
502 return err;
503 }
504 if (values == NULL) {
505 /* del b[lo:hi] */
506 bytes = NULL;
507 needed = 0;
508 }
509 else {
510 if (_getbuffer(values, &vbytes) < 0) {
511 PyErr_Format(PyExc_TypeError,
Neal Norwitzc86b54c2008-07-20 19:35:23 +0000512 "can't set bytearray slice from %.100s",
Christian Heimes44720832008-05-26 13:01:01 +0000513 Py_TYPE(values)->tp_name);
514 return -1;
515 }
516 needed = vbytes.len;
517 bytes = vbytes.buf;
518 }
519
520 if (lo < 0)
521 lo = 0;
522 if (hi < lo)
523 hi = lo;
524 if (hi > Py_SIZE(self))
525 hi = Py_SIZE(self);
526
527 avail = hi - lo;
528 if (avail < 0)
529 lo = hi = avail = 0;
530
531 if (avail != needed) {
532 if (avail > needed) {
Antoine Pitrou599db7f2008-12-07 00:07:51 +0000533 if (!_canresize(self)) {
534 res = -1;
535 goto finish;
536 }
Christian Heimes44720832008-05-26 13:01:01 +0000537 /*
538 0 lo hi old_size
539 | |<----avail----->|<-----tomove------>|
540 | |<-needed->|<-----tomove------>|
541 0 lo new_hi new_size
542 */
543 memmove(self->ob_bytes + lo + needed, self->ob_bytes + hi,
544 Py_SIZE(self) - hi);
545 }
546 /* XXX(nnorwitz): need to verify this can't overflow! */
547 if (PyByteArray_Resize((PyObject *)self,
548 Py_SIZE(self) + needed - avail) < 0) {
549 res = -1;
550 goto finish;
551 }
552 if (avail < needed) {
553 /*
554 0 lo hi old_size
555 | |<-avail->|<-----tomove------>|
556 | |<----needed---->|<-----tomove------>|
557 0 lo new_hi new_size
558 */
559 memmove(self->ob_bytes + lo + needed, self->ob_bytes + hi,
560 Py_SIZE(self) - lo - needed);
561 }
562 }
563
564 if (needed > 0)
565 memcpy(self->ob_bytes + lo, bytes, needed);
566
567
568 finish:
569 if (vbytes.len != -1)
Martin v. Löwisf91d46a2008-08-12 14:49:50 +0000570 PyBuffer_Release(&vbytes);
Christian Heimes44720832008-05-26 13:01:01 +0000571 return res;
572}
573
574static int
575bytes_setitem(PyByteArrayObject *self, Py_ssize_t i, PyObject *value)
576{
577 int ival;
578
579 if (i < 0)
580 i += Py_SIZE(self);
581
582 if (i < 0 || i >= Py_SIZE(self)) {
583 PyErr_SetString(PyExc_IndexError, "bytearray index out of range");
584 return -1;
585 }
586
587 if (value == NULL)
588 return bytes_setslice(self, i, i+1, NULL);
589
590 if (!_getbytevalue(value, &ival))
591 return -1;
592
593 self->ob_bytes[i] = ival;
594 return 0;
595}
596
597static int
Georg Brandl3e483f62008-07-16 22:57:41 +0000598bytes_ass_subscript(PyByteArrayObject *self, PyObject *index, PyObject *values)
Christian Heimes44720832008-05-26 13:01:01 +0000599{
600 Py_ssize_t start, stop, step, slicelen, needed;
601 char *bytes;
602
Georg Brandl3e483f62008-07-16 22:57:41 +0000603 if (PyIndex_Check(index)) {
604 Py_ssize_t i = PyNumber_AsSsize_t(index, PyExc_IndexError);
Christian Heimes44720832008-05-26 13:01:01 +0000605
606 if (i == -1 && PyErr_Occurred())
607 return -1;
608
609 if (i < 0)
610 i += PyByteArray_GET_SIZE(self);
611
612 if (i < 0 || i >= Py_SIZE(self)) {
613 PyErr_SetString(PyExc_IndexError, "bytearray index out of range");
614 return -1;
615 }
616
617 if (values == NULL) {
618 /* Fall through to slice assignment */
619 start = i;
620 stop = i + 1;
621 step = 1;
622 slicelen = 1;
623 }
624 else {
Georg Brandl3e483f62008-07-16 22:57:41 +0000625 int ival;
626 if (!_getbytevalue(values, &ival))
Christian Heimes44720832008-05-26 13:01:01 +0000627 return -1;
Christian Heimes44720832008-05-26 13:01:01 +0000628 self->ob_bytes[i] = (char)ival;
629 return 0;
630 }
631 }
Georg Brandl3e483f62008-07-16 22:57:41 +0000632 else if (PySlice_Check(index)) {
633 if (PySlice_GetIndicesEx((PySliceObject *)index,
Christian Heimes44720832008-05-26 13:01:01 +0000634 PyByteArray_GET_SIZE(self),
635 &start, &stop, &step, &slicelen) < 0) {
636 return -1;
637 }
638 }
639 else {
640 PyErr_SetString(PyExc_TypeError, "bytearray indices must be integer");
641 return -1;
642 }
643
644 if (values == NULL) {
645 bytes = NULL;
646 needed = 0;
647 }
648 else if (values == (PyObject *)self || !PyByteArray_Check(values)) {
649 /* Make a copy an call this function recursively */
650 int err;
651 values = PyByteArray_FromObject(values);
652 if (values == NULL)
653 return -1;
Georg Brandl3e483f62008-07-16 22:57:41 +0000654 err = bytes_ass_subscript(self, index, values);
Christian Heimes44720832008-05-26 13:01:01 +0000655 Py_DECREF(values);
656 return err;
657 }
658 else {
659 assert(PyByteArray_Check(values));
660 bytes = ((PyByteArrayObject *)values)->ob_bytes;
661 needed = Py_SIZE(values);
662 }
663 /* Make sure b[5:2] = ... inserts before 5, not before 2. */
664 if ((step < 0 && start < stop) ||
665 (step > 0 && start > stop))
666 stop = start;
667 if (step == 1) {
668 if (slicelen != needed) {
Antoine Pitrou599db7f2008-12-07 00:07:51 +0000669 if (!_canresize(self))
670 return -1;
Christian Heimes44720832008-05-26 13:01:01 +0000671 if (slicelen > needed) {
672 /*
673 0 start stop old_size
674 | |<---slicelen--->|<-----tomove------>|
675 | |<-needed->|<-----tomove------>|
676 0 lo new_hi new_size
677 */
678 memmove(self->ob_bytes + start + needed, self->ob_bytes + stop,
679 Py_SIZE(self) - stop);
680 }
681 if (PyByteArray_Resize((PyObject *)self,
682 Py_SIZE(self) + needed - slicelen) < 0)
683 return -1;
684 if (slicelen < needed) {
685 /*
686 0 lo hi old_size
687 | |<-avail->|<-----tomove------>|
688 | |<----needed---->|<-----tomove------>|
689 0 lo new_hi new_size
690 */
691 memmove(self->ob_bytes + start + needed, self->ob_bytes + stop,
692 Py_SIZE(self) - start - needed);
693 }
694 }
695
696 if (needed > 0)
697 memcpy(self->ob_bytes + start, bytes, needed);
698
699 return 0;
700 }
701 else {
702 if (needed == 0) {
703 /* Delete slice */
704 Py_ssize_t cur, i;
705
Antoine Pitrou599db7f2008-12-07 00:07:51 +0000706 if (!_canresize(self))
707 return -1;
Christian Heimes44720832008-05-26 13:01:01 +0000708 if (step < 0) {
709 stop = start + 1;
710 start = stop + step * (slicelen - 1) - 1;
711 step = -step;
712 }
713 for (cur = start, i = 0;
714 i < slicelen; cur += step, i++) {
715 Py_ssize_t lim = step - 1;
716
717 if (cur + step >= PyByteArray_GET_SIZE(self))
718 lim = PyByteArray_GET_SIZE(self) - cur - 1;
719
720 memmove(self->ob_bytes + cur - i,
721 self->ob_bytes + cur + 1, lim);
722 }
723 /* Move the tail of the bytes, in one chunk */
724 cur = start + slicelen*step;
725 if (cur < PyByteArray_GET_SIZE(self)) {
726 memmove(self->ob_bytes + cur - slicelen,
727 self->ob_bytes + cur,
728 PyByteArray_GET_SIZE(self) - cur);
729 }
730 if (PyByteArray_Resize((PyObject *)self,
731 PyByteArray_GET_SIZE(self) - slicelen) < 0)
732 return -1;
733
734 return 0;
735 }
736 else {
737 /* Assign slice */
738 Py_ssize_t cur, i;
739
740 if (needed != slicelen) {
741 PyErr_Format(PyExc_ValueError,
742 "attempt to assign bytes of size %zd "
743 "to extended slice of size %zd",
744 needed, slicelen);
745 return -1;
746 }
747 for (cur = start, i = 0; i < slicelen; cur += step, i++)
748 self->ob_bytes[cur] = bytes[i];
749 return 0;
750 }
751 }
752}
753
754static int
755bytes_init(PyByteArrayObject *self, PyObject *args, PyObject *kwds)
756{
757 static char *kwlist[] = {"source", "encoding", "errors", 0};
758 PyObject *arg = NULL;
759 const char *encoding = NULL;
760 const char *errors = NULL;
761 Py_ssize_t count;
762 PyObject *it;
763 PyObject *(*iternext)(PyObject *);
764
765 if (Py_SIZE(self) != 0) {
766 /* Empty previous contents (yes, do this first of all!) */
767 if (PyByteArray_Resize((PyObject *)self, 0) < 0)
768 return -1;
769 }
770
771 /* Parse arguments */
Neal Norwitzc86b54c2008-07-20 19:35:23 +0000772 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|Oss:bytearray", kwlist,
Christian Heimes44720832008-05-26 13:01:01 +0000773 &arg, &encoding, &errors))
774 return -1;
775
776 /* Make a quick exit if no first argument */
777 if (arg == NULL) {
778 if (encoding != NULL || errors != NULL) {
779 PyErr_SetString(PyExc_TypeError,
780 "encoding or errors without sequence argument");
781 return -1;
782 }
783 return 0;
784 }
785
786 if (PyBytes_Check(arg)) {
787 PyObject *new, *encoded;
788 if (encoding != NULL) {
789 encoded = PyCodec_Encode(arg, encoding, errors);
790 if (encoded == NULL)
791 return -1;
792 assert(PyBytes_Check(encoded));
793 }
794 else {
795 encoded = arg;
796 Py_INCREF(arg);
797 }
798 new = bytes_iconcat(self, arg);
799 Py_DECREF(encoded);
800 if (new == NULL)
801 return -1;
802 Py_DECREF(new);
803 return 0;
804 }
805
806 if (PyUnicode_Check(arg)) {
807 /* Encode via the codec registry */
808 PyObject *encoded, *new;
809 if (encoding == NULL) {
810 PyErr_SetString(PyExc_TypeError,
811 "unicode argument without an encoding");
812 return -1;
813 }
814 encoded = PyCodec_Encode(arg, encoding, errors);
815 if (encoded == NULL)
816 return -1;
817 assert(PyBytes_Check(encoded));
818 new = bytes_iconcat(self, encoded);
819 Py_DECREF(encoded);
820 if (new == NULL)
821 return -1;
822 Py_DECREF(new);
823 return 0;
824 }
825
826 /* If it's not unicode, there can't be encoding or errors */
827 if (encoding != NULL || errors != NULL) {
828 PyErr_SetString(PyExc_TypeError,
829 "encoding or errors without a string argument");
830 return -1;
831 }
832
833 /* Is it an int? */
834 count = PyNumber_AsSsize_t(arg, PyExc_ValueError);
835 if (count == -1 && PyErr_Occurred())
836 PyErr_Clear();
837 else {
838 if (count < 0) {
839 PyErr_SetString(PyExc_ValueError, "negative count");
840 return -1;
841 }
842 if (count > 0) {
843 if (PyByteArray_Resize((PyObject *)self, count))
844 return -1;
845 memset(self->ob_bytes, 0, count);
846 }
847 return 0;
848 }
849
850 /* Use the buffer API */
851 if (PyObject_CheckBuffer(arg)) {
852 Py_ssize_t size;
853 Py_buffer view;
854 if (PyObject_GetBuffer(arg, &view, PyBUF_FULL_RO) < 0)
855 return -1;
856 size = view.len;
857 if (PyByteArray_Resize((PyObject *)self, size) < 0) goto fail;
858 if (PyBuffer_ToContiguous(self->ob_bytes, &view, size, 'C') < 0)
859 goto fail;
Martin v. Löwisf91d46a2008-08-12 14:49:50 +0000860 PyBuffer_Release(&view);
Christian Heimes44720832008-05-26 13:01:01 +0000861 return 0;
862 fail:
Martin v. Löwisf91d46a2008-08-12 14:49:50 +0000863 PyBuffer_Release(&view);
Christian Heimes44720832008-05-26 13:01:01 +0000864 return -1;
865 }
866
867 /* XXX Optimize this if the arguments is a list, tuple */
868
869 /* Get the iterator */
870 it = PyObject_GetIter(arg);
871 if (it == NULL)
872 return -1;
873 iternext = *Py_TYPE(it)->tp_iternext;
874
875 /* Run the iterator to exhaustion */
876 for (;;) {
877 PyObject *item;
Georg Brandl3e758462008-07-16 23:10:05 +0000878 int rc, value;
Christian Heimes44720832008-05-26 13:01:01 +0000879
880 /* Get the next item */
881 item = iternext(it);
882 if (item == NULL) {
883 if (PyErr_Occurred()) {
884 if (!PyErr_ExceptionMatches(PyExc_StopIteration))
885 goto error;
886 PyErr_Clear();
887 }
888 break;
889 }
890
891 /* Interpret it as an int (__index__) */
Georg Brandl3e758462008-07-16 23:10:05 +0000892 rc = _getbytevalue(item, &value);
Christian Heimes44720832008-05-26 13:01:01 +0000893 Py_DECREF(item);
Georg Brandl3e758462008-07-16 23:10:05 +0000894 if (!rc)
Christian Heimes44720832008-05-26 13:01:01 +0000895 goto error;
896
Christian Heimes44720832008-05-26 13:01:01 +0000897 /* Append the byte */
898 if (Py_SIZE(self) < self->ob_alloc)
899 Py_SIZE(self)++;
900 else if (PyByteArray_Resize((PyObject *)self, Py_SIZE(self)+1) < 0)
901 goto error;
902 self->ob_bytes[Py_SIZE(self)-1] = value;
903 }
904
905 /* Clean up and return success */
906 Py_DECREF(it);
907 return 0;
908
909 error:
910 /* Error handling when it != NULL */
911 Py_DECREF(it);
912 return -1;
913}
914
915/* Mostly copied from string_repr, but without the
916 "smart quote" functionality. */
917static PyObject *
918bytes_repr(PyByteArrayObject *self)
919{
920 static const char *hexdigits = "0123456789abcdef";
921 const char *quote_prefix = "bytearray(b";
922 const char *quote_postfix = ")";
923 Py_ssize_t length = Py_SIZE(self);
924 /* 14 == strlen(quote_prefix) + 2 + strlen(quote_postfix) */
925 size_t newsize = 14 + 4 * length;
926 PyObject *v;
927 if (newsize > PY_SSIZE_T_MAX || newsize / 4 - 3 != length) {
928 PyErr_SetString(PyExc_OverflowError,
929 "bytearray object is too large to make repr");
930 return NULL;
931 }
932 v = PyUnicode_FromUnicode(NULL, newsize);
933 if (v == NULL) {
934 return NULL;
935 }
936 else {
937 register Py_ssize_t i;
938 register Py_UNICODE c;
939 register Py_UNICODE *p;
940 int quote;
941
942 /* Figure out which quote to use; single is preferred */
943 quote = '\'';
944 {
945 char *test, *start;
946 start = PyByteArray_AS_STRING(self);
947 for (test = start; test < start+length; ++test) {
948 if (*test == '"') {
949 quote = '\''; /* back to single */
950 goto decided;
951 }
952 else if (*test == '\'')
953 quote = '"';
954 }
955 decided:
956 ;
957 }
958
959 p = PyUnicode_AS_UNICODE(v);
960 while (*quote_prefix)
961 *p++ = *quote_prefix++;
962 *p++ = quote;
963
964 for (i = 0; i < length; i++) {
965 /* There's at least enough room for a hex escape
966 and a closing quote. */
967 assert(newsize - (p - PyUnicode_AS_UNICODE(v)) >= 5);
968 c = self->ob_bytes[i];
969 if (c == '\'' || c == '\\')
970 *p++ = '\\', *p++ = c;
971 else if (c == '\t')
972 *p++ = '\\', *p++ = 't';
973 else if (c == '\n')
974 *p++ = '\\', *p++ = 'n';
975 else if (c == '\r')
976 *p++ = '\\', *p++ = 'r';
977 else if (c == 0)
978 *p++ = '\\', *p++ = 'x', *p++ = '0', *p++ = '0';
979 else if (c < ' ' || c >= 0x7f) {
980 *p++ = '\\';
981 *p++ = 'x';
982 *p++ = hexdigits[(c & 0xf0) >> 4];
983 *p++ = hexdigits[c & 0xf];
984 }
985 else
986 *p++ = c;
987 }
988 assert(newsize - (p - PyUnicode_AS_UNICODE(v)) >= 1);
989 *p++ = quote;
990 while (*quote_postfix) {
991 *p++ = *quote_postfix++;
992 }
993 *p = '\0';
994 if (PyUnicode_Resize(&v, (p - PyUnicode_AS_UNICODE(v)))) {
995 Py_DECREF(v);
996 return NULL;
997 }
998 return v;
999 }
1000}
1001
1002static PyObject *
1003bytes_str(PyObject *op)
1004{
1005#if 0
1006 if (Py_BytesWarningFlag) {
1007 if (PyErr_WarnEx(PyExc_BytesWarning,
1008 "str() on a bytearray instance", 1))
1009 return NULL;
1010 }
1011 return bytes_repr((PyByteArrayObject*)op);
1012#endif
1013 return PyBytes_FromStringAndSize(((PyByteArrayObject*)op)->ob_bytes, Py_SIZE(op));
1014}
1015
1016static PyObject *
1017bytes_richcompare(PyObject *self, PyObject *other, int op)
1018{
1019 Py_ssize_t self_size, other_size;
1020 Py_buffer self_bytes, other_bytes;
1021 PyObject *res;
1022 Py_ssize_t minsize;
1023 int cmp;
1024
1025 /* Bytes can be compared to anything that supports the (binary)
1026 buffer API. Except that a comparison with Unicode is always an
1027 error, even if the comparison is for equality. */
1028 if (PyObject_IsInstance(self, (PyObject*)&PyUnicode_Type) ||
1029 PyObject_IsInstance(other, (PyObject*)&PyUnicode_Type)) {
1030 if (Py_BytesWarningFlag && op == Py_EQ) {
1031 if (PyErr_WarnEx(PyExc_BytesWarning,
1032 "Comparsion between bytearray and string", 1))
1033 return NULL;
1034 }
1035
1036 Py_INCREF(Py_NotImplemented);
1037 return Py_NotImplemented;
1038 }
1039
1040 self_size = _getbuffer(self, &self_bytes);
1041 if (self_size < 0) {
1042 PyErr_Clear();
1043 Py_INCREF(Py_NotImplemented);
1044 return Py_NotImplemented;
1045 }
1046
1047 other_size = _getbuffer(other, &other_bytes);
1048 if (other_size < 0) {
1049 PyErr_Clear();
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00001050 PyBuffer_Release(&self_bytes);
Christian Heimes44720832008-05-26 13:01:01 +00001051 Py_INCREF(Py_NotImplemented);
1052 return Py_NotImplemented;
1053 }
1054
1055 if (self_size != other_size && (op == Py_EQ || op == Py_NE)) {
1056 /* Shortcut: if the lengths differ, the objects differ */
1057 cmp = (op == Py_NE);
1058 }
1059 else {
1060 minsize = self_size;
1061 if (other_size < minsize)
1062 minsize = other_size;
1063
1064 cmp = memcmp(self_bytes.buf, other_bytes.buf, minsize);
1065 /* In ISO C, memcmp() guarantees to use unsigned bytes! */
1066
1067 if (cmp == 0) {
1068 if (self_size < other_size)
1069 cmp = -1;
1070 else if (self_size > other_size)
1071 cmp = 1;
1072 }
1073
1074 switch (op) {
1075 case Py_LT: cmp = cmp < 0; break;
1076 case Py_LE: cmp = cmp <= 0; break;
1077 case Py_EQ: cmp = cmp == 0; break;
1078 case Py_NE: cmp = cmp != 0; break;
1079 case Py_GT: cmp = cmp > 0; break;
1080 case Py_GE: cmp = cmp >= 0; break;
1081 }
1082 }
1083
1084 res = cmp ? Py_True : Py_False;
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00001085 PyBuffer_Release(&self_bytes);
1086 PyBuffer_Release(&other_bytes);
Christian Heimes44720832008-05-26 13:01:01 +00001087 Py_INCREF(res);
1088 return res;
1089}
1090
1091static void
1092bytes_dealloc(PyByteArrayObject *self)
1093{
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00001094 if (self->ob_exports > 0) {
1095 PyErr_SetString(PyExc_SystemError,
1096 "deallocated bytearray object has exported buffers");
1097 PyErr_Print();
1098 }
Christian Heimes44720832008-05-26 13:01:01 +00001099 if (self->ob_bytes != 0) {
1100 PyMem_Free(self->ob_bytes);
1101 }
1102 Py_TYPE(self)->tp_free((PyObject *)self);
1103}
1104
1105
1106/* -------------------------------------------------------------------- */
1107/* Methods */
1108
1109#define STRINGLIB_CHAR char
1110#define STRINGLIB_CMP memcmp
1111#define STRINGLIB_LEN PyByteArray_GET_SIZE
1112#define STRINGLIB_STR PyByteArray_AS_STRING
1113#define STRINGLIB_NEW PyByteArray_FromStringAndSize
1114#define STRINGLIB_EMPTY nullbytes
1115#define STRINGLIB_CHECK_EXACT PyByteArray_CheckExact
1116#define STRINGLIB_MUTABLE 1
Christian Heimes7d4c3172008-08-22 19:47:25 +00001117#define FROM_BYTEARRAY 1
Christian Heimes44720832008-05-26 13:01:01 +00001118
1119#include "stringlib/fastsearch.h"
1120#include "stringlib/count.h"
1121#include "stringlib/find.h"
1122#include "stringlib/partition.h"
1123#include "stringlib/ctype.h"
1124#include "stringlib/transmogrify.h"
1125
1126
1127/* The following Py_LOCAL_INLINE and Py_LOCAL functions
1128were copied from the old char* style string object. */
1129
1130Py_LOCAL_INLINE(void)
1131_adjust_indices(Py_ssize_t *start, Py_ssize_t *end, Py_ssize_t len)
1132{
1133 if (*end > len)
1134 *end = len;
1135 else if (*end < 0)
1136 *end += len;
1137 if (*end < 0)
1138 *end = 0;
1139 if (*start < 0)
1140 *start += len;
1141 if (*start < 0)
1142 *start = 0;
1143}
1144
1145
1146Py_LOCAL_INLINE(Py_ssize_t)
1147bytes_find_internal(PyByteArrayObject *self, PyObject *args, int dir)
1148{
1149 PyObject *subobj;
1150 Py_buffer subbuf;
1151 Py_ssize_t start=0, end=PY_SSIZE_T_MAX;
1152 Py_ssize_t res;
1153
1154 if (!PyArg_ParseTuple(args, "O|O&O&:find/rfind/index/rindex", &subobj,
1155 _PyEval_SliceIndex, &start, _PyEval_SliceIndex, &end))
1156 return -2;
1157 if (_getbuffer(subobj, &subbuf) < 0)
1158 return -2;
1159 if (dir > 0)
1160 res = stringlib_find_slice(
1161 PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self),
1162 subbuf.buf, subbuf.len, start, end);
1163 else
1164 res = stringlib_rfind_slice(
1165 PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self),
1166 subbuf.buf, subbuf.len, start, end);
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00001167 PyBuffer_Release(&subbuf);
Christian Heimes44720832008-05-26 13:01:01 +00001168 return res;
1169}
1170
1171PyDoc_STRVAR(find__doc__,
1172"B.find(sub [,start [,end]]) -> int\n\
1173\n\
1174Return the lowest index in B where subsection sub is found,\n\
1175such that sub is contained within s[start,end]. Optional\n\
1176arguments start and end are interpreted as in slice notation.\n\
1177\n\
1178Return -1 on failure.");
1179
1180static PyObject *
1181bytes_find(PyByteArrayObject *self, PyObject *args)
1182{
1183 Py_ssize_t result = bytes_find_internal(self, args, +1);
1184 if (result == -2)
1185 return NULL;
1186 return PyInt_FromSsize_t(result);
1187}
1188
1189PyDoc_STRVAR(count__doc__,
1190"B.count(sub [,start [,end]]) -> int\n\
1191\n\
1192Return the number of non-overlapping occurrences of subsection sub in\n\
1193bytes B[start:end]. Optional arguments start and end are interpreted\n\
1194as in slice notation.");
1195
1196static PyObject *
1197bytes_count(PyByteArrayObject *self, PyObject *args)
1198{
1199 PyObject *sub_obj;
1200 const char *str = PyByteArray_AS_STRING(self);
1201 Py_ssize_t start = 0, end = PY_SSIZE_T_MAX;
1202 Py_buffer vsub;
1203 PyObject *count_obj;
1204
1205 if (!PyArg_ParseTuple(args, "O|O&O&:count", &sub_obj,
1206 _PyEval_SliceIndex, &start, _PyEval_SliceIndex, &end))
1207 return NULL;
1208
1209 if (_getbuffer(sub_obj, &vsub) < 0)
1210 return NULL;
1211
1212 _adjust_indices(&start, &end, PyByteArray_GET_SIZE(self));
1213
1214 count_obj = PyInt_FromSsize_t(
1215 stringlib_count(str + start, end - start, vsub.buf, vsub.len)
1216 );
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00001217 PyBuffer_Release(&vsub);
Christian Heimes44720832008-05-26 13:01:01 +00001218 return count_obj;
1219}
1220
1221
1222PyDoc_STRVAR(index__doc__,
1223"B.index(sub [,start [,end]]) -> int\n\
1224\n\
1225Like B.find() but raise ValueError when the subsection is not found.");
1226
1227static PyObject *
1228bytes_index(PyByteArrayObject *self, PyObject *args)
1229{
1230 Py_ssize_t result = bytes_find_internal(self, args, +1);
1231 if (result == -2)
1232 return NULL;
1233 if (result == -1) {
1234 PyErr_SetString(PyExc_ValueError,
1235 "subsection not found");
1236 return NULL;
1237 }
1238 return PyInt_FromSsize_t(result);
1239}
1240
1241
1242PyDoc_STRVAR(rfind__doc__,
1243"B.rfind(sub [,start [,end]]) -> int\n\
1244\n\
1245Return the highest index in B where subsection sub is found,\n\
1246such that sub is contained within s[start,end]. Optional\n\
1247arguments start and end are interpreted as in slice notation.\n\
1248\n\
1249Return -1 on failure.");
1250
1251static PyObject *
1252bytes_rfind(PyByteArrayObject *self, PyObject *args)
1253{
1254 Py_ssize_t result = bytes_find_internal(self, args, -1);
1255 if (result == -2)
1256 return NULL;
1257 return PyInt_FromSsize_t(result);
1258}
1259
1260
1261PyDoc_STRVAR(rindex__doc__,
1262"B.rindex(sub [,start [,end]]) -> int\n\
1263\n\
1264Like B.rfind() but raise ValueError when the subsection is not found.");
1265
1266static PyObject *
1267bytes_rindex(PyByteArrayObject *self, PyObject *args)
1268{
1269 Py_ssize_t result = bytes_find_internal(self, args, -1);
1270 if (result == -2)
1271 return NULL;
1272 if (result == -1) {
1273 PyErr_SetString(PyExc_ValueError,
1274 "subsection not found");
1275 return NULL;
1276 }
1277 return PyInt_FromSsize_t(result);
1278}
1279
1280
1281static int
1282bytes_contains(PyObject *self, PyObject *arg)
1283{
1284 Py_ssize_t ival = PyNumber_AsSsize_t(arg, PyExc_ValueError);
1285 if (ival == -1 && PyErr_Occurred()) {
1286 Py_buffer varg;
1287 int pos;
1288 PyErr_Clear();
1289 if (_getbuffer(arg, &varg) < 0)
1290 return -1;
1291 pos = stringlib_find(PyByteArray_AS_STRING(self), Py_SIZE(self),
1292 varg.buf, varg.len, 0);
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00001293 PyBuffer_Release(&varg);
Christian Heimes44720832008-05-26 13:01:01 +00001294 return pos >= 0;
1295 }
1296 if (ival < 0 || ival >= 256) {
1297 PyErr_SetString(PyExc_ValueError, "byte must be in range(0, 256)");
1298 return -1;
1299 }
1300
1301 return memchr(PyByteArray_AS_STRING(self), ival, Py_SIZE(self)) != NULL;
1302}
1303
1304
1305/* Matches the end (direction >= 0) or start (direction < 0) of self
1306 * against substr, using the start and end arguments. Returns
1307 * -1 on error, 0 if not found and 1 if found.
1308 */
1309Py_LOCAL(int)
1310_bytes_tailmatch(PyByteArrayObject *self, PyObject *substr, Py_ssize_t start,
1311 Py_ssize_t end, int direction)
1312{
1313 Py_ssize_t len = PyByteArray_GET_SIZE(self);
1314 const char* str;
1315 Py_buffer vsubstr;
1316 int rv = 0;
1317
1318 str = PyByteArray_AS_STRING(self);
1319
1320 if (_getbuffer(substr, &vsubstr) < 0)
1321 return -1;
1322
1323 _adjust_indices(&start, &end, len);
1324
1325 if (direction < 0) {
1326 /* startswith */
1327 if (start+vsubstr.len > len) {
1328 goto done;
1329 }
1330 } else {
1331 /* endswith */
1332 if (end-start < vsubstr.len || start > len) {
1333 goto done;
1334 }
1335
1336 if (end-vsubstr.len > start)
1337 start = end - vsubstr.len;
1338 }
1339 if (end-start >= vsubstr.len)
1340 rv = ! memcmp(str+start, vsubstr.buf, vsubstr.len);
1341
1342done:
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00001343 PyBuffer_Release(&vsubstr);
Christian Heimes44720832008-05-26 13:01:01 +00001344 return rv;
1345}
1346
1347
1348PyDoc_STRVAR(startswith__doc__,
1349"B.startswith(prefix [,start [,end]]) -> bool\n\
1350\n\
1351Return True if B starts with the specified prefix, False otherwise.\n\
1352With optional start, test B beginning at that position.\n\
1353With optional end, stop comparing B at that position.\n\
1354prefix can also be a tuple of strings to try.");
1355
1356static PyObject *
1357bytes_startswith(PyByteArrayObject *self, PyObject *args)
1358{
1359 Py_ssize_t start = 0;
1360 Py_ssize_t end = PY_SSIZE_T_MAX;
1361 PyObject *subobj;
1362 int result;
1363
1364 if (!PyArg_ParseTuple(args, "O|O&O&:startswith", &subobj,
1365 _PyEval_SliceIndex, &start, _PyEval_SliceIndex, &end))
1366 return NULL;
1367 if (PyTuple_Check(subobj)) {
1368 Py_ssize_t i;
1369 for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) {
1370 result = _bytes_tailmatch(self,
1371 PyTuple_GET_ITEM(subobj, i),
1372 start, end, -1);
1373 if (result == -1)
1374 return NULL;
1375 else if (result) {
1376 Py_RETURN_TRUE;
1377 }
1378 }
1379 Py_RETURN_FALSE;
1380 }
1381 result = _bytes_tailmatch(self, subobj, start, end, -1);
1382 if (result == -1)
1383 return NULL;
1384 else
1385 return PyBool_FromLong(result);
1386}
1387
1388PyDoc_STRVAR(endswith__doc__,
1389"B.endswith(suffix [,start [,end]]) -> bool\n\
1390\n\
1391Return True if B ends with the specified suffix, False otherwise.\n\
1392With optional start, test B beginning at that position.\n\
1393With optional end, stop comparing B at that position.\n\
1394suffix can also be a tuple of strings to try.");
1395
1396static PyObject *
1397bytes_endswith(PyByteArrayObject *self, PyObject *args)
1398{
1399 Py_ssize_t start = 0;
1400 Py_ssize_t end = PY_SSIZE_T_MAX;
1401 PyObject *subobj;
1402 int result;
1403
1404 if (!PyArg_ParseTuple(args, "O|O&O&:endswith", &subobj,
1405 _PyEval_SliceIndex, &start, _PyEval_SliceIndex, &end))
1406 return NULL;
1407 if (PyTuple_Check(subobj)) {
1408 Py_ssize_t i;
1409 for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) {
1410 result = _bytes_tailmatch(self,
1411 PyTuple_GET_ITEM(subobj, i),
1412 start, end, +1);
1413 if (result == -1)
1414 return NULL;
1415 else if (result) {
1416 Py_RETURN_TRUE;
1417 }
1418 }
1419 Py_RETURN_FALSE;
1420 }
1421 result = _bytes_tailmatch(self, subobj, start, end, +1);
1422 if (result == -1)
1423 return NULL;
1424 else
1425 return PyBool_FromLong(result);
1426}
1427
1428
1429PyDoc_STRVAR(translate__doc__,
1430"B.translate(table[, deletechars]) -> bytearray\n\
1431\n\
1432Return a copy of B, where all characters occurring in the\n\
1433optional argument deletechars are removed, and the remaining\n\
1434characters have been mapped through the given translation\n\
1435table, which must be a bytes object of length 256.");
1436
1437static PyObject *
1438bytes_translate(PyByteArrayObject *self, PyObject *args)
1439{
1440 register char *input, *output;
1441 register const char *table;
Benjamin Peterson866eba92008-11-19 22:05:53 +00001442 register Py_ssize_t i, c;
Christian Heimes44720832008-05-26 13:01:01 +00001443 PyObject *input_obj = (PyObject*)self;
1444 const char *output_start;
1445 Py_ssize_t inlen;
1446 PyObject *result;
1447 int trans_table[256];
1448 PyObject *tableobj, *delobj = NULL;
1449 Py_buffer vtable, vdel;
1450
1451 if (!PyArg_UnpackTuple(args, "translate", 1, 2,
1452 &tableobj, &delobj))
1453 return NULL;
1454
1455 if (_getbuffer(tableobj, &vtable) < 0)
1456 return NULL;
1457
1458 if (vtable.len != 256) {
1459 PyErr_SetString(PyExc_ValueError,
1460 "translation table must be 256 characters long");
1461 result = NULL;
1462 goto done;
1463 }
1464
1465 if (delobj != NULL) {
1466 if (_getbuffer(delobj, &vdel) < 0) {
1467 result = NULL;
1468 goto done;
1469 }
1470 }
1471 else {
1472 vdel.buf = NULL;
1473 vdel.len = 0;
1474 }
1475
1476 table = (const char *)vtable.buf;
1477 inlen = PyByteArray_GET_SIZE(input_obj);
1478 result = PyByteArray_FromStringAndSize((char *)NULL, inlen);
1479 if (result == NULL)
1480 goto done;
1481 output_start = output = PyByteArray_AsString(result);
1482 input = PyByteArray_AS_STRING(input_obj);
1483
1484 if (vdel.len == 0) {
1485 /* If no deletions are required, use faster code */
1486 for (i = inlen; --i >= 0; ) {
1487 c = Py_CHARMASK(*input++);
Benjamin Peterson866eba92008-11-19 22:05:53 +00001488 *output++ = table[c];
Christian Heimes44720832008-05-26 13:01:01 +00001489 }
Christian Heimes44720832008-05-26 13:01:01 +00001490 goto done;
1491 }
Antoine Pitrou599db7f2008-12-07 00:07:51 +00001492
Christian Heimes44720832008-05-26 13:01:01 +00001493 for (i = 0; i < 256; i++)
1494 trans_table[i] = Py_CHARMASK(table[i]);
1495
1496 for (i = 0; i < vdel.len; i++)
1497 trans_table[(int) Py_CHARMASK( ((unsigned char*)vdel.buf)[i] )] = -1;
1498
1499 for (i = inlen; --i >= 0; ) {
1500 c = Py_CHARMASK(*input++);
1501 if (trans_table[c] != -1)
1502 if (Py_CHARMASK(*output++ = (char)trans_table[c]) == c)
1503 continue;
Christian Heimes44720832008-05-26 13:01:01 +00001504 }
1505 /* Fix the size of the resulting string */
1506 if (inlen > 0)
1507 PyByteArray_Resize(result, output - output_start);
1508
1509done:
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00001510 PyBuffer_Release(&vtable);
Christian Heimes44720832008-05-26 13:01:01 +00001511 if (delobj != NULL)
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00001512 PyBuffer_Release(&vdel);
Christian Heimes44720832008-05-26 13:01:01 +00001513 return result;
1514}
1515
1516
1517#define FORWARD 1
1518#define REVERSE -1
1519
1520/* find and count characters and substrings */
1521
1522#define findchar(target, target_len, c) \
1523 ((char *)memchr((const void *)(target), c, target_len))
1524
1525/* Don't call if length < 2 */
1526#define Py_STRING_MATCH(target, offset, pattern, length) \
1527 (target[offset] == pattern[0] && \
1528 target[offset+length-1] == pattern[length-1] && \
1529 !memcmp(target+offset+1, pattern+1, length-2) )
1530
1531
Benjamin Peterson866eba92008-11-19 22:05:53 +00001532/* Bytes ops must return a string, create a copy */
Christian Heimes44720832008-05-26 13:01:01 +00001533Py_LOCAL(PyByteArrayObject *)
1534return_self(PyByteArrayObject *self)
1535{
Christian Heimes44720832008-05-26 13:01:01 +00001536 return (PyByteArrayObject *)PyByteArray_FromStringAndSize(
1537 PyByteArray_AS_STRING(self),
1538 PyByteArray_GET_SIZE(self));
1539}
1540
1541Py_LOCAL_INLINE(Py_ssize_t)
1542countchar(const char *target, Py_ssize_t target_len, char c, Py_ssize_t maxcount)
1543{
1544 Py_ssize_t count=0;
1545 const char *start=target;
1546 const char *end=target+target_len;
1547
1548 while ( (start=findchar(start, end-start, c)) != NULL ) {
1549 count++;
1550 if (count >= maxcount)
1551 break;
1552 start += 1;
1553 }
1554 return count;
1555}
1556
1557Py_LOCAL(Py_ssize_t)
1558findstring(const char *target, Py_ssize_t target_len,
1559 const char *pattern, Py_ssize_t pattern_len,
1560 Py_ssize_t start,
1561 Py_ssize_t end,
1562 int direction)
1563{
1564 if (start < 0) {
1565 start += target_len;
1566 if (start < 0)
1567 start = 0;
1568 }
1569 if (end > target_len) {
1570 end = target_len;
1571 } else if (end < 0) {
1572 end += target_len;
1573 if (end < 0)
1574 end = 0;
1575 }
1576
1577 /* zero-length substrings always match at the first attempt */
1578 if (pattern_len == 0)
1579 return (direction > 0) ? start : end;
1580
1581 end -= pattern_len;
1582
1583 if (direction < 0) {
1584 for (; end >= start; end--)
1585 if (Py_STRING_MATCH(target, end, pattern, pattern_len))
1586 return end;
1587 } else {
1588 for (; start <= end; start++)
1589 if (Py_STRING_MATCH(target, start, pattern, pattern_len))
1590 return start;
1591 }
1592 return -1;
1593}
1594
1595Py_LOCAL_INLINE(Py_ssize_t)
1596countstring(const char *target, Py_ssize_t target_len,
1597 const char *pattern, Py_ssize_t pattern_len,
1598 Py_ssize_t start,
1599 Py_ssize_t end,
1600 int direction, Py_ssize_t maxcount)
1601{
1602 Py_ssize_t count=0;
1603
1604 if (start < 0) {
1605 start += target_len;
1606 if (start < 0)
1607 start = 0;
1608 }
1609 if (end > target_len) {
1610 end = target_len;
1611 } else if (end < 0) {
1612 end += target_len;
1613 if (end < 0)
1614 end = 0;
1615 }
1616
1617 /* zero-length substrings match everywhere */
1618 if (pattern_len == 0 || maxcount == 0) {
1619 if (target_len+1 < maxcount)
1620 return target_len+1;
1621 return maxcount;
1622 }
1623
1624 end -= pattern_len;
1625 if (direction < 0) {
1626 for (; (end >= start); end--)
1627 if (Py_STRING_MATCH(target, end, pattern, pattern_len)) {
1628 count++;
1629 if (--maxcount <= 0) break;
1630 end -= pattern_len-1;
1631 }
1632 } else {
1633 for (; (start <= end); start++)
1634 if (Py_STRING_MATCH(target, start, pattern, pattern_len)) {
1635 count++;
1636 if (--maxcount <= 0)
1637 break;
1638 start += pattern_len-1;
1639 }
1640 }
1641 return count;
1642}
1643
1644
1645/* Algorithms for different cases of string replacement */
1646
1647/* len(self)>=1, from="", len(to)>=1, maxcount>=1 */
1648Py_LOCAL(PyByteArrayObject *)
1649replace_interleave(PyByteArrayObject *self,
1650 const char *to_s, Py_ssize_t to_len,
1651 Py_ssize_t maxcount)
1652{
1653 char *self_s, *result_s;
1654 Py_ssize_t self_len, result_len;
1655 Py_ssize_t count, i, product;
1656 PyByteArrayObject *result;
1657
1658 self_len = PyByteArray_GET_SIZE(self);
1659
1660 /* 1 at the end plus 1 after every character */
1661 count = self_len+1;
1662 if (maxcount < count)
1663 count = maxcount;
1664
1665 /* Check for overflow */
1666 /* result_len = count * to_len + self_len; */
1667 product = count * to_len;
1668 if (product / to_len != count) {
1669 PyErr_SetString(PyExc_OverflowError,
1670 "replace string is too long");
1671 return NULL;
1672 }
1673 result_len = product + self_len;
1674 if (result_len < 0) {
1675 PyErr_SetString(PyExc_OverflowError,
1676 "replace string is too long");
1677 return NULL;
1678 }
1679
1680 if (! (result = (PyByteArrayObject *)
1681 PyByteArray_FromStringAndSize(NULL, result_len)) )
1682 return NULL;
1683
1684 self_s = PyByteArray_AS_STRING(self);
1685 result_s = PyByteArray_AS_STRING(result);
1686
1687 /* TODO: special case single character, which doesn't need memcpy */
1688
1689 /* Lay the first one down (guaranteed this will occur) */
1690 Py_MEMCPY(result_s, to_s, to_len);
1691 result_s += to_len;
1692 count -= 1;
1693
1694 for (i=0; i<count; i++) {
1695 *result_s++ = *self_s++;
1696 Py_MEMCPY(result_s, to_s, to_len);
1697 result_s += to_len;
1698 }
1699
1700 /* Copy the rest of the original string */
1701 Py_MEMCPY(result_s, self_s, self_len-i);
1702
1703 return result;
1704}
1705
1706/* Special case for deleting a single character */
1707/* len(self)>=1, len(from)==1, to="", maxcount>=1 */
1708Py_LOCAL(PyByteArrayObject *)
1709replace_delete_single_character(PyByteArrayObject *self,
1710 char from_c, Py_ssize_t maxcount)
1711{
1712 char *self_s, *result_s;
1713 char *start, *next, *end;
1714 Py_ssize_t self_len, result_len;
1715 Py_ssize_t count;
1716 PyByteArrayObject *result;
1717
1718 self_len = PyByteArray_GET_SIZE(self);
1719 self_s = PyByteArray_AS_STRING(self);
1720
1721 count = countchar(self_s, self_len, from_c, maxcount);
1722 if (count == 0) {
1723 return return_self(self);
1724 }
1725
1726 result_len = self_len - count; /* from_len == 1 */
1727 assert(result_len>=0);
1728
1729 if ( (result = (PyByteArrayObject *)
1730 PyByteArray_FromStringAndSize(NULL, result_len)) == NULL)
1731 return NULL;
1732 result_s = PyByteArray_AS_STRING(result);
1733
1734 start = self_s;
1735 end = self_s + self_len;
1736 while (count-- > 0) {
1737 next = findchar(start, end-start, from_c);
1738 if (next == NULL)
1739 break;
1740 Py_MEMCPY(result_s, start, next-start);
1741 result_s += (next-start);
1742 start = next+1;
1743 }
1744 Py_MEMCPY(result_s, start, end-start);
1745
1746 return result;
1747}
1748
1749/* len(self)>=1, len(from)>=2, to="", maxcount>=1 */
1750
1751Py_LOCAL(PyByteArrayObject *)
1752replace_delete_substring(PyByteArrayObject *self,
1753 const char *from_s, Py_ssize_t from_len,
1754 Py_ssize_t maxcount)
1755{
1756 char *self_s, *result_s;
1757 char *start, *next, *end;
1758 Py_ssize_t self_len, result_len;
1759 Py_ssize_t count, offset;
1760 PyByteArrayObject *result;
1761
1762 self_len = PyByteArray_GET_SIZE(self);
1763 self_s = PyByteArray_AS_STRING(self);
1764
1765 count = countstring(self_s, self_len,
1766 from_s, from_len,
1767 0, self_len, 1,
1768 maxcount);
1769
1770 if (count == 0) {
1771 /* no matches */
1772 return return_self(self);
1773 }
1774
1775 result_len = self_len - (count * from_len);
1776 assert (result_len>=0);
1777
1778 if ( (result = (PyByteArrayObject *)
1779 PyByteArray_FromStringAndSize(NULL, result_len)) == NULL )
1780 return NULL;
1781
1782 result_s = PyByteArray_AS_STRING(result);
1783
1784 start = self_s;
1785 end = self_s + self_len;
1786 while (count-- > 0) {
1787 offset = findstring(start, end-start,
1788 from_s, from_len,
1789 0, end-start, FORWARD);
1790 if (offset == -1)
1791 break;
1792 next = start + offset;
1793
1794 Py_MEMCPY(result_s, start, next-start);
1795
1796 result_s += (next-start);
1797 start = next+from_len;
1798 }
1799 Py_MEMCPY(result_s, start, end-start);
1800 return result;
1801}
1802
1803/* len(self)>=1, len(from)==len(to)==1, maxcount>=1 */
1804Py_LOCAL(PyByteArrayObject *)
1805replace_single_character_in_place(PyByteArrayObject *self,
1806 char from_c, char to_c,
1807 Py_ssize_t maxcount)
1808{
1809 char *self_s, *result_s, *start, *end, *next;
1810 Py_ssize_t self_len;
1811 PyByteArrayObject *result;
1812
1813 /* The result string will be the same size */
1814 self_s = PyByteArray_AS_STRING(self);
1815 self_len = PyByteArray_GET_SIZE(self);
1816
1817 next = findchar(self_s, self_len, from_c);
1818
1819 if (next == NULL) {
1820 /* No matches; return the original bytes */
1821 return return_self(self);
1822 }
1823
1824 /* Need to make a new bytes */
1825 result = (PyByteArrayObject *) PyByteArray_FromStringAndSize(NULL, self_len);
1826 if (result == NULL)
1827 return NULL;
1828 result_s = PyByteArray_AS_STRING(result);
1829 Py_MEMCPY(result_s, self_s, self_len);
1830
1831 /* change everything in-place, starting with this one */
1832 start = result_s + (next-self_s);
1833 *start = to_c;
1834 start++;
1835 end = result_s + self_len;
1836
1837 while (--maxcount > 0) {
1838 next = findchar(start, end-start, from_c);
1839 if (next == NULL)
1840 break;
1841 *next = to_c;
1842 start = next+1;
1843 }
1844
1845 return result;
1846}
1847
1848/* len(self)>=1, len(from)==len(to)>=2, maxcount>=1 */
1849Py_LOCAL(PyByteArrayObject *)
1850replace_substring_in_place(PyByteArrayObject *self,
1851 const char *from_s, Py_ssize_t from_len,
1852 const char *to_s, Py_ssize_t to_len,
1853 Py_ssize_t maxcount)
1854{
1855 char *result_s, *start, *end;
1856 char *self_s;
1857 Py_ssize_t self_len, offset;
1858 PyByteArrayObject *result;
1859
1860 /* The result bytes will be the same size */
1861
1862 self_s = PyByteArray_AS_STRING(self);
1863 self_len = PyByteArray_GET_SIZE(self);
1864
1865 offset = findstring(self_s, self_len,
1866 from_s, from_len,
1867 0, self_len, FORWARD);
1868 if (offset == -1) {
1869 /* No matches; return the original bytes */
1870 return return_self(self);
1871 }
1872
1873 /* Need to make a new bytes */
1874 result = (PyByteArrayObject *) PyByteArray_FromStringAndSize(NULL, self_len);
1875 if (result == NULL)
1876 return NULL;
1877 result_s = PyByteArray_AS_STRING(result);
1878 Py_MEMCPY(result_s, self_s, self_len);
1879
1880 /* change everything in-place, starting with this one */
1881 start = result_s + offset;
1882 Py_MEMCPY(start, to_s, from_len);
1883 start += from_len;
1884 end = result_s + self_len;
1885
1886 while ( --maxcount > 0) {
1887 offset = findstring(start, end-start,
1888 from_s, from_len,
1889 0, end-start, FORWARD);
1890 if (offset==-1)
1891 break;
1892 Py_MEMCPY(start+offset, to_s, from_len);
1893 start += offset+from_len;
1894 }
1895
1896 return result;
1897}
1898
1899/* len(self)>=1, len(from)==1, len(to)>=2, maxcount>=1 */
1900Py_LOCAL(PyByteArrayObject *)
1901replace_single_character(PyByteArrayObject *self,
1902 char from_c,
1903 const char *to_s, Py_ssize_t to_len,
1904 Py_ssize_t maxcount)
1905{
1906 char *self_s, *result_s;
1907 char *start, *next, *end;
1908 Py_ssize_t self_len, result_len;
1909 Py_ssize_t count, product;
1910 PyByteArrayObject *result;
1911
1912 self_s = PyByteArray_AS_STRING(self);
1913 self_len = PyByteArray_GET_SIZE(self);
1914
1915 count = countchar(self_s, self_len, from_c, maxcount);
1916 if (count == 0) {
1917 /* no matches, return unchanged */
1918 return return_self(self);
1919 }
1920
1921 /* use the difference between current and new, hence the "-1" */
1922 /* result_len = self_len + count * (to_len-1) */
1923 product = count * (to_len-1);
1924 if (product / (to_len-1) != count) {
1925 PyErr_SetString(PyExc_OverflowError, "replace bytes is too long");
1926 return NULL;
1927 }
1928 result_len = self_len + product;
1929 if (result_len < 0) {
1930 PyErr_SetString(PyExc_OverflowError, "replace bytes is too long");
1931 return NULL;
1932 }
1933
1934 if ( (result = (PyByteArrayObject *)
1935 PyByteArray_FromStringAndSize(NULL, result_len)) == NULL)
1936 return NULL;
1937 result_s = PyByteArray_AS_STRING(result);
1938
1939 start = self_s;
1940 end = self_s + self_len;
1941 while (count-- > 0) {
1942 next = findchar(start, end-start, from_c);
1943 if (next == NULL)
1944 break;
1945
1946 if (next == start) {
1947 /* replace with the 'to' */
1948 Py_MEMCPY(result_s, to_s, to_len);
1949 result_s += to_len;
1950 start += 1;
1951 } else {
1952 /* copy the unchanged old then the 'to' */
1953 Py_MEMCPY(result_s, start, next-start);
1954 result_s += (next-start);
1955 Py_MEMCPY(result_s, to_s, to_len);
1956 result_s += to_len;
1957 start = next+1;
1958 }
1959 }
1960 /* Copy the remainder of the remaining bytes */
1961 Py_MEMCPY(result_s, start, end-start);
1962
1963 return result;
1964}
1965
1966/* len(self)>=1, len(from)>=2, len(to)>=2, maxcount>=1 */
1967Py_LOCAL(PyByteArrayObject *)
1968replace_substring(PyByteArrayObject *self,
1969 const char *from_s, Py_ssize_t from_len,
1970 const char *to_s, Py_ssize_t to_len,
1971 Py_ssize_t maxcount)
1972{
1973 char *self_s, *result_s;
1974 char *start, *next, *end;
1975 Py_ssize_t self_len, result_len;
1976 Py_ssize_t count, offset, product;
1977 PyByteArrayObject *result;
1978
1979 self_s = PyByteArray_AS_STRING(self);
1980 self_len = PyByteArray_GET_SIZE(self);
1981
1982 count = countstring(self_s, self_len,
1983 from_s, from_len,
1984 0, self_len, FORWARD, maxcount);
1985 if (count == 0) {
1986 /* no matches, return unchanged */
1987 return return_self(self);
1988 }
1989
1990 /* Check for overflow */
1991 /* result_len = self_len + count * (to_len-from_len) */
1992 product = count * (to_len-from_len);
1993 if (product / (to_len-from_len) != count) {
1994 PyErr_SetString(PyExc_OverflowError, "replace bytes is too long");
1995 return NULL;
1996 }
1997 result_len = self_len + product;
1998 if (result_len < 0) {
1999 PyErr_SetString(PyExc_OverflowError, "replace bytes is too long");
2000 return NULL;
2001 }
2002
2003 if ( (result = (PyByteArrayObject *)
2004 PyByteArray_FromStringAndSize(NULL, result_len)) == NULL)
2005 return NULL;
2006 result_s = PyByteArray_AS_STRING(result);
2007
2008 start = self_s;
2009 end = self_s + self_len;
2010 while (count-- > 0) {
2011 offset = findstring(start, end-start,
2012 from_s, from_len,
2013 0, end-start, FORWARD);
2014 if (offset == -1)
2015 break;
2016 next = start+offset;
2017 if (next == start) {
2018 /* replace with the 'to' */
2019 Py_MEMCPY(result_s, to_s, to_len);
2020 result_s += to_len;
2021 start += from_len;
2022 } else {
2023 /* copy the unchanged old then the 'to' */
2024 Py_MEMCPY(result_s, start, next-start);
2025 result_s += (next-start);
2026 Py_MEMCPY(result_s, to_s, to_len);
2027 result_s += to_len;
2028 start = next+from_len;
2029 }
2030 }
2031 /* Copy the remainder of the remaining bytes */
2032 Py_MEMCPY(result_s, start, end-start);
2033
2034 return result;
2035}
2036
2037
2038Py_LOCAL(PyByteArrayObject *)
2039replace(PyByteArrayObject *self,
2040 const char *from_s, Py_ssize_t from_len,
2041 const char *to_s, Py_ssize_t to_len,
2042 Py_ssize_t maxcount)
2043{
2044 if (maxcount < 0) {
2045 maxcount = PY_SSIZE_T_MAX;
2046 } else if (maxcount == 0 || PyByteArray_GET_SIZE(self) == 0) {
2047 /* nothing to do; return the original bytes */
2048 return return_self(self);
2049 }
2050
2051 if (maxcount == 0 ||
2052 (from_len == 0 && to_len == 0)) {
2053 /* nothing to do; return the original bytes */
2054 return return_self(self);
2055 }
2056
2057 /* Handle zero-length special cases */
2058
2059 if (from_len == 0) {
2060 /* insert the 'to' bytes everywhere. */
2061 /* >>> "Python".replace("", ".") */
2062 /* '.P.y.t.h.o.n.' */
2063 return replace_interleave(self, to_s, to_len, maxcount);
2064 }
2065
2066 /* Except for "".replace("", "A") == "A" there is no way beyond this */
2067 /* point for an empty self bytes to generate a non-empty bytes */
2068 /* Special case so the remaining code always gets a non-empty bytes */
2069 if (PyByteArray_GET_SIZE(self) == 0) {
2070 return return_self(self);
2071 }
2072
2073 if (to_len == 0) {
2074 /* delete all occurances of 'from' bytes */
2075 if (from_len == 1) {
2076 return replace_delete_single_character(
2077 self, from_s[0], maxcount);
2078 } else {
2079 return replace_delete_substring(self, from_s, from_len, maxcount);
2080 }
2081 }
2082
2083 /* Handle special case where both bytes have the same length */
2084
2085 if (from_len == to_len) {
2086 if (from_len == 1) {
2087 return replace_single_character_in_place(
2088 self,
2089 from_s[0],
2090 to_s[0],
2091 maxcount);
2092 } else {
2093 return replace_substring_in_place(
2094 self, from_s, from_len, to_s, to_len, maxcount);
2095 }
2096 }
2097
2098 /* Otherwise use the more generic algorithms */
2099 if (from_len == 1) {
2100 return replace_single_character(self, from_s[0],
2101 to_s, to_len, maxcount);
2102 } else {
2103 /* len('from')>=2, len('to')>=1 */
2104 return replace_substring(self, from_s, from_len, to_s, to_len, maxcount);
2105 }
2106}
2107
2108
2109PyDoc_STRVAR(replace__doc__,
2110"B.replace(old, new[, count]) -> bytes\n\
2111\n\
2112Return a copy of B with all occurrences of subsection\n\
2113old replaced by new. If the optional argument count is\n\
2114given, only the first count occurrences are replaced.");
2115
2116static PyObject *
2117bytes_replace(PyByteArrayObject *self, PyObject *args)
2118{
2119 Py_ssize_t count = -1;
2120 PyObject *from, *to, *res;
2121 Py_buffer vfrom, vto;
2122
2123 if (!PyArg_ParseTuple(args, "OO|n:replace", &from, &to, &count))
2124 return NULL;
2125
2126 if (_getbuffer(from, &vfrom) < 0)
2127 return NULL;
2128 if (_getbuffer(to, &vto) < 0) {
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00002129 PyBuffer_Release(&vfrom);
Christian Heimes44720832008-05-26 13:01:01 +00002130 return NULL;
2131 }
2132
2133 res = (PyObject *)replace((PyByteArrayObject *) self,
2134 vfrom.buf, vfrom.len,
2135 vto.buf, vto.len, count);
2136
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00002137 PyBuffer_Release(&vfrom);
2138 PyBuffer_Release(&vto);
Christian Heimes44720832008-05-26 13:01:01 +00002139 return res;
2140}
2141
2142
2143/* Overallocate the initial list to reduce the number of reallocs for small
2144 split sizes. Eg, "A A A A A A A A A A".split() (10 elements) has three
2145 resizes, to sizes 4, 8, then 16. Most observed string splits are for human
2146 text (roughly 11 words per line) and field delimited data (usually 1-10
2147 fields). For large strings the split algorithms are bandwidth limited
2148 so increasing the preallocation likely will not improve things.*/
2149
2150#define MAX_PREALLOC 12
2151
2152/* 5 splits gives 6 elements */
2153#define PREALLOC_SIZE(maxsplit) \
2154 (maxsplit >= MAX_PREALLOC ? MAX_PREALLOC : maxsplit+1)
2155
2156#define SPLIT_APPEND(data, left, right) \
2157 str = PyByteArray_FromStringAndSize((data) + (left), \
2158 (right) - (left)); \
2159 if (str == NULL) \
2160 goto onError; \
2161 if (PyList_Append(list, str)) { \
2162 Py_DECREF(str); \
2163 goto onError; \
2164 } \
2165 else \
2166 Py_DECREF(str);
2167
2168#define SPLIT_ADD(data, left, right) { \
2169 str = PyByteArray_FromStringAndSize((data) + (left), \
2170 (right) - (left)); \
2171 if (str == NULL) \
2172 goto onError; \
2173 if (count < MAX_PREALLOC) { \
2174 PyList_SET_ITEM(list, count, str); \
2175 } else { \
2176 if (PyList_Append(list, str)) { \
2177 Py_DECREF(str); \
2178 goto onError; \
2179 } \
2180 else \
2181 Py_DECREF(str); \
2182 } \
2183 count++; }
2184
2185/* Always force the list to the expected size. */
2186#define FIX_PREALLOC_SIZE(list) Py_SIZE(list) = count
2187
2188
2189Py_LOCAL_INLINE(PyObject *)
2190split_char(const char *s, Py_ssize_t len, char ch, Py_ssize_t maxcount)
2191{
2192 register Py_ssize_t i, j, count = 0;
2193 PyObject *str;
2194 PyObject *list = PyList_New(PREALLOC_SIZE(maxcount));
2195
2196 if (list == NULL)
2197 return NULL;
2198
2199 i = j = 0;
2200 while ((j < len) && (maxcount-- > 0)) {
2201 for(; j < len; j++) {
2202 /* I found that using memchr makes no difference */
2203 if (s[j] == ch) {
2204 SPLIT_ADD(s, i, j);
2205 i = j = j + 1;
2206 break;
2207 }
2208 }
2209 }
2210 if (i <= len) {
2211 SPLIT_ADD(s, i, len);
2212 }
2213 FIX_PREALLOC_SIZE(list);
2214 return list;
2215
2216 onError:
2217 Py_DECREF(list);
2218 return NULL;
2219}
2220
2221
2222Py_LOCAL_INLINE(PyObject *)
2223split_whitespace(const char *s, Py_ssize_t len, Py_ssize_t maxcount)
2224{
2225 register Py_ssize_t i, j, count = 0;
2226 PyObject *str;
2227 PyObject *list = PyList_New(PREALLOC_SIZE(maxcount));
2228
2229 if (list == NULL)
2230 return NULL;
2231
2232 for (i = j = 0; i < len; ) {
2233 /* find a token */
2234 while (i < len && ISSPACE(s[i]))
2235 i++;
2236 j = i;
2237 while (i < len && !ISSPACE(s[i]))
2238 i++;
2239 if (j < i) {
2240 if (maxcount-- <= 0)
2241 break;
2242 SPLIT_ADD(s, j, i);
2243 while (i < len && ISSPACE(s[i]))
2244 i++;
2245 j = i;
2246 }
2247 }
2248 if (j < len) {
2249 SPLIT_ADD(s, j, len);
2250 }
2251 FIX_PREALLOC_SIZE(list);
2252 return list;
2253
2254 onError:
2255 Py_DECREF(list);
2256 return NULL;
2257}
2258
2259PyDoc_STRVAR(split__doc__,
2260"B.split([sep[, maxsplit]]) -> list of bytearray\n\
2261\n\
2262Return a list of the sections in B, using sep as the delimiter.\n\
2263If sep is not given, B is split on ASCII whitespace characters\n\
2264(space, tab, return, newline, formfeed, vertical tab).\n\
2265If maxsplit is given, at most maxsplit splits are done.");
2266
2267static PyObject *
2268bytes_split(PyByteArrayObject *self, PyObject *args)
2269{
2270 Py_ssize_t len = PyByteArray_GET_SIZE(self), n, i, j;
2271 Py_ssize_t maxsplit = -1, count = 0;
2272 const char *s = PyByteArray_AS_STRING(self), *sub;
2273 PyObject *list, *str, *subobj = Py_None;
2274 Py_buffer vsub;
2275#ifdef USE_FAST
2276 Py_ssize_t pos;
2277#endif
2278
2279 if (!PyArg_ParseTuple(args, "|On:split", &subobj, &maxsplit))
2280 return NULL;
2281 if (maxsplit < 0)
2282 maxsplit = PY_SSIZE_T_MAX;
2283
2284 if (subobj == Py_None)
2285 return split_whitespace(s, len, maxsplit);
2286
2287 if (_getbuffer(subobj, &vsub) < 0)
2288 return NULL;
2289 sub = vsub.buf;
2290 n = vsub.len;
2291
2292 if (n == 0) {
2293 PyErr_SetString(PyExc_ValueError, "empty separator");
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00002294 PyBuffer_Release(&vsub);
Christian Heimes44720832008-05-26 13:01:01 +00002295 return NULL;
2296 }
Amaury Forgeot d'Arc313bda12008-08-17 21:05:18 +00002297 if (n == 1) {
2298 list = split_char(s, len, sub[0], maxsplit);
2299 PyBuffer_Release(&vsub);
2300 return list;
2301 }
Christian Heimes44720832008-05-26 13:01:01 +00002302
2303 list = PyList_New(PREALLOC_SIZE(maxsplit));
2304 if (list == NULL) {
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00002305 PyBuffer_Release(&vsub);
Christian Heimes44720832008-05-26 13:01:01 +00002306 return NULL;
2307 }
2308
2309#ifdef USE_FAST
2310 i = j = 0;
2311 while (maxsplit-- > 0) {
2312 pos = fastsearch(s+i, len-i, sub, n, FAST_SEARCH);
2313 if (pos < 0)
2314 break;
2315 j = i+pos;
2316 SPLIT_ADD(s, i, j);
2317 i = j + n;
2318 }
2319#else
2320 i = j = 0;
2321 while ((j+n <= len) && (maxsplit-- > 0)) {
2322 for (; j+n <= len; j++) {
2323 if (Py_STRING_MATCH(s, j, sub, n)) {
2324 SPLIT_ADD(s, i, j);
2325 i = j = j + n;
2326 break;
2327 }
2328 }
2329 }
2330#endif
2331 SPLIT_ADD(s, i, len);
2332 FIX_PREALLOC_SIZE(list);
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00002333 PyBuffer_Release(&vsub);
Christian Heimes44720832008-05-26 13:01:01 +00002334 return list;
2335
2336 onError:
2337 Py_DECREF(list);
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00002338 PyBuffer_Release(&vsub);
Christian Heimes44720832008-05-26 13:01:01 +00002339 return NULL;
2340}
2341
2342/* stringlib's partition shares nullbytes in some cases.
2343 undo this, we don't want the nullbytes to be shared. */
2344static PyObject *
2345make_nullbytes_unique(PyObject *result)
2346{
2347 if (result != NULL) {
2348 int i;
2349 assert(PyTuple_Check(result));
2350 assert(PyTuple_GET_SIZE(result) == 3);
2351 for (i = 0; i < 3; i++) {
2352 if (PyTuple_GET_ITEM(result, i) == (PyObject *)nullbytes) {
2353 PyObject *new = PyByteArray_FromStringAndSize(NULL, 0);
2354 if (new == NULL) {
2355 Py_DECREF(result);
2356 result = NULL;
2357 break;
2358 }
2359 Py_DECREF(nullbytes);
2360 PyTuple_SET_ITEM(result, i, new);
2361 }
2362 }
2363 }
2364 return result;
2365}
2366
2367PyDoc_STRVAR(partition__doc__,
2368"B.partition(sep) -> (head, sep, tail)\n\
2369\n\
2370Searches for the separator sep in B, and returns the part before it,\n\
2371the separator itself, and the part after it. If the separator is not\n\
2372found, returns B and two empty bytearray objects.");
2373
2374static PyObject *
2375bytes_partition(PyByteArrayObject *self, PyObject *sep_obj)
2376{
2377 PyObject *bytesep, *result;
2378
2379 bytesep = PyByteArray_FromObject(sep_obj);
2380 if (! bytesep)
2381 return NULL;
2382
2383 result = stringlib_partition(
2384 (PyObject*) self,
2385 PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self),
2386 bytesep,
2387 PyByteArray_AS_STRING(bytesep), PyByteArray_GET_SIZE(bytesep)
2388 );
2389
2390 Py_DECREF(bytesep);
2391 return make_nullbytes_unique(result);
2392}
2393
2394PyDoc_STRVAR(rpartition__doc__,
2395"B.rpartition(sep) -> (tail, sep, head)\n\
2396\n\
2397Searches for the separator sep in B, starting at the end of B,\n\
2398and returns the part before it, the separator itself, and the\n\
2399part after it. If the separator is not found, returns two empty\n\
2400bytearray objects and B.");
2401
2402static PyObject *
2403bytes_rpartition(PyByteArrayObject *self, PyObject *sep_obj)
2404{
2405 PyObject *bytesep, *result;
2406
2407 bytesep = PyByteArray_FromObject(sep_obj);
2408 if (! bytesep)
2409 return NULL;
2410
2411 result = stringlib_rpartition(
2412 (PyObject*) self,
2413 PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self),
2414 bytesep,
2415 PyByteArray_AS_STRING(bytesep), PyByteArray_GET_SIZE(bytesep)
2416 );
2417
2418 Py_DECREF(bytesep);
2419 return make_nullbytes_unique(result);
2420}
2421
2422Py_LOCAL_INLINE(PyObject *)
2423rsplit_char(const char *s, Py_ssize_t len, char ch, Py_ssize_t maxcount)
2424{
2425 register Py_ssize_t i, j, count=0;
2426 PyObject *str;
2427 PyObject *list = PyList_New(PREALLOC_SIZE(maxcount));
2428
2429 if (list == NULL)
2430 return NULL;
2431
2432 i = j = len - 1;
2433 while ((i >= 0) && (maxcount-- > 0)) {
2434 for (; i >= 0; i--) {
2435 if (s[i] == ch) {
2436 SPLIT_ADD(s, i + 1, j + 1);
2437 j = i = i - 1;
2438 break;
2439 }
2440 }
2441 }
2442 if (j >= -1) {
2443 SPLIT_ADD(s, 0, j + 1);
2444 }
2445 FIX_PREALLOC_SIZE(list);
2446 if (PyList_Reverse(list) < 0)
2447 goto onError;
2448
2449 return list;
2450
2451 onError:
2452 Py_DECREF(list);
2453 return NULL;
2454}
2455
2456Py_LOCAL_INLINE(PyObject *)
2457rsplit_whitespace(const char *s, Py_ssize_t len, Py_ssize_t maxcount)
2458{
2459 register Py_ssize_t i, j, count = 0;
2460 PyObject *str;
2461 PyObject *list = PyList_New(PREALLOC_SIZE(maxcount));
2462
2463 if (list == NULL)
2464 return NULL;
2465
2466 for (i = j = len - 1; i >= 0; ) {
2467 /* find a token */
2468 while (i >= 0 && ISSPACE(s[i]))
2469 i--;
2470 j = i;
2471 while (i >= 0 && !ISSPACE(s[i]))
2472 i--;
2473 if (j > i) {
2474 if (maxcount-- <= 0)
2475 break;
2476 SPLIT_ADD(s, i + 1, j + 1);
2477 while (i >= 0 && ISSPACE(s[i]))
2478 i--;
2479 j = i;
2480 }
2481 }
2482 if (j >= 0) {
2483 SPLIT_ADD(s, 0, j + 1);
2484 }
2485 FIX_PREALLOC_SIZE(list);
2486 if (PyList_Reverse(list) < 0)
2487 goto onError;
2488
2489 return list;
2490
2491 onError:
2492 Py_DECREF(list);
2493 return NULL;
2494}
2495
2496PyDoc_STRVAR(rsplit__doc__,
2497"B.rsplit(sep[, maxsplit]) -> list of bytearray\n\
2498\n\
2499Return a list of the sections in B, using sep as the delimiter,\n\
2500starting at the end of B and working to the front.\n\
2501If sep is not given, B is split on ASCII whitespace characters\n\
2502(space, tab, return, newline, formfeed, vertical tab).\n\
2503If maxsplit is given, at most maxsplit splits are done.");
2504
2505static PyObject *
2506bytes_rsplit(PyByteArrayObject *self, PyObject *args)
2507{
2508 Py_ssize_t len = PyByteArray_GET_SIZE(self), n, i, j;
2509 Py_ssize_t maxsplit = -1, count = 0;
2510 const char *s = PyByteArray_AS_STRING(self), *sub;
2511 PyObject *list, *str, *subobj = Py_None;
2512 Py_buffer vsub;
2513
2514 if (!PyArg_ParseTuple(args, "|On:rsplit", &subobj, &maxsplit))
2515 return NULL;
2516 if (maxsplit < 0)
2517 maxsplit = PY_SSIZE_T_MAX;
2518
2519 if (subobj == Py_None)
2520 return rsplit_whitespace(s, len, maxsplit);
2521
2522 if (_getbuffer(subobj, &vsub) < 0)
2523 return NULL;
2524 sub = vsub.buf;
2525 n = vsub.len;
2526
2527 if (n == 0) {
2528 PyErr_SetString(PyExc_ValueError, "empty separator");
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00002529 PyBuffer_Release(&vsub);
Christian Heimes44720832008-05-26 13:01:01 +00002530 return NULL;
2531 }
Amaury Forgeot d'Arc313bda12008-08-17 21:05:18 +00002532 else if (n == 1) {
2533 list = rsplit_char(s, len, sub[0], maxsplit);
2534 PyBuffer_Release(&vsub);
2535 return list;
2536 }
Christian Heimes44720832008-05-26 13:01:01 +00002537
2538 list = PyList_New(PREALLOC_SIZE(maxsplit));
2539 if (list == NULL) {
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00002540 PyBuffer_Release(&vsub);
Christian Heimes44720832008-05-26 13:01:01 +00002541 return NULL;
2542 }
2543
2544 j = len;
2545 i = j - n;
2546
2547 while ( (i >= 0) && (maxsplit-- > 0) ) {
2548 for (; i>=0; i--) {
2549 if (Py_STRING_MATCH(s, i, sub, n)) {
2550 SPLIT_ADD(s, i + n, j);
2551 j = i;
2552 i -= n;
2553 break;
2554 }
2555 }
2556 }
2557 SPLIT_ADD(s, 0, j);
2558 FIX_PREALLOC_SIZE(list);
2559 if (PyList_Reverse(list) < 0)
2560 goto onError;
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00002561 PyBuffer_Release(&vsub);
Christian Heimes44720832008-05-26 13:01:01 +00002562 return list;
2563
2564onError:
2565 Py_DECREF(list);
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00002566 PyBuffer_Release(&vsub);
Christian Heimes44720832008-05-26 13:01:01 +00002567 return NULL;
2568}
2569
2570PyDoc_STRVAR(reverse__doc__,
2571"B.reverse() -> None\n\
2572\n\
2573Reverse the order of the values in B in place.");
2574static PyObject *
2575bytes_reverse(PyByteArrayObject *self, PyObject *unused)
2576{
2577 char swap, *head, *tail;
2578 Py_ssize_t i, j, n = Py_SIZE(self);
2579
2580 j = n / 2;
2581 head = self->ob_bytes;
2582 tail = head + n - 1;
2583 for (i = 0; i < j; i++) {
2584 swap = *head;
2585 *head++ = *tail;
2586 *tail-- = swap;
2587 }
2588
2589 Py_RETURN_NONE;
2590}
2591
2592PyDoc_STRVAR(insert__doc__,
2593"B.insert(index, int) -> None\n\
2594\n\
2595Insert a single item into the bytearray before the given index.");
2596static PyObject *
2597bytes_insert(PyByteArrayObject *self, PyObject *args)
2598{
Georg Brandl3e483f62008-07-16 22:57:41 +00002599 PyObject *value;
2600 int ival;
Christian Heimes44720832008-05-26 13:01:01 +00002601 Py_ssize_t where, n = Py_SIZE(self);
2602
Georg Brandl3e483f62008-07-16 22:57:41 +00002603 if (!PyArg_ParseTuple(args, "nO:insert", &where, &value))
Christian Heimes44720832008-05-26 13:01:01 +00002604 return NULL;
2605
2606 if (n == PY_SSIZE_T_MAX) {
2607 PyErr_SetString(PyExc_OverflowError,
2608 "cannot add more objects to bytes");
2609 return NULL;
2610 }
Georg Brandl3e483f62008-07-16 22:57:41 +00002611 if (!_getbytevalue(value, &ival))
Christian Heimes44720832008-05-26 13:01:01 +00002612 return NULL;
Christian Heimes44720832008-05-26 13:01:01 +00002613 if (PyByteArray_Resize((PyObject *)self, n + 1) < 0)
2614 return NULL;
2615
2616 if (where < 0) {
2617 where += n;
2618 if (where < 0)
2619 where = 0;
2620 }
2621 if (where > n)
2622 where = n;
2623 memmove(self->ob_bytes + where + 1, self->ob_bytes + where, n - where);
Georg Brandl3e483f62008-07-16 22:57:41 +00002624 self->ob_bytes[where] = ival;
Christian Heimes44720832008-05-26 13:01:01 +00002625
2626 Py_RETURN_NONE;
2627}
2628
2629PyDoc_STRVAR(append__doc__,
2630"B.append(int) -> None\n\
2631\n\
2632Append a single item to the end of B.");
2633static PyObject *
2634bytes_append(PyByteArrayObject *self, PyObject *arg)
2635{
2636 int value;
2637 Py_ssize_t n = Py_SIZE(self);
2638
2639 if (! _getbytevalue(arg, &value))
2640 return NULL;
2641 if (n == PY_SSIZE_T_MAX) {
2642 PyErr_SetString(PyExc_OverflowError,
2643 "cannot add more objects to bytes");
2644 return NULL;
2645 }
2646 if (PyByteArray_Resize((PyObject *)self, n + 1) < 0)
2647 return NULL;
2648
2649 self->ob_bytes[n] = value;
2650
2651 Py_RETURN_NONE;
2652}
2653
2654PyDoc_STRVAR(extend__doc__,
2655"B.extend(iterable int) -> None\n\
2656\n\
2657Append all the elements from the iterator or sequence to the\n\
2658end of B.");
2659static PyObject *
2660bytes_extend(PyByteArrayObject *self, PyObject *arg)
2661{
2662 PyObject *it, *item, *bytes_obj;
2663 Py_ssize_t buf_size = 0, len = 0;
2664 int value;
2665 char *buf;
2666
2667 /* bytes_setslice code only accepts something supporting PEP 3118. */
2668 if (PyObject_CheckBuffer(arg)) {
2669 if (bytes_setslice(self, Py_SIZE(self), Py_SIZE(self), arg) == -1)
2670 return NULL;
2671
2672 Py_RETURN_NONE;
2673 }
2674
2675 it = PyObject_GetIter(arg);
2676 if (it == NULL)
2677 return NULL;
2678
2679 /* Try to determine the length of the argument. 32 is abitrary. */
2680 buf_size = _PyObject_LengthHint(arg, 32);
2681
2682 bytes_obj = PyByteArray_FromStringAndSize(NULL, buf_size);
2683 if (bytes_obj == NULL)
2684 return NULL;
2685 buf = PyByteArray_AS_STRING(bytes_obj);
2686
2687 while ((item = PyIter_Next(it)) != NULL) {
2688 if (! _getbytevalue(item, &value)) {
2689 Py_DECREF(item);
2690 Py_DECREF(it);
2691 Py_DECREF(bytes_obj);
2692 return NULL;
2693 }
2694 buf[len++] = value;
2695 Py_DECREF(item);
2696
2697 if (len >= buf_size) {
2698 buf_size = len + (len >> 1) + 1;
2699 if (PyByteArray_Resize((PyObject *)bytes_obj, buf_size) < 0) {
2700 Py_DECREF(it);
2701 Py_DECREF(bytes_obj);
2702 return NULL;
2703 }
2704 /* Recompute the `buf' pointer, since the resizing operation may
2705 have invalidated it. */
2706 buf = PyByteArray_AS_STRING(bytes_obj);
2707 }
2708 }
2709 Py_DECREF(it);
2710
2711 /* Resize down to exact size. */
2712 if (PyByteArray_Resize((PyObject *)bytes_obj, len) < 0) {
2713 Py_DECREF(bytes_obj);
2714 return NULL;
2715 }
2716
2717 if (bytes_setslice(self, Py_SIZE(self), Py_SIZE(self), bytes_obj) == -1)
2718 return NULL;
2719 Py_DECREF(bytes_obj);
2720
2721 Py_RETURN_NONE;
2722}
2723
2724PyDoc_STRVAR(pop__doc__,
2725"B.pop([index]) -> int\n\
2726\n\
2727Remove and return a single item from B. If no index\n\
Andrew M. Kuchlingd8972642008-06-21 13:29:12 +00002728argument is given, will pop the last value.");
Christian Heimes44720832008-05-26 13:01:01 +00002729static PyObject *
2730bytes_pop(PyByteArrayObject *self, PyObject *args)
2731{
2732 int value;
2733 Py_ssize_t where = -1, n = Py_SIZE(self);
2734
2735 if (!PyArg_ParseTuple(args, "|n:pop", &where))
2736 return NULL;
2737
2738 if (n == 0) {
2739 PyErr_SetString(PyExc_OverflowError,
2740 "cannot pop an empty bytes");
2741 return NULL;
2742 }
2743 if (where < 0)
2744 where += Py_SIZE(self);
2745 if (where < 0 || where >= Py_SIZE(self)) {
2746 PyErr_SetString(PyExc_IndexError, "pop index out of range");
2747 return NULL;
2748 }
Antoine Pitrou599db7f2008-12-07 00:07:51 +00002749 if (!_canresize(self))
2750 return NULL;
Christian Heimes44720832008-05-26 13:01:01 +00002751
2752 value = self->ob_bytes[where];
2753 memmove(self->ob_bytes + where, self->ob_bytes + where + 1, n - where);
2754 if (PyByteArray_Resize((PyObject *)self, n - 1) < 0)
2755 return NULL;
2756
2757 return PyInt_FromLong(value);
2758}
2759
2760PyDoc_STRVAR(remove__doc__,
2761"B.remove(int) -> None\n\
2762\n\
2763Remove the first occurance of a value in B.");
2764static PyObject *
2765bytes_remove(PyByteArrayObject *self, PyObject *arg)
2766{
2767 int value;
2768 Py_ssize_t where, n = Py_SIZE(self);
2769
2770 if (! _getbytevalue(arg, &value))
2771 return NULL;
2772
2773 for (where = 0; where < n; where++) {
2774 if (self->ob_bytes[where] == value)
2775 break;
2776 }
2777 if (where == n) {
2778 PyErr_SetString(PyExc_ValueError, "value not found in bytes");
2779 return NULL;
2780 }
Antoine Pitrou599db7f2008-12-07 00:07:51 +00002781 if (!_canresize(self))
2782 return NULL;
Christian Heimes44720832008-05-26 13:01:01 +00002783
2784 memmove(self->ob_bytes + where, self->ob_bytes + where + 1, n - where);
2785 if (PyByteArray_Resize((PyObject *)self, n - 1) < 0)
2786 return NULL;
2787
2788 Py_RETURN_NONE;
2789}
2790
2791/* XXX These two helpers could be optimized if argsize == 1 */
2792
2793static Py_ssize_t
2794lstrip_helper(unsigned char *myptr, Py_ssize_t mysize,
2795 void *argptr, Py_ssize_t argsize)
2796{
2797 Py_ssize_t i = 0;
2798 while (i < mysize && memchr(argptr, myptr[i], argsize))
2799 i++;
2800 return i;
2801}
2802
2803static Py_ssize_t
2804rstrip_helper(unsigned char *myptr, Py_ssize_t mysize,
2805 void *argptr, Py_ssize_t argsize)
2806{
2807 Py_ssize_t i = mysize - 1;
2808 while (i >= 0 && memchr(argptr, myptr[i], argsize))
2809 i--;
2810 return i + 1;
2811}
2812
2813PyDoc_STRVAR(strip__doc__,
2814"B.strip([bytes]) -> bytearray\n\
2815\n\
2816Strip leading and trailing bytes contained in the argument.\n\
2817If the argument is omitted, strip ASCII whitespace.");
2818static PyObject *
2819bytes_strip(PyByteArrayObject *self, PyObject *args)
2820{
2821 Py_ssize_t left, right, mysize, argsize;
2822 void *myptr, *argptr;
2823 PyObject *arg = Py_None;
2824 Py_buffer varg;
2825 if (!PyArg_ParseTuple(args, "|O:strip", &arg))
2826 return NULL;
2827 if (arg == Py_None) {
2828 argptr = "\t\n\r\f\v ";
2829 argsize = 6;
2830 }
2831 else {
2832 if (_getbuffer(arg, &varg) < 0)
2833 return NULL;
2834 argptr = varg.buf;
2835 argsize = varg.len;
2836 }
2837 myptr = self->ob_bytes;
2838 mysize = Py_SIZE(self);
2839 left = lstrip_helper(myptr, mysize, argptr, argsize);
2840 if (left == mysize)
2841 right = left;
2842 else
2843 right = rstrip_helper(myptr, mysize, argptr, argsize);
2844 if (arg != Py_None)
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00002845 PyBuffer_Release(&varg);
Christian Heimes44720832008-05-26 13:01:01 +00002846 return PyByteArray_FromStringAndSize(self->ob_bytes + left, right - left);
2847}
2848
2849PyDoc_STRVAR(lstrip__doc__,
2850"B.lstrip([bytes]) -> bytearray\n\
2851\n\
2852Strip leading bytes contained in the argument.\n\
2853If the argument is omitted, strip leading ASCII whitespace.");
2854static PyObject *
2855bytes_lstrip(PyByteArrayObject *self, PyObject *args)
2856{
2857 Py_ssize_t left, right, mysize, argsize;
2858 void *myptr, *argptr;
2859 PyObject *arg = Py_None;
2860 Py_buffer varg;
2861 if (!PyArg_ParseTuple(args, "|O:lstrip", &arg))
2862 return NULL;
2863 if (arg == Py_None) {
2864 argptr = "\t\n\r\f\v ";
2865 argsize = 6;
2866 }
2867 else {
2868 if (_getbuffer(arg, &varg) < 0)
2869 return NULL;
2870 argptr = varg.buf;
2871 argsize = varg.len;
2872 }
2873 myptr = self->ob_bytes;
2874 mysize = Py_SIZE(self);
2875 left = lstrip_helper(myptr, mysize, argptr, argsize);
2876 right = mysize;
2877 if (arg != Py_None)
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00002878 PyBuffer_Release(&varg);
Christian Heimes44720832008-05-26 13:01:01 +00002879 return PyByteArray_FromStringAndSize(self->ob_bytes + left, right - left);
2880}
2881
2882PyDoc_STRVAR(rstrip__doc__,
2883"B.rstrip([bytes]) -> bytearray\n\
2884\n\
2885Strip trailing bytes contained in the argument.\n\
2886If the argument is omitted, strip trailing ASCII whitespace.");
2887static PyObject *
2888bytes_rstrip(PyByteArrayObject *self, PyObject *args)
2889{
2890 Py_ssize_t left, right, mysize, argsize;
2891 void *myptr, *argptr;
2892 PyObject *arg = Py_None;
2893 Py_buffer varg;
2894 if (!PyArg_ParseTuple(args, "|O:rstrip", &arg))
2895 return NULL;
2896 if (arg == Py_None) {
2897 argptr = "\t\n\r\f\v ";
2898 argsize = 6;
2899 }
2900 else {
2901 if (_getbuffer(arg, &varg) < 0)
2902 return NULL;
2903 argptr = varg.buf;
2904 argsize = varg.len;
2905 }
2906 myptr = self->ob_bytes;
2907 mysize = Py_SIZE(self);
2908 left = 0;
2909 right = rstrip_helper(myptr, mysize, argptr, argsize);
2910 if (arg != Py_None)
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00002911 PyBuffer_Release(&varg);
Christian Heimes44720832008-05-26 13:01:01 +00002912 return PyByteArray_FromStringAndSize(self->ob_bytes + left, right - left);
2913}
2914
2915PyDoc_STRVAR(decode_doc,
2916"B.decode([encoding[, errors]]) -> unicode object.\n\
2917\n\
2918Decodes B using the codec registered for encoding. encoding defaults\n\
2919to the default encoding. errors may be given to set a different error\n\
2920handling scheme. Default is 'strict' meaning that encoding errors raise\n\
2921a UnicodeDecodeError. Other possible values are 'ignore' and 'replace'\n\
2922as well as any other name registered with codecs.register_error that is\n\
2923able to handle UnicodeDecodeErrors.");
2924
2925static PyObject *
2926bytes_decode(PyObject *self, PyObject *args)
2927{
2928 const char *encoding = NULL;
2929 const char *errors = NULL;
2930
2931 if (!PyArg_ParseTuple(args, "|ss:decode", &encoding, &errors))
2932 return NULL;
2933 if (encoding == NULL)
2934 encoding = PyUnicode_GetDefaultEncoding();
2935 return PyCodec_Decode(self, encoding, errors);
2936}
2937
2938PyDoc_STRVAR(alloc_doc,
2939"B.__alloc__() -> int\n\
2940\n\
2941Returns the number of bytes actually allocated.");
2942
2943static PyObject *
2944bytes_alloc(PyByteArrayObject *self)
2945{
2946 return PyInt_FromSsize_t(self->ob_alloc);
2947}
2948
2949PyDoc_STRVAR(join_doc,
2950"B.join(iterable_of_bytes) -> bytes\n\
2951\n\
2952Concatenates any number of bytearray objects, with B in between each pair.");
2953
2954static PyObject *
2955bytes_join(PyByteArrayObject *self, PyObject *it)
2956{
2957 PyObject *seq;
2958 Py_ssize_t mysize = Py_SIZE(self);
2959 Py_ssize_t i;
2960 Py_ssize_t n;
2961 PyObject **items;
2962 Py_ssize_t totalsize = 0;
2963 PyObject *result;
2964 char *dest;
2965
2966 seq = PySequence_Fast(it, "can only join an iterable");
2967 if (seq == NULL)
2968 return NULL;
2969 n = PySequence_Fast_GET_SIZE(seq);
2970 items = PySequence_Fast_ITEMS(seq);
2971
2972 /* Compute the total size, and check that they are all bytes */
2973 /* XXX Shouldn't we use _getbuffer() on these items instead? */
2974 for (i = 0; i < n; i++) {
2975 PyObject *obj = items[i];
2976 if (!PyByteArray_Check(obj) && !PyBytes_Check(obj)) {
2977 PyErr_Format(PyExc_TypeError,
2978 "can only join an iterable of bytes "
2979 "(item %ld has type '%.100s')",
2980 /* XXX %ld isn't right on Win64 */
2981 (long)i, Py_TYPE(obj)->tp_name);
2982 goto error;
2983 }
2984 if (i > 0)
2985 totalsize += mysize;
2986 totalsize += Py_SIZE(obj);
2987 if (totalsize < 0) {
2988 PyErr_NoMemory();
2989 goto error;
2990 }
2991 }
2992
2993 /* Allocate the result, and copy the bytes */
2994 result = PyByteArray_FromStringAndSize(NULL, totalsize);
2995 if (result == NULL)
2996 goto error;
2997 dest = PyByteArray_AS_STRING(result);
2998 for (i = 0; i < n; i++) {
2999 PyObject *obj = items[i];
3000 Py_ssize_t size = Py_SIZE(obj);
3001 char *buf;
3002 if (PyByteArray_Check(obj))
3003 buf = PyByteArray_AS_STRING(obj);
3004 else
3005 buf = PyBytes_AS_STRING(obj);
3006 if (i) {
3007 memcpy(dest, self->ob_bytes, mysize);
3008 dest += mysize;
3009 }
3010 memcpy(dest, buf, size);
3011 dest += size;
3012 }
3013
3014 /* Done */
3015 Py_DECREF(seq);
3016 return result;
3017
3018 /* Error handling */
3019 error:
3020 Py_DECREF(seq);
3021 return NULL;
3022}
3023
3024PyDoc_STRVAR(fromhex_doc,
3025"bytearray.fromhex(string) -> bytearray\n\
3026\n\
3027Create a bytearray object from a string of hexadecimal numbers.\n\
3028Spaces between two numbers are accepted.\n\
3029Example: bytearray.fromhex('B9 01EF') -> bytearray(b'\\xb9\\x01\\xef').");
3030
3031static int
3032hex_digit_to_int(Py_UNICODE c)
3033{
3034 if (c >= 128)
3035 return -1;
3036 if (ISDIGIT(c))
3037 return c - '0';
3038 else {
3039 if (ISUPPER(c))
3040 c = TOLOWER(c);
3041 if (c >= 'a' && c <= 'f')
3042 return c - 'a' + 10;
3043 }
3044 return -1;
3045}
3046
3047static PyObject *
3048bytes_fromhex(PyObject *cls, PyObject *args)
3049{
3050 PyObject *newbytes, *hexobj;
3051 char *buf;
3052 Py_UNICODE *hex;
3053 Py_ssize_t hexlen, byteslen, i, j;
3054 int top, bot;
3055
3056 if (!PyArg_ParseTuple(args, "U:fromhex", &hexobj))
3057 return NULL;
3058 assert(PyUnicode_Check(hexobj));
3059 hexlen = PyUnicode_GET_SIZE(hexobj);
3060 hex = PyUnicode_AS_UNICODE(hexobj);
3061 byteslen = hexlen/2; /* This overestimates if there are spaces */
3062 newbytes = PyByteArray_FromStringAndSize(NULL, byteslen);
3063 if (!newbytes)
3064 return NULL;
3065 buf = PyByteArray_AS_STRING(newbytes);
3066 for (i = j = 0; i < hexlen; i += 2) {
3067 /* skip over spaces in the input */
3068 while (hex[i] == ' ')
3069 i++;
3070 if (i >= hexlen)
3071 break;
3072 top = hex_digit_to_int(hex[i]);
3073 bot = hex_digit_to_int(hex[i+1]);
3074 if (top == -1 || bot == -1) {
3075 PyErr_Format(PyExc_ValueError,
3076 "non-hexadecimal number found in "
3077 "fromhex() arg at position %zd", i);
3078 goto error;
3079 }
3080 buf[j++] = (top << 4) + bot;
3081 }
3082 if (PyByteArray_Resize(newbytes, j) < 0)
3083 goto error;
3084 return newbytes;
3085
3086 error:
3087 Py_DECREF(newbytes);
3088 return NULL;
3089}
3090
3091PyDoc_STRVAR(reduce_doc, "Return state information for pickling.");
3092
3093static PyObject *
3094bytes_reduce(PyByteArrayObject *self)
3095{
3096 PyObject *latin1, *dict;
3097 if (self->ob_bytes)
3098 latin1 = PyUnicode_DecodeLatin1(self->ob_bytes,
3099 Py_SIZE(self), NULL);
3100 else
3101 latin1 = PyUnicode_FromString("");
3102
3103 dict = PyObject_GetAttrString((PyObject *)self, "__dict__");
3104 if (dict == NULL) {
3105 PyErr_Clear();
3106 dict = Py_None;
3107 Py_INCREF(dict);
3108 }
3109
3110 return Py_BuildValue("(O(Ns)N)", Py_TYPE(self), latin1, "latin-1", dict);
3111}
3112
Robert Schuppenies9be2ec12008-07-10 15:24:04 +00003113PyDoc_STRVAR(sizeof_doc,
3114"B.__sizeof__() -> int\n\
3115 \n\
3116Returns the size of B in memory, in bytes");
3117static PyObject *
3118bytes_sizeof(PyByteArrayObject *self)
3119{
3120 Py_ssize_t res;
3121
3122 res = sizeof(PyByteArrayObject) + self->ob_alloc * sizeof(char);
3123 return PyInt_FromSsize_t(res);
3124}
3125
Christian Heimes44720832008-05-26 13:01:01 +00003126static PySequenceMethods bytes_as_sequence = {
3127 (lenfunc)bytes_length, /* sq_length */
3128 (binaryfunc)PyByteArray_Concat, /* sq_concat */
3129 (ssizeargfunc)bytes_repeat, /* sq_repeat */
3130 (ssizeargfunc)bytes_getitem, /* sq_item */
3131 0, /* sq_slice */
3132 (ssizeobjargproc)bytes_setitem, /* sq_ass_item */
3133 0, /* sq_ass_slice */
3134 (objobjproc)bytes_contains, /* sq_contains */
3135 (binaryfunc)bytes_iconcat, /* sq_inplace_concat */
3136 (ssizeargfunc)bytes_irepeat, /* sq_inplace_repeat */
3137};
3138
3139static PyMappingMethods bytes_as_mapping = {
3140 (lenfunc)bytes_length,
3141 (binaryfunc)bytes_subscript,
3142 (objobjargproc)bytes_ass_subscript,
3143};
3144
3145static PyBufferProcs bytes_as_buffer = {
3146 (readbufferproc)bytes_buffer_getreadbuf,
3147 (writebufferproc)bytes_buffer_getwritebuf,
3148 (segcountproc)bytes_buffer_getsegcount,
3149 (charbufferproc)bytes_buffer_getcharbuf,
3150 (getbufferproc)bytes_getbuffer,
3151 (releasebufferproc)bytes_releasebuffer,
3152};
3153
3154static PyMethodDef
3155bytes_methods[] = {
3156 {"__alloc__", (PyCFunction)bytes_alloc, METH_NOARGS, alloc_doc},
3157 {"__reduce__", (PyCFunction)bytes_reduce, METH_NOARGS, reduce_doc},
Robert Schuppenies9be2ec12008-07-10 15:24:04 +00003158 {"__sizeof__", (PyCFunction)bytes_sizeof, METH_NOARGS, sizeof_doc},
Christian Heimes44720832008-05-26 13:01:01 +00003159 {"append", (PyCFunction)bytes_append, METH_O, append__doc__},
3160 {"capitalize", (PyCFunction)stringlib_capitalize, METH_NOARGS,
3161 _Py_capitalize__doc__},
3162 {"center", (PyCFunction)stringlib_center, METH_VARARGS, center__doc__},
3163 {"count", (PyCFunction)bytes_count, METH_VARARGS, count__doc__},
3164 {"decode", (PyCFunction)bytes_decode, METH_VARARGS, decode_doc},
3165 {"endswith", (PyCFunction)bytes_endswith, METH_VARARGS, endswith__doc__},
3166 {"expandtabs", (PyCFunction)stringlib_expandtabs, METH_VARARGS,
3167 expandtabs__doc__},
3168 {"extend", (PyCFunction)bytes_extend, METH_O, extend__doc__},
3169 {"find", (PyCFunction)bytes_find, METH_VARARGS, find__doc__},
3170 {"fromhex", (PyCFunction)bytes_fromhex, METH_VARARGS|METH_CLASS,
3171 fromhex_doc},
3172 {"index", (PyCFunction)bytes_index, METH_VARARGS, index__doc__},
3173 {"insert", (PyCFunction)bytes_insert, METH_VARARGS, insert__doc__},
3174 {"isalnum", (PyCFunction)stringlib_isalnum, METH_NOARGS,
3175 _Py_isalnum__doc__},
3176 {"isalpha", (PyCFunction)stringlib_isalpha, METH_NOARGS,
3177 _Py_isalpha__doc__},
3178 {"isdigit", (PyCFunction)stringlib_isdigit, METH_NOARGS,
3179 _Py_isdigit__doc__},
3180 {"islower", (PyCFunction)stringlib_islower, METH_NOARGS,
3181 _Py_islower__doc__},
3182 {"isspace", (PyCFunction)stringlib_isspace, METH_NOARGS,
3183 _Py_isspace__doc__},
3184 {"istitle", (PyCFunction)stringlib_istitle, METH_NOARGS,
3185 _Py_istitle__doc__},
3186 {"isupper", (PyCFunction)stringlib_isupper, METH_NOARGS,
3187 _Py_isupper__doc__},
3188 {"join", (PyCFunction)bytes_join, METH_O, join_doc},
3189 {"ljust", (PyCFunction)stringlib_ljust, METH_VARARGS, ljust__doc__},
3190 {"lower", (PyCFunction)stringlib_lower, METH_NOARGS, _Py_lower__doc__},
3191 {"lstrip", (PyCFunction)bytes_lstrip, METH_VARARGS, lstrip__doc__},
3192 {"partition", (PyCFunction)bytes_partition, METH_O, partition__doc__},
3193 {"pop", (PyCFunction)bytes_pop, METH_VARARGS, pop__doc__},
3194 {"remove", (PyCFunction)bytes_remove, METH_O, remove__doc__},
3195 {"replace", (PyCFunction)bytes_replace, METH_VARARGS, replace__doc__},
3196 {"reverse", (PyCFunction)bytes_reverse, METH_NOARGS, reverse__doc__},
3197 {"rfind", (PyCFunction)bytes_rfind, METH_VARARGS, rfind__doc__},
3198 {"rindex", (PyCFunction)bytes_rindex, METH_VARARGS, rindex__doc__},
3199 {"rjust", (PyCFunction)stringlib_rjust, METH_VARARGS, rjust__doc__},
3200 {"rpartition", (PyCFunction)bytes_rpartition, METH_O, rpartition__doc__},
3201 {"rsplit", (PyCFunction)bytes_rsplit, METH_VARARGS, rsplit__doc__},
3202 {"rstrip", (PyCFunction)bytes_rstrip, METH_VARARGS, rstrip__doc__},
3203 {"split", (PyCFunction)bytes_split, METH_VARARGS, split__doc__},
3204 {"splitlines", (PyCFunction)stringlib_splitlines, METH_VARARGS,
3205 splitlines__doc__},
3206 {"startswith", (PyCFunction)bytes_startswith, METH_VARARGS ,
3207 startswith__doc__},
3208 {"strip", (PyCFunction)bytes_strip, METH_VARARGS, strip__doc__},
3209 {"swapcase", (PyCFunction)stringlib_swapcase, METH_NOARGS,
3210 _Py_swapcase__doc__},
3211 {"title", (PyCFunction)stringlib_title, METH_NOARGS, _Py_title__doc__},
3212 {"translate", (PyCFunction)bytes_translate, METH_VARARGS,
3213 translate__doc__},
3214 {"upper", (PyCFunction)stringlib_upper, METH_NOARGS, _Py_upper__doc__},
3215 {"zfill", (PyCFunction)stringlib_zfill, METH_VARARGS, zfill__doc__},
3216 {NULL}
3217};
3218
3219PyDoc_STRVAR(bytes_doc,
3220"bytearray(iterable_of_ints) -> bytearray.\n\
3221bytearray(string, encoding[, errors]) -> bytearray.\n\
3222bytearray(bytes_or_bytearray) -> mutable copy of bytes_or_bytearray.\n\
3223bytearray(memory_view) -> bytearray.\n\
3224\n\
3225Construct an mutable bytearray object from:\n\
3226 - an iterable yielding integers in range(256)\n\
3227 - a text string encoded using the specified encoding\n\
3228 - a bytes or a bytearray object\n\
3229 - any object implementing the buffer API.\n\
3230\n\
3231bytearray(int) -> bytearray.\n\
3232\n\
3233Construct a zero-initialized bytearray of the given length.");
3234
3235
3236static PyObject *bytes_iter(PyObject *seq);
3237
3238PyTypeObject PyByteArray_Type = {
3239 PyVarObject_HEAD_INIT(&PyType_Type, 0)
3240 "bytearray",
3241 sizeof(PyByteArrayObject),
3242 0,
3243 (destructor)bytes_dealloc, /* tp_dealloc */
3244 0, /* tp_print */
3245 0, /* tp_getattr */
3246 0, /* tp_setattr */
3247 0, /* tp_compare */
3248 (reprfunc)bytes_repr, /* tp_repr */
3249 0, /* tp_as_number */
3250 &bytes_as_sequence, /* tp_as_sequence */
3251 &bytes_as_mapping, /* tp_as_mapping */
3252 0, /* tp_hash */
3253 0, /* tp_call */
3254 bytes_str, /* tp_str */
3255 PyObject_GenericGetAttr, /* tp_getattro */
3256 0, /* tp_setattro */
3257 &bytes_as_buffer, /* tp_as_buffer */
3258 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE |
3259 Py_TPFLAGS_HAVE_NEWBUFFER, /* tp_flags */
3260 bytes_doc, /* tp_doc */
3261 0, /* tp_traverse */
3262 0, /* tp_clear */
3263 (richcmpfunc)bytes_richcompare, /* tp_richcompare */
3264 0, /* tp_weaklistoffset */
3265 bytes_iter, /* tp_iter */
3266 0, /* tp_iternext */
3267 bytes_methods, /* tp_methods */
3268 0, /* tp_members */
3269 0, /* tp_getset */
3270 0, /* tp_base */
3271 0, /* tp_dict */
3272 0, /* tp_descr_get */
3273 0, /* tp_descr_set */
3274 0, /* tp_dictoffset */
3275 (initproc)bytes_init, /* tp_init */
3276 PyType_GenericAlloc, /* tp_alloc */
3277 PyType_GenericNew, /* tp_new */
3278 PyObject_Del, /* tp_free */
3279};
3280
3281/*********************** Bytes Iterator ****************************/
3282
3283typedef struct {
3284 PyObject_HEAD
3285 Py_ssize_t it_index;
3286 PyByteArrayObject *it_seq; /* Set to NULL when iterator is exhausted */
3287} bytesiterobject;
3288
3289static void
3290bytesiter_dealloc(bytesiterobject *it)
3291{
3292 _PyObject_GC_UNTRACK(it);
3293 Py_XDECREF(it->it_seq);
3294 PyObject_GC_Del(it);
3295}
3296
3297static int
3298bytesiter_traverse(bytesiterobject *it, visitproc visit, void *arg)
3299{
3300 Py_VISIT(it->it_seq);
3301 return 0;
3302}
3303
3304static PyObject *
3305bytesiter_next(bytesiterobject *it)
3306{
3307 PyByteArrayObject *seq;
3308 PyObject *item;
3309
3310 assert(it != NULL);
3311 seq = it->it_seq;
3312 if (seq == NULL)
3313 return NULL;
3314 assert(PyByteArray_Check(seq));
3315
3316 if (it->it_index < PyByteArray_GET_SIZE(seq)) {
3317 item = PyInt_FromLong(
3318 (unsigned char)seq->ob_bytes[it->it_index]);
3319 if (item != NULL)
3320 ++it->it_index;
3321 return item;
3322 }
3323
3324 Py_DECREF(seq);
3325 it->it_seq = NULL;
3326 return NULL;
3327}
3328
3329static PyObject *
3330bytesiter_length_hint(bytesiterobject *it)
3331{
3332 Py_ssize_t len = 0;
3333 if (it->it_seq)
3334 len = PyByteArray_GET_SIZE(it->it_seq) - it->it_index;
3335 return PyInt_FromSsize_t(len);
3336}
3337
3338PyDoc_STRVAR(length_hint_doc,
3339 "Private method returning an estimate of len(list(it)).");
3340
3341static PyMethodDef bytesiter_methods[] = {
3342 {"__length_hint__", (PyCFunction)bytesiter_length_hint, METH_NOARGS,
3343 length_hint_doc},
3344 {NULL, NULL} /* sentinel */
3345};
3346
3347PyTypeObject PyByteArrayIter_Type = {
3348 PyVarObject_HEAD_INIT(&PyType_Type, 0)
3349 "bytearray_iterator", /* tp_name */
3350 sizeof(bytesiterobject), /* tp_basicsize */
3351 0, /* tp_itemsize */
3352 /* methods */
3353 (destructor)bytesiter_dealloc, /* tp_dealloc */
3354 0, /* tp_print */
3355 0, /* tp_getattr */
3356 0, /* tp_setattr */
3357 0, /* tp_compare */
3358 0, /* tp_repr */
3359 0, /* tp_as_number */
3360 0, /* tp_as_sequence */
3361 0, /* tp_as_mapping */
3362 0, /* tp_hash */
3363 0, /* tp_call */
3364 0, /* tp_str */
3365 PyObject_GenericGetAttr, /* tp_getattro */
3366 0, /* tp_setattro */
3367 0, /* tp_as_buffer */
3368 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
3369 0, /* tp_doc */
3370 (traverseproc)bytesiter_traverse, /* tp_traverse */
3371 0, /* tp_clear */
3372 0, /* tp_richcompare */
3373 0, /* tp_weaklistoffset */
3374 PyObject_SelfIter, /* tp_iter */
3375 (iternextfunc)bytesiter_next, /* tp_iternext */
3376 bytesiter_methods, /* tp_methods */
3377 0,
3378};
3379
3380static PyObject *
3381bytes_iter(PyObject *seq)
3382{
3383 bytesiterobject *it;
3384
3385 if (!PyByteArray_Check(seq)) {
3386 PyErr_BadInternalCall();
3387 return NULL;
3388 }
3389 it = PyObject_GC_New(bytesiterobject, &PyByteArrayIter_Type);
3390 if (it == NULL)
3391 return NULL;
3392 it->it_index = 0;
3393 Py_INCREF(seq);
3394 it->it_seq = (PyByteArrayObject *)seq;
3395 _PyObject_GC_TRACK(it);
3396 return (PyObject *)it;
3397}