blob: 74483544c0007c073b53ad6d18effc928d0d7194 [file] [log] [blame]
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001/* PyByteArray (bytearray) implementation */
2
3#define PY_SSIZE_T_CLEAN
4#include "Python.h"
5#include "structmember.h"
6#include "bytes_methods.h"
7
Antoine Pitroufc8d6f42010-01-17 12:38:54 +00008char _PyByteArray_empty_string[] = "";
Christian Heimes2c9c7a52008-05-26 13:42:13 +00009
10void
11PyByteArray_Fini(void)
12{
Christian Heimes2c9c7a52008-05-26 13:42:13 +000013}
14
15int
16PyByteArray_Init(void)
17{
Christian Heimes2c9c7a52008-05-26 13:42:13 +000018 return 1;
19}
20
21/* end nullbytes support */
22
23/* Helpers */
24
25static int
26_getbytevalue(PyObject* arg, int *value)
27{
28 long face_value;
29
30 if (PyLong_Check(arg)) {
31 face_value = PyLong_AsLong(arg);
Georg Brandl9a54d7c2008-07-16 23:15:30 +000032 } else {
33 PyObject *index = PyNumber_Index(arg);
34 if (index == NULL) {
35 PyErr_Format(PyExc_TypeError, "an integer is required");
Mark Dickinson10de93a2010-07-09 19:25:48 +000036 *value = -1;
Christian Heimes2c9c7a52008-05-26 13:42:13 +000037 return 0;
38 }
Georg Brandl9a54d7c2008-07-16 23:15:30 +000039 face_value = PyLong_AsLong(index);
40 Py_DECREF(index);
41 }
42
43 if (face_value < 0 || face_value >= 256) {
44 /* this includes the OverflowError in case the long is too large */
45 PyErr_SetString(PyExc_ValueError, "byte must be in range(0, 256)");
Mark Dickinson10de93a2010-07-09 19:25:48 +000046 *value = -1;
Christian Heimes2c9c7a52008-05-26 13:42:13 +000047 return 0;
48 }
49
50 *value = face_value;
51 return 1;
52}
53
54static int
Benjamin Peterson153c70f2009-04-18 15:42:12 +000055bytearray_getbuffer(PyByteArrayObject *obj, Py_buffer *view, int flags)
Christian Heimes2c9c7a52008-05-26 13:42:13 +000056{
57 int ret;
58 void *ptr;
59 if (view == NULL) {
60 obj->ob_exports++;
61 return 0;
62 }
Antoine Pitroufc8d6f42010-01-17 12:38:54 +000063 ptr = (void *) PyByteArray_AS_STRING(obj);
Martin v. Löwis423be952008-08-13 15:53:07 +000064 ret = PyBuffer_FillInfo(view, (PyObject*)obj, ptr, Py_SIZE(obj), 0, flags);
Christian Heimes2c9c7a52008-05-26 13:42:13 +000065 if (ret >= 0) {
66 obj->ob_exports++;
67 }
68 return ret;
69}
70
71static void
Benjamin Peterson153c70f2009-04-18 15:42:12 +000072bytearray_releasebuffer(PyByteArrayObject *obj, Py_buffer *view)
Christian Heimes2c9c7a52008-05-26 13:42:13 +000073{
74 obj->ob_exports--;
75}
76
77static Py_ssize_t
78_getbuffer(PyObject *obj, Py_buffer *view)
79{
80 PyBufferProcs *buffer = Py_TYPE(obj)->tp_as_buffer;
81
82 if (buffer == NULL || buffer->bf_getbuffer == NULL)
83 {
84 PyErr_Format(PyExc_TypeError,
85 "Type %.100s doesn't support the buffer API",
86 Py_TYPE(obj)->tp_name);
87 return -1;
88 }
89
90 if (buffer->bf_getbuffer(obj, view, PyBUF_SIMPLE) < 0)
91 return -1;
92 return view->len;
93}
94
Antoine Pitrou5504e892008-12-06 21:27:53 +000095static int
96_canresize(PyByteArrayObject *self)
97{
98 if (self->ob_exports > 0) {
99 PyErr_SetString(PyExc_BufferError,
100 "Existing exports of data: object cannot be re-sized");
101 return 0;
102 }
103 return 1;
104}
105
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000106/* Direct API functions */
107
108PyObject *
109PyByteArray_FromObject(PyObject *input)
110{
111 return PyObject_CallFunctionObjArgs((PyObject *)&PyByteArray_Type,
112 input, NULL);
113}
114
115PyObject *
116PyByteArray_FromStringAndSize(const char *bytes, Py_ssize_t size)
117{
118 PyByteArrayObject *new;
119 Py_ssize_t alloc;
120
121 if (size < 0) {
122 PyErr_SetString(PyExc_SystemError,
123 "Negative size passed to PyByteArray_FromStringAndSize");
124 return NULL;
125 }
126
Neal Norwitz3ce5d922008-08-24 07:08:55 +0000127 /* Prevent buffer overflow when setting alloc to size+1. */
128 if (size == PY_SSIZE_T_MAX) {
129 return PyErr_NoMemory();
130 }
131
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000132 new = PyObject_New(PyByteArrayObject, &PyByteArray_Type);
133 if (new == NULL)
134 return NULL;
135
136 if (size == 0) {
137 new->ob_bytes = NULL;
138 alloc = 0;
139 }
140 else {
141 alloc = size + 1;
142 new->ob_bytes = PyMem_Malloc(alloc);
143 if (new->ob_bytes == NULL) {
144 Py_DECREF(new);
145 return PyErr_NoMemory();
146 }
Antoine Pitroufc8d6f42010-01-17 12:38:54 +0000147 if (bytes != NULL && size > 0)
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000148 memcpy(new->ob_bytes, bytes, size);
149 new->ob_bytes[size] = '\0'; /* Trailing null byte */
150 }
151 Py_SIZE(new) = size;
152 new->ob_alloc = alloc;
153 new->ob_exports = 0;
154
155 return (PyObject *)new;
156}
157
158Py_ssize_t
159PyByteArray_Size(PyObject *self)
160{
161 assert(self != NULL);
162 assert(PyByteArray_Check(self));
163
164 return PyByteArray_GET_SIZE(self);
165}
166
167char *
168PyByteArray_AsString(PyObject *self)
169{
170 assert(self != NULL);
171 assert(PyByteArray_Check(self));
172
173 return PyByteArray_AS_STRING(self);
174}
175
176int
177PyByteArray_Resize(PyObject *self, Py_ssize_t size)
178{
179 void *sval;
180 Py_ssize_t alloc = ((PyByteArrayObject *)self)->ob_alloc;
181
182 assert(self != NULL);
183 assert(PyByteArray_Check(self));
184 assert(size >= 0);
185
Antoine Pitrou5504e892008-12-06 21:27:53 +0000186 if (size == Py_SIZE(self)) {
187 return 0;
188 }
189 if (!_canresize((PyByteArrayObject *)self)) {
190 return -1;
191 }
192
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000193 if (size < alloc / 2) {
194 /* Major downsize; resize down to exact size */
195 alloc = size + 1;
196 }
197 else if (size < alloc) {
198 /* Within allocated size; quick exit */
199 Py_SIZE(self) = size;
200 ((PyByteArrayObject *)self)->ob_bytes[size] = '\0'; /* Trailing null */
201 return 0;
202 }
203 else if (size <= alloc * 1.125) {
204 /* Moderate upsize; overallocate similar to list_resize() */
205 alloc = size + (size >> 3) + (size < 9 ? 3 : 6);
206 }
207 else {
208 /* Major upsize; resize up to exact size */
209 alloc = size + 1;
210 }
211
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000212 sval = PyMem_Realloc(((PyByteArrayObject *)self)->ob_bytes, alloc);
213 if (sval == NULL) {
214 PyErr_NoMemory();
215 return -1;
216 }
217
218 ((PyByteArrayObject *)self)->ob_bytes = sval;
219 Py_SIZE(self) = size;
220 ((PyByteArrayObject *)self)->ob_alloc = alloc;
221 ((PyByteArrayObject *)self)->ob_bytes[size] = '\0'; /* Trailing null byte */
222
223 return 0;
224}
225
226PyObject *
227PyByteArray_Concat(PyObject *a, PyObject *b)
228{
229 Py_ssize_t size;
230 Py_buffer va, vb;
231 PyByteArrayObject *result = NULL;
232
233 va.len = -1;
234 vb.len = -1;
235 if (_getbuffer(a, &va) < 0 ||
236 _getbuffer(b, &vb) < 0) {
237 PyErr_Format(PyExc_TypeError, "can't concat %.100s to %.100s",
238 Py_TYPE(a)->tp_name, Py_TYPE(b)->tp_name);
239 goto done;
240 }
241
242 size = va.len + vb.len;
243 if (size < 0) {
Benjamin Petersone0124bd2009-03-09 21:04:33 +0000244 PyErr_NoMemory();
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000245 goto done;
246 }
247
248 result = (PyByteArrayObject *) PyByteArray_FromStringAndSize(NULL, size);
249 if (result != NULL) {
250 memcpy(result->ob_bytes, va.buf, va.len);
251 memcpy(result->ob_bytes + va.len, vb.buf, vb.len);
252 }
253
254 done:
255 if (va.len != -1)
Martin v. Löwis423be952008-08-13 15:53:07 +0000256 PyBuffer_Release(&va);
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000257 if (vb.len != -1)
Martin v. Löwis423be952008-08-13 15:53:07 +0000258 PyBuffer_Release(&vb);
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000259 return (PyObject *)result;
260}
261
262/* Functions stuffed into the type object */
263
264static Py_ssize_t
Benjamin Peterson153c70f2009-04-18 15:42:12 +0000265bytearray_length(PyByteArrayObject *self)
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000266{
267 return Py_SIZE(self);
268}
269
270static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +0000271bytearray_iconcat(PyByteArrayObject *self, PyObject *other)
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000272{
273 Py_ssize_t mysize;
274 Py_ssize_t size;
275 Py_buffer vo;
276
277 if (_getbuffer(other, &vo) < 0) {
278 PyErr_Format(PyExc_TypeError, "can't concat %.100s to %.100s",
279 Py_TYPE(other)->tp_name, Py_TYPE(self)->tp_name);
280 return NULL;
281 }
282
283 mysize = Py_SIZE(self);
284 size = mysize + vo.len;
285 if (size < 0) {
Martin v. Löwis423be952008-08-13 15:53:07 +0000286 PyBuffer_Release(&vo);
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000287 return PyErr_NoMemory();
288 }
289 if (size < self->ob_alloc) {
290 Py_SIZE(self) = size;
291 self->ob_bytes[Py_SIZE(self)] = '\0'; /* Trailing null byte */
292 }
293 else if (PyByteArray_Resize((PyObject *)self, size) < 0) {
Martin v. Löwis423be952008-08-13 15:53:07 +0000294 PyBuffer_Release(&vo);
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000295 return NULL;
296 }
297 memcpy(self->ob_bytes + mysize, vo.buf, vo.len);
Martin v. Löwis423be952008-08-13 15:53:07 +0000298 PyBuffer_Release(&vo);
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000299 Py_INCREF(self);
300 return (PyObject *)self;
301}
302
303static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +0000304bytearray_repeat(PyByteArrayObject *self, Py_ssize_t count)
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000305{
306 PyByteArrayObject *result;
307 Py_ssize_t mysize;
308 Py_ssize_t size;
309
310 if (count < 0)
311 count = 0;
312 mysize = Py_SIZE(self);
Mark Dickinsoncf940c72010-08-10 18:35:01 +0000313 if (count > 0 && mysize > PY_SSIZE_T_MAX / count)
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000314 return PyErr_NoMemory();
Mark Dickinsoncf940c72010-08-10 18:35:01 +0000315 size = mysize * count;
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000316 result = (PyByteArrayObject *)PyByteArray_FromStringAndSize(NULL, size);
317 if (result != NULL && size != 0) {
318 if (mysize == 1)
319 memset(result->ob_bytes, self->ob_bytes[0], size);
320 else {
321 Py_ssize_t i;
322 for (i = 0; i < count; i++)
323 memcpy(result->ob_bytes + i*mysize, self->ob_bytes, mysize);
324 }
325 }
326 return (PyObject *)result;
327}
328
329static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +0000330bytearray_irepeat(PyByteArrayObject *self, Py_ssize_t count)
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000331{
332 Py_ssize_t mysize;
333 Py_ssize_t size;
334
335 if (count < 0)
336 count = 0;
337 mysize = Py_SIZE(self);
Mark Dickinsoncf940c72010-08-10 18:35:01 +0000338 if (count > 0 && mysize > PY_SSIZE_T_MAX / count)
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000339 return PyErr_NoMemory();
Mark Dickinsoncf940c72010-08-10 18:35:01 +0000340 size = mysize * count;
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000341 if (size < self->ob_alloc) {
342 Py_SIZE(self) = size;
343 self->ob_bytes[Py_SIZE(self)] = '\0'; /* Trailing null byte */
344 }
345 else if (PyByteArray_Resize((PyObject *)self, size) < 0)
346 return NULL;
347
348 if (mysize == 1)
349 memset(self->ob_bytes, self->ob_bytes[0], size);
350 else {
351 Py_ssize_t i;
352 for (i = 1; i < count; i++)
353 memcpy(self->ob_bytes + i*mysize, self->ob_bytes, mysize);
354 }
355
356 Py_INCREF(self);
357 return (PyObject *)self;
358}
359
360static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +0000361bytearray_getitem(PyByteArrayObject *self, Py_ssize_t i)
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000362{
363 if (i < 0)
364 i += Py_SIZE(self);
365 if (i < 0 || i >= Py_SIZE(self)) {
366 PyErr_SetString(PyExc_IndexError, "bytearray index out of range");
367 return NULL;
368 }
369 return PyLong_FromLong((unsigned char)(self->ob_bytes[i]));
370}
371
372static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +0000373bytearray_subscript(PyByteArrayObject *self, PyObject *index)
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000374{
Georg Brandl9a54d7c2008-07-16 23:15:30 +0000375 if (PyIndex_Check(index)) {
376 Py_ssize_t i = PyNumber_AsSsize_t(index, PyExc_IndexError);
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000377
378 if (i == -1 && PyErr_Occurred())
379 return NULL;
380
381 if (i < 0)
382 i += PyByteArray_GET_SIZE(self);
383
384 if (i < 0 || i >= Py_SIZE(self)) {
385 PyErr_SetString(PyExc_IndexError, "bytearray index out of range");
386 return NULL;
387 }
388 return PyLong_FromLong((unsigned char)(self->ob_bytes[i]));
389 }
Georg Brandl9a54d7c2008-07-16 23:15:30 +0000390 else if (PySlice_Check(index)) {
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000391 Py_ssize_t start, stop, step, slicelength, cur, i;
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000392 if (PySlice_GetIndicesEx(index,
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000393 PyByteArray_GET_SIZE(self),
394 &start, &stop, &step, &slicelength) < 0) {
395 return NULL;
396 }
397
398 if (slicelength <= 0)
399 return PyByteArray_FromStringAndSize("", 0);
400 else if (step == 1) {
401 return PyByteArray_FromStringAndSize(self->ob_bytes + start,
402 slicelength);
403 }
404 else {
405 char *source_buf = PyByteArray_AS_STRING(self);
Alexandre Vassalottie2641f42009-04-03 06:38:02 +0000406 char *result_buf;
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000407 PyObject *result;
408
Alexandre Vassalottie2641f42009-04-03 06:38:02 +0000409 result = PyByteArray_FromStringAndSize(NULL, slicelength);
410 if (result == NULL)
411 return NULL;
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000412
Alexandre Vassalottie2641f42009-04-03 06:38:02 +0000413 result_buf = PyByteArray_AS_STRING(result);
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000414 for (cur = start, i = 0; i < slicelength;
415 cur += step, i++) {
416 result_buf[i] = source_buf[cur];
417 }
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000418 return result;
419 }
420 }
421 else {
422 PyErr_SetString(PyExc_TypeError, "bytearray indices must be integers");
423 return NULL;
424 }
425}
426
427static int
Benjamin Peterson153c70f2009-04-18 15:42:12 +0000428bytearray_setslice(PyByteArrayObject *self, Py_ssize_t lo, Py_ssize_t hi,
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000429 PyObject *values)
430{
431 Py_ssize_t avail, needed;
432 void *bytes;
433 Py_buffer vbytes;
434 int res = 0;
435
436 vbytes.len = -1;
437 if (values == (PyObject *)self) {
438 /* Make a copy and call this function recursively */
439 int err;
440 values = PyByteArray_FromObject(values);
441 if (values == NULL)
442 return -1;
Benjamin Peterson153c70f2009-04-18 15:42:12 +0000443 err = bytearray_setslice(self, lo, hi, values);
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000444 Py_DECREF(values);
445 return err;
446 }
447 if (values == NULL) {
448 /* del b[lo:hi] */
449 bytes = NULL;
450 needed = 0;
451 }
452 else {
453 if (_getbuffer(values, &vbytes) < 0) {
454 PyErr_Format(PyExc_TypeError,
Georg Brandl3dbca812008-07-23 16:10:53 +0000455 "can't set bytearray slice from %.100s",
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000456 Py_TYPE(values)->tp_name);
457 return -1;
458 }
459 needed = vbytes.len;
460 bytes = vbytes.buf;
461 }
462
463 if (lo < 0)
464 lo = 0;
465 if (hi < lo)
466 hi = lo;
467 if (hi > Py_SIZE(self))
468 hi = Py_SIZE(self);
469
470 avail = hi - lo;
471 if (avail < 0)
472 lo = hi = avail = 0;
473
474 if (avail != needed) {
475 if (avail > needed) {
Antoine Pitrou5504e892008-12-06 21:27:53 +0000476 if (!_canresize(self)) {
477 res = -1;
478 goto finish;
479 }
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000480 /*
481 0 lo hi old_size
482 | |<----avail----->|<-----tomove------>|
483 | |<-needed->|<-----tomove------>|
484 0 lo new_hi new_size
485 */
486 memmove(self->ob_bytes + lo + needed, self->ob_bytes + hi,
487 Py_SIZE(self) - hi);
488 }
489 /* XXX(nnorwitz): need to verify this can't overflow! */
490 if (PyByteArray_Resize((PyObject *)self,
491 Py_SIZE(self) + needed - avail) < 0) {
492 res = -1;
493 goto finish;
494 }
495 if (avail < needed) {
496 /*
497 0 lo hi old_size
498 | |<-avail->|<-----tomove------>|
499 | |<----needed---->|<-----tomove------>|
500 0 lo new_hi new_size
501 */
502 memmove(self->ob_bytes + lo + needed, self->ob_bytes + hi,
503 Py_SIZE(self) - lo - needed);
504 }
505 }
506
507 if (needed > 0)
508 memcpy(self->ob_bytes + lo, bytes, needed);
509
510
511 finish:
512 if (vbytes.len != -1)
Martin v. Löwis423be952008-08-13 15:53:07 +0000513 PyBuffer_Release(&vbytes);
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000514 return res;
515}
516
517static int
Benjamin Peterson153c70f2009-04-18 15:42:12 +0000518bytearray_setitem(PyByteArrayObject *self, Py_ssize_t i, PyObject *value)
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000519{
Georg Brandl9a54d7c2008-07-16 23:15:30 +0000520 int ival;
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000521
522 if (i < 0)
523 i += Py_SIZE(self);
524
525 if (i < 0 || i >= Py_SIZE(self)) {
526 PyErr_SetString(PyExc_IndexError, "bytearray index out of range");
527 return -1;
528 }
529
530 if (value == NULL)
Benjamin Peterson153c70f2009-04-18 15:42:12 +0000531 return bytearray_setslice(self, i, i+1, NULL);
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000532
Georg Brandl9a54d7c2008-07-16 23:15:30 +0000533 if (!_getbytevalue(value, &ival))
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000534 return -1;
535
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000536 self->ob_bytes[i] = ival;
537 return 0;
538}
539
540static int
Benjamin Peterson153c70f2009-04-18 15:42:12 +0000541bytearray_ass_subscript(PyByteArrayObject *self, PyObject *index, PyObject *values)
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000542{
543 Py_ssize_t start, stop, step, slicelen, needed;
544 char *bytes;
545
Georg Brandl9a54d7c2008-07-16 23:15:30 +0000546 if (PyIndex_Check(index)) {
547 Py_ssize_t i = PyNumber_AsSsize_t(index, PyExc_IndexError);
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000548
549 if (i == -1 && PyErr_Occurred())
550 return -1;
551
552 if (i < 0)
553 i += PyByteArray_GET_SIZE(self);
554
555 if (i < 0 || i >= Py_SIZE(self)) {
556 PyErr_SetString(PyExc_IndexError, "bytearray index out of range");
557 return -1;
558 }
559
560 if (values == NULL) {
561 /* Fall through to slice assignment */
562 start = i;
563 stop = i + 1;
564 step = 1;
565 slicelen = 1;
566 }
567 else {
Georg Brandl9a54d7c2008-07-16 23:15:30 +0000568 int ival;
569 if (!_getbytevalue(values, &ival))
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000570 return -1;
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000571 self->ob_bytes[i] = (char)ival;
572 return 0;
573 }
574 }
Georg Brandl9a54d7c2008-07-16 23:15:30 +0000575 else if (PySlice_Check(index)) {
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000576 if (PySlice_GetIndicesEx(index,
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000577 PyByteArray_GET_SIZE(self),
578 &start, &stop, &step, &slicelen) < 0) {
579 return -1;
580 }
581 }
582 else {
583 PyErr_SetString(PyExc_TypeError, "bytearray indices must be integer");
584 return -1;
585 }
586
587 if (values == NULL) {
588 bytes = NULL;
589 needed = 0;
590 }
591 else if (values == (PyObject *)self || !PyByteArray_Check(values)) {
Georg Brandlf3fa5682010-12-04 17:09:30 +0000592 /* Make a copy and call this function recursively */
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000593 int err;
594 values = PyByteArray_FromObject(values);
595 if (values == NULL)
596 return -1;
Benjamin Peterson153c70f2009-04-18 15:42:12 +0000597 err = bytearray_ass_subscript(self, index, values);
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000598 Py_DECREF(values);
599 return err;
600 }
601 else {
602 assert(PyByteArray_Check(values));
603 bytes = ((PyByteArrayObject *)values)->ob_bytes;
604 needed = Py_SIZE(values);
605 }
606 /* Make sure b[5:2] = ... inserts before 5, not before 2. */
607 if ((step < 0 && start < stop) ||
608 (step > 0 && start > stop))
609 stop = start;
610 if (step == 1) {
611 if (slicelen != needed) {
Antoine Pitrou5504e892008-12-06 21:27:53 +0000612 if (!_canresize(self))
613 return -1;
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000614 if (slicelen > needed) {
615 /*
616 0 start stop old_size
617 | |<---slicelen--->|<-----tomove------>|
618 | |<-needed->|<-----tomove------>|
619 0 lo new_hi new_size
620 */
621 memmove(self->ob_bytes + start + needed, self->ob_bytes + stop,
622 Py_SIZE(self) - stop);
623 }
624 if (PyByteArray_Resize((PyObject *)self,
625 Py_SIZE(self) + needed - slicelen) < 0)
626 return -1;
627 if (slicelen < needed) {
628 /*
629 0 lo hi old_size
630 | |<-avail->|<-----tomove------>|
631 | |<----needed---->|<-----tomove------>|
632 0 lo new_hi new_size
633 */
634 memmove(self->ob_bytes + start + needed, self->ob_bytes + stop,
635 Py_SIZE(self) - start - needed);
636 }
637 }
638
639 if (needed > 0)
640 memcpy(self->ob_bytes + start, bytes, needed);
641
642 return 0;
643 }
644 else {
645 if (needed == 0) {
646 /* Delete slice */
Mark Dickinsonbc099642010-01-29 17:27:24 +0000647 size_t cur;
648 Py_ssize_t i;
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000649
Antoine Pitrou5504e892008-12-06 21:27:53 +0000650 if (!_canresize(self))
651 return -1;
Mark Dickinson7e3b9482010-08-06 21:33:18 +0000652
653 if (slicelen == 0)
654 /* Nothing to do here. */
655 return 0;
656
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000657 if (step < 0) {
658 stop = start + 1;
659 start = stop + step * (slicelen - 1) - 1;
660 step = -step;
661 }
662 for (cur = start, i = 0;
663 i < slicelen; cur += step, i++) {
664 Py_ssize_t lim = step - 1;
665
Mark Dickinson66f575b2010-02-14 12:53:32 +0000666 if (cur + step >= (size_t)PyByteArray_GET_SIZE(self))
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000667 lim = PyByteArray_GET_SIZE(self) - cur - 1;
668
669 memmove(self->ob_bytes + cur - i,
670 self->ob_bytes + cur + 1, lim);
671 }
672 /* Move the tail of the bytes, in one chunk */
Mark Dickinson7e3b9482010-08-06 21:33:18 +0000673 cur = start + (size_t)slicelen*step;
Mark Dickinson66f575b2010-02-14 12:53:32 +0000674 if (cur < (size_t)PyByteArray_GET_SIZE(self)) {
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000675 memmove(self->ob_bytes + cur - slicelen,
676 self->ob_bytes + cur,
677 PyByteArray_GET_SIZE(self) - cur);
678 }
679 if (PyByteArray_Resize((PyObject *)self,
680 PyByteArray_GET_SIZE(self) - slicelen) < 0)
681 return -1;
682
683 return 0;
684 }
685 else {
686 /* Assign slice */
Mark Dickinson7e3b9482010-08-06 21:33:18 +0000687 Py_ssize_t i;
688 size_t cur;
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000689
690 if (needed != slicelen) {
691 PyErr_Format(PyExc_ValueError,
692 "attempt to assign bytes of size %zd "
693 "to extended slice of size %zd",
694 needed, slicelen);
695 return -1;
696 }
697 for (cur = start, i = 0; i < slicelen; cur += step, i++)
698 self->ob_bytes[cur] = bytes[i];
699 return 0;
700 }
701 }
702}
703
704static int
Benjamin Peterson153c70f2009-04-18 15:42:12 +0000705bytearray_init(PyByteArrayObject *self, PyObject *args, PyObject *kwds)
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000706{
707 static char *kwlist[] = {"source", "encoding", "errors", 0};
708 PyObject *arg = NULL;
709 const char *encoding = NULL;
710 const char *errors = NULL;
711 Py_ssize_t count;
712 PyObject *it;
713 PyObject *(*iternext)(PyObject *);
714
715 if (Py_SIZE(self) != 0) {
716 /* Empty previous contents (yes, do this first of all!) */
717 if (PyByteArray_Resize((PyObject *)self, 0) < 0)
718 return -1;
719 }
720
721 /* Parse arguments */
Georg Brandl3dbca812008-07-23 16:10:53 +0000722 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|Oss:bytearray", kwlist,
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000723 &arg, &encoding, &errors))
724 return -1;
725
726 /* Make a quick exit if no first argument */
727 if (arg == NULL) {
728 if (encoding != NULL || errors != NULL) {
729 PyErr_SetString(PyExc_TypeError,
730 "encoding or errors without sequence argument");
731 return -1;
732 }
733 return 0;
734 }
735
736 if (PyUnicode_Check(arg)) {
737 /* Encode via the codec registry */
738 PyObject *encoded, *new;
739 if (encoding == NULL) {
740 PyErr_SetString(PyExc_TypeError,
741 "string argument without an encoding");
742 return -1;
743 }
Marc-André Lemburgb2750b52008-06-06 12:18:17 +0000744 encoded = PyUnicode_AsEncodedString(arg, encoding, errors);
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000745 if (encoded == NULL)
746 return -1;
747 assert(PyBytes_Check(encoded));
Benjamin Peterson153c70f2009-04-18 15:42:12 +0000748 new = bytearray_iconcat(self, encoded);
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000749 Py_DECREF(encoded);
750 if (new == NULL)
751 return -1;
752 Py_DECREF(new);
753 return 0;
754 }
755
756 /* If it's not unicode, there can't be encoding or errors */
757 if (encoding != NULL || errors != NULL) {
758 PyErr_SetString(PyExc_TypeError,
759 "encoding or errors without a string argument");
760 return -1;
761 }
762
763 /* Is it an int? */
Benjamin Peterson8380dd52010-04-16 22:51:37 +0000764 count = PyNumber_AsSsize_t(arg, PyExc_OverflowError);
765 if (count == -1 && PyErr_Occurred()) {
766 if (PyErr_ExceptionMatches(PyExc_OverflowError))
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000767 return -1;
Benjamin Peterson9c0e94f2010-04-16 23:00:53 +0000768 PyErr_Clear();
Benjamin Peterson8380dd52010-04-16 22:51:37 +0000769 }
770 else if (count < 0) {
771 PyErr_SetString(PyExc_ValueError, "negative count");
772 return -1;
773 }
774 else {
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000775 if (count > 0) {
776 if (PyByteArray_Resize((PyObject *)self, count))
777 return -1;
778 memset(self->ob_bytes, 0, count);
779 }
780 return 0;
781 }
782
783 /* Use the buffer API */
784 if (PyObject_CheckBuffer(arg)) {
785 Py_ssize_t size;
786 Py_buffer view;
787 if (PyObject_GetBuffer(arg, &view, PyBUF_FULL_RO) < 0)
788 return -1;
789 size = view.len;
790 if (PyByteArray_Resize((PyObject *)self, size) < 0) goto fail;
791 if (PyBuffer_ToContiguous(self->ob_bytes, &view, size, 'C') < 0)
792 goto fail;
Martin v. Löwis423be952008-08-13 15:53:07 +0000793 PyBuffer_Release(&view);
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000794 return 0;
795 fail:
Martin v. Löwis423be952008-08-13 15:53:07 +0000796 PyBuffer_Release(&view);
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000797 return -1;
798 }
799
800 /* XXX Optimize this if the arguments is a list, tuple */
801
802 /* Get the iterator */
803 it = PyObject_GetIter(arg);
804 if (it == NULL)
805 return -1;
806 iternext = *Py_TYPE(it)->tp_iternext;
807
808 /* Run the iterator to exhaustion */
809 for (;;) {
810 PyObject *item;
Georg Brandl9a54d7c2008-07-16 23:15:30 +0000811 int rc, value;
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000812
813 /* Get the next item */
814 item = iternext(it);
815 if (item == NULL) {
816 if (PyErr_Occurred()) {
817 if (!PyErr_ExceptionMatches(PyExc_StopIteration))
818 goto error;
819 PyErr_Clear();
820 }
821 break;
822 }
823
824 /* Interpret it as an int (__index__) */
Georg Brandl9a54d7c2008-07-16 23:15:30 +0000825 rc = _getbytevalue(item, &value);
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000826 Py_DECREF(item);
Georg Brandl9a54d7c2008-07-16 23:15:30 +0000827 if (!rc)
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000828 goto error;
829
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000830 /* Append the byte */
831 if (Py_SIZE(self) < self->ob_alloc)
832 Py_SIZE(self)++;
833 else if (PyByteArray_Resize((PyObject *)self, Py_SIZE(self)+1) < 0)
834 goto error;
835 self->ob_bytes[Py_SIZE(self)-1] = value;
836 }
837
838 /* Clean up and return success */
839 Py_DECREF(it);
840 return 0;
841
842 error:
843 /* Error handling when it != NULL */
844 Py_DECREF(it);
845 return -1;
846}
847
848/* Mostly copied from string_repr, but without the
849 "smart quote" functionality. */
850static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +0000851bytearray_repr(PyByteArrayObject *self)
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000852{
853 static const char *hexdigits = "0123456789abcdef";
854 const char *quote_prefix = "bytearray(b";
855 const char *quote_postfix = ")";
856 Py_ssize_t length = Py_SIZE(self);
857 /* 14 == strlen(quote_prefix) + 2 + strlen(quote_postfix) */
Mark Dickinson66f575b2010-02-14 12:53:32 +0000858 size_t newsize;
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000859 PyObject *v;
Mark Dickinson66f575b2010-02-14 12:53:32 +0000860 if (length > (PY_SSIZE_T_MAX - 14) / 4) {
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000861 PyErr_SetString(PyExc_OverflowError,
862 "bytearray object is too large to make repr");
863 return NULL;
864 }
Mark Dickinson66f575b2010-02-14 12:53:32 +0000865 newsize = 14 + 4 * length;
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000866 v = PyUnicode_FromUnicode(NULL, newsize);
867 if (v == NULL) {
868 return NULL;
869 }
870 else {
871 register Py_ssize_t i;
872 register Py_UNICODE c;
873 register Py_UNICODE *p;
874 int quote;
875
876 /* Figure out which quote to use; single is preferred */
877 quote = '\'';
878 {
879 char *test, *start;
880 start = PyByteArray_AS_STRING(self);
881 for (test = start; test < start+length; ++test) {
882 if (*test == '"') {
883 quote = '\''; /* back to single */
884 goto decided;
885 }
886 else if (*test == '\'')
887 quote = '"';
888 }
889 decided:
890 ;
891 }
892
893 p = PyUnicode_AS_UNICODE(v);
894 while (*quote_prefix)
895 *p++ = *quote_prefix++;
896 *p++ = quote;
897
898 for (i = 0; i < length; i++) {
899 /* There's at least enough room for a hex escape
900 and a closing quote. */
901 assert(newsize - (p - PyUnicode_AS_UNICODE(v)) >= 5);
902 c = self->ob_bytes[i];
903 if (c == '\'' || c == '\\')
904 *p++ = '\\', *p++ = c;
905 else if (c == '\t')
906 *p++ = '\\', *p++ = 't';
907 else if (c == '\n')
908 *p++ = '\\', *p++ = 'n';
909 else if (c == '\r')
910 *p++ = '\\', *p++ = 'r';
911 else if (c == 0)
912 *p++ = '\\', *p++ = 'x', *p++ = '0', *p++ = '0';
913 else if (c < ' ' || c >= 0x7f) {
914 *p++ = '\\';
915 *p++ = 'x';
916 *p++ = hexdigits[(c & 0xf0) >> 4];
917 *p++ = hexdigits[c & 0xf];
918 }
919 else
920 *p++ = c;
921 }
922 assert(newsize - (p - PyUnicode_AS_UNICODE(v)) >= 1);
923 *p++ = quote;
924 while (*quote_postfix) {
925 *p++ = *quote_postfix++;
926 }
927 *p = '\0';
928 if (PyUnicode_Resize(&v, (p - PyUnicode_AS_UNICODE(v)))) {
929 Py_DECREF(v);
930 return NULL;
931 }
932 return v;
933 }
934}
935
936static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +0000937bytearray_str(PyObject *op)
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000938{
Alexander Belopolskyf0f45142010-08-11 17:31:17 +0000939 if (Py_BytesWarningFlag) {
940 if (PyErr_WarnEx(PyExc_BytesWarning,
941 "str() on a bytearray instance", 1))
942 return NULL;
943 }
944 return bytearray_repr((PyByteArrayObject*)op);
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000945}
946
947static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +0000948bytearray_richcompare(PyObject *self, PyObject *other, int op)
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000949{
950 Py_ssize_t self_size, other_size;
951 Py_buffer self_bytes, other_bytes;
952 PyObject *res;
953 Py_ssize_t minsize;
954 int cmp;
955
956 /* Bytes can be compared to anything that supports the (binary)
957 buffer API. Except that a comparison with Unicode is always an
958 error, even if the comparison is for equality. */
959 if (PyObject_IsInstance(self, (PyObject*)&PyUnicode_Type) ||
960 PyObject_IsInstance(other, (PyObject*)&PyUnicode_Type)) {
Barry Warsaw9e9dcd62008-10-17 01:50:37 +0000961 if (Py_BytesWarningFlag && (op == Py_EQ || op == Py_NE)) {
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000962 if (PyErr_WarnEx(PyExc_BytesWarning,
Georg Brandle5d68ac2008-06-04 11:30:26 +0000963 "Comparison between bytearray and string", 1))
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000964 return NULL;
965 }
966
967 Py_INCREF(Py_NotImplemented);
968 return Py_NotImplemented;
969 }
970
971 self_size = _getbuffer(self, &self_bytes);
972 if (self_size < 0) {
973 PyErr_Clear();
974 Py_INCREF(Py_NotImplemented);
975 return Py_NotImplemented;
976 }
977
978 other_size = _getbuffer(other, &other_bytes);
979 if (other_size < 0) {
980 PyErr_Clear();
Martin v. Löwis423be952008-08-13 15:53:07 +0000981 PyBuffer_Release(&self_bytes);
Christian Heimes2c9c7a52008-05-26 13:42:13 +0000982 Py_INCREF(Py_NotImplemented);
983 return Py_NotImplemented;
984 }
985
986 if (self_size != other_size && (op == Py_EQ || op == Py_NE)) {
987 /* Shortcut: if the lengths differ, the objects differ */
988 cmp = (op == Py_NE);
989 }
990 else {
991 minsize = self_size;
992 if (other_size < minsize)
993 minsize = other_size;
994
995 cmp = memcmp(self_bytes.buf, other_bytes.buf, minsize);
996 /* In ISO C, memcmp() guarantees to use unsigned bytes! */
997
998 if (cmp == 0) {
999 if (self_size < other_size)
1000 cmp = -1;
1001 else if (self_size > other_size)
1002 cmp = 1;
1003 }
1004
1005 switch (op) {
1006 case Py_LT: cmp = cmp < 0; break;
1007 case Py_LE: cmp = cmp <= 0; break;
1008 case Py_EQ: cmp = cmp == 0; break;
1009 case Py_NE: cmp = cmp != 0; break;
1010 case Py_GT: cmp = cmp > 0; break;
1011 case Py_GE: cmp = cmp >= 0; break;
1012 }
1013 }
1014
1015 res = cmp ? Py_True : Py_False;
Martin v. Löwis423be952008-08-13 15:53:07 +00001016 PyBuffer_Release(&self_bytes);
1017 PyBuffer_Release(&other_bytes);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001018 Py_INCREF(res);
1019 return res;
1020}
1021
1022static void
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001023bytearray_dealloc(PyByteArrayObject *self)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001024{
Benjamin Petersone0124bd2009-03-09 21:04:33 +00001025 if (self->ob_exports > 0) {
1026 PyErr_SetString(PyExc_SystemError,
Benjamin Petersonef3e4c22009-04-11 19:48:14 +00001027 "deallocated bytearray object has exported buffers");
Benjamin Petersone0124bd2009-03-09 21:04:33 +00001028 PyErr_Print();
1029 }
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001030 if (self->ob_bytes != 0) {
1031 PyMem_Free(self->ob_bytes);
1032 }
1033 Py_TYPE(self)->tp_free((PyObject *)self);
1034}
1035
1036
1037/* -------------------------------------------------------------------- */
1038/* Methods */
1039
1040#define STRINGLIB_CHAR char
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001041#define STRINGLIB_LEN PyByteArray_GET_SIZE
1042#define STRINGLIB_STR PyByteArray_AS_STRING
1043#define STRINGLIB_NEW PyByteArray_FromStringAndSize
Antoine Pitrouf2c54842010-01-13 08:07:53 +00001044#define STRINGLIB_ISSPACE Py_ISSPACE
1045#define STRINGLIB_ISLINEBREAK(x) ((x == '\n') || (x == '\r'))
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001046#define STRINGLIB_CHECK_EXACT PyByteArray_CheckExact
1047#define STRINGLIB_MUTABLE 1
1048
1049#include "stringlib/fastsearch.h"
1050#include "stringlib/count.h"
1051#include "stringlib/find.h"
1052#include "stringlib/partition.h"
Antoine Pitrouf2c54842010-01-13 08:07:53 +00001053#include "stringlib/split.h"
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001054#include "stringlib/ctype.h"
1055#include "stringlib/transmogrify.h"
1056
1057
1058/* The following Py_LOCAL_INLINE and Py_LOCAL functions
1059were copied from the old char* style string object. */
1060
Antoine Pitrouf2c54842010-01-13 08:07:53 +00001061/* helper macro to fixup start/end slice values */
1062#define ADJUST_INDICES(start, end, len) \
1063 if (end > len) \
1064 end = len; \
1065 else if (end < 0) { \
1066 end += len; \
1067 if (end < 0) \
1068 end = 0; \
1069 } \
1070 if (start < 0) { \
1071 start += len; \
1072 if (start < 0) \
1073 start = 0; \
1074 }
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001075
1076Py_LOCAL_INLINE(Py_ssize_t)
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001077bytearray_find_internal(PyByteArrayObject *self, PyObject *args, int dir)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001078{
1079 PyObject *subobj;
1080 Py_buffer subbuf;
1081 Py_ssize_t start=0, end=PY_SSIZE_T_MAX;
1082 Py_ssize_t res;
1083
1084 if (!PyArg_ParseTuple(args, "O|O&O&:find/rfind/index/rindex", &subobj,
1085 _PyEval_SliceIndex, &start, _PyEval_SliceIndex, &end))
1086 return -2;
1087 if (_getbuffer(subobj, &subbuf) < 0)
1088 return -2;
1089 if (dir > 0)
1090 res = stringlib_find_slice(
1091 PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self),
1092 subbuf.buf, subbuf.len, start, end);
1093 else
1094 res = stringlib_rfind_slice(
1095 PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self),
1096 subbuf.buf, subbuf.len, start, end);
Martin v. Löwis423be952008-08-13 15:53:07 +00001097 PyBuffer_Release(&subbuf);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001098 return res;
1099}
1100
1101PyDoc_STRVAR(find__doc__,
Georg Brandl17cb8a82008-05-30 08:20:09 +00001102"B.find(sub[, start[, end]]) -> int\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001103\n\
1104Return the lowest index in B where subsection sub is found,\n\
1105such that sub is contained within s[start,end]. Optional\n\
1106arguments start and end are interpreted as in slice notation.\n\
1107\n\
1108Return -1 on failure.");
1109
1110static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001111bytearray_find(PyByteArrayObject *self, PyObject *args)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001112{
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001113 Py_ssize_t result = bytearray_find_internal(self, args, +1);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001114 if (result == -2)
1115 return NULL;
1116 return PyLong_FromSsize_t(result);
1117}
1118
1119PyDoc_STRVAR(count__doc__,
Georg Brandl17cb8a82008-05-30 08:20:09 +00001120"B.count(sub[, start[, end]]) -> int\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001121\n\
1122Return the number of non-overlapping occurrences of subsection sub in\n\
1123bytes B[start:end]. Optional arguments start and end are interpreted\n\
1124as in slice notation.");
1125
1126static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001127bytearray_count(PyByteArrayObject *self, PyObject *args)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001128{
1129 PyObject *sub_obj;
1130 const char *str = PyByteArray_AS_STRING(self);
1131 Py_ssize_t start = 0, end = PY_SSIZE_T_MAX;
1132 Py_buffer vsub;
1133 PyObject *count_obj;
1134
1135 if (!PyArg_ParseTuple(args, "O|O&O&:count", &sub_obj,
1136 _PyEval_SliceIndex, &start, _PyEval_SliceIndex, &end))
1137 return NULL;
1138
1139 if (_getbuffer(sub_obj, &vsub) < 0)
1140 return NULL;
1141
Antoine Pitrouf2c54842010-01-13 08:07:53 +00001142 ADJUST_INDICES(start, end, PyByteArray_GET_SIZE(self));
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001143
1144 count_obj = PyLong_FromSsize_t(
Antoine Pitrouf2c54842010-01-13 08:07:53 +00001145 stringlib_count(str + start, end - start, vsub.buf, vsub.len, PY_SSIZE_T_MAX)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001146 );
Martin v. Löwis423be952008-08-13 15:53:07 +00001147 PyBuffer_Release(&vsub);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001148 return count_obj;
1149}
1150
1151
1152PyDoc_STRVAR(index__doc__,
Georg Brandl17cb8a82008-05-30 08:20:09 +00001153"B.index(sub[, start[, end]]) -> int\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001154\n\
1155Like B.find() but raise ValueError when the subsection is not found.");
1156
1157static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001158bytearray_index(PyByteArrayObject *self, PyObject *args)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001159{
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001160 Py_ssize_t result = bytearray_find_internal(self, args, +1);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001161 if (result == -2)
1162 return NULL;
1163 if (result == -1) {
1164 PyErr_SetString(PyExc_ValueError,
1165 "subsection not found");
1166 return NULL;
1167 }
1168 return PyLong_FromSsize_t(result);
1169}
1170
1171
1172PyDoc_STRVAR(rfind__doc__,
Georg Brandl17cb8a82008-05-30 08:20:09 +00001173"B.rfind(sub[, start[, end]]) -> int\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001174\n\
1175Return the highest index in B where subsection sub is found,\n\
1176such that sub is contained within s[start,end]. Optional\n\
1177arguments start and end are interpreted as in slice notation.\n\
1178\n\
1179Return -1 on failure.");
1180
1181static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001182bytearray_rfind(PyByteArrayObject *self, PyObject *args)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001183{
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001184 Py_ssize_t result = bytearray_find_internal(self, args, -1);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001185 if (result == -2)
1186 return NULL;
1187 return PyLong_FromSsize_t(result);
1188}
1189
1190
1191PyDoc_STRVAR(rindex__doc__,
Georg Brandl17cb8a82008-05-30 08:20:09 +00001192"B.rindex(sub[, start[, end]]) -> int\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001193\n\
1194Like B.rfind() but raise ValueError when the subsection is not found.");
1195
1196static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001197bytearray_rindex(PyByteArrayObject *self, PyObject *args)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001198{
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001199 Py_ssize_t result = bytearray_find_internal(self, args, -1);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001200 if (result == -2)
1201 return NULL;
1202 if (result == -1) {
1203 PyErr_SetString(PyExc_ValueError,
1204 "subsection not found");
1205 return NULL;
1206 }
1207 return PyLong_FromSsize_t(result);
1208}
1209
1210
1211static int
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001212bytearray_contains(PyObject *self, PyObject *arg)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001213{
1214 Py_ssize_t ival = PyNumber_AsSsize_t(arg, PyExc_ValueError);
1215 if (ival == -1 && PyErr_Occurred()) {
1216 Py_buffer varg;
Antoine Pitrou0010d372010-08-15 17:12:55 +00001217 Py_ssize_t pos;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001218 PyErr_Clear();
1219 if (_getbuffer(arg, &varg) < 0)
1220 return -1;
1221 pos = stringlib_find(PyByteArray_AS_STRING(self), Py_SIZE(self),
1222 varg.buf, varg.len, 0);
Martin v. Löwis423be952008-08-13 15:53:07 +00001223 PyBuffer_Release(&varg);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001224 return pos >= 0;
1225 }
1226 if (ival < 0 || ival >= 256) {
1227 PyErr_SetString(PyExc_ValueError, "byte must be in range(0, 256)");
1228 return -1;
1229 }
1230
Antoine Pitrou0010d372010-08-15 17:12:55 +00001231 return memchr(PyByteArray_AS_STRING(self), (int) ival, Py_SIZE(self)) != NULL;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001232}
1233
1234
1235/* Matches the end (direction >= 0) or start (direction < 0) of self
1236 * against substr, using the start and end arguments. Returns
1237 * -1 on error, 0 if not found and 1 if found.
1238 */
1239Py_LOCAL(int)
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001240_bytearray_tailmatch(PyByteArrayObject *self, PyObject *substr, Py_ssize_t start,
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001241 Py_ssize_t end, int direction)
1242{
1243 Py_ssize_t len = PyByteArray_GET_SIZE(self);
1244 const char* str;
1245 Py_buffer vsubstr;
1246 int rv = 0;
1247
1248 str = PyByteArray_AS_STRING(self);
1249
1250 if (_getbuffer(substr, &vsubstr) < 0)
1251 return -1;
1252
Antoine Pitrouf2c54842010-01-13 08:07:53 +00001253 ADJUST_INDICES(start, end, len);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001254
1255 if (direction < 0) {
1256 /* startswith */
1257 if (start+vsubstr.len > len) {
1258 goto done;
1259 }
1260 } else {
1261 /* endswith */
1262 if (end-start < vsubstr.len || start > len) {
1263 goto done;
1264 }
1265
1266 if (end-vsubstr.len > start)
1267 start = end - vsubstr.len;
1268 }
1269 if (end-start >= vsubstr.len)
1270 rv = ! memcmp(str+start, vsubstr.buf, vsubstr.len);
1271
1272done:
Martin v. Löwis423be952008-08-13 15:53:07 +00001273 PyBuffer_Release(&vsubstr);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001274 return rv;
1275}
1276
1277
1278PyDoc_STRVAR(startswith__doc__,
Georg Brandl17cb8a82008-05-30 08:20:09 +00001279"B.startswith(prefix[, start[, end]]) -> bool\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001280\n\
1281Return True if B starts with the specified prefix, False otherwise.\n\
1282With optional start, test B beginning at that position.\n\
1283With optional end, stop comparing B at that position.\n\
1284prefix can also be a tuple of strings to try.");
1285
1286static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001287bytearray_startswith(PyByteArrayObject *self, PyObject *args)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001288{
1289 Py_ssize_t start = 0;
1290 Py_ssize_t end = PY_SSIZE_T_MAX;
1291 PyObject *subobj;
1292 int result;
1293
1294 if (!PyArg_ParseTuple(args, "O|O&O&:startswith", &subobj,
1295 _PyEval_SliceIndex, &start, _PyEval_SliceIndex, &end))
1296 return NULL;
1297 if (PyTuple_Check(subobj)) {
1298 Py_ssize_t i;
1299 for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) {
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001300 result = _bytearray_tailmatch(self,
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001301 PyTuple_GET_ITEM(subobj, i),
1302 start, end, -1);
1303 if (result == -1)
1304 return NULL;
1305 else if (result) {
1306 Py_RETURN_TRUE;
1307 }
1308 }
1309 Py_RETURN_FALSE;
1310 }
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001311 result = _bytearray_tailmatch(self, subobj, start, end, -1);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001312 if (result == -1)
1313 return NULL;
1314 else
1315 return PyBool_FromLong(result);
1316}
1317
1318PyDoc_STRVAR(endswith__doc__,
Georg Brandl17cb8a82008-05-30 08:20:09 +00001319"B.endswith(suffix[, start[, end]]) -> bool\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001320\n\
1321Return True if B ends with the specified suffix, False otherwise.\n\
1322With optional start, test B beginning at that position.\n\
1323With optional end, stop comparing B at that position.\n\
1324suffix can also be a tuple of strings to try.");
1325
1326static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001327bytearray_endswith(PyByteArrayObject *self, PyObject *args)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001328{
1329 Py_ssize_t start = 0;
1330 Py_ssize_t end = PY_SSIZE_T_MAX;
1331 PyObject *subobj;
1332 int result;
1333
1334 if (!PyArg_ParseTuple(args, "O|O&O&:endswith", &subobj,
1335 _PyEval_SliceIndex, &start, _PyEval_SliceIndex, &end))
1336 return NULL;
1337 if (PyTuple_Check(subobj)) {
1338 Py_ssize_t i;
1339 for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) {
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001340 result = _bytearray_tailmatch(self,
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001341 PyTuple_GET_ITEM(subobj, i),
1342 start, end, +1);
1343 if (result == -1)
1344 return NULL;
1345 else if (result) {
1346 Py_RETURN_TRUE;
1347 }
1348 }
1349 Py_RETURN_FALSE;
1350 }
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001351 result = _bytearray_tailmatch(self, subobj, start, end, +1);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001352 if (result == -1)
1353 return NULL;
1354 else
1355 return PyBool_FromLong(result);
1356}
1357
1358
1359PyDoc_STRVAR(translate__doc__,
1360"B.translate(table[, deletechars]) -> bytearray\n\
1361\n\
1362Return a copy of B, where all characters occurring in the\n\
1363optional argument deletechars are removed, and the remaining\n\
1364characters have been mapped through the given translation\n\
1365table, which must be a bytes object of length 256.");
1366
1367static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001368bytearray_translate(PyByteArrayObject *self, PyObject *args)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001369{
1370 register char *input, *output;
1371 register const char *table;
Benjamin Peterson0f3641c2008-11-19 22:05:52 +00001372 register Py_ssize_t i, c;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001373 PyObject *input_obj = (PyObject*)self;
1374 const char *output_start;
1375 Py_ssize_t inlen;
Georg Brandlccc47b62008-12-28 11:44:14 +00001376 PyObject *result = NULL;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001377 int trans_table[256];
Georg Brandlccc47b62008-12-28 11:44:14 +00001378 PyObject *tableobj = NULL, *delobj = NULL;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001379 Py_buffer vtable, vdel;
1380
1381 if (!PyArg_UnpackTuple(args, "translate", 1, 2,
1382 &tableobj, &delobj))
1383 return NULL;
1384
Georg Brandlccc47b62008-12-28 11:44:14 +00001385 if (tableobj == Py_None) {
1386 table = NULL;
1387 tableobj = NULL;
1388 } else if (_getbuffer(tableobj, &vtable) < 0) {
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001389 return NULL;
Georg Brandlccc47b62008-12-28 11:44:14 +00001390 } else {
1391 if (vtable.len != 256) {
1392 PyErr_SetString(PyExc_ValueError,
1393 "translation table must be 256 characters long");
Georg Brandl953152f2009-07-22 12:03:59 +00001394 PyBuffer_Release(&vtable);
1395 return NULL;
Georg Brandlccc47b62008-12-28 11:44:14 +00001396 }
1397 table = (const char*)vtable.buf;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001398 }
1399
1400 if (delobj != NULL) {
1401 if (_getbuffer(delobj, &vdel) < 0) {
Georg Brandl953152f2009-07-22 12:03:59 +00001402 if (tableobj != NULL)
1403 PyBuffer_Release(&vtable);
1404 return NULL;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001405 }
1406 }
1407 else {
1408 vdel.buf = NULL;
1409 vdel.len = 0;
1410 }
1411
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001412 inlen = PyByteArray_GET_SIZE(input_obj);
1413 result = PyByteArray_FromStringAndSize((char *)NULL, inlen);
1414 if (result == NULL)
1415 goto done;
1416 output_start = output = PyByteArray_AsString(result);
1417 input = PyByteArray_AS_STRING(input_obj);
1418
Georg Brandlccc47b62008-12-28 11:44:14 +00001419 if (vdel.len == 0 && table != NULL) {
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001420 /* If no deletions are required, use faster code */
1421 for (i = inlen; --i >= 0; ) {
1422 c = Py_CHARMASK(*input++);
Benjamin Peterson0f3641c2008-11-19 22:05:52 +00001423 *output++ = table[c];
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001424 }
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001425 goto done;
1426 }
Georg Brandlccc47b62008-12-28 11:44:14 +00001427
1428 if (table == NULL) {
1429 for (i = 0; i < 256; i++)
1430 trans_table[i] = Py_CHARMASK(i);
1431 } else {
1432 for (i = 0; i < 256; i++)
1433 trans_table[i] = Py_CHARMASK(table[i]);
1434 }
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001435
1436 for (i = 0; i < vdel.len; i++)
1437 trans_table[(int) Py_CHARMASK( ((unsigned char*)vdel.buf)[i] )] = -1;
1438
1439 for (i = inlen; --i >= 0; ) {
1440 c = Py_CHARMASK(*input++);
1441 if (trans_table[c] != -1)
1442 if (Py_CHARMASK(*output++ = (char)trans_table[c]) == c)
1443 continue;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001444 }
1445 /* Fix the size of the resulting string */
1446 if (inlen > 0)
1447 PyByteArray_Resize(result, output - output_start);
1448
1449done:
Georg Brandlccc47b62008-12-28 11:44:14 +00001450 if (tableobj != NULL)
1451 PyBuffer_Release(&vtable);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001452 if (delobj != NULL)
Martin v. Löwis423be952008-08-13 15:53:07 +00001453 PyBuffer_Release(&vdel);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001454 return result;
1455}
1456
1457
Georg Brandlabc38772009-04-12 15:51:51 +00001458static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001459bytearray_maketrans(PyObject *null, PyObject *args)
Georg Brandlabc38772009-04-12 15:51:51 +00001460{
Alexander Belopolskyf0f45142010-08-11 17:31:17 +00001461 return _Py_bytes_maketrans(args);
Georg Brandlabc38772009-04-12 15:51:51 +00001462}
1463
1464
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001465/* find and count characters and substrings */
1466
1467#define findchar(target, target_len, c) \
1468 ((char *)memchr((const void *)(target), c, target_len))
1469
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001470
Benjamin Peterson0f3641c2008-11-19 22:05:52 +00001471/* Bytes ops must return a string, create a copy */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001472Py_LOCAL(PyByteArrayObject *)
1473return_self(PyByteArrayObject *self)
1474{
Georg Brandl1e7217d2008-05-30 12:02:38 +00001475 /* always return a new bytearray */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001476 return (PyByteArrayObject *)PyByteArray_FromStringAndSize(
1477 PyByteArray_AS_STRING(self),
1478 PyByteArray_GET_SIZE(self));
1479}
1480
1481Py_LOCAL_INLINE(Py_ssize_t)
1482countchar(const char *target, Py_ssize_t target_len, char c, Py_ssize_t maxcount)
1483{
1484 Py_ssize_t count=0;
1485 const char *start=target;
1486 const char *end=target+target_len;
1487
1488 while ( (start=findchar(start, end-start, c)) != NULL ) {
1489 count++;
1490 if (count >= maxcount)
1491 break;
1492 start += 1;
1493 }
1494 return count;
1495}
1496
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001497
1498/* Algorithms for different cases of string replacement */
1499
1500/* len(self)>=1, from="", len(to)>=1, maxcount>=1 */
1501Py_LOCAL(PyByteArrayObject *)
1502replace_interleave(PyByteArrayObject *self,
1503 const char *to_s, Py_ssize_t to_len,
1504 Py_ssize_t maxcount)
1505{
1506 char *self_s, *result_s;
1507 Py_ssize_t self_len, result_len;
Mark Dickinsoncf940c72010-08-10 18:35:01 +00001508 Py_ssize_t count, i;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001509 PyByteArrayObject *result;
1510
1511 self_len = PyByteArray_GET_SIZE(self);
1512
Mark Dickinsoncf940c72010-08-10 18:35:01 +00001513 /* 1 at the end plus 1 after every character;
1514 count = min(maxcount, self_len + 1) */
1515 if (maxcount <= self_len)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001516 count = maxcount;
Mark Dickinsoncf940c72010-08-10 18:35:01 +00001517 else
1518 /* Can't overflow: self_len + 1 <= maxcount <= PY_SSIZE_T_MAX. */
1519 count = self_len + 1;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001520
1521 /* Check for overflow */
1522 /* result_len = count * to_len + self_len; */
Mark Dickinsoncf940c72010-08-10 18:35:01 +00001523 assert(count > 0);
1524 if (to_len > (PY_SSIZE_T_MAX - self_len) / count) {
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001525 PyErr_SetString(PyExc_OverflowError,
1526 "replace string is too long");
1527 return NULL;
1528 }
Mark Dickinsoncf940c72010-08-10 18:35:01 +00001529 result_len = count * to_len + self_len;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001530
1531 if (! (result = (PyByteArrayObject *)
1532 PyByteArray_FromStringAndSize(NULL, result_len)) )
1533 return NULL;
1534
1535 self_s = PyByteArray_AS_STRING(self);
1536 result_s = PyByteArray_AS_STRING(result);
1537
1538 /* TODO: special case single character, which doesn't need memcpy */
1539
1540 /* Lay the first one down (guaranteed this will occur) */
1541 Py_MEMCPY(result_s, to_s, to_len);
1542 result_s += to_len;
1543 count -= 1;
1544
1545 for (i=0; i<count; i++) {
1546 *result_s++ = *self_s++;
1547 Py_MEMCPY(result_s, to_s, to_len);
1548 result_s += to_len;
1549 }
1550
1551 /* Copy the rest of the original string */
1552 Py_MEMCPY(result_s, self_s, self_len-i);
1553
1554 return result;
1555}
1556
1557/* Special case for deleting a single character */
1558/* len(self)>=1, len(from)==1, to="", maxcount>=1 */
1559Py_LOCAL(PyByteArrayObject *)
1560replace_delete_single_character(PyByteArrayObject *self,
1561 char from_c, Py_ssize_t maxcount)
1562{
1563 char *self_s, *result_s;
1564 char *start, *next, *end;
1565 Py_ssize_t self_len, result_len;
1566 Py_ssize_t count;
1567 PyByteArrayObject *result;
1568
1569 self_len = PyByteArray_GET_SIZE(self);
1570 self_s = PyByteArray_AS_STRING(self);
1571
1572 count = countchar(self_s, self_len, from_c, maxcount);
1573 if (count == 0) {
1574 return return_self(self);
1575 }
1576
1577 result_len = self_len - count; /* from_len == 1 */
1578 assert(result_len>=0);
1579
1580 if ( (result = (PyByteArrayObject *)
1581 PyByteArray_FromStringAndSize(NULL, result_len)) == NULL)
1582 return NULL;
1583 result_s = PyByteArray_AS_STRING(result);
1584
1585 start = self_s;
1586 end = self_s + self_len;
1587 while (count-- > 0) {
1588 next = findchar(start, end-start, from_c);
1589 if (next == NULL)
1590 break;
1591 Py_MEMCPY(result_s, start, next-start);
1592 result_s += (next-start);
1593 start = next+1;
1594 }
1595 Py_MEMCPY(result_s, start, end-start);
1596
1597 return result;
1598}
1599
1600/* len(self)>=1, len(from)>=2, to="", maxcount>=1 */
1601
1602Py_LOCAL(PyByteArrayObject *)
1603replace_delete_substring(PyByteArrayObject *self,
1604 const char *from_s, Py_ssize_t from_len,
1605 Py_ssize_t maxcount)
1606{
1607 char *self_s, *result_s;
1608 char *start, *next, *end;
1609 Py_ssize_t self_len, result_len;
1610 Py_ssize_t count, offset;
1611 PyByteArrayObject *result;
1612
1613 self_len = PyByteArray_GET_SIZE(self);
1614 self_s = PyByteArray_AS_STRING(self);
1615
Antoine Pitrouf2c54842010-01-13 08:07:53 +00001616 count = stringlib_count(self_s, self_len,
1617 from_s, from_len,
1618 maxcount);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001619
1620 if (count == 0) {
1621 /* no matches */
1622 return return_self(self);
1623 }
1624
1625 result_len = self_len - (count * from_len);
1626 assert (result_len>=0);
1627
1628 if ( (result = (PyByteArrayObject *)
1629 PyByteArray_FromStringAndSize(NULL, result_len)) == NULL )
1630 return NULL;
1631
1632 result_s = PyByteArray_AS_STRING(result);
1633
1634 start = self_s;
1635 end = self_s + self_len;
1636 while (count-- > 0) {
Antoine Pitrouf2c54842010-01-13 08:07:53 +00001637 offset = stringlib_find(start, end-start,
1638 from_s, from_len,
1639 0);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001640 if (offset == -1)
1641 break;
1642 next = start + offset;
1643
1644 Py_MEMCPY(result_s, start, next-start);
1645
1646 result_s += (next-start);
1647 start = next+from_len;
1648 }
1649 Py_MEMCPY(result_s, start, end-start);
1650 return result;
1651}
1652
1653/* len(self)>=1, len(from)==len(to)==1, maxcount>=1 */
1654Py_LOCAL(PyByteArrayObject *)
1655replace_single_character_in_place(PyByteArrayObject *self,
1656 char from_c, char to_c,
1657 Py_ssize_t maxcount)
1658{
Antoine Pitroud1188562010-06-09 16:38:55 +00001659 char *self_s, *result_s, *start, *end, *next;
1660 Py_ssize_t self_len;
1661 PyByteArrayObject *result;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001662
Antoine Pitroud1188562010-06-09 16:38:55 +00001663 /* The result string will be the same size */
1664 self_s = PyByteArray_AS_STRING(self);
1665 self_len = PyByteArray_GET_SIZE(self);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001666
Antoine Pitroud1188562010-06-09 16:38:55 +00001667 next = findchar(self_s, self_len, from_c);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001668
Antoine Pitroud1188562010-06-09 16:38:55 +00001669 if (next == NULL) {
1670 /* No matches; return the original bytes */
1671 return return_self(self);
1672 }
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001673
Antoine Pitroud1188562010-06-09 16:38:55 +00001674 /* Need to make a new bytes */
1675 result = (PyByteArrayObject *) PyByteArray_FromStringAndSize(NULL, self_len);
1676 if (result == NULL)
1677 return NULL;
1678 result_s = PyByteArray_AS_STRING(result);
1679 Py_MEMCPY(result_s, self_s, self_len);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001680
Antoine Pitroud1188562010-06-09 16:38:55 +00001681 /* change everything in-place, starting with this one */
1682 start = result_s + (next-self_s);
1683 *start = to_c;
1684 start++;
1685 end = result_s + self_len;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001686
Antoine Pitroud1188562010-06-09 16:38:55 +00001687 while (--maxcount > 0) {
1688 next = findchar(start, end-start, from_c);
1689 if (next == NULL)
1690 break;
1691 *next = to_c;
1692 start = next+1;
1693 }
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001694
Antoine Pitroud1188562010-06-09 16:38:55 +00001695 return result;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001696}
1697
1698/* len(self)>=1, len(from)==len(to)>=2, maxcount>=1 */
1699Py_LOCAL(PyByteArrayObject *)
1700replace_substring_in_place(PyByteArrayObject *self,
1701 const char *from_s, Py_ssize_t from_len,
1702 const char *to_s, Py_ssize_t to_len,
1703 Py_ssize_t maxcount)
1704{
1705 char *result_s, *start, *end;
1706 char *self_s;
1707 Py_ssize_t self_len, offset;
1708 PyByteArrayObject *result;
1709
1710 /* The result bytes will be the same size */
1711
1712 self_s = PyByteArray_AS_STRING(self);
1713 self_len = PyByteArray_GET_SIZE(self);
1714
Antoine Pitrouf2c54842010-01-13 08:07:53 +00001715 offset = stringlib_find(self_s, self_len,
1716 from_s, from_len,
1717 0);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001718 if (offset == -1) {
1719 /* No matches; return the original bytes */
1720 return return_self(self);
1721 }
1722
1723 /* Need to make a new bytes */
1724 result = (PyByteArrayObject *) PyByteArray_FromStringAndSize(NULL, self_len);
1725 if (result == NULL)
1726 return NULL;
1727 result_s = PyByteArray_AS_STRING(result);
1728 Py_MEMCPY(result_s, self_s, self_len);
1729
1730 /* change everything in-place, starting with this one */
1731 start = result_s + offset;
1732 Py_MEMCPY(start, to_s, from_len);
1733 start += from_len;
1734 end = result_s + self_len;
1735
1736 while ( --maxcount > 0) {
Antoine Pitrouf2c54842010-01-13 08:07:53 +00001737 offset = stringlib_find(start, end-start,
1738 from_s, from_len,
1739 0);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001740 if (offset==-1)
1741 break;
1742 Py_MEMCPY(start+offset, to_s, from_len);
1743 start += offset+from_len;
1744 }
1745
1746 return result;
1747}
1748
1749/* len(self)>=1, len(from)==1, len(to)>=2, maxcount>=1 */
1750Py_LOCAL(PyByteArrayObject *)
1751replace_single_character(PyByteArrayObject *self,
1752 char from_c,
1753 const char *to_s, Py_ssize_t to_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;
Mark Dickinsoncf940c72010-08-10 18:35:01 +00001759 Py_ssize_t count;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001760 PyByteArrayObject *result;
1761
1762 self_s = PyByteArray_AS_STRING(self);
1763 self_len = PyByteArray_GET_SIZE(self);
1764
1765 count = countchar(self_s, self_len, from_c, maxcount);
1766 if (count == 0) {
1767 /* no matches, return unchanged */
1768 return return_self(self);
1769 }
1770
1771 /* use the difference between current and new, hence the "-1" */
1772 /* result_len = self_len + count * (to_len-1) */
Mark Dickinsoncf940c72010-08-10 18:35:01 +00001773 assert(count > 0);
1774 if (to_len - 1 > (PY_SSIZE_T_MAX - self_len) / count) {
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001775 PyErr_SetString(PyExc_OverflowError, "replace bytes is too long");
1776 return NULL;
1777 }
Mark Dickinsoncf940c72010-08-10 18:35:01 +00001778 result_len = self_len + count * (to_len - 1);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001779
1780 if ( (result = (PyByteArrayObject *)
1781 PyByteArray_FromStringAndSize(NULL, result_len)) == NULL)
1782 return NULL;
1783 result_s = PyByteArray_AS_STRING(result);
1784
1785 start = self_s;
1786 end = self_s + self_len;
1787 while (count-- > 0) {
1788 next = findchar(start, end-start, from_c);
1789 if (next == NULL)
1790 break;
1791
1792 if (next == start) {
1793 /* replace with the 'to' */
1794 Py_MEMCPY(result_s, to_s, to_len);
1795 result_s += to_len;
1796 start += 1;
1797 } else {
1798 /* copy the unchanged old then the 'to' */
1799 Py_MEMCPY(result_s, start, next-start);
1800 result_s += (next-start);
1801 Py_MEMCPY(result_s, to_s, to_len);
1802 result_s += to_len;
1803 start = next+1;
1804 }
1805 }
1806 /* Copy the remainder of the remaining bytes */
1807 Py_MEMCPY(result_s, start, end-start);
1808
1809 return result;
1810}
1811
1812/* len(self)>=1, len(from)>=2, len(to)>=2, maxcount>=1 */
1813Py_LOCAL(PyByteArrayObject *)
1814replace_substring(PyByteArrayObject *self,
1815 const char *from_s, Py_ssize_t from_len,
1816 const char *to_s, Py_ssize_t to_len,
1817 Py_ssize_t maxcount)
1818{
1819 char *self_s, *result_s;
1820 char *start, *next, *end;
1821 Py_ssize_t self_len, result_len;
Mark Dickinsoncf940c72010-08-10 18:35:01 +00001822 Py_ssize_t count, offset;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001823 PyByteArrayObject *result;
1824
1825 self_s = PyByteArray_AS_STRING(self);
1826 self_len = PyByteArray_GET_SIZE(self);
1827
Antoine Pitrouf2c54842010-01-13 08:07:53 +00001828 count = stringlib_count(self_s, self_len,
1829 from_s, from_len,
1830 maxcount);
1831
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001832 if (count == 0) {
1833 /* no matches, return unchanged */
1834 return return_self(self);
1835 }
1836
1837 /* Check for overflow */
1838 /* result_len = self_len + count * (to_len-from_len) */
Mark Dickinsoncf940c72010-08-10 18:35:01 +00001839 assert(count > 0);
1840 if (to_len - from_len > (PY_SSIZE_T_MAX - self_len) / count) {
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001841 PyErr_SetString(PyExc_OverflowError, "replace bytes is too long");
1842 return NULL;
1843 }
Mark Dickinsoncf940c72010-08-10 18:35:01 +00001844 result_len = self_len + count * (to_len - from_len);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001845
1846 if ( (result = (PyByteArrayObject *)
1847 PyByteArray_FromStringAndSize(NULL, result_len)) == NULL)
1848 return NULL;
1849 result_s = PyByteArray_AS_STRING(result);
1850
1851 start = self_s;
1852 end = self_s + self_len;
1853 while (count-- > 0) {
Antoine Pitrouf2c54842010-01-13 08:07:53 +00001854 offset = stringlib_find(start, end-start,
1855 from_s, from_len,
1856 0);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001857 if (offset == -1)
1858 break;
1859 next = start+offset;
1860 if (next == start) {
1861 /* replace with the 'to' */
1862 Py_MEMCPY(result_s, to_s, to_len);
1863 result_s += to_len;
1864 start += from_len;
1865 } else {
1866 /* copy the unchanged old then the 'to' */
1867 Py_MEMCPY(result_s, start, next-start);
1868 result_s += (next-start);
1869 Py_MEMCPY(result_s, to_s, to_len);
1870 result_s += to_len;
1871 start = next+from_len;
1872 }
1873 }
1874 /* Copy the remainder of the remaining bytes */
1875 Py_MEMCPY(result_s, start, end-start);
1876
1877 return result;
1878}
1879
1880
1881Py_LOCAL(PyByteArrayObject *)
1882replace(PyByteArrayObject *self,
1883 const char *from_s, Py_ssize_t from_len,
1884 const char *to_s, Py_ssize_t to_len,
1885 Py_ssize_t maxcount)
1886{
1887 if (maxcount < 0) {
1888 maxcount = PY_SSIZE_T_MAX;
1889 } else if (maxcount == 0 || PyByteArray_GET_SIZE(self) == 0) {
1890 /* nothing to do; return the original bytes */
1891 return return_self(self);
1892 }
1893
1894 if (maxcount == 0 ||
1895 (from_len == 0 && to_len == 0)) {
1896 /* nothing to do; return the original bytes */
1897 return return_self(self);
1898 }
1899
1900 /* Handle zero-length special cases */
1901
1902 if (from_len == 0) {
1903 /* insert the 'to' bytes everywhere. */
1904 /* >>> "Python".replace("", ".") */
1905 /* '.P.y.t.h.o.n.' */
1906 return replace_interleave(self, to_s, to_len, maxcount);
1907 }
1908
1909 /* Except for "".replace("", "A") == "A" there is no way beyond this */
1910 /* point for an empty self bytes to generate a non-empty bytes */
1911 /* Special case so the remaining code always gets a non-empty bytes */
1912 if (PyByteArray_GET_SIZE(self) == 0) {
1913 return return_self(self);
1914 }
1915
1916 if (to_len == 0) {
Georg Brandl17cb8a82008-05-30 08:20:09 +00001917 /* delete all occurrences of 'from' bytes */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001918 if (from_len == 1) {
1919 return replace_delete_single_character(
1920 self, from_s[0], maxcount);
1921 } else {
1922 return replace_delete_substring(self, from_s, from_len, maxcount);
1923 }
1924 }
1925
1926 /* Handle special case where both bytes have the same length */
1927
1928 if (from_len == to_len) {
1929 if (from_len == 1) {
1930 return replace_single_character_in_place(
1931 self,
1932 from_s[0],
1933 to_s[0],
1934 maxcount);
1935 } else {
1936 return replace_substring_in_place(
1937 self, from_s, from_len, to_s, to_len, maxcount);
1938 }
1939 }
1940
1941 /* Otherwise use the more generic algorithms */
1942 if (from_len == 1) {
1943 return replace_single_character(self, from_s[0],
1944 to_s, to_len, maxcount);
1945 } else {
1946 /* len('from')>=2, len('to')>=1 */
1947 return replace_substring(self, from_s, from_len, to_s, to_len, maxcount);
1948 }
1949}
1950
1951
1952PyDoc_STRVAR(replace__doc__,
Georg Brandl17cb8a82008-05-30 08:20:09 +00001953"B.replace(old, new[, count]) -> bytearray\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001954\n\
1955Return a copy of B with all occurrences of subsection\n\
1956old replaced by new. If the optional argument count is\n\
1957given, only the first count occurrences are replaced.");
1958
1959static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001960bytearray_replace(PyByteArrayObject *self, PyObject *args)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001961{
1962 Py_ssize_t count = -1;
1963 PyObject *from, *to, *res;
1964 Py_buffer vfrom, vto;
1965
1966 if (!PyArg_ParseTuple(args, "OO|n:replace", &from, &to, &count))
1967 return NULL;
1968
1969 if (_getbuffer(from, &vfrom) < 0)
1970 return NULL;
1971 if (_getbuffer(to, &vto) < 0) {
Martin v. Löwis423be952008-08-13 15:53:07 +00001972 PyBuffer_Release(&vfrom);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001973 return NULL;
1974 }
1975
1976 res = (PyObject *)replace((PyByteArrayObject *) self,
1977 vfrom.buf, vfrom.len,
1978 vto.buf, vto.len, count);
1979
Martin v. Löwis423be952008-08-13 15:53:07 +00001980 PyBuffer_Release(&vfrom);
1981 PyBuffer_Release(&vto);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001982 return res;
1983}
1984
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001985PyDoc_STRVAR(split__doc__,
Georg Brandl17cb8a82008-05-30 08:20:09 +00001986"B.split([sep[, maxsplit]]) -> list of bytearrays\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001987\n\
1988Return a list of the sections in B, using sep as the delimiter.\n\
1989If sep is not given, B is split on ASCII whitespace characters\n\
1990(space, tab, return, newline, formfeed, vertical tab).\n\
1991If maxsplit is given, at most maxsplit splits are done.");
1992
1993static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00001994bytearray_split(PyByteArrayObject *self, PyObject *args)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001995{
Antoine Pitrouf2c54842010-01-13 08:07:53 +00001996 Py_ssize_t len = PyByteArray_GET_SIZE(self), n;
1997 Py_ssize_t maxsplit = -1;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00001998 const char *s = PyByteArray_AS_STRING(self), *sub;
Antoine Pitrouf2c54842010-01-13 08:07:53 +00001999 PyObject *list, *subobj = Py_None;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002000 Py_buffer vsub;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002001
2002 if (!PyArg_ParseTuple(args, "|On:split", &subobj, &maxsplit))
2003 return NULL;
2004 if (maxsplit < 0)
2005 maxsplit = PY_SSIZE_T_MAX;
2006
2007 if (subobj == Py_None)
Antoine Pitrouf2c54842010-01-13 08:07:53 +00002008 return stringlib_split_whitespace((PyObject*) self, s, len, maxsplit);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002009
2010 if (_getbuffer(subobj, &vsub) < 0)
2011 return NULL;
2012 sub = vsub.buf;
2013 n = vsub.len;
2014
Antoine Pitrouf2c54842010-01-13 08:07:53 +00002015 list = stringlib_split(
2016 (PyObject*) self, s, len, sub, n, maxsplit
2017 );
Martin v. Löwis423be952008-08-13 15:53:07 +00002018 PyBuffer_Release(&vsub);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002019 return list;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002020}
2021
2022PyDoc_STRVAR(partition__doc__,
2023"B.partition(sep) -> (head, sep, tail)\n\
2024\n\
Georg Brandl17cb8a82008-05-30 08:20:09 +00002025Search for the separator sep in B, and return the part before it,\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002026the separator itself, and the part after it. If the separator is not\n\
2027found, returns B and two empty bytearray objects.");
2028
2029static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002030bytearray_partition(PyByteArrayObject *self, PyObject *sep_obj)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002031{
2032 PyObject *bytesep, *result;
2033
2034 bytesep = PyByteArray_FromObject(sep_obj);
2035 if (! bytesep)
2036 return NULL;
2037
2038 result = stringlib_partition(
2039 (PyObject*) self,
2040 PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self),
2041 bytesep,
2042 PyByteArray_AS_STRING(bytesep), PyByteArray_GET_SIZE(bytesep)
2043 );
2044
2045 Py_DECREF(bytesep);
Antoine Pitrouf2c54842010-01-13 08:07:53 +00002046 return result;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002047}
2048
2049PyDoc_STRVAR(rpartition__doc__,
Ezio Melotti5b2b2422010-01-25 11:58:28 +00002050"B.rpartition(sep) -> (head, sep, tail)\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002051\n\
Georg Brandl17cb8a82008-05-30 08:20:09 +00002052Search for the separator sep in B, starting at the end of B,\n\
2053and return the part before it, the separator itself, and the\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002054part after it. If the separator is not found, returns two empty\n\
2055bytearray objects and B.");
2056
2057static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002058bytearray_rpartition(PyByteArrayObject *self, PyObject *sep_obj)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002059{
2060 PyObject *bytesep, *result;
2061
2062 bytesep = PyByteArray_FromObject(sep_obj);
2063 if (! bytesep)
2064 return NULL;
2065
2066 result = stringlib_rpartition(
2067 (PyObject*) self,
2068 PyByteArray_AS_STRING(self), PyByteArray_GET_SIZE(self),
2069 bytesep,
2070 PyByteArray_AS_STRING(bytesep), PyByteArray_GET_SIZE(bytesep)
2071 );
2072
2073 Py_DECREF(bytesep);
Antoine Pitrouf2c54842010-01-13 08:07:53 +00002074 return result;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002075}
2076
2077PyDoc_STRVAR(rsplit__doc__,
Georg Brandl17cb8a82008-05-30 08:20:09 +00002078"B.rsplit(sep[, maxsplit]) -> list of bytearrays\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002079\n\
2080Return a list of the sections in B, using sep as the delimiter,\n\
2081starting at the end of B and working to the front.\n\
2082If sep is not given, B is split on ASCII whitespace characters\n\
2083(space, tab, return, newline, formfeed, vertical tab).\n\
2084If maxsplit is given, at most maxsplit splits are done.");
2085
2086static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002087bytearray_rsplit(PyByteArrayObject *self, PyObject *args)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002088{
Antoine Pitrouf2c54842010-01-13 08:07:53 +00002089 Py_ssize_t len = PyByteArray_GET_SIZE(self), n;
2090 Py_ssize_t maxsplit = -1;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002091 const char *s = PyByteArray_AS_STRING(self), *sub;
Antoine Pitrouf2c54842010-01-13 08:07:53 +00002092 PyObject *list, *subobj = Py_None;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002093 Py_buffer vsub;
2094
2095 if (!PyArg_ParseTuple(args, "|On:rsplit", &subobj, &maxsplit))
2096 return NULL;
2097 if (maxsplit < 0)
2098 maxsplit = PY_SSIZE_T_MAX;
2099
2100 if (subobj == Py_None)
Antoine Pitrouf2c54842010-01-13 08:07:53 +00002101 return stringlib_rsplit_whitespace((PyObject*) self, s, len, maxsplit);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002102
2103 if (_getbuffer(subobj, &vsub) < 0)
2104 return NULL;
2105 sub = vsub.buf;
2106 n = vsub.len;
2107
Antoine Pitrouf2c54842010-01-13 08:07:53 +00002108 list = stringlib_rsplit(
2109 (PyObject*) self, s, len, sub, n, maxsplit
2110 );
Martin v. Löwis423be952008-08-13 15:53:07 +00002111 PyBuffer_Release(&vsub);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002112 return list;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002113}
2114
2115PyDoc_STRVAR(reverse__doc__,
2116"B.reverse() -> None\n\
2117\n\
2118Reverse the order of the values in B in place.");
2119static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002120bytearray_reverse(PyByteArrayObject *self, PyObject *unused)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002121{
2122 char swap, *head, *tail;
2123 Py_ssize_t i, j, n = Py_SIZE(self);
2124
2125 j = n / 2;
2126 head = self->ob_bytes;
2127 tail = head + n - 1;
2128 for (i = 0; i < j; i++) {
2129 swap = *head;
2130 *head++ = *tail;
2131 *tail-- = swap;
2132 }
2133
2134 Py_RETURN_NONE;
2135}
2136
2137PyDoc_STRVAR(insert__doc__,
2138"B.insert(index, int) -> None\n\
2139\n\
2140Insert a single item into the bytearray before the given index.");
2141static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002142bytearray_insert(PyByteArrayObject *self, PyObject *args)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002143{
Georg Brandl9a54d7c2008-07-16 23:15:30 +00002144 PyObject *value;
2145 int ival;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002146 Py_ssize_t where, n = Py_SIZE(self);
2147
Georg Brandl9a54d7c2008-07-16 23:15:30 +00002148 if (!PyArg_ParseTuple(args, "nO:insert", &where, &value))
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002149 return NULL;
2150
2151 if (n == PY_SSIZE_T_MAX) {
2152 PyErr_SetString(PyExc_OverflowError,
Mark Dickinson2b6705f2009-09-06 10:34:47 +00002153 "cannot add more objects to bytearray");
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002154 return NULL;
2155 }
Georg Brandl9a54d7c2008-07-16 23:15:30 +00002156 if (!_getbytevalue(value, &ival))
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002157 return NULL;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002158 if (PyByteArray_Resize((PyObject *)self, n + 1) < 0)
2159 return NULL;
2160
2161 if (where < 0) {
2162 where += n;
2163 if (where < 0)
2164 where = 0;
2165 }
2166 if (where > n)
2167 where = n;
2168 memmove(self->ob_bytes + where + 1, self->ob_bytes + where, n - where);
Georg Brandl9a54d7c2008-07-16 23:15:30 +00002169 self->ob_bytes[where] = ival;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002170
2171 Py_RETURN_NONE;
2172}
2173
2174PyDoc_STRVAR(append__doc__,
2175"B.append(int) -> None\n\
2176\n\
2177Append a single item to the end of B.");
2178static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002179bytearray_append(PyByteArrayObject *self, PyObject *arg)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002180{
2181 int value;
2182 Py_ssize_t n = Py_SIZE(self);
2183
2184 if (! _getbytevalue(arg, &value))
2185 return NULL;
2186 if (n == PY_SSIZE_T_MAX) {
2187 PyErr_SetString(PyExc_OverflowError,
Mark Dickinson2b6705f2009-09-06 10:34:47 +00002188 "cannot add more objects to bytearray");
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002189 return NULL;
2190 }
2191 if (PyByteArray_Resize((PyObject *)self, n + 1) < 0)
2192 return NULL;
2193
2194 self->ob_bytes[n] = value;
2195
2196 Py_RETURN_NONE;
2197}
2198
2199PyDoc_STRVAR(extend__doc__,
Georg Brandl17cb8a82008-05-30 08:20:09 +00002200"B.extend(iterable_of_ints) -> None\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002201\n\
2202Append all the elements from the iterator or sequence to the\n\
2203end of B.");
2204static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002205bytearray_extend(PyByteArrayObject *self, PyObject *arg)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002206{
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002207 PyObject *it, *item, *bytearray_obj;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002208 Py_ssize_t buf_size = 0, len = 0;
2209 int value;
2210 char *buf;
2211
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002212 /* bytearray_setslice code only accepts something supporting PEP 3118. */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002213 if (PyObject_CheckBuffer(arg)) {
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002214 if (bytearray_setslice(self, Py_SIZE(self), Py_SIZE(self), arg) == -1)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002215 return NULL;
2216
2217 Py_RETURN_NONE;
2218 }
2219
2220 it = PyObject_GetIter(arg);
2221 if (it == NULL)
2222 return NULL;
2223
2224 /* Try to determine the length of the argument. 32 is abitrary. */
2225 buf_size = _PyObject_LengthHint(arg, 32);
Benjamin Petersonef3e4c22009-04-11 19:48:14 +00002226 if (buf_size == -1) {
2227 Py_DECREF(it);
2228 return NULL;
2229 }
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002230
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002231 bytearray_obj = PyByteArray_FromStringAndSize(NULL, buf_size);
2232 if (bytearray_obj == NULL)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002233 return NULL;
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002234 buf = PyByteArray_AS_STRING(bytearray_obj);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002235
2236 while ((item = PyIter_Next(it)) != NULL) {
2237 if (! _getbytevalue(item, &value)) {
2238 Py_DECREF(item);
2239 Py_DECREF(it);
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002240 Py_DECREF(bytearray_obj);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002241 return NULL;
2242 }
2243 buf[len++] = value;
2244 Py_DECREF(item);
2245
2246 if (len >= buf_size) {
2247 buf_size = len + (len >> 1) + 1;
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002248 if (PyByteArray_Resize((PyObject *)bytearray_obj, buf_size) < 0) {
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002249 Py_DECREF(it);
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002250 Py_DECREF(bytearray_obj);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002251 return NULL;
2252 }
2253 /* Recompute the `buf' pointer, since the resizing operation may
2254 have invalidated it. */
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002255 buf = PyByteArray_AS_STRING(bytearray_obj);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002256 }
2257 }
2258 Py_DECREF(it);
2259
2260 /* Resize down to exact size. */
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002261 if (PyByteArray_Resize((PyObject *)bytearray_obj, len) < 0) {
2262 Py_DECREF(bytearray_obj);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002263 return NULL;
2264 }
2265
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002266 if (bytearray_setslice(self, Py_SIZE(self), Py_SIZE(self), bytearray_obj) == -1)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002267 return NULL;
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002268 Py_DECREF(bytearray_obj);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002269
2270 Py_RETURN_NONE;
2271}
2272
2273PyDoc_STRVAR(pop__doc__,
2274"B.pop([index]) -> int\n\
2275\n\
2276Remove and return a single item from B. If no index\n\
Benjamin Petersondcf97b92008-07-02 17:30:14 +00002277argument is given, will pop the last value.");
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002278static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002279bytearray_pop(PyByteArrayObject *self, PyObject *args)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002280{
2281 int value;
2282 Py_ssize_t where = -1, n = Py_SIZE(self);
2283
2284 if (!PyArg_ParseTuple(args, "|n:pop", &where))
2285 return NULL;
2286
2287 if (n == 0) {
2288 PyErr_SetString(PyExc_OverflowError,
Mark Dickinson2b6705f2009-09-06 10:34:47 +00002289 "cannot pop an empty bytearray");
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002290 return NULL;
2291 }
2292 if (where < 0)
2293 where += Py_SIZE(self);
2294 if (where < 0 || where >= Py_SIZE(self)) {
2295 PyErr_SetString(PyExc_IndexError, "pop index out of range");
2296 return NULL;
2297 }
Antoine Pitrou5504e892008-12-06 21:27:53 +00002298 if (!_canresize(self))
2299 return NULL;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002300
2301 value = self->ob_bytes[where];
2302 memmove(self->ob_bytes + where, self->ob_bytes + where + 1, n - where);
2303 if (PyByteArray_Resize((PyObject *)self, n - 1) < 0)
2304 return NULL;
2305
Mark Dickinson54a3db92009-09-06 10:19:23 +00002306 return PyLong_FromLong((unsigned char)value);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002307}
2308
2309PyDoc_STRVAR(remove__doc__,
2310"B.remove(int) -> None\n\
2311\n\
Georg Brandl17cb8a82008-05-30 08:20:09 +00002312Remove the first occurrence of a value in B.");
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002313static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002314bytearray_remove(PyByteArrayObject *self, PyObject *arg)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002315{
2316 int value;
2317 Py_ssize_t where, n = Py_SIZE(self);
2318
2319 if (! _getbytevalue(arg, &value))
2320 return NULL;
2321
2322 for (where = 0; where < n; where++) {
2323 if (self->ob_bytes[where] == value)
2324 break;
2325 }
2326 if (where == n) {
Mark Dickinson2b6705f2009-09-06 10:34:47 +00002327 PyErr_SetString(PyExc_ValueError, "value not found in bytearray");
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002328 return NULL;
2329 }
Antoine Pitrou5504e892008-12-06 21:27:53 +00002330 if (!_canresize(self))
2331 return NULL;
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002332
2333 memmove(self->ob_bytes + where, self->ob_bytes + where + 1, n - where);
2334 if (PyByteArray_Resize((PyObject *)self, n - 1) < 0)
2335 return NULL;
2336
2337 Py_RETURN_NONE;
2338}
2339
2340/* XXX These two helpers could be optimized if argsize == 1 */
2341
2342static Py_ssize_t
2343lstrip_helper(unsigned char *myptr, Py_ssize_t mysize,
2344 void *argptr, Py_ssize_t argsize)
2345{
2346 Py_ssize_t i = 0;
2347 while (i < mysize && memchr(argptr, myptr[i], argsize))
2348 i++;
2349 return i;
2350}
2351
2352static Py_ssize_t
2353rstrip_helper(unsigned char *myptr, Py_ssize_t mysize,
2354 void *argptr, Py_ssize_t argsize)
2355{
2356 Py_ssize_t i = mysize - 1;
2357 while (i >= 0 && memchr(argptr, myptr[i], argsize))
2358 i--;
2359 return i + 1;
2360}
2361
2362PyDoc_STRVAR(strip__doc__,
2363"B.strip([bytes]) -> bytearray\n\
2364\n\
Georg Brandl17cb8a82008-05-30 08:20:09 +00002365Strip leading and trailing bytes contained in the argument\n\
2366and return the result as a new bytearray.\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002367If the argument is omitted, strip ASCII whitespace.");
2368static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002369bytearray_strip(PyByteArrayObject *self, PyObject *args)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002370{
2371 Py_ssize_t left, right, mysize, argsize;
2372 void *myptr, *argptr;
2373 PyObject *arg = Py_None;
2374 Py_buffer varg;
2375 if (!PyArg_ParseTuple(args, "|O:strip", &arg))
2376 return NULL;
2377 if (arg == Py_None) {
2378 argptr = "\t\n\r\f\v ";
2379 argsize = 6;
2380 }
2381 else {
2382 if (_getbuffer(arg, &varg) < 0)
2383 return NULL;
2384 argptr = varg.buf;
2385 argsize = varg.len;
2386 }
2387 myptr = self->ob_bytes;
2388 mysize = Py_SIZE(self);
2389 left = lstrip_helper(myptr, mysize, argptr, argsize);
2390 if (left == mysize)
2391 right = left;
2392 else
2393 right = rstrip_helper(myptr, mysize, argptr, argsize);
2394 if (arg != Py_None)
Martin v. Löwis423be952008-08-13 15:53:07 +00002395 PyBuffer_Release(&varg);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002396 return PyByteArray_FromStringAndSize(self->ob_bytes + left, right - left);
2397}
2398
2399PyDoc_STRVAR(lstrip__doc__,
2400"B.lstrip([bytes]) -> bytearray\n\
2401\n\
Georg Brandl17cb8a82008-05-30 08:20:09 +00002402Strip leading bytes contained in the argument\n\
2403and return the result as a new bytearray.\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002404If the argument is omitted, strip leading ASCII whitespace.");
2405static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002406bytearray_lstrip(PyByteArrayObject *self, PyObject *args)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002407{
2408 Py_ssize_t left, right, mysize, argsize;
2409 void *myptr, *argptr;
2410 PyObject *arg = Py_None;
2411 Py_buffer varg;
2412 if (!PyArg_ParseTuple(args, "|O:lstrip", &arg))
2413 return NULL;
2414 if (arg == Py_None) {
2415 argptr = "\t\n\r\f\v ";
2416 argsize = 6;
2417 }
2418 else {
2419 if (_getbuffer(arg, &varg) < 0)
2420 return NULL;
2421 argptr = varg.buf;
2422 argsize = varg.len;
2423 }
2424 myptr = self->ob_bytes;
2425 mysize = Py_SIZE(self);
2426 left = lstrip_helper(myptr, mysize, argptr, argsize);
2427 right = mysize;
2428 if (arg != Py_None)
Martin v. Löwis423be952008-08-13 15:53:07 +00002429 PyBuffer_Release(&varg);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002430 return PyByteArray_FromStringAndSize(self->ob_bytes + left, right - left);
2431}
2432
2433PyDoc_STRVAR(rstrip__doc__,
2434"B.rstrip([bytes]) -> bytearray\n\
2435\n\
Georg Brandl17cb8a82008-05-30 08:20:09 +00002436Strip trailing bytes contained in the argument\n\
2437and return the result as a new bytearray.\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002438If the argument is omitted, strip trailing ASCII whitespace.");
2439static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002440bytearray_rstrip(PyByteArrayObject *self, PyObject *args)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002441{
2442 Py_ssize_t left, right, mysize, argsize;
2443 void *myptr, *argptr;
2444 PyObject *arg = Py_None;
2445 Py_buffer varg;
2446 if (!PyArg_ParseTuple(args, "|O:rstrip", &arg))
2447 return NULL;
2448 if (arg == Py_None) {
2449 argptr = "\t\n\r\f\v ";
2450 argsize = 6;
2451 }
2452 else {
2453 if (_getbuffer(arg, &varg) < 0)
2454 return NULL;
2455 argptr = varg.buf;
2456 argsize = varg.len;
2457 }
2458 myptr = self->ob_bytes;
2459 mysize = Py_SIZE(self);
2460 left = 0;
2461 right = rstrip_helper(myptr, mysize, argptr, argsize);
2462 if (arg != Py_None)
Martin v. Löwis423be952008-08-13 15:53:07 +00002463 PyBuffer_Release(&varg);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002464 return PyByteArray_FromStringAndSize(self->ob_bytes + left, right - left);
2465}
2466
2467PyDoc_STRVAR(decode_doc,
Victor Stinnerc911bbf2010-11-07 19:04:46 +00002468"B.decode(encoding='utf-8', errors='strict') -> str\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002469\n\
Victor Stinnere14e2122010-11-07 18:41:46 +00002470Decode B using the codec registered for encoding. Default encoding\n\
2471is 'utf-8'. errors may be given to set a different error\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002472handling scheme. Default is 'strict' meaning that encoding errors raise\n\
2473a UnicodeDecodeError. Other possible values are 'ignore' and 'replace'\n\
2474as well as any other name registered with codecs.register_error that is\n\
2475able to handle UnicodeDecodeErrors.");
2476
2477static PyObject *
Benjamin Peterson308d6372009-09-18 21:42:35 +00002478bytearray_decode(PyObject *self, PyObject *args, PyObject *kwargs)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002479{
2480 const char *encoding = NULL;
2481 const char *errors = NULL;
Benjamin Peterson308d6372009-09-18 21:42:35 +00002482 static char *kwlist[] = {"encoding", "errors", 0};
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002483
Benjamin Peterson308d6372009-09-18 21:42:35 +00002484 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|ss:decode", kwlist, &encoding, &errors))
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002485 return NULL;
2486 if (encoding == NULL)
2487 encoding = PyUnicode_GetDefaultEncoding();
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00002488 return PyUnicode_FromEncodedObject(self, encoding, errors);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002489}
2490
2491PyDoc_STRVAR(alloc_doc,
2492"B.__alloc__() -> int\n\
2493\n\
Georg Brandl17cb8a82008-05-30 08:20:09 +00002494Return the number of bytes actually allocated.");
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002495
2496static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002497bytearray_alloc(PyByteArrayObject *self)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002498{
2499 return PyLong_FromSsize_t(self->ob_alloc);
2500}
2501
2502PyDoc_STRVAR(join_doc,
Georg Brandl17cb8a82008-05-30 08:20:09 +00002503"B.join(iterable_of_bytes) -> bytearray\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002504\n\
Georg Brandl17cb8a82008-05-30 08:20:09 +00002505Concatenate any number of bytes/bytearray objects, with B\n\
2506in between each pair, and return the result as a new bytearray.");
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002507
2508static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002509bytearray_join(PyByteArrayObject *self, PyObject *it)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002510{
2511 PyObject *seq;
2512 Py_ssize_t mysize = Py_SIZE(self);
2513 Py_ssize_t i;
2514 Py_ssize_t n;
2515 PyObject **items;
2516 Py_ssize_t totalsize = 0;
2517 PyObject *result;
2518 char *dest;
2519
2520 seq = PySequence_Fast(it, "can only join an iterable");
2521 if (seq == NULL)
2522 return NULL;
2523 n = PySequence_Fast_GET_SIZE(seq);
2524 items = PySequence_Fast_ITEMS(seq);
2525
2526 /* Compute the total size, and check that they are all bytes */
2527 /* XXX Shouldn't we use _getbuffer() on these items instead? */
2528 for (i = 0; i < n; i++) {
2529 PyObject *obj = items[i];
2530 if (!PyByteArray_Check(obj) && !PyBytes_Check(obj)) {
2531 PyErr_Format(PyExc_TypeError,
2532 "can only join an iterable of bytes "
2533 "(item %ld has type '%.100s')",
2534 /* XXX %ld isn't right on Win64 */
2535 (long)i, Py_TYPE(obj)->tp_name);
2536 goto error;
2537 }
2538 if (i > 0)
2539 totalsize += mysize;
2540 totalsize += Py_SIZE(obj);
2541 if (totalsize < 0) {
2542 PyErr_NoMemory();
2543 goto error;
2544 }
2545 }
2546
2547 /* Allocate the result, and copy the bytes */
2548 result = PyByteArray_FromStringAndSize(NULL, totalsize);
2549 if (result == NULL)
2550 goto error;
2551 dest = PyByteArray_AS_STRING(result);
2552 for (i = 0; i < n; i++) {
2553 PyObject *obj = items[i];
2554 Py_ssize_t size = Py_SIZE(obj);
2555 char *buf;
2556 if (PyByteArray_Check(obj))
2557 buf = PyByteArray_AS_STRING(obj);
2558 else
2559 buf = PyBytes_AS_STRING(obj);
2560 if (i) {
2561 memcpy(dest, self->ob_bytes, mysize);
2562 dest += mysize;
2563 }
2564 memcpy(dest, buf, size);
2565 dest += size;
2566 }
2567
2568 /* Done */
2569 Py_DECREF(seq);
2570 return result;
2571
2572 /* Error handling */
2573 error:
2574 Py_DECREF(seq);
2575 return NULL;
2576}
2577
Antoine Pitrouf2c54842010-01-13 08:07:53 +00002578PyDoc_STRVAR(splitlines__doc__,
2579"B.splitlines([keepends]) -> list of lines\n\
2580\n\
2581Return a list of the lines in B, breaking at line boundaries.\n\
2582Line breaks are not included in the resulting list unless keepends\n\
2583is given and true.");
2584
2585static PyObject*
2586bytearray_splitlines(PyObject *self, PyObject *args)
2587{
2588 int keepends = 0;
2589
2590 if (!PyArg_ParseTuple(args, "|i:splitlines", &keepends))
2591 return NULL;
2592
2593 return stringlib_splitlines(
2594 (PyObject*) self, PyByteArray_AS_STRING(self),
2595 PyByteArray_GET_SIZE(self), keepends
2596 );
2597}
2598
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002599PyDoc_STRVAR(fromhex_doc,
Georg Brandl17cb8a82008-05-30 08:20:09 +00002600"bytearray.fromhex(string) -> bytearray (static method)\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002601\n\
2602Create a bytearray object from a string of hexadecimal numbers.\n\
2603Spaces between two numbers are accepted.\n\
2604Example: bytearray.fromhex('B9 01EF') -> bytearray(b'\\xb9\\x01\\xef').");
2605
2606static int
2607hex_digit_to_int(Py_UNICODE c)
2608{
2609 if (c >= 128)
2610 return -1;
Eric Smith6dc46f52009-04-27 20:39:49 +00002611 if (Py_ISDIGIT(c))
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002612 return c - '0';
2613 else {
Eric Smith6dc46f52009-04-27 20:39:49 +00002614 if (Py_ISUPPER(c))
2615 c = Py_TOLOWER(c);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002616 if (c >= 'a' && c <= 'f')
2617 return c - 'a' + 10;
2618 }
2619 return -1;
2620}
2621
2622static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002623bytearray_fromhex(PyObject *cls, PyObject *args)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002624{
2625 PyObject *newbytes, *hexobj;
2626 char *buf;
2627 Py_UNICODE *hex;
2628 Py_ssize_t hexlen, byteslen, i, j;
2629 int top, bot;
2630
2631 if (!PyArg_ParseTuple(args, "U:fromhex", &hexobj))
2632 return NULL;
2633 assert(PyUnicode_Check(hexobj));
2634 hexlen = PyUnicode_GET_SIZE(hexobj);
2635 hex = PyUnicode_AS_UNICODE(hexobj);
2636 byteslen = hexlen/2; /* This overestimates if there are spaces */
2637 newbytes = PyByteArray_FromStringAndSize(NULL, byteslen);
2638 if (!newbytes)
2639 return NULL;
2640 buf = PyByteArray_AS_STRING(newbytes);
2641 for (i = j = 0; i < hexlen; i += 2) {
2642 /* skip over spaces in the input */
2643 while (hex[i] == ' ')
2644 i++;
2645 if (i >= hexlen)
2646 break;
2647 top = hex_digit_to_int(hex[i]);
2648 bot = hex_digit_to_int(hex[i+1]);
2649 if (top == -1 || bot == -1) {
2650 PyErr_Format(PyExc_ValueError,
2651 "non-hexadecimal number found in "
2652 "fromhex() arg at position %zd", i);
2653 goto error;
2654 }
2655 buf[j++] = (top << 4) + bot;
2656 }
2657 if (PyByteArray_Resize(newbytes, j) < 0)
2658 goto error;
2659 return newbytes;
2660
2661 error:
2662 Py_DECREF(newbytes);
2663 return NULL;
2664}
2665
2666PyDoc_STRVAR(reduce_doc, "Return state information for pickling.");
2667
2668static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002669bytearray_reduce(PyByteArrayObject *self)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002670{
2671 PyObject *latin1, *dict;
2672 if (self->ob_bytes)
2673 latin1 = PyUnicode_DecodeLatin1(self->ob_bytes,
2674 Py_SIZE(self), NULL);
2675 else
2676 latin1 = PyUnicode_FromString("");
2677
2678 dict = PyObject_GetAttrString((PyObject *)self, "__dict__");
2679 if (dict == NULL) {
2680 PyErr_Clear();
2681 dict = Py_None;
2682 Py_INCREF(dict);
2683 }
2684
2685 return Py_BuildValue("(O(Ns)N)", Py_TYPE(self), latin1, "latin-1", dict);
2686}
2687
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +00002688PyDoc_STRVAR(sizeof_doc,
2689"B.__sizeof__() -> int\n\
2690 \n\
2691Returns the size of B in memory, in bytes");
2692static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002693bytearray_sizeof(PyByteArrayObject *self)
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +00002694{
Benjamin Petersonef3e4c22009-04-11 19:48:14 +00002695 Py_ssize_t res;
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +00002696
Benjamin Petersonef3e4c22009-04-11 19:48:14 +00002697 res = sizeof(PyByteArrayObject) + self->ob_alloc * sizeof(char);
2698 return PyLong_FromSsize_t(res);
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +00002699}
2700
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002701static PySequenceMethods bytearray_as_sequence = {
2702 (lenfunc)bytearray_length, /* sq_length */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002703 (binaryfunc)PyByteArray_Concat, /* sq_concat */
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002704 (ssizeargfunc)bytearray_repeat, /* sq_repeat */
2705 (ssizeargfunc)bytearray_getitem, /* sq_item */
2706 0, /* sq_slice */
2707 (ssizeobjargproc)bytearray_setitem, /* sq_ass_item */
2708 0, /* sq_ass_slice */
2709 (objobjproc)bytearray_contains, /* sq_contains */
2710 (binaryfunc)bytearray_iconcat, /* sq_inplace_concat */
2711 (ssizeargfunc)bytearray_irepeat, /* sq_inplace_repeat */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002712};
2713
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002714static PyMappingMethods bytearray_as_mapping = {
2715 (lenfunc)bytearray_length,
2716 (binaryfunc)bytearray_subscript,
2717 (objobjargproc)bytearray_ass_subscript,
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002718};
2719
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002720static PyBufferProcs bytearray_as_buffer = {
2721 (getbufferproc)bytearray_getbuffer,
2722 (releasebufferproc)bytearray_releasebuffer,
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002723};
2724
2725static PyMethodDef
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002726bytearray_methods[] = {
2727 {"__alloc__", (PyCFunction)bytearray_alloc, METH_NOARGS, alloc_doc},
2728 {"__reduce__", (PyCFunction)bytearray_reduce, METH_NOARGS, reduce_doc},
2729 {"__sizeof__", (PyCFunction)bytearray_sizeof, METH_NOARGS, sizeof_doc},
2730 {"append", (PyCFunction)bytearray_append, METH_O, append__doc__},
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002731 {"capitalize", (PyCFunction)stringlib_capitalize, METH_NOARGS,
2732 _Py_capitalize__doc__},
2733 {"center", (PyCFunction)stringlib_center, METH_VARARGS, center__doc__},
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002734 {"count", (PyCFunction)bytearray_count, METH_VARARGS, count__doc__},
Benjamin Peterson308d6372009-09-18 21:42:35 +00002735 {"decode", (PyCFunction)bytearray_decode, METH_VARARGS | METH_KEYWORDS, decode_doc},
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002736 {"endswith", (PyCFunction)bytearray_endswith, METH_VARARGS, endswith__doc__},
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002737 {"expandtabs", (PyCFunction)stringlib_expandtabs, METH_VARARGS,
2738 expandtabs__doc__},
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002739 {"extend", (PyCFunction)bytearray_extend, METH_O, extend__doc__},
2740 {"find", (PyCFunction)bytearray_find, METH_VARARGS, find__doc__},
2741 {"fromhex", (PyCFunction)bytearray_fromhex, METH_VARARGS|METH_CLASS,
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002742 fromhex_doc},
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002743 {"index", (PyCFunction)bytearray_index, METH_VARARGS, index__doc__},
2744 {"insert", (PyCFunction)bytearray_insert, METH_VARARGS, insert__doc__},
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002745 {"isalnum", (PyCFunction)stringlib_isalnum, METH_NOARGS,
2746 _Py_isalnum__doc__},
2747 {"isalpha", (PyCFunction)stringlib_isalpha, METH_NOARGS,
2748 _Py_isalpha__doc__},
2749 {"isdigit", (PyCFunction)stringlib_isdigit, METH_NOARGS,
2750 _Py_isdigit__doc__},
2751 {"islower", (PyCFunction)stringlib_islower, METH_NOARGS,
2752 _Py_islower__doc__},
2753 {"isspace", (PyCFunction)stringlib_isspace, METH_NOARGS,
2754 _Py_isspace__doc__},
2755 {"istitle", (PyCFunction)stringlib_istitle, METH_NOARGS,
2756 _Py_istitle__doc__},
2757 {"isupper", (PyCFunction)stringlib_isupper, METH_NOARGS,
2758 _Py_isupper__doc__},
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002759 {"join", (PyCFunction)bytearray_join, METH_O, join_doc},
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002760 {"ljust", (PyCFunction)stringlib_ljust, METH_VARARGS, ljust__doc__},
2761 {"lower", (PyCFunction)stringlib_lower, METH_NOARGS, _Py_lower__doc__},
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002762 {"lstrip", (PyCFunction)bytearray_lstrip, METH_VARARGS, lstrip__doc__},
2763 {"maketrans", (PyCFunction)bytearray_maketrans, METH_VARARGS|METH_STATIC,
Georg Brandlabc38772009-04-12 15:51:51 +00002764 _Py_maketrans__doc__},
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002765 {"partition", (PyCFunction)bytearray_partition, METH_O, partition__doc__},
2766 {"pop", (PyCFunction)bytearray_pop, METH_VARARGS, pop__doc__},
2767 {"remove", (PyCFunction)bytearray_remove, METH_O, remove__doc__},
2768 {"replace", (PyCFunction)bytearray_replace, METH_VARARGS, replace__doc__},
2769 {"reverse", (PyCFunction)bytearray_reverse, METH_NOARGS, reverse__doc__},
2770 {"rfind", (PyCFunction)bytearray_rfind, METH_VARARGS, rfind__doc__},
2771 {"rindex", (PyCFunction)bytearray_rindex, METH_VARARGS, rindex__doc__},
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002772 {"rjust", (PyCFunction)stringlib_rjust, METH_VARARGS, rjust__doc__},
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002773 {"rpartition", (PyCFunction)bytearray_rpartition, METH_O, rpartition__doc__},
2774 {"rsplit", (PyCFunction)bytearray_rsplit, METH_VARARGS, rsplit__doc__},
2775 {"rstrip", (PyCFunction)bytearray_rstrip, METH_VARARGS, rstrip__doc__},
2776 {"split", (PyCFunction)bytearray_split, METH_VARARGS, split__doc__},
Antoine Pitrouf2c54842010-01-13 08:07:53 +00002777 {"splitlines", (PyCFunction)bytearray_splitlines, METH_VARARGS,
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002778 splitlines__doc__},
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002779 {"startswith", (PyCFunction)bytearray_startswith, METH_VARARGS ,
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002780 startswith__doc__},
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002781 {"strip", (PyCFunction)bytearray_strip, METH_VARARGS, strip__doc__},
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002782 {"swapcase", (PyCFunction)stringlib_swapcase, METH_NOARGS,
2783 _Py_swapcase__doc__},
2784 {"title", (PyCFunction)stringlib_title, METH_NOARGS, _Py_title__doc__},
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002785 {"translate", (PyCFunction)bytearray_translate, METH_VARARGS,
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002786 translate__doc__},
2787 {"upper", (PyCFunction)stringlib_upper, METH_NOARGS, _Py_upper__doc__},
2788 {"zfill", (PyCFunction)stringlib_zfill, METH_VARARGS, zfill__doc__},
2789 {NULL}
2790};
2791
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002792PyDoc_STRVAR(bytearray_doc,
Georg Brandl17cb8a82008-05-30 08:20:09 +00002793"bytearray(iterable_of_ints) -> bytearray\n\
2794bytearray(string, encoding[, errors]) -> bytearray\n\
2795bytearray(bytes_or_bytearray) -> mutable copy of bytes_or_bytearray\n\
2796bytearray(memory_view) -> bytearray\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002797\n\
2798Construct an mutable bytearray object from:\n\
2799 - an iterable yielding integers in range(256)\n\
2800 - a text string encoded using the specified encoding\n\
2801 - a bytes or a bytearray object\n\
2802 - any object implementing the buffer API.\n\
2803\n\
Georg Brandl17cb8a82008-05-30 08:20:09 +00002804bytearray(int) -> bytearray\n\
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002805\n\
2806Construct a zero-initialized bytearray of the given length.");
2807
2808
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002809static PyObject *bytearray_iter(PyObject *seq);
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002810
2811PyTypeObject PyByteArray_Type = {
2812 PyVarObject_HEAD_INIT(&PyType_Type, 0)
2813 "bytearray",
2814 sizeof(PyByteArrayObject),
2815 0,
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002816 (destructor)bytearray_dealloc, /* tp_dealloc */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002817 0, /* tp_print */
2818 0, /* tp_getattr */
2819 0, /* tp_setattr */
Mark Dickinsone94c6792009-02-02 20:36:42 +00002820 0, /* tp_reserved */
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002821 (reprfunc)bytearray_repr, /* tp_repr */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002822 0, /* tp_as_number */
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002823 &bytearray_as_sequence, /* tp_as_sequence */
2824 &bytearray_as_mapping, /* tp_as_mapping */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002825 0, /* tp_hash */
2826 0, /* tp_call */
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002827 bytearray_str, /* tp_str */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002828 PyObject_GenericGetAttr, /* tp_getattro */
2829 0, /* tp_setattro */
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002830 &bytearray_as_buffer, /* tp_as_buffer */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002831 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002832 bytearray_doc, /* tp_doc */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002833 0, /* tp_traverse */
2834 0, /* tp_clear */
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002835 (richcmpfunc)bytearray_richcompare, /* tp_richcompare */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002836 0, /* tp_weaklistoffset */
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002837 bytearray_iter, /* tp_iter */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002838 0, /* tp_iternext */
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002839 bytearray_methods, /* tp_methods */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002840 0, /* tp_members */
2841 0, /* tp_getset */
2842 0, /* tp_base */
2843 0, /* tp_dict */
2844 0, /* tp_descr_get */
2845 0, /* tp_descr_set */
2846 0, /* tp_dictoffset */
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002847 (initproc)bytearray_init, /* tp_init */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002848 PyType_GenericAlloc, /* tp_alloc */
2849 PyType_GenericNew, /* tp_new */
2850 PyObject_Del, /* tp_free */
2851};
2852
2853/*********************** Bytes Iterator ****************************/
2854
2855typedef struct {
2856 PyObject_HEAD
2857 Py_ssize_t it_index;
2858 PyByteArrayObject *it_seq; /* Set to NULL when iterator is exhausted */
2859} bytesiterobject;
2860
2861static void
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002862bytearrayiter_dealloc(bytesiterobject *it)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002863{
2864 _PyObject_GC_UNTRACK(it);
2865 Py_XDECREF(it->it_seq);
2866 PyObject_GC_Del(it);
2867}
2868
2869static int
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002870bytearrayiter_traverse(bytesiterobject *it, visitproc visit, void *arg)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002871{
2872 Py_VISIT(it->it_seq);
2873 return 0;
2874}
2875
2876static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002877bytearrayiter_next(bytesiterobject *it)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002878{
2879 PyByteArrayObject *seq;
2880 PyObject *item;
2881
2882 assert(it != NULL);
2883 seq = it->it_seq;
2884 if (seq == NULL)
2885 return NULL;
2886 assert(PyByteArray_Check(seq));
2887
2888 if (it->it_index < PyByteArray_GET_SIZE(seq)) {
2889 item = PyLong_FromLong(
2890 (unsigned char)seq->ob_bytes[it->it_index]);
2891 if (item != NULL)
2892 ++it->it_index;
2893 return item;
2894 }
2895
2896 Py_DECREF(seq);
2897 it->it_seq = NULL;
2898 return NULL;
2899}
2900
2901static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002902bytesarrayiter_length_hint(bytesiterobject *it)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002903{
2904 Py_ssize_t len = 0;
2905 if (it->it_seq)
2906 len = PyByteArray_GET_SIZE(it->it_seq) - it->it_index;
2907 return PyLong_FromSsize_t(len);
2908}
2909
2910PyDoc_STRVAR(length_hint_doc,
2911 "Private method returning an estimate of len(list(it)).");
2912
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002913static PyMethodDef bytearrayiter_methods[] = {
2914 {"__length_hint__", (PyCFunction)bytesarrayiter_length_hint, METH_NOARGS,
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002915 length_hint_doc},
2916 {NULL, NULL} /* sentinel */
2917};
2918
2919PyTypeObject PyByteArrayIter_Type = {
2920 PyVarObject_HEAD_INIT(&PyType_Type, 0)
2921 "bytearray_iterator", /* tp_name */
2922 sizeof(bytesiterobject), /* tp_basicsize */
2923 0, /* tp_itemsize */
2924 /* methods */
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002925 (destructor)bytearrayiter_dealloc, /* tp_dealloc */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002926 0, /* tp_print */
2927 0, /* tp_getattr */
2928 0, /* tp_setattr */
Mark Dickinsone94c6792009-02-02 20:36:42 +00002929 0, /* tp_reserved */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002930 0, /* tp_repr */
2931 0, /* tp_as_number */
2932 0, /* tp_as_sequence */
2933 0, /* tp_as_mapping */
2934 0, /* tp_hash */
2935 0, /* tp_call */
2936 0, /* tp_str */
2937 PyObject_GenericGetAttr, /* tp_getattro */
2938 0, /* tp_setattro */
2939 0, /* tp_as_buffer */
2940 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
2941 0, /* tp_doc */
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002942 (traverseproc)bytearrayiter_traverse, /* tp_traverse */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002943 0, /* tp_clear */
2944 0, /* tp_richcompare */
2945 0, /* tp_weaklistoffset */
2946 PyObject_SelfIter, /* tp_iter */
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002947 (iternextfunc)bytearrayiter_next, /* tp_iternext */
2948 bytearrayiter_methods, /* tp_methods */
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002949 0,
2950};
2951
2952static PyObject *
Benjamin Peterson153c70f2009-04-18 15:42:12 +00002953bytearray_iter(PyObject *seq)
Christian Heimes2c9c7a52008-05-26 13:42:13 +00002954{
2955 bytesiterobject *it;
2956
2957 if (!PyByteArray_Check(seq)) {
2958 PyErr_BadInternalCall();
2959 return NULL;
2960 }
2961 it = PyObject_GC_New(bytesiterobject, &PyByteArrayIter_Type);
2962 if (it == NULL)
2963 return NULL;
2964 it->it_index = 0;
2965 Py_INCREF(seq);
2966 it->it_seq = (PyByteArrayObject *)seq;
2967 _PyObject_GC_TRACK(it);
2968 return (PyObject *)it;
2969}