blob: 8c3f0a1c6c646539293f369b66f727516e8b14bb [file] [log] [blame]
Guido van Rossum778983b1993-02-19 15:55:02 +00001/* Array object implementation */
2
3/* An array is a uniform list -- all items have the same type.
4 The item type is restricted to simple C types like int or float */
5
Martin v. Löwis18e16552006-02-15 17:27:45 +00006#define PY_SSIZE_T_CLEAN
Roger E. Masse2919eaa1996-12-09 20:10:36 +00007#include "Python.h"
Raymond Hettingercb87bc82004-05-31 00:35:52 +00008#include "structmember.h"
Roger E. Masse5817f8f1996-12-09 22:24:19 +00009
Guido van Rossum0c709541994-08-19 12:01:32 +000010#ifdef STDC_HEADERS
11#include <stddef.h>
Guido van Rossum7f1de831999-08-27 20:33:52 +000012#else /* !STDC_HEADERS */
Thomas Wouters0e3f5912006-08-11 14:57:12 +000013#ifdef HAVE_SYS_TYPES_H
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000014#include <sys/types.h> /* For size_t */
Thomas Wouters0e3f5912006-08-11 14:57:12 +000015#endif /* HAVE_SYS_TYPES_H */
Guido van Rossum7f1de831999-08-27 20:33:52 +000016#endif /* !STDC_HEADERS */
Guido van Rossum778983b1993-02-19 15:55:02 +000017
Brett Cannon1eb32c22014-10-10 16:26:45 -040018/*[clinic input]
Brett Cannon1eb32c22014-10-10 16:26:45 -040019module array
20[clinic start generated code]*/
Serhiy Storchaka1009bf12015-04-03 23:53:51 +030021/*[clinic end generated code: output=da39a3ee5e6b4b0d input=7d1b8d7f5958fd83]*/
Brett Cannon1eb32c22014-10-10 16:26:45 -040022
Guido van Rossum778983b1993-02-19 15:55:02 +000023struct arrayobject; /* Forward */
24
Tim Petersbb307342000-09-10 05:22:54 +000025/* All possible arraydescr values are defined in the vector "descriptors"
26 * below. That's defined later because the appropriate get and set
27 * functions aren't visible yet.
28 */
Guido van Rossum778983b1993-02-19 15:55:02 +000029struct arraydescr {
Victor Stinnerf8bb7d02011-09-30 00:03:59 +020030 char typecode;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000031 int itemsize;
32 PyObject * (*getitem)(struct arrayobject *, Py_ssize_t);
33 int (*setitem)(struct arrayobject *, Py_ssize_t, PyObject *);
Adrian Wielgosik7c17e232017-08-17 12:46:06 +000034 int (*compareitems)(const void *, const void *, Py_ssize_t);
Serhiy Storchaka2d06e842015-12-25 19:53:18 +020035 const char *formats;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000036 int is_integer_type;
37 int is_signed;
Guido van Rossum778983b1993-02-19 15:55:02 +000038};
39
40typedef struct arrayobject {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000041 PyObject_VAR_HEAD
42 char *ob_item;
43 Py_ssize_t allocated;
Serhiy Storchaka2d06e842015-12-25 19:53:18 +020044 const struct arraydescr *ob_descr;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000045 PyObject *weakreflist; /* List of weak references */
46 int ob_exports; /* Number of exported buffers */
Guido van Rossum778983b1993-02-19 15:55:02 +000047} arrayobject;
48
Jeremy Hylton938ace62002-07-17 16:30:39 +000049static PyTypeObject Arraytype;
Guido van Rossum778983b1993-02-19 15:55:02 +000050
Brett Cannon1eb32c22014-10-10 16:26:45 -040051typedef struct {
52 PyObject_HEAD
53 Py_ssize_t index;
54 arrayobject *ao;
55 PyObject* (*getitem)(struct arrayobject *, Py_ssize_t);
56} arrayiterobject;
57
58static PyTypeObject PyArrayIter_Type;
59
60#define PyArrayIter_Check(op) PyObject_TypeCheck(op, &PyArrayIter_Type)
61
Larry Hastingsdfbeb162014-10-13 10:39:41 +010062enum machine_format_code {
63 UNKNOWN_FORMAT = -1,
64 /* UNKNOWN_FORMAT is used to indicate that the machine format for an
65 * array type code cannot be interpreted. When this occurs, a list of
66 * Python objects is used to represent the content of the array
67 * instead of using the memory content of the array directly. In that
68 * case, the array_reconstructor mechanism is bypassed completely, and
69 * the standard array constructor is used instead.
70 *
71 * This is will most likely occur when the machine doesn't use IEEE
72 * floating-point numbers.
73 */
74
75 UNSIGNED_INT8 = 0,
76 SIGNED_INT8 = 1,
77 UNSIGNED_INT16_LE = 2,
78 UNSIGNED_INT16_BE = 3,
79 SIGNED_INT16_LE = 4,
80 SIGNED_INT16_BE = 5,
81 UNSIGNED_INT32_LE = 6,
82 UNSIGNED_INT32_BE = 7,
83 SIGNED_INT32_LE = 8,
84 SIGNED_INT32_BE = 9,
85 UNSIGNED_INT64_LE = 10,
86 UNSIGNED_INT64_BE = 11,
87 SIGNED_INT64_LE = 12,
88 SIGNED_INT64_BE = 13,
89 IEEE_754_FLOAT_LE = 14,
90 IEEE_754_FLOAT_BE = 15,
91 IEEE_754_DOUBLE_LE = 16,
92 IEEE_754_DOUBLE_BE = 17,
93 UTF16_LE = 18,
94 UTF16_BE = 19,
95 UTF32_LE = 20,
96 UTF32_BE = 21
97};
98#define MACHINE_FORMAT_CODE_MIN 0
99#define MACHINE_FORMAT_CODE_MAX 21
100
101
102/*
103 * Must come after arrayobject, arrayiterobject,
104 * and enum machine_code_type definitions.
105 */
Brett Cannon1eb32c22014-10-10 16:26:45 -0400106#include "clinic/arraymodule.c.h"
107
Martin v. Löwis99866332002-03-01 10:27:01 +0000108#define array_Check(op) PyObject_TypeCheck(op, &Arraytype)
Christian Heimes90aa7642007-12-19 02:45:37 +0000109#define array_CheckExact(op) (Py_TYPE(op) == &Arraytype)
Guido van Rossum778983b1993-02-19 15:55:02 +0000110
Raymond Hettinger6e2ee862004-03-14 04:37:50 +0000111static int
Martin v. Löwis18e16552006-02-15 17:27:45 +0000112array_resize(arrayobject *self, Py_ssize_t newsize)
Raymond Hettinger6e2ee862004-03-14 04:37:50 +0000113{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000114 char *items;
115 size_t _new_size;
Raymond Hettinger6e2ee862004-03-14 04:37:50 +0000116
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000117 if (self->ob_exports > 0 && newsize != Py_SIZE(self)) {
118 PyErr_SetString(PyExc_BufferError,
119 "cannot resize an array that is exporting buffers");
120 return -1;
121 }
Antoine Pitrou3ad3a0d2008-12-18 17:08:32 +0000122
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000123 /* Bypass realloc() when a previous overallocation is large enough
124 to accommodate the newsize. If the newsize is 16 smaller than the
125 current size, then proceed with the realloc() to shrink the array.
126 */
Raymond Hettinger6e2ee862004-03-14 04:37:50 +0000127
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000128 if (self->allocated >= newsize &&
129 Py_SIZE(self) < newsize + 16 &&
130 self->ob_item != NULL) {
131 Py_SIZE(self) = newsize;
132 return 0;
133 }
Raymond Hettinger6e2ee862004-03-14 04:37:50 +0000134
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000135 if (newsize == 0) {
136 PyMem_FREE(self->ob_item);
137 self->ob_item = NULL;
138 Py_SIZE(self) = 0;
139 self->allocated = 0;
140 return 0;
141 }
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000142
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000143 /* This over-allocates proportional to the array size, making room
144 * for additional growth. The over-allocation is mild, but is
145 * enough to give linear-time amortized behavior over a long
146 * sequence of appends() in the presence of a poorly-performing
147 * system realloc().
148 * The growth pattern is: 0, 4, 8, 16, 25, 34, 46, 56, 67, 79, ...
149 * Note, the pattern starts out the same as for lists but then
150 * grows at a smaller rate so that larger arrays only overallocate
151 * by about 1/16th -- this is done because arrays are presumed to be more
152 * memory critical.
153 */
Raymond Hettinger6e2ee862004-03-14 04:37:50 +0000154
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000155 _new_size = (newsize >> 4) + (Py_SIZE(self) < 8 ? 3 : 7) + newsize;
156 items = self->ob_item;
157 /* XXX The following multiplication and division does not optimize away
158 like it does for lists since the size is not known at compile time */
159 if (_new_size <= ((~(size_t)0) / self->ob_descr->itemsize))
160 PyMem_RESIZE(items, char, (_new_size * self->ob_descr->itemsize));
161 else
162 items = NULL;
163 if (items == NULL) {
164 PyErr_NoMemory();
165 return -1;
166 }
167 self->ob_item = items;
168 Py_SIZE(self) = newsize;
169 self->allocated = _new_size;
170 return 0;
Raymond Hettinger6e2ee862004-03-14 04:37:50 +0000171}
172
Tim Petersbb307342000-09-10 05:22:54 +0000173/****************************************************************************
174Get and Set functions for each type.
175A Get function takes an arrayobject* and an integer index, returning the
176array value at that index wrapped in an appropriate PyObject*.
177A Set function takes an arrayobject, integer index, and PyObject*; sets
178the array value at that index to the raw C data extracted from the PyObject*,
179and returns 0 if successful, else nonzero on failure (PyObject* not of an
180appropriate type or value).
181Note that the basic Get and Set functions do NOT check that the index is
182in bounds; that's the responsibility of the caller.
183****************************************************************************/
Guido van Rossum778983b1993-02-19 15:55:02 +0000184
Roger E. Masse2919eaa1996-12-09 20:10:36 +0000185static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000186b_getitem(arrayobject *ap, Py_ssize_t i)
Guido van Rossum778983b1993-02-19 15:55:02 +0000187{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000188 long x = ((char *)ap->ob_item)[i];
189 if (x >= 128)
190 x -= 256;
191 return PyLong_FromLong(x);
Guido van Rossum778983b1993-02-19 15:55:02 +0000192}
193
194static int
Martin v. Löwis18e16552006-02-15 17:27:45 +0000195b_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
Guido van Rossum778983b1993-02-19 15:55:02 +0000196{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000197 short x;
198 /* PyArg_Parse's 'b' formatter is for an unsigned char, therefore
199 must use the next size up that is signed ('h') and manually do
200 the overflow checking */
201 if (!PyArg_Parse(v, "h;array item must be integer", &x))
202 return -1;
203 else if (x < -128) {
204 PyErr_SetString(PyExc_OverflowError,
205 "signed char is less than minimum");
206 return -1;
207 }
208 else if (x > 127) {
209 PyErr_SetString(PyExc_OverflowError,
210 "signed char is greater than maximum");
211 return -1;
212 }
213 if (i >= 0)
214 ((char *)ap->ob_item)[i] = (char)x;
215 return 0;
Guido van Rossum778983b1993-02-19 15:55:02 +0000216}
217
Roger E. Masse2919eaa1996-12-09 20:10:36 +0000218static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000219BB_getitem(arrayobject *ap, Py_ssize_t i)
Guido van Rossum549ab711997-01-03 19:09:47 +0000220{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000221 long x = ((unsigned char *)ap->ob_item)[i];
222 return PyLong_FromLong(x);
Guido van Rossum549ab711997-01-03 19:09:47 +0000223}
224
Fred Drake541dc3b2000-06-28 17:49:30 +0000225static int
Martin v. Löwis18e16552006-02-15 17:27:45 +0000226BB_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
Fred Drake541dc3b2000-06-28 17:49:30 +0000227{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000228 unsigned char x;
229 /* 'B' == unsigned char, maps to PyArg_Parse's 'b' formatter */
230 if (!PyArg_Parse(v, "b;array item must be integer", &x))
231 return -1;
232 if (i >= 0)
233 ((char *)ap->ob_item)[i] = x;
234 return 0;
Fred Drake541dc3b2000-06-28 17:49:30 +0000235}
Guido van Rossum549ab711997-01-03 19:09:47 +0000236
Martin v. Löwis99866332002-03-01 10:27:01 +0000237static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000238u_getitem(arrayobject *ap, Py_ssize_t i)
Martin v. Löwis99866332002-03-01 10:27:01 +0000239{
Serhiy Storchaka460bd0d2016-11-20 12:16:46 +0200240 return PyUnicode_FromOrdinal(((Py_UNICODE *) ap->ob_item)[i]);
Martin v. Löwis99866332002-03-01 10:27:01 +0000241}
242
243static int
Martin v. Löwis18e16552006-02-15 17:27:45 +0000244u_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
Martin v. Löwis99866332002-03-01 10:27:01 +0000245{
Victor Stinner62bb3942012-08-06 00:46:05 +0200246 Py_UNICODE *p;
247 Py_ssize_t len;
Martin v. Löwis99866332002-03-01 10:27:01 +0000248
Victor Stinner62bb3942012-08-06 00:46:05 +0200249 if (!PyArg_Parse(v, "u#;array item must be unicode character", &p, &len))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000250 return -1;
Victor Stinner62bb3942012-08-06 00:46:05 +0200251 if (len != 1) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000252 PyErr_SetString(PyExc_TypeError,
253 "array item must be unicode character");
254 return -1;
255 }
256 if (i >= 0)
Victor Stinner62bb3942012-08-06 00:46:05 +0200257 ((Py_UNICODE *)ap->ob_item)[i] = p[0];
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000258 return 0;
Martin v. Löwis99866332002-03-01 10:27:01 +0000259}
Martin v. Löwis99866332002-03-01 10:27:01 +0000260
Travis E. Oliphantd5c0add2007-10-12 22:05:15 +0000261
Guido van Rossum549ab711997-01-03 19:09:47 +0000262static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000263h_getitem(arrayobject *ap, Py_ssize_t i)
Guido van Rossum778983b1993-02-19 15:55:02 +0000264{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000265 return PyLong_FromLong((long) ((short *)ap->ob_item)[i]);
Guido van Rossum778983b1993-02-19 15:55:02 +0000266}
267
Travis E. Oliphantd5c0add2007-10-12 22:05:15 +0000268
Guido van Rossum778983b1993-02-19 15:55:02 +0000269static int
Martin v. Löwis18e16552006-02-15 17:27:45 +0000270h_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
Guido van Rossum778983b1993-02-19 15:55:02 +0000271{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000272 short x;
273 /* 'h' == signed short, maps to PyArg_Parse's 'h' formatter */
274 if (!PyArg_Parse(v, "h;array item must be integer", &x))
275 return -1;
276 if (i >= 0)
277 ((short *)ap->ob_item)[i] = x;
278 return 0;
Guido van Rossum778983b1993-02-19 15:55:02 +0000279}
280
Roger E. Masse2919eaa1996-12-09 20:10:36 +0000281static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000282HH_getitem(arrayobject *ap, Py_ssize_t i)
Guido van Rossum549ab711997-01-03 19:09:47 +0000283{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000284 return PyLong_FromLong((long) ((unsigned short *)ap->ob_item)[i]);
Guido van Rossum549ab711997-01-03 19:09:47 +0000285}
286
Fred Drake541dc3b2000-06-28 17:49:30 +0000287static int
Martin v. Löwis18e16552006-02-15 17:27:45 +0000288HH_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
Fred Drake541dc3b2000-06-28 17:49:30 +0000289{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000290 int x;
291 /* PyArg_Parse's 'h' formatter is for a signed short, therefore
292 must use the next size up and manually do the overflow checking */
293 if (!PyArg_Parse(v, "i;array item must be integer", &x))
294 return -1;
295 else if (x < 0) {
296 PyErr_SetString(PyExc_OverflowError,
297 "unsigned short is less than minimum");
298 return -1;
299 }
300 else if (x > USHRT_MAX) {
301 PyErr_SetString(PyExc_OverflowError,
302 "unsigned short is greater than maximum");
303 return -1;
304 }
305 if (i >= 0)
306 ((short *)ap->ob_item)[i] = (short)x;
307 return 0;
Fred Drake541dc3b2000-06-28 17:49:30 +0000308}
Guido van Rossum549ab711997-01-03 19:09:47 +0000309
310static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000311i_getitem(arrayobject *ap, Py_ssize_t i)
Guido van Rossume77a7571993-11-03 15:01:26 +0000312{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000313 return PyLong_FromLong((long) ((int *)ap->ob_item)[i]);
Guido van Rossume77a7571993-11-03 15:01:26 +0000314}
315
316static int
Martin v. Löwis18e16552006-02-15 17:27:45 +0000317i_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
Guido van Rossume77a7571993-11-03 15:01:26 +0000318{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000319 int x;
320 /* 'i' == signed int, maps to PyArg_Parse's 'i' formatter */
321 if (!PyArg_Parse(v, "i;array item must be integer", &x))
322 return -1;
323 if (i >= 0)
324 ((int *)ap->ob_item)[i] = x;
325 return 0;
Guido van Rossume77a7571993-11-03 15:01:26 +0000326}
327
Roger E. Masse2919eaa1996-12-09 20:10:36 +0000328static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000329II_getitem(arrayobject *ap, Py_ssize_t i)
Guido van Rossum549ab711997-01-03 19:09:47 +0000330{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000331 return PyLong_FromUnsignedLong(
332 (unsigned long) ((unsigned int *)ap->ob_item)[i]);
Guido van Rossum549ab711997-01-03 19:09:47 +0000333}
334
orenmn964281a2017-03-09 11:35:28 +0200335static PyObject *
336get_int_unless_float(PyObject *v)
337{
338 if (PyFloat_Check(v)) {
339 PyErr_SetString(PyExc_TypeError,
340 "array item must be integer");
341 return NULL;
342 }
343 return (PyObject *)_PyLong_FromNbInt(v);
344}
345
Guido van Rossum549ab711997-01-03 19:09:47 +0000346static int
Martin v. Löwis18e16552006-02-15 17:27:45 +0000347II_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
Guido van Rossum549ab711997-01-03 19:09:47 +0000348{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000349 unsigned long x;
orenmn964281a2017-03-09 11:35:28 +0200350 int do_decref = 0; /* if nb_int was called */
351
352 if (!PyLong_Check(v)) {
353 v = get_int_unless_float(v);
354 if (NULL == v) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000355 return -1;
356 }
orenmn964281a2017-03-09 11:35:28 +0200357 do_decref = 1;
358 }
359 x = PyLong_AsUnsignedLong(v);
360 if (x == (unsigned long)-1 && PyErr_Occurred()) {
361 if (do_decref) {
362 Py_DECREF(v);
363 }
364 return -1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000365 }
366 if (x > UINT_MAX) {
367 PyErr_SetString(PyExc_OverflowError,
orenmn964281a2017-03-09 11:35:28 +0200368 "unsigned int is greater than maximum");
369 if (do_decref) {
370 Py_DECREF(v);
371 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000372 return -1;
373 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000374 if (i >= 0)
375 ((unsigned int *)ap->ob_item)[i] = (unsigned int)x;
orenmn964281a2017-03-09 11:35:28 +0200376
377 if (do_decref) {
378 Py_DECREF(v);
379 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000380 return 0;
Guido van Rossum549ab711997-01-03 19:09:47 +0000381}
382
383static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000384l_getitem(arrayobject *ap, Py_ssize_t i)
Guido van Rossum778983b1993-02-19 15:55:02 +0000385{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000386 return PyLong_FromLong(((long *)ap->ob_item)[i]);
Guido van Rossum778983b1993-02-19 15:55:02 +0000387}
388
389static int
Martin v. Löwis18e16552006-02-15 17:27:45 +0000390l_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
Guido van Rossum778983b1993-02-19 15:55:02 +0000391{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000392 long x;
393 if (!PyArg_Parse(v, "l;array item must be integer", &x))
394 return -1;
395 if (i >= 0)
396 ((long *)ap->ob_item)[i] = x;
397 return 0;
Guido van Rossum778983b1993-02-19 15:55:02 +0000398}
399
Roger E. Masse2919eaa1996-12-09 20:10:36 +0000400static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000401LL_getitem(arrayobject *ap, Py_ssize_t i)
Guido van Rossum549ab711997-01-03 19:09:47 +0000402{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000403 return PyLong_FromUnsignedLong(((unsigned long *)ap->ob_item)[i]);
Guido van Rossum549ab711997-01-03 19:09:47 +0000404}
405
406static int
Martin v. Löwis18e16552006-02-15 17:27:45 +0000407LL_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
Guido van Rossum549ab711997-01-03 19:09:47 +0000408{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000409 unsigned long x;
orenmn964281a2017-03-09 11:35:28 +0200410 int do_decref = 0; /* if nb_int was called */
411
412 if (!PyLong_Check(v)) {
413 v = get_int_unless_float(v);
414 if (NULL == v) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000415 return -1;
416 }
orenmn964281a2017-03-09 11:35:28 +0200417 do_decref = 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000418 }
orenmn964281a2017-03-09 11:35:28 +0200419 x = PyLong_AsUnsignedLong(v);
420 if (x == (unsigned long)-1 && PyErr_Occurred()) {
421 if (do_decref) {
422 Py_DECREF(v);
423 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000424 return -1;
425 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000426 if (i >= 0)
427 ((unsigned long *)ap->ob_item)[i] = x;
orenmn964281a2017-03-09 11:35:28 +0200428
429 if (do_decref) {
430 Py_DECREF(v);
431 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000432 return 0;
Guido van Rossum549ab711997-01-03 19:09:47 +0000433}
434
Meador Inge1c9f0c92011-09-20 19:55:51 -0500435static PyObject *
436q_getitem(arrayobject *ap, Py_ssize_t i)
437{
Benjamin Petersonaf580df2016-09-06 10:46:49 -0700438 return PyLong_FromLongLong(((long long *)ap->ob_item)[i]);
Meador Inge1c9f0c92011-09-20 19:55:51 -0500439}
440
441static int
442q_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
443{
Benjamin Petersonaf580df2016-09-06 10:46:49 -0700444 long long x;
Meador Inge1c9f0c92011-09-20 19:55:51 -0500445 if (!PyArg_Parse(v, "L;array item must be integer", &x))
446 return -1;
447 if (i >= 0)
Benjamin Petersonaf580df2016-09-06 10:46:49 -0700448 ((long long *)ap->ob_item)[i] = x;
Meador Inge1c9f0c92011-09-20 19:55:51 -0500449 return 0;
450}
451
452static PyObject *
453QQ_getitem(arrayobject *ap, Py_ssize_t i)
454{
455 return PyLong_FromUnsignedLongLong(
Benjamin Petersonaf580df2016-09-06 10:46:49 -0700456 ((unsigned long long *)ap->ob_item)[i]);
Meador Inge1c9f0c92011-09-20 19:55:51 -0500457}
458
459static int
460QQ_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
461{
Benjamin Petersonaf580df2016-09-06 10:46:49 -0700462 unsigned long long x;
orenmn964281a2017-03-09 11:35:28 +0200463 int do_decref = 0; /* if nb_int was called */
464
465 if (!PyLong_Check(v)) {
466 v = get_int_unless_float(v);
467 if (NULL == v) {
Meador Inge1c9f0c92011-09-20 19:55:51 -0500468 return -1;
469 }
orenmn964281a2017-03-09 11:35:28 +0200470 do_decref = 1;
Meador Inge1c9f0c92011-09-20 19:55:51 -0500471 }
orenmn964281a2017-03-09 11:35:28 +0200472 x = PyLong_AsUnsignedLongLong(v);
473 if (x == (unsigned long long)-1 && PyErr_Occurred()) {
474 if (do_decref) {
475 Py_DECREF(v);
476 }
477 return -1;
478 }
Meador Inge1c9f0c92011-09-20 19:55:51 -0500479 if (i >= 0)
Benjamin Petersonaf580df2016-09-06 10:46:49 -0700480 ((unsigned long long *)ap->ob_item)[i] = x;
orenmn964281a2017-03-09 11:35:28 +0200481
482 if (do_decref) {
483 Py_DECREF(v);
484 }
Meador Inge1c9f0c92011-09-20 19:55:51 -0500485 return 0;
486}
Meador Inge1c9f0c92011-09-20 19:55:51 -0500487
Guido van Rossum549ab711997-01-03 19:09:47 +0000488static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000489f_getitem(arrayobject *ap, Py_ssize_t i)
Guido van Rossum778983b1993-02-19 15:55:02 +0000490{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000491 return PyFloat_FromDouble((double) ((float *)ap->ob_item)[i]);
Guido van Rossum778983b1993-02-19 15:55:02 +0000492}
493
494static int
Martin v. Löwis18e16552006-02-15 17:27:45 +0000495f_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
Guido van Rossum778983b1993-02-19 15:55:02 +0000496{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000497 float x;
498 if (!PyArg_Parse(v, "f;array item must be float", &x))
499 return -1;
500 if (i >= 0)
501 ((float *)ap->ob_item)[i] = x;
502 return 0;
Guido van Rossum778983b1993-02-19 15:55:02 +0000503}
504
Roger E. Masse2919eaa1996-12-09 20:10:36 +0000505static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000506d_getitem(arrayobject *ap, Py_ssize_t i)
Guido van Rossum778983b1993-02-19 15:55:02 +0000507{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000508 return PyFloat_FromDouble(((double *)ap->ob_item)[i]);
Guido van Rossum778983b1993-02-19 15:55:02 +0000509}
510
511static int
Martin v. Löwis18e16552006-02-15 17:27:45 +0000512d_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
Guido van Rossum778983b1993-02-19 15:55:02 +0000513{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000514 double x;
515 if (!PyArg_Parse(v, "d;array item must be float", &x))
516 return -1;
517 if (i >= 0)
518 ((double *)ap->ob_item)[i] = x;
519 return 0;
Guido van Rossum778983b1993-02-19 15:55:02 +0000520}
521
Adrian Wielgosik7c17e232017-08-17 12:46:06 +0000522#define DEFINE_COMPAREITEMS(code, type) \
523 static int \
524 code##_compareitems(const void *lhs, const void *rhs, Py_ssize_t length) \
525 { \
526 const type *a = lhs, *b = rhs; \
527 for (Py_ssize_t i = 0; i < length; ++i) \
528 if (a[i] != b[i]) \
529 return a[i] < b[i] ? -1 : 1; \
530 return 0; \
531 }
532
533DEFINE_COMPAREITEMS(b, signed char)
534DEFINE_COMPAREITEMS(BB, unsigned char)
535DEFINE_COMPAREITEMS(u, Py_UNICODE)
536DEFINE_COMPAREITEMS(h, short)
537DEFINE_COMPAREITEMS(HH, unsigned short)
538DEFINE_COMPAREITEMS(i, int)
539DEFINE_COMPAREITEMS(II, unsigned int)
540DEFINE_COMPAREITEMS(l, long)
541DEFINE_COMPAREITEMS(LL, unsigned long)
542DEFINE_COMPAREITEMS(q, long long)
543DEFINE_COMPAREITEMS(QQ, unsigned long long)
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000544
Alexandre Vassalottiad077152009-07-15 17:49:23 +0000545/* Description of types.
546 *
547 * Don't forget to update typecode_to_mformat_code() if you add a new
548 * typecode.
549 */
Serhiy Storchaka2d06e842015-12-25 19:53:18 +0200550static const struct arraydescr descriptors[] = {
Adrian Wielgosik7c17e232017-08-17 12:46:06 +0000551 {'b', 1, b_getitem, b_setitem, b_compareitems, "b", 1, 1},
552 {'B', 1, BB_getitem, BB_setitem, BB_compareitems, "B", 1, 0},
553 {'u', sizeof(Py_UNICODE), u_getitem, u_setitem, u_compareitems, "u", 0, 0},
554 {'h', sizeof(short), h_getitem, h_setitem, h_compareitems, "h", 1, 1},
555 {'H', sizeof(short), HH_getitem, HH_setitem, HH_compareitems, "H", 1, 0},
556 {'i', sizeof(int), i_getitem, i_setitem, i_compareitems, "i", 1, 1},
557 {'I', sizeof(int), II_getitem, II_setitem, II_compareitems, "I", 1, 0},
558 {'l', sizeof(long), l_getitem, l_setitem, l_compareitems, "l", 1, 1},
559 {'L', sizeof(long), LL_getitem, LL_setitem, LL_compareitems, "L", 1, 0},
560 {'q', sizeof(long long), q_getitem, q_setitem, q_compareitems, "q", 1, 1},
561 {'Q', sizeof(long long), QQ_getitem, QQ_setitem, QQ_compareitems, "Q", 1, 0},
562 {'f', sizeof(float), f_getitem, f_setitem, NULL, "f", 0, 0},
563 {'d', sizeof(double), d_getitem, d_setitem, NULL, "d", 0, 0},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000564 {'\0', 0, 0, 0, 0, 0, 0} /* Sentinel */
Guido van Rossum778983b1993-02-19 15:55:02 +0000565};
Tim Petersbb307342000-09-10 05:22:54 +0000566
567/****************************************************************************
568Implementations of array object methods.
569****************************************************************************/
Brett Cannon1eb32c22014-10-10 16:26:45 -0400570/*[clinic input]
571class array.array "arrayobject *" "&Arraytype"
572[clinic start generated code]*/
573/*[clinic end generated code: output=da39a3ee5e6b4b0d input=ad43d37e942a8854]*/
Guido van Rossum778983b1993-02-19 15:55:02 +0000574
Roger E. Masse2919eaa1996-12-09 20:10:36 +0000575static PyObject *
Serhiy Storchaka2d06e842015-12-25 19:53:18 +0200576newarrayobject(PyTypeObject *type, Py_ssize_t size, const struct arraydescr *descr)
Guido van Rossum778983b1993-02-19 15:55:02 +0000577{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000578 arrayobject *op;
579 size_t nbytes;
Martin v. Löwis99866332002-03-01 10:27:01 +0000580
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000581 if (size < 0) {
582 PyErr_BadInternalCall();
583 return NULL;
584 }
Martin v. Löwis99866332002-03-01 10:27:01 +0000585
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000586 /* Check for overflow */
Mark Dickinsonc04ddff2012-10-06 18:04:49 +0100587 if (size > PY_SSIZE_T_MAX / descr->itemsize) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000588 return PyErr_NoMemory();
589 }
Mark Dickinsonc04ddff2012-10-06 18:04:49 +0100590 nbytes = size * descr->itemsize;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000591 op = (arrayobject *) type->tp_alloc(type, 0);
592 if (op == NULL) {
593 return NULL;
594 }
595 op->ob_descr = descr;
596 op->allocated = size;
597 op->weakreflist = NULL;
598 Py_SIZE(op) = size;
599 if (size <= 0) {
600 op->ob_item = NULL;
601 }
602 else {
603 op->ob_item = PyMem_NEW(char, nbytes);
604 if (op->ob_item == NULL) {
605 Py_DECREF(op);
606 return PyErr_NoMemory();
607 }
608 }
609 op->ob_exports = 0;
610 return (PyObject *) op;
Guido van Rossum778983b1993-02-19 15:55:02 +0000611}
612
Roger E. Masse2919eaa1996-12-09 20:10:36 +0000613static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000614getarrayitem(PyObject *op, Py_ssize_t i)
Guido van Rossum778983b1993-02-19 15:55:02 +0000615{
Antoine Pitrou9ed5f272013-08-13 20:18:52 +0200616 arrayobject *ap;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000617 assert(array_Check(op));
618 ap = (arrayobject *)op;
619 assert(i>=0 && i<Py_SIZE(ap));
620 return (*ap->ob_descr->getitem)(ap, i);
Guido van Rossum778983b1993-02-19 15:55:02 +0000621}
622
623static int
Martin v. Löwis18e16552006-02-15 17:27:45 +0000624ins1(arrayobject *self, Py_ssize_t where, PyObject *v)
Guido van Rossum778983b1993-02-19 15:55:02 +0000625{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000626 char *items;
627 Py_ssize_t n = Py_SIZE(self);
628 if (v == NULL) {
629 PyErr_BadInternalCall();
630 return -1;
631 }
632 if ((*self->ob_descr->setitem)(self, -1, v) < 0)
633 return -1;
Raymond Hettinger6e2ee862004-03-14 04:37:50 +0000634
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000635 if (array_resize(self, n+1) == -1)
636 return -1;
637 items = self->ob_item;
638 if (where < 0) {
639 where += n;
640 if (where < 0)
641 where = 0;
642 }
643 if (where > n)
644 where = n;
645 /* appends don't need to call memmove() */
646 if (where != n)
647 memmove(items + (where+1)*self->ob_descr->itemsize,
648 items + where*self->ob_descr->itemsize,
649 (n-where)*self->ob_descr->itemsize);
650 return (*self->ob_descr->setitem)(self, where, v);
Guido van Rossum778983b1993-02-19 15:55:02 +0000651}
652
Guido van Rossum778983b1993-02-19 15:55:02 +0000653/* Methods */
654
655static void
Peter Schneider-Kamp9656abd2000-07-13 21:10:57 +0000656array_dealloc(arrayobject *op)
Guido van Rossum778983b1993-02-19 15:55:02 +0000657{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000658 if (op->weakreflist != NULL)
659 PyObject_ClearWeakRefs((PyObject *) op);
660 if (op->ob_item != NULL)
661 PyMem_DEL(op->ob_item);
662 Py_TYPE(op)->tp_free((PyObject *)op);
Guido van Rossum778983b1993-02-19 15:55:02 +0000663}
664
Guido van Rossum9d19cb82001-01-18 01:02:55 +0000665static PyObject *
666array_richcompare(PyObject *v, PyObject *w, int op)
Guido van Rossum778983b1993-02-19 15:55:02 +0000667{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000668 arrayobject *va, *wa;
669 PyObject *vi = NULL;
670 PyObject *wi = NULL;
671 Py_ssize_t i, k;
672 PyObject *res;
Guido van Rossum9d19cb82001-01-18 01:02:55 +0000673
Brian Curtindfc80e32011-08-10 20:28:54 -0500674 if (!array_Check(v) || !array_Check(w))
675 Py_RETURN_NOTIMPLEMENTED;
Guido van Rossum9d19cb82001-01-18 01:02:55 +0000676
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000677 va = (arrayobject *)v;
678 wa = (arrayobject *)w;
Guido van Rossum9d19cb82001-01-18 01:02:55 +0000679
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000680 if (Py_SIZE(va) != Py_SIZE(wa) && (op == Py_EQ || op == Py_NE)) {
681 /* Shortcut: if the lengths differ, the arrays differ */
682 if (op == Py_EQ)
683 res = Py_False;
684 else
685 res = Py_True;
686 Py_INCREF(res);
687 return res;
688 }
Guido van Rossum9d19cb82001-01-18 01:02:55 +0000689
Adrian Wielgosik7c17e232017-08-17 12:46:06 +0000690 if (va->ob_descr == wa->ob_descr && va->ob_descr->compareitems != NULL) {
691 /* Fast path:
692 arrays with same types can have their buffers compared directly */
693 Py_ssize_t common_length = Py_MIN(Py_SIZE(va), Py_SIZE(wa));
694 int result = va->ob_descr->compareitems(va->ob_item, wa->ob_item,
695 common_length);
696 if (result == 0)
697 goto compare_sizes;
698
699 int cmp;
700 switch (op) {
701 case Py_LT: cmp = result < 0; break;
702 case Py_LE: cmp = result <= 0; break;
703 case Py_EQ: cmp = result == 0; break;
704 case Py_NE: cmp = result != 0; break;
705 case Py_GT: cmp = result > 0; break;
706 case Py_GE: cmp = result >= 0; break;
707 default: return NULL; /* cannot happen */
708 }
709 PyObject *res = cmp ? Py_True : Py_False;
710 Py_INCREF(res);
711 return res;
712 }
713
714
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000715 /* Search for the first index where items are different */
716 k = 1;
717 for (i = 0; i < Py_SIZE(va) && i < Py_SIZE(wa); i++) {
718 vi = getarrayitem(v, i);
719 wi = getarrayitem(w, i);
720 if (vi == NULL || wi == NULL) {
721 Py_XDECREF(vi);
722 Py_XDECREF(wi);
723 return NULL;
724 }
725 k = PyObject_RichCompareBool(vi, wi, Py_EQ);
726 if (k == 0)
727 break; /* Keeping vi and wi alive! */
728 Py_DECREF(vi);
729 Py_DECREF(wi);
730 if (k < 0)
731 return NULL;
732 }
Guido van Rossum9d19cb82001-01-18 01:02:55 +0000733
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000734 if (k) {
735 /* No more items to compare -- compare sizes */
Adrian Wielgosik7c17e232017-08-17 12:46:06 +0000736 compare_sizes: ;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000737 Py_ssize_t vs = Py_SIZE(va);
738 Py_ssize_t ws = Py_SIZE(wa);
739 int cmp;
740 switch (op) {
741 case Py_LT: cmp = vs < ws; break;
742 case Py_LE: cmp = vs <= ws; break;
Adrian Wielgosik7c17e232017-08-17 12:46:06 +0000743 /* If the lengths were not equal,
744 the earlier fast-path check would have caught that. */
745 case Py_EQ: assert(vs == ws); cmp = 1; break;
746 case Py_NE: assert(vs == ws); cmp = 0; break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000747 case Py_GT: cmp = vs > ws; break;
748 case Py_GE: cmp = vs >= ws; break;
749 default: return NULL; /* cannot happen */
750 }
751 if (cmp)
752 res = Py_True;
753 else
754 res = Py_False;
755 Py_INCREF(res);
756 return res;
757 }
Guido van Rossum9d19cb82001-01-18 01:02:55 +0000758
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000759 /* We have an item that differs. First, shortcuts for EQ/NE */
760 if (op == Py_EQ) {
761 Py_INCREF(Py_False);
762 res = Py_False;
763 }
764 else if (op == Py_NE) {
765 Py_INCREF(Py_True);
766 res = Py_True;
767 }
768 else {
769 /* Compare the final item again using the proper operator */
770 res = PyObject_RichCompare(vi, wi, op);
771 }
772 Py_DECREF(vi);
773 Py_DECREF(wi);
774 return res;
Guido van Rossum778983b1993-02-19 15:55:02 +0000775}
776
Martin v. Löwis18e16552006-02-15 17:27:45 +0000777static Py_ssize_t
Peter Schneider-Kamp9656abd2000-07-13 21:10:57 +0000778array_length(arrayobject *a)
Guido van Rossum778983b1993-02-19 15:55:02 +0000779{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000780 return Py_SIZE(a);
Guido van Rossum778983b1993-02-19 15:55:02 +0000781}
782
Roger E. Masse2919eaa1996-12-09 20:10:36 +0000783static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000784array_item(arrayobject *a, Py_ssize_t i)
Guido van Rossum778983b1993-02-19 15:55:02 +0000785{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000786 if (i < 0 || i >= Py_SIZE(a)) {
787 PyErr_SetString(PyExc_IndexError, "array index out of range");
788 return NULL;
789 }
790 return getarrayitem((PyObject *)a, i);
Guido van Rossum778983b1993-02-19 15:55:02 +0000791}
792
Roger E. Masse2919eaa1996-12-09 20:10:36 +0000793static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000794array_slice(arrayobject *a, Py_ssize_t ilow, Py_ssize_t ihigh)
Guido van Rossum778983b1993-02-19 15:55:02 +0000795{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000796 arrayobject *np;
797 if (ilow < 0)
798 ilow = 0;
799 else if (ilow > Py_SIZE(a))
800 ilow = Py_SIZE(a);
801 if (ihigh < 0)
802 ihigh = 0;
803 if (ihigh < ilow)
804 ihigh = ilow;
805 else if (ihigh > Py_SIZE(a))
806 ihigh = Py_SIZE(a);
807 np = (arrayobject *) newarrayobject(&Arraytype, ihigh - ilow, a->ob_descr);
808 if (np == NULL)
809 return NULL;
Martin Panterbe8da9c2016-09-07 11:04:41 +0000810 if (ihigh > ilow) {
811 memcpy(np->ob_item, a->ob_item + ilow * a->ob_descr->itemsize,
812 (ihigh-ilow) * a->ob_descr->itemsize);
813 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000814 return (PyObject *)np;
Guido van Rossum778983b1993-02-19 15:55:02 +0000815}
816
Brett Cannon1eb32c22014-10-10 16:26:45 -0400817
818/*[clinic input]
819array.array.__copy__
820
821Return a copy of the array.
822[clinic start generated code]*/
823
Roger E. Masse2919eaa1996-12-09 20:10:36 +0000824static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -0400825array_array___copy___impl(arrayobject *self)
826/*[clinic end generated code: output=dec7c3f925d9619e input=ad1ee5b086965f09]*/
Raymond Hettinger3aa82c02004-03-13 18:18:51 +0000827{
Brett Cannon1eb32c22014-10-10 16:26:45 -0400828 return array_slice(self, 0, Py_SIZE(self));
Raymond Hettinger3aa82c02004-03-13 18:18:51 +0000829}
830
Brett Cannon1eb32c22014-10-10 16:26:45 -0400831/*[clinic input]
832array.array.__deepcopy__
833
834 unused: object
835 /
836
837Return a copy of the array.
838[clinic start generated code]*/
839
840static PyObject *
841array_array___deepcopy__(arrayobject *self, PyObject *unused)
842/*[clinic end generated code: output=1ec748d8e14a9faa input=2405ecb4933748c4]*/
843{
844 return array_array___copy___impl(self);
845}
Raymond Hettinger3aa82c02004-03-13 18:18:51 +0000846
847static PyObject *
Peter Schneider-Kamp9656abd2000-07-13 21:10:57 +0000848array_concat(arrayobject *a, PyObject *bb)
Guido van Rossum778983b1993-02-19 15:55:02 +0000849{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000850 Py_ssize_t size;
851 arrayobject *np;
852 if (!array_Check(bb)) {
853 PyErr_Format(PyExc_TypeError,
854 "can only append array (not \"%.200s\") to array",
855 Py_TYPE(bb)->tp_name);
856 return NULL;
857 }
Guido van Rossum778983b1993-02-19 15:55:02 +0000858#define b ((arrayobject *)bb)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000859 if (a->ob_descr != b->ob_descr) {
860 PyErr_BadArgument();
861 return NULL;
862 }
863 if (Py_SIZE(a) > PY_SSIZE_T_MAX - Py_SIZE(b)) {
864 return PyErr_NoMemory();
865 }
866 size = Py_SIZE(a) + Py_SIZE(b);
867 np = (arrayobject *) newarrayobject(&Arraytype, size, a->ob_descr);
868 if (np == NULL) {
869 return NULL;
870 }
Martin Panterbe8da9c2016-09-07 11:04:41 +0000871 if (Py_SIZE(a) > 0) {
872 memcpy(np->ob_item, a->ob_item, Py_SIZE(a)*a->ob_descr->itemsize);
873 }
874 if (Py_SIZE(b) > 0) {
875 memcpy(np->ob_item + Py_SIZE(a)*a->ob_descr->itemsize,
876 b->ob_item, Py_SIZE(b)*b->ob_descr->itemsize);
877 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000878 return (PyObject *)np;
Guido van Rossum778983b1993-02-19 15:55:02 +0000879#undef b
880}
881
Roger E. Masse2919eaa1996-12-09 20:10:36 +0000882static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000883array_repeat(arrayobject *a, Py_ssize_t n)
Guido van Rossum778983b1993-02-19 15:55:02 +0000884{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000885 Py_ssize_t size;
886 arrayobject *np;
Georg Brandlc29cc6a2010-12-04 11:02:04 +0000887 Py_ssize_t oldbytes, newbytes;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000888 if (n < 0)
889 n = 0;
890 if ((Py_SIZE(a) != 0) && (n > PY_SSIZE_T_MAX / Py_SIZE(a))) {
891 return PyErr_NoMemory();
892 }
893 size = Py_SIZE(a) * n;
894 np = (arrayobject *) newarrayobject(&Arraytype, size, a->ob_descr);
895 if (np == NULL)
896 return NULL;
Martin Panterbe8da9c2016-09-07 11:04:41 +0000897 if (size == 0)
Georg Brandlc29cc6a2010-12-04 11:02:04 +0000898 return (PyObject *)np;
899 oldbytes = Py_SIZE(a) * a->ob_descr->itemsize;
900 newbytes = oldbytes * n;
901 /* this follows the code in unicode_repeat */
902 if (oldbytes == 1) {
903 memset(np->ob_item, a->ob_item[0], newbytes);
904 } else {
905 Py_ssize_t done = oldbytes;
Christian Heimesf051e432016-09-13 20:22:02 +0200906 memcpy(np->ob_item, a->ob_item, oldbytes);
Georg Brandlc29cc6a2010-12-04 11:02:04 +0000907 while (done < newbytes) {
908 Py_ssize_t ncopy = (done <= newbytes-done) ? done : newbytes-done;
Christian Heimesf051e432016-09-13 20:22:02 +0200909 memcpy(np->ob_item+done, np->ob_item, ncopy);
Georg Brandlc29cc6a2010-12-04 11:02:04 +0000910 done += ncopy;
911 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000912 }
Georg Brandlc29cc6a2010-12-04 11:02:04 +0000913 return (PyObject *)np;
Guido van Rossum778983b1993-02-19 15:55:02 +0000914}
915
916static int
Martin Panter996d72b2016-07-25 02:21:14 +0000917array_del_slice(arrayobject *a, Py_ssize_t ilow, Py_ssize_t ihigh)
Guido van Rossum778983b1993-02-19 15:55:02 +0000918{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000919 char *item;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000920 Py_ssize_t d; /* Change in size */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000921 if (ilow < 0)
922 ilow = 0;
923 else if (ilow > Py_SIZE(a))
924 ilow = Py_SIZE(a);
925 if (ihigh < 0)
926 ihigh = 0;
927 if (ihigh < ilow)
928 ihigh = ilow;
929 else if (ihigh > Py_SIZE(a))
930 ihigh = Py_SIZE(a);
931 item = a->ob_item;
Martin Panter996d72b2016-07-25 02:21:14 +0000932 d = ihigh-ilow;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000933 /* Issue #4509: If the array has exported buffers and the slice
934 assignment would change the size of the array, fail early to make
935 sure we don't modify it. */
936 if (d != 0 && a->ob_exports > 0) {
937 PyErr_SetString(PyExc_BufferError,
938 "cannot resize an array that is exporting buffers");
939 return -1;
940 }
Martin Panter996d72b2016-07-25 02:21:14 +0000941 if (d > 0) { /* Delete d items */
942 memmove(item + (ihigh-d)*a->ob_descr->itemsize,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000943 item + ihigh*a->ob_descr->itemsize,
944 (Py_SIZE(a)-ihigh)*a->ob_descr->itemsize);
Martin Panter996d72b2016-07-25 02:21:14 +0000945 if (array_resize(a, Py_SIZE(a) - d) == -1)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000946 return -1;
947 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000948 return 0;
Guido van Rossum778983b1993-02-19 15:55:02 +0000949}
950
951static int
Martin v. Löwis18e16552006-02-15 17:27:45 +0000952array_ass_item(arrayobject *a, Py_ssize_t i, PyObject *v)
Guido van Rossum778983b1993-02-19 15:55:02 +0000953{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000954 if (i < 0 || i >= Py_SIZE(a)) {
955 PyErr_SetString(PyExc_IndexError,
956 "array assignment index out of range");
957 return -1;
958 }
959 if (v == NULL)
Martin Panter996d72b2016-07-25 02:21:14 +0000960 return array_del_slice(a, i, i+1);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000961 return (*a->ob_descr->setitem)(a, i, v);
Guido van Rossum778983b1993-02-19 15:55:02 +0000962}
963
964static int
Martin v. Löwis18e16552006-02-15 17:27:45 +0000965setarrayitem(PyObject *a, Py_ssize_t i, PyObject *v)
Guido van Rossum778983b1993-02-19 15:55:02 +0000966{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000967 assert(array_Check(a));
968 return array_ass_item((arrayobject *)a, i, v);
Guido van Rossum778983b1993-02-19 15:55:02 +0000969}
970
Martin v. Löwis99866332002-03-01 10:27:01 +0000971static int
Raymond Hettinger49f9bd12004-03-14 05:43:59 +0000972array_iter_extend(arrayobject *self, PyObject *bb)
973{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000974 PyObject *it, *v;
Raymond Hettinger49f9bd12004-03-14 05:43:59 +0000975
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000976 it = PyObject_GetIter(bb);
977 if (it == NULL)
978 return -1;
Raymond Hettinger49f9bd12004-03-14 05:43:59 +0000979
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000980 while ((v = PyIter_Next(it)) != NULL) {
Mark Dickinson346f0af2010-08-06 09:36:57 +0000981 if (ins1(self, Py_SIZE(self), v) != 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000982 Py_DECREF(v);
983 Py_DECREF(it);
984 return -1;
985 }
986 Py_DECREF(v);
987 }
988 Py_DECREF(it);
989 if (PyErr_Occurred())
990 return -1;
991 return 0;
Raymond Hettinger49f9bd12004-03-14 05:43:59 +0000992}
993
994static int
Martin v. Löwis99866332002-03-01 10:27:01 +0000995array_do_extend(arrayobject *self, PyObject *bb)
996{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000997 Py_ssize_t size, oldsize, bbsize;
Martin v. Löwis99866332002-03-01 10:27:01 +0000998
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000999 if (!array_Check(bb))
1000 return array_iter_extend(self, bb);
1001#define b ((arrayobject *)bb)
1002 if (self->ob_descr != b->ob_descr) {
1003 PyErr_SetString(PyExc_TypeError,
1004 "can only extend with array of same kind");
1005 return -1;
1006 }
1007 if ((Py_SIZE(self) > PY_SSIZE_T_MAX - Py_SIZE(b)) ||
1008 ((Py_SIZE(self) + Py_SIZE(b)) > PY_SSIZE_T_MAX / self->ob_descr->itemsize)) {
1009 PyErr_NoMemory();
1010 return -1;
1011 }
1012 oldsize = Py_SIZE(self);
1013 /* Get the size of bb before resizing the array since bb could be self. */
1014 bbsize = Py_SIZE(bb);
1015 size = oldsize + Py_SIZE(b);
1016 if (array_resize(self, size) == -1)
1017 return -1;
Martin Panterbe8da9c2016-09-07 11:04:41 +00001018 if (bbsize > 0) {
1019 memcpy(self->ob_item + oldsize * self->ob_descr->itemsize,
1020 b->ob_item, bbsize * b->ob_descr->itemsize);
1021 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001022
1023 return 0;
Martin v. Löwis99866332002-03-01 10:27:01 +00001024#undef b
1025}
1026
1027static PyObject *
1028array_inplace_concat(arrayobject *self, PyObject *bb)
1029{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001030 if (!array_Check(bb)) {
1031 PyErr_Format(PyExc_TypeError,
1032 "can only extend array with array (not \"%.200s\")",
1033 Py_TYPE(bb)->tp_name);
1034 return NULL;
1035 }
1036 if (array_do_extend(self, bb) == -1)
1037 return NULL;
1038 Py_INCREF(self);
1039 return (PyObject *)self;
Martin v. Löwis99866332002-03-01 10:27:01 +00001040}
1041
1042static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +00001043array_inplace_repeat(arrayobject *self, Py_ssize_t n)
Martin v. Löwis99866332002-03-01 10:27:01 +00001044{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001045 char *items, *p;
1046 Py_ssize_t size, i;
Martin v. Löwis99866332002-03-01 10:27:01 +00001047
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001048 if (Py_SIZE(self) > 0) {
1049 if (n < 0)
1050 n = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001051 if ((self->ob_descr->itemsize != 0) &&
1052 (Py_SIZE(self) > PY_SSIZE_T_MAX / self->ob_descr->itemsize)) {
1053 return PyErr_NoMemory();
1054 }
1055 size = Py_SIZE(self) * self->ob_descr->itemsize;
1056 if (n > 0 && size > PY_SSIZE_T_MAX / n) {
1057 return PyErr_NoMemory();
1058 }
1059 if (array_resize(self, n * Py_SIZE(self)) == -1)
1060 return NULL;
1061 items = p = self->ob_item;
1062 for (i = 1; i < n; i++) {
1063 p += size;
1064 memcpy(p, items, size);
1065 }
1066 }
1067 Py_INCREF(self);
1068 return (PyObject *)self;
Martin v. Löwis99866332002-03-01 10:27:01 +00001069}
1070
1071
Roger E. Masse2919eaa1996-12-09 20:10:36 +00001072static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +00001073ins(arrayobject *self, Py_ssize_t where, PyObject *v)
Guido van Rossum778983b1993-02-19 15:55:02 +00001074{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001075 if (ins1(self, where, v) != 0)
1076 return NULL;
Serhiy Storchaka228b12e2017-01-23 09:47:21 +02001077 Py_RETURN_NONE;
Guido van Rossum778983b1993-02-19 15:55:02 +00001078}
1079
Brett Cannon1eb32c22014-10-10 16:26:45 -04001080/*[clinic input]
1081array.array.count
1082
1083 v: object
1084 /
1085
1086Return number of occurrences of v in the array.
1087[clinic start generated code]*/
1088
Roger E. Masse2919eaa1996-12-09 20:10:36 +00001089static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001090array_array_count(arrayobject *self, PyObject *v)
1091/*[clinic end generated code: output=3dd3624bf7135a3a input=d9bce9d65e39d1f5]*/
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00001092{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001093 Py_ssize_t count = 0;
1094 Py_ssize_t i;
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00001095
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001096 for (i = 0; i < Py_SIZE(self); i++) {
Victor Stinner0b142e22013-07-17 23:01:30 +02001097 PyObject *selfi;
1098 int cmp;
1099
1100 selfi = getarrayitem((PyObject *)self, i);
1101 if (selfi == NULL)
1102 return NULL;
1103 cmp = PyObject_RichCompareBool(selfi, v, Py_EQ);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001104 Py_DECREF(selfi);
1105 if (cmp > 0)
1106 count++;
1107 else if (cmp < 0)
1108 return NULL;
1109 }
1110 return PyLong_FromSsize_t(count);
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00001111}
1112
Brett Cannon1eb32c22014-10-10 16:26:45 -04001113
1114/*[clinic input]
1115array.array.index
1116
1117 v: object
1118 /
1119
1120Return index of first occurrence of v in the array.
1121[clinic start generated code]*/
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00001122
1123static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001124array_array_index(arrayobject *self, PyObject *v)
1125/*[clinic end generated code: output=d48498d325602167 input=cf619898c6649d08]*/
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00001126{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001127 Py_ssize_t i;
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00001128
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001129 for (i = 0; i < Py_SIZE(self); i++) {
Victor Stinner0b142e22013-07-17 23:01:30 +02001130 PyObject *selfi;
1131 int cmp;
1132
1133 selfi = getarrayitem((PyObject *)self, i);
1134 if (selfi == NULL)
1135 return NULL;
1136 cmp = PyObject_RichCompareBool(selfi, v, Py_EQ);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001137 Py_DECREF(selfi);
1138 if (cmp > 0) {
1139 return PyLong_FromLong((long)i);
1140 }
1141 else if (cmp < 0)
1142 return NULL;
1143 }
Jim Fasarakis-Hilliarda4095ef2017-05-29 20:43:39 +03001144 PyErr_SetString(PyExc_ValueError, "array.index(x): x not in array");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001145 return NULL;
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00001146}
1147
Raymond Hettinger625812f2003-01-07 01:58:52 +00001148static int
1149array_contains(arrayobject *self, PyObject *v)
1150{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001151 Py_ssize_t i;
1152 int cmp;
Raymond Hettinger625812f2003-01-07 01:58:52 +00001153
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001154 for (i = 0, cmp = 0 ; cmp == 0 && i < Py_SIZE(self); i++) {
1155 PyObject *selfi = getarrayitem((PyObject *)self, i);
Victor Stinner0b142e22013-07-17 23:01:30 +02001156 if (selfi == NULL)
Victor Stinner4755bea2013-07-18 01:12:35 +02001157 return -1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001158 cmp = PyObject_RichCompareBool(selfi, v, Py_EQ);
1159 Py_DECREF(selfi);
1160 }
1161 return cmp;
Raymond Hettinger625812f2003-01-07 01:58:52 +00001162}
1163
Brett Cannon1eb32c22014-10-10 16:26:45 -04001164/*[clinic input]
1165array.array.remove
1166
1167 v: object
1168 /
1169
1170Remove the first occurrence of v in the array.
1171[clinic start generated code]*/
1172
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00001173static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001174array_array_remove(arrayobject *self, PyObject *v)
1175/*[clinic end generated code: output=bef06be9fdf9dceb input=0b1e5aed25590027]*/
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00001176{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001177 int i;
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00001178
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001179 for (i = 0; i < Py_SIZE(self); i++) {
Victor Stinner0b142e22013-07-17 23:01:30 +02001180 PyObject *selfi;
1181 int cmp;
1182
1183 selfi = getarrayitem((PyObject *)self,i);
1184 if (selfi == NULL)
1185 return NULL;
1186 cmp = PyObject_RichCompareBool(selfi, v, Py_EQ);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001187 Py_DECREF(selfi);
1188 if (cmp > 0) {
Martin Panter996d72b2016-07-25 02:21:14 +00001189 if (array_del_slice(self, i, i+1) != 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001190 return NULL;
Serhiy Storchaka228b12e2017-01-23 09:47:21 +02001191 Py_RETURN_NONE;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001192 }
1193 else if (cmp < 0)
1194 return NULL;
1195 }
Jim Fasarakis-Hilliarda4095ef2017-05-29 20:43:39 +03001196 PyErr_SetString(PyExc_ValueError, "array.remove(x): x not in array");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001197 return NULL;
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00001198}
1199
Brett Cannon1eb32c22014-10-10 16:26:45 -04001200/*[clinic input]
1201array.array.pop
1202
1203 i: Py_ssize_t = -1
1204 /
1205
1206Return the i-th element and delete it from the array.
1207
1208i defaults to -1.
1209[clinic start generated code]*/
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00001210
1211static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001212array_array_pop_impl(arrayobject *self, Py_ssize_t i)
1213/*[clinic end generated code: output=bc1f0c54fe5308e4 input=8e5feb4c1a11cd44]*/
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00001214{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001215 PyObject *v;
Brett Cannon1eb32c22014-10-10 16:26:45 -04001216
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001217 if (Py_SIZE(self) == 0) {
1218 /* Special-case most common failure cause */
1219 PyErr_SetString(PyExc_IndexError, "pop from empty array");
1220 return NULL;
1221 }
1222 if (i < 0)
1223 i += Py_SIZE(self);
1224 if (i < 0 || i >= Py_SIZE(self)) {
1225 PyErr_SetString(PyExc_IndexError, "pop index out of range");
1226 return NULL;
1227 }
Victor Stinner0b142e22013-07-17 23:01:30 +02001228 v = getarrayitem((PyObject *)self, i);
1229 if (v == NULL)
1230 return NULL;
Martin Panter996d72b2016-07-25 02:21:14 +00001231 if (array_del_slice(self, i, i+1) != 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001232 Py_DECREF(v);
1233 return NULL;
1234 }
1235 return v;
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00001236}
1237
Brett Cannon1eb32c22014-10-10 16:26:45 -04001238/*[clinic input]
1239array.array.extend
1240
1241 bb: object
1242 /
1243
1244Append items to the end of the array.
1245[clinic start generated code]*/
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00001246
1247static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001248array_array_extend(arrayobject *self, PyObject *bb)
1249/*[clinic end generated code: output=bbddbc8e8bef871d input=43be86aba5c31e44]*/
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00001250{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001251 if (array_do_extend(self, bb) == -1)
1252 return NULL;
Serhiy Storchaka228b12e2017-01-23 09:47:21 +02001253 Py_RETURN_NONE;
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00001254}
1255
Brett Cannon1eb32c22014-10-10 16:26:45 -04001256/*[clinic input]
1257array.array.insert
1258
1259 i: Py_ssize_t
1260 v: object
1261 /
1262
1263Insert a new item v into the array before position i.
1264[clinic start generated code]*/
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00001265
1266static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001267array_array_insert_impl(arrayobject *self, Py_ssize_t i, PyObject *v)
1268/*[clinic end generated code: output=5a3648e278348564 input=5577d1b4383e9313]*/
Guido van Rossum778983b1993-02-19 15:55:02 +00001269{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001270 return ins(self, i, v);
Guido van Rossum778983b1993-02-19 15:55:02 +00001271}
1272
Brett Cannon1eb32c22014-10-10 16:26:45 -04001273/*[clinic input]
1274array.array.buffer_info
Guido van Rossumb39b90d1998-10-13 14:27:22 +00001275
Brett Cannon1eb32c22014-10-10 16:26:45 -04001276Return a tuple (address, length) giving the current memory address and the length in items of the buffer used to hold array's contents.
1277
1278The length should be multiplied by the itemsize attribute to calculate
1279the buffer length in bytes.
1280[clinic start generated code]*/
Guido van Rossumb39b90d1998-10-13 14:27:22 +00001281
Roger E. Masse2919eaa1996-12-09 20:10:36 +00001282static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001283array_array_buffer_info_impl(arrayobject *self)
1284/*[clinic end generated code: output=9b2a4ec3ae7e98e7 input=a58bae5c6e1ac6a6]*/
Guido van Rossumde4a4ca1997-08-12 14:55:56 +00001285{
Victor Stinner541067a2013-11-14 01:27:12 +01001286 PyObject *retval = NULL, *v;
1287
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001288 retval = PyTuple_New(2);
1289 if (!retval)
1290 return NULL;
Fred Drake541dc3b2000-06-28 17:49:30 +00001291
Victor Stinner541067a2013-11-14 01:27:12 +01001292 v = PyLong_FromVoidPtr(self->ob_item);
1293 if (v == NULL) {
1294 Py_DECREF(retval);
1295 return NULL;
1296 }
1297 PyTuple_SET_ITEM(retval, 0, v);
1298
Serhiy Storchaka9e941d62016-06-23 23:55:34 +03001299 v = PyLong_FromSsize_t(Py_SIZE(self));
Victor Stinner541067a2013-11-14 01:27:12 +01001300 if (v == NULL) {
1301 Py_DECREF(retval);
1302 return NULL;
1303 }
1304 PyTuple_SET_ITEM(retval, 1, v);
Fred Drake541dc3b2000-06-28 17:49:30 +00001305
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001306 return retval;
Guido van Rossumde4a4ca1997-08-12 14:55:56 +00001307}
1308
Brett Cannon1eb32c22014-10-10 16:26:45 -04001309/*[clinic input]
1310array.array.append
Guido van Rossumb39b90d1998-10-13 14:27:22 +00001311
Brett Cannon1eb32c22014-10-10 16:26:45 -04001312 v: object
1313 /
1314
1315Append new value v to the end of the array.
1316[clinic start generated code]*/
Guido van Rossumb39b90d1998-10-13 14:27:22 +00001317
Guido van Rossumde4a4ca1997-08-12 14:55:56 +00001318static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001319array_array_append(arrayobject *self, PyObject *v)
1320/*[clinic end generated code: output=745a0669bf8db0e2 input=0b98d9d78e78f0fa]*/
Guido van Rossum778983b1993-02-19 15:55:02 +00001321{
Mark Dickinson346f0af2010-08-06 09:36:57 +00001322 return ins(self, Py_SIZE(self), v);
Guido van Rossum778983b1993-02-19 15:55:02 +00001323}
1324
Brett Cannon1eb32c22014-10-10 16:26:45 -04001325/*[clinic input]
1326array.array.byteswap
Guido van Rossumb39b90d1998-10-13 14:27:22 +00001327
Brett Cannon1eb32c22014-10-10 16:26:45 -04001328Byteswap all items of the array.
1329
1330If the items in the array are not 1, 2, 4, or 8 bytes in size, RuntimeError is
1331raised.
1332[clinic start generated code]*/
Guido van Rossumb39b90d1998-10-13 14:27:22 +00001333
Roger E. Masse2919eaa1996-12-09 20:10:36 +00001334static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001335array_array_byteswap_impl(arrayobject *self)
1336/*[clinic end generated code: output=5f8236cbdf0d90b5 input=6a85591b950a0186]*/
Guido van Rossum778983b1993-02-19 15:55:02 +00001337{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001338 char *p;
1339 Py_ssize_t i;
Fred Drakebf272981999-12-03 17:15:30 +00001340
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001341 switch (self->ob_descr->itemsize) {
1342 case 1:
1343 break;
1344 case 2:
1345 for (p = self->ob_item, i = Py_SIZE(self); --i >= 0; p += 2) {
1346 char p0 = p[0];
1347 p[0] = p[1];
1348 p[1] = p0;
1349 }
1350 break;
1351 case 4:
1352 for (p = self->ob_item, i = Py_SIZE(self); --i >= 0; p += 4) {
1353 char p0 = p[0];
1354 char p1 = p[1];
1355 p[0] = p[3];
1356 p[1] = p[2];
1357 p[2] = p1;
1358 p[3] = p0;
1359 }
1360 break;
1361 case 8:
1362 for (p = self->ob_item, i = Py_SIZE(self); --i >= 0; p += 8) {
1363 char p0 = p[0];
1364 char p1 = p[1];
1365 char p2 = p[2];
1366 char p3 = p[3];
1367 p[0] = p[7];
1368 p[1] = p[6];
1369 p[2] = p[5];
1370 p[3] = p[4];
1371 p[4] = p3;
1372 p[5] = p2;
1373 p[6] = p1;
1374 p[7] = p0;
1375 }
1376 break;
1377 default:
1378 PyErr_SetString(PyExc_RuntimeError,
1379 "don't know how to byteswap this array type");
1380 return NULL;
1381 }
Serhiy Storchaka228b12e2017-01-23 09:47:21 +02001382 Py_RETURN_NONE;
Guido van Rossum778983b1993-02-19 15:55:02 +00001383}
1384
Brett Cannon1eb32c22014-10-10 16:26:45 -04001385/*[clinic input]
1386array.array.reverse
1387
1388Reverse the order of the items in the array.
1389[clinic start generated code]*/
Guido van Rossumb39b90d1998-10-13 14:27:22 +00001390
Roger E. Masse2919eaa1996-12-09 20:10:36 +00001391static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001392array_array_reverse_impl(arrayobject *self)
1393/*[clinic end generated code: output=c04868b36f6f4089 input=cd904f01b27d966a]*/
Guido van Rossum778983b1993-02-19 15:55:02 +00001394{
Antoine Pitrou9ed5f272013-08-13 20:18:52 +02001395 Py_ssize_t itemsize = self->ob_descr->itemsize;
1396 char *p, *q;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001397 /* little buffer to hold items while swapping */
1398 char tmp[256]; /* 8 is probably enough -- but why skimp */
1399 assert((size_t)itemsize <= sizeof(tmp));
Guido van Rossume77a7571993-11-03 15:01:26 +00001400
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001401 if (Py_SIZE(self) > 1) {
1402 for (p = self->ob_item,
1403 q = self->ob_item + (Py_SIZE(self) - 1)*itemsize;
1404 p < q;
1405 p += itemsize, q -= itemsize) {
1406 /* memory areas guaranteed disjoint, so memcpy
1407 * is safe (& memmove may be slower).
1408 */
1409 memcpy(tmp, p, itemsize);
1410 memcpy(p, q, itemsize);
1411 memcpy(q, tmp, itemsize);
1412 }
1413 }
Tim Petersbb307342000-09-10 05:22:54 +00001414
Serhiy Storchaka228b12e2017-01-23 09:47:21 +02001415 Py_RETURN_NONE;
Guido van Rossum778983b1993-02-19 15:55:02 +00001416}
Guido van Rossume77a7571993-11-03 15:01:26 +00001417
Brett Cannon1eb32c22014-10-10 16:26:45 -04001418/*[clinic input]
1419array.array.fromfile
Guido van Rossumb39b90d1998-10-13 14:27:22 +00001420
Brett Cannon1eb32c22014-10-10 16:26:45 -04001421 f: object
1422 n: Py_ssize_t
1423 /
Guido van Rossum2c94aa52007-05-24 19:02:32 +00001424
Brett Cannon1eb32c22014-10-10 16:26:45 -04001425Read n objects from the file object f and append them to the end of the array.
1426[clinic start generated code]*/
Guido van Rossum2c94aa52007-05-24 19:02:32 +00001427
Roger E. Masse2919eaa1996-12-09 20:10:36 +00001428static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001429array_array_fromfile_impl(arrayobject *self, PyObject *f, Py_ssize_t n)
1430/*[clinic end generated code: output=ec9f600e10f53510 input=e188afe8e58adf40]*/
Guido van Rossum778983b1993-02-19 15:55:02 +00001431{
Serhiy Storchaka04e6dba2015-04-04 17:06:55 +03001432 PyObject *b, *res;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001433 Py_ssize_t itemsize = self->ob_descr->itemsize;
Brett Cannon1eb32c22014-10-10 16:26:45 -04001434 Py_ssize_t nbytes;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +02001435 _Py_IDENTIFIER(read);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001436 int not_enough_bytes;
Guido van Rossum2c94aa52007-05-24 19:02:32 +00001437
Mark Dickinsonc04ddff2012-10-06 18:04:49 +01001438 if (n < 0) {
1439 PyErr_SetString(PyExc_ValueError, "negative count");
1440 return NULL;
1441 }
1442 if (n > PY_SSIZE_T_MAX / itemsize) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001443 PyErr_NoMemory();
1444 return NULL;
1445 }
Mark Dickinsonc04ddff2012-10-06 18:04:49 +01001446 nbytes = n * itemsize;
Guido van Rossum2c94aa52007-05-24 19:02:32 +00001447
Martin v. Löwisafe55bb2011-10-09 10:38:36 +02001448 b = _PyObject_CallMethodId(f, &PyId_read, "n", nbytes);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001449 if (b == NULL)
1450 return NULL;
Guido van Rossum2c94aa52007-05-24 19:02:32 +00001451
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001452 if (!PyBytes_Check(b)) {
1453 PyErr_SetString(PyExc_TypeError,
1454 "read() didn't return bytes");
1455 Py_DECREF(b);
1456 return NULL;
1457 }
Guido van Rossum2c94aa52007-05-24 19:02:32 +00001458
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001459 not_enough_bytes = (PyBytes_GET_SIZE(b) != nbytes);
Guido van Rossum2c94aa52007-05-24 19:02:32 +00001460
Serhiy Storchaka04e6dba2015-04-04 17:06:55 +03001461 res = array_array_frombytes(self, b);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001462 Py_DECREF(b);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001463 if (res == NULL)
1464 return NULL;
Hirokazu Yamamoto54d0df62009-03-06 03:04:07 +00001465
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001466 if (not_enough_bytes) {
1467 PyErr_SetString(PyExc_EOFError,
1468 "read() didn't return enough bytes");
1469 Py_DECREF(res);
1470 return NULL;
1471 }
Guido van Rossum2c94aa52007-05-24 19:02:32 +00001472
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001473 return res;
Guido van Rossum778983b1993-02-19 15:55:02 +00001474}
1475
Brett Cannon1eb32c22014-10-10 16:26:45 -04001476/*[clinic input]
1477array.array.tofile
Guido van Rossumb39b90d1998-10-13 14:27:22 +00001478
Brett Cannon1eb32c22014-10-10 16:26:45 -04001479 f: object
1480 /
1481
1482Write all items (as machine values) to the file object f.
1483[clinic start generated code]*/
Guido van Rossumb39b90d1998-10-13 14:27:22 +00001484
Roger E. Masse2919eaa1996-12-09 20:10:36 +00001485static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001486array_array_tofile(arrayobject *self, PyObject *f)
1487/*[clinic end generated code: output=3a2cfa8128df0777 input=b0669a484aab0831]*/
Guido van Rossum778983b1993-02-19 15:55:02 +00001488{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001489 Py_ssize_t nbytes = Py_SIZE(self) * self->ob_descr->itemsize;
1490 /* Write 64K blocks at a time */
1491 /* XXX Make the block size settable */
1492 int BLOCKSIZE = 64*1024;
1493 Py_ssize_t nblocks = (nbytes + BLOCKSIZE - 1) / BLOCKSIZE;
1494 Py_ssize_t i;
Raymond Hettinger36cd2bf2003-01-03 08:24:58 +00001495
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001496 if (Py_SIZE(self) == 0)
1497 goto done;
Guido van Rossumb5ddcfd2007-04-11 17:08:28 +00001498
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001499 for (i = 0; i < nblocks; i++) {
1500 char* ptr = self->ob_item + i*BLOCKSIZE;
1501 Py_ssize_t size = BLOCKSIZE;
1502 PyObject *bytes, *res;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +02001503 _Py_IDENTIFIER(write);
Martin v. Löwisafe55bb2011-10-09 10:38:36 +02001504
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001505 if (i*BLOCKSIZE + size > nbytes)
1506 size = nbytes - i*BLOCKSIZE;
1507 bytes = PyBytes_FromStringAndSize(ptr, size);
1508 if (bytes == NULL)
1509 return NULL;
Victor Stinner55ba38a2016-12-09 16:09:30 +01001510 res = _PyObject_CallMethodIdObjArgs(f, &PyId_write, bytes, NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001511 Py_DECREF(bytes);
1512 if (res == NULL)
1513 return NULL;
1514 Py_DECREF(res); /* drop write result */
1515 }
Guido van Rossumb5ddcfd2007-04-11 17:08:28 +00001516
1517 done:
Serhiy Storchaka228b12e2017-01-23 09:47:21 +02001518 Py_RETURN_NONE;
Guido van Rossum778983b1993-02-19 15:55:02 +00001519}
1520
Brett Cannon1eb32c22014-10-10 16:26:45 -04001521/*[clinic input]
1522array.array.fromlist
Guido van Rossumb39b90d1998-10-13 14:27:22 +00001523
Brett Cannon1eb32c22014-10-10 16:26:45 -04001524 list: object
1525 /
1526
1527Append items to array from list.
1528[clinic start generated code]*/
Guido van Rossumb39b90d1998-10-13 14:27:22 +00001529
Roger E. Masse2919eaa1996-12-09 20:10:36 +00001530static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001531array_array_fromlist(arrayobject *self, PyObject *list)
1532/*[clinic end generated code: output=26411c2d228a3e3f input=be2605a96c49680f]*/
Guido van Rossum778983b1993-02-19 15:55:02 +00001533{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001534 Py_ssize_t n;
Raymond Hettinger36cd2bf2003-01-03 08:24:58 +00001535
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001536 if (!PyList_Check(list)) {
1537 PyErr_SetString(PyExc_TypeError, "arg must be list");
1538 return NULL;
1539 }
1540 n = PyList_Size(list);
1541 if (n > 0) {
1542 Py_ssize_t i, old_size;
1543 old_size = Py_SIZE(self);
1544 if (array_resize(self, old_size + n) == -1)
1545 return NULL;
1546 for (i = 0; i < n; i++) {
1547 PyObject *v = PyList_GetItem(list, i);
1548 if ((*self->ob_descr->setitem)(self,
1549 Py_SIZE(self) - n + i, v) != 0) {
1550 array_resize(self, old_size);
1551 return NULL;
1552 }
1553 }
1554 }
Serhiy Storchaka228b12e2017-01-23 09:47:21 +02001555 Py_RETURN_NONE;
Guido van Rossum778983b1993-02-19 15:55:02 +00001556}
1557
Brett Cannon1eb32c22014-10-10 16:26:45 -04001558/*[clinic input]
1559array.array.tolist
1560
1561Convert array to an ordinary list with the same items.
1562[clinic start generated code]*/
Guido van Rossumb39b90d1998-10-13 14:27:22 +00001563
Roger E. Masse2919eaa1996-12-09 20:10:36 +00001564static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001565array_array_tolist_impl(arrayobject *self)
1566/*[clinic end generated code: output=00b60cc9eab8ef89 input=a8d7784a94f86b53]*/
Guido van Rossum778983b1993-02-19 15:55:02 +00001567{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001568 PyObject *list = PyList_New(Py_SIZE(self));
1569 Py_ssize_t i;
Raymond Hettinger36cd2bf2003-01-03 08:24:58 +00001570
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001571 if (list == NULL)
1572 return NULL;
1573 for (i = 0; i < Py_SIZE(self); i++) {
1574 PyObject *v = getarrayitem((PyObject *)self, i);
Victor Stinner4755bea2013-07-18 01:12:35 +02001575 if (v == NULL)
1576 goto error;
1577 if (PyList_SetItem(list, i, v) < 0)
1578 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001579 }
1580 return list;
Victor Stinner4755bea2013-07-18 01:12:35 +02001581
1582error:
1583 Py_DECREF(list);
1584 return NULL;
Guido van Rossum778983b1993-02-19 15:55:02 +00001585}
1586
Roger E. Masse2919eaa1996-12-09 20:10:36 +00001587static PyObject *
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001588frombytes(arrayobject *self, Py_buffer *buffer)
Guido van Rossum778983b1993-02-19 15:55:02 +00001589{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001590 int itemsize = self->ob_descr->itemsize;
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001591 Py_ssize_t n;
1592 if (buffer->itemsize != 1) {
1593 PyBuffer_Release(buffer);
Serhiy Storchakab757c832014-12-05 22:25:22 +02001594 PyErr_SetString(PyExc_TypeError, "a bytes-like object is required");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001595 return NULL;
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001596 }
1597 n = buffer->len;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001598 if (n % itemsize != 0) {
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001599 PyBuffer_Release(buffer);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001600 PyErr_SetString(PyExc_ValueError,
Serhiy Storchakab757c832014-12-05 22:25:22 +02001601 "bytes length not a multiple of item size");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001602 return NULL;
1603 }
1604 n = n / itemsize;
1605 if (n > 0) {
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001606 Py_ssize_t old_size = Py_SIZE(self);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001607 if ((n > PY_SSIZE_T_MAX - old_size) ||
1608 ((old_size + n) > PY_SSIZE_T_MAX / itemsize)) {
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001609 PyBuffer_Release(buffer);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001610 return PyErr_NoMemory();
1611 }
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001612 if (array_resize(self, old_size + n) == -1) {
1613 PyBuffer_Release(buffer);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001614 return NULL;
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001615 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001616 memcpy(self->ob_item + old_size * itemsize,
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001617 buffer->buf, n * itemsize);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001618 }
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001619 PyBuffer_Release(buffer);
Serhiy Storchaka228b12e2017-01-23 09:47:21 +02001620 Py_RETURN_NONE;
Guido van Rossum778983b1993-02-19 15:55:02 +00001621}
1622
Brett Cannon1eb32c22014-10-10 16:26:45 -04001623/*[clinic input]
1624array.array.fromstring
1625
Larry Hastingsdbfdc382015-05-04 06:59:46 -07001626 buffer: Py_buffer(accept={str, buffer})
Brett Cannon1eb32c22014-10-10 16:26:45 -04001627 /
1628
1629Appends items from the string, interpreting it as an array of machine values, as if it had been read from a file using the fromfile() method).
1630
1631This method is deprecated. Use frombytes instead.
1632[clinic start generated code]*/
1633
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001634static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001635array_array_fromstring_impl(arrayobject *self, Py_buffer *buffer)
Larry Hastingsdbfdc382015-05-04 06:59:46 -07001636/*[clinic end generated code: output=31c4baa779df84ce input=a3341a512e11d773]*/
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001637{
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001638 if (PyErr_WarnEx(PyExc_DeprecationWarning,
1639 "fromstring() is deprecated. Use frombytes() instead.", 2) != 0)
1640 return NULL;
Brett Cannon1eb32c22014-10-10 16:26:45 -04001641 return frombytes(self, buffer);
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001642}
1643
Brett Cannon1eb32c22014-10-10 16:26:45 -04001644/*[clinic input]
1645array.array.frombytes
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001646
Brett Cannon1eb32c22014-10-10 16:26:45 -04001647 buffer: Py_buffer
1648 /
1649
1650Appends items from the string, interpreting it as an array of machine values, as if it had been read from a file using the fromfile() method).
1651[clinic start generated code]*/
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001652
1653static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001654array_array_frombytes_impl(arrayobject *self, Py_buffer *buffer)
1655/*[clinic end generated code: output=d9842c8f7510a516 input=2bbf2b53ebfcc988]*/
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001656{
Brett Cannon1eb32c22014-10-10 16:26:45 -04001657 return frombytes(self, buffer);
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001658}
1659
Brett Cannon1eb32c22014-10-10 16:26:45 -04001660/*[clinic input]
1661array.array.tobytes
Guido van Rossumb39b90d1998-10-13 14:27:22 +00001662
Brett Cannon1eb32c22014-10-10 16:26:45 -04001663Convert the array to an array of machine values and return the bytes representation.
1664[clinic start generated code]*/
Guido van Rossumb39b90d1998-10-13 14:27:22 +00001665
Roger E. Masse2919eaa1996-12-09 20:10:36 +00001666static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001667array_array_tobytes_impl(arrayobject *self)
1668/*[clinic end generated code: output=87318e4edcdc2bb6 input=90ee495f96de34f5]*/
Guido van Rossum778983b1993-02-19 15:55:02 +00001669{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001670 if (Py_SIZE(self) <= PY_SSIZE_T_MAX / self->ob_descr->itemsize) {
1671 return PyBytes_FromStringAndSize(self->ob_item,
1672 Py_SIZE(self) * self->ob_descr->itemsize);
1673 } else {
1674 return PyErr_NoMemory();
1675 }
Guido van Rossum778983b1993-02-19 15:55:02 +00001676}
1677
Brett Cannon1eb32c22014-10-10 16:26:45 -04001678/*[clinic input]
1679array.array.tostring
Guido van Rossumb39b90d1998-10-13 14:27:22 +00001680
Brett Cannon1eb32c22014-10-10 16:26:45 -04001681Convert the array to an array of machine values and return the bytes representation.
1682
1683This method is deprecated. Use tobytes instead.
1684[clinic start generated code]*/
Martin v. Löwis99866332002-03-01 10:27:01 +00001685
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001686static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001687array_array_tostring_impl(arrayobject *self)
1688/*[clinic end generated code: output=7d6bd92745a2c8f3 input=b6c0ddee7b30457e]*/
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001689{
Victor Stinner9f0b51e2010-11-09 09:38:30 +00001690 if (PyErr_WarnEx(PyExc_DeprecationWarning,
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001691 "tostring() is deprecated. Use tobytes() instead.", 2) != 0)
1692 return NULL;
Brett Cannon1eb32c22014-10-10 16:26:45 -04001693 return array_array_tobytes_impl(self);
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001694}
1695
Brett Cannon1eb32c22014-10-10 16:26:45 -04001696/*[clinic input]
1697array.array.fromunicode
Antoine Pitrou1ce3eb52010-09-01 20:29:34 +00001698
Larry Hastings38337d12015-05-07 23:30:09 -07001699 ustr: Py_UNICODE(zeroes=True)
Brett Cannon1eb32c22014-10-10 16:26:45 -04001700 /
1701
1702Extends this array with data from the unicode string ustr.
1703
1704The array must be a unicode type array; otherwise a ValueError is raised.
1705Use array.frombytes(ustr.encode(...)) to append Unicode data to an array of
1706some other type.
1707[clinic start generated code]*/
Martin v. Löwis99866332002-03-01 10:27:01 +00001708
Martin v. Löwis99866332002-03-01 10:27:01 +00001709static PyObject *
Larry Hastings89964c42015-04-14 18:07:59 -04001710array_array_fromunicode_impl(arrayobject *self, Py_UNICODE *ustr,
1711 Py_ssize_clean_t ustr_length)
Larry Hastings38337d12015-05-07 23:30:09 -07001712/*[clinic end generated code: output=ebb72fc16975e06d input=150f00566ffbca6e]*/
Martin v. Löwis99866332002-03-01 10:27:01 +00001713{
Victor Stinner62bb3942012-08-06 00:46:05 +02001714 char typecode;
Martin v. Löwis99866332002-03-01 10:27:01 +00001715
Victor Stinner62bb3942012-08-06 00:46:05 +02001716 typecode = self->ob_descr->typecode;
Gregory P. Smith9504b132012-12-10 20:20:20 -08001717 if (typecode != 'u') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001718 PyErr_SetString(PyExc_ValueError,
1719 "fromunicode() may only be called on "
1720 "unicode type arrays");
1721 return NULL;
1722 }
Brett Cannon1eb32c22014-10-10 16:26:45 -04001723 if (ustr_length > 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001724 Py_ssize_t old_size = Py_SIZE(self);
Brett Cannon1eb32c22014-10-10 16:26:45 -04001725 if (array_resize(self, old_size + ustr_length) == -1)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001726 return NULL;
Victor Stinner62bb3942012-08-06 00:46:05 +02001727 memcpy(self->ob_item + old_size * sizeof(Py_UNICODE),
Brett Cannon1eb32c22014-10-10 16:26:45 -04001728 ustr, ustr_length * sizeof(Py_UNICODE));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001729 }
Martin v. Löwis99866332002-03-01 10:27:01 +00001730
Brett Cannon1eb32c22014-10-10 16:26:45 -04001731 Py_RETURN_NONE;
Martin v. Löwis99866332002-03-01 10:27:01 +00001732}
1733
Brett Cannon1eb32c22014-10-10 16:26:45 -04001734/*[clinic input]
1735array.array.tounicode
Martin v. Löwis99866332002-03-01 10:27:01 +00001736
Brett Cannon1eb32c22014-10-10 16:26:45 -04001737Extends this array with data from the unicode string ustr.
1738
1739Convert the array to a unicode string. The array must be a unicode type array;
1740otherwise a ValueError is raised. Use array.tobytes().decode() to obtain a
1741unicode string from an array of some other type.
1742[clinic start generated code]*/
Martin v. Löwis99866332002-03-01 10:27:01 +00001743
1744static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001745array_array_tounicode_impl(arrayobject *self)
1746/*[clinic end generated code: output=08e442378336e1ef input=127242eebe70b66d]*/
Martin v. Löwis99866332002-03-01 10:27:01 +00001747{
Victor Stinner62bb3942012-08-06 00:46:05 +02001748 char typecode;
1749 typecode = self->ob_descr->typecode;
Gregory P. Smith9504b132012-12-10 20:20:20 -08001750 if (typecode != 'u') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001751 PyErr_SetString(PyExc_ValueError,
1752 "tounicode() may only be called on unicode type arrays");
1753 return NULL;
1754 }
Serhiy Storchaka460bd0d2016-11-20 12:16:46 +02001755 return PyUnicode_FromWideChar((Py_UNICODE *) self->ob_item, Py_SIZE(self));
Martin v. Löwis99866332002-03-01 10:27:01 +00001756}
1757
Brett Cannon1eb32c22014-10-10 16:26:45 -04001758/*[clinic input]
1759array.array.__sizeof__
Martin v. Löwis99866332002-03-01 10:27:01 +00001760
Brett Cannon1eb32c22014-10-10 16:26:45 -04001761Size of the array in memory, in bytes.
1762[clinic start generated code]*/
Martin v. Löwis99866332002-03-01 10:27:01 +00001763
Meador Inge03b4d502012-08-10 22:35:45 -05001764static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04001765array_array___sizeof___impl(arrayobject *self)
1766/*[clinic end generated code: output=d8e1c61ebbe3eaed input=805586565bf2b3c6]*/
Meador Inge03b4d502012-08-10 22:35:45 -05001767{
1768 Py_ssize_t res;
Serhiy Storchaka5c4064e2015-12-19 20:05:25 +02001769 res = _PyObject_SIZE(Py_TYPE(self)) + self->allocated * self->ob_descr->itemsize;
Meador Inge03b4d502012-08-10 22:35:45 -05001770 return PyLong_FromSsize_t(res);
1771}
1772
Martin v. Löwis99866332002-03-01 10:27:01 +00001773
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001774/*********************** Pickling support ************************/
1775
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001776static const struct mformatdescr {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001777 size_t size;
1778 int is_signed;
1779 int is_big_endian;
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001780} mformat_descriptors[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001781 {1, 0, 0}, /* 0: UNSIGNED_INT8 */
1782 {1, 1, 0}, /* 1: SIGNED_INT8 */
1783 {2, 0, 0}, /* 2: UNSIGNED_INT16_LE */
1784 {2, 0, 1}, /* 3: UNSIGNED_INT16_BE */
1785 {2, 1, 0}, /* 4: SIGNED_INT16_LE */
1786 {2, 1, 1}, /* 5: SIGNED_INT16_BE */
1787 {4, 0, 0}, /* 6: UNSIGNED_INT32_LE */
1788 {4, 0, 1}, /* 7: UNSIGNED_INT32_BE */
1789 {4, 1, 0}, /* 8: SIGNED_INT32_LE */
1790 {4, 1, 1}, /* 9: SIGNED_INT32_BE */
1791 {8, 0, 0}, /* 10: UNSIGNED_INT64_LE */
1792 {8, 0, 1}, /* 11: UNSIGNED_INT64_BE */
1793 {8, 1, 0}, /* 12: SIGNED_INT64_LE */
1794 {8, 1, 1}, /* 13: SIGNED_INT64_BE */
1795 {4, 0, 0}, /* 14: IEEE_754_FLOAT_LE */
1796 {4, 0, 1}, /* 15: IEEE_754_FLOAT_BE */
1797 {8, 0, 0}, /* 16: IEEE_754_DOUBLE_LE */
1798 {8, 0, 1}, /* 17: IEEE_754_DOUBLE_BE */
1799 {4, 0, 0}, /* 18: UTF16_LE */
1800 {4, 0, 1}, /* 19: UTF16_BE */
1801 {8, 0, 0}, /* 20: UTF32_LE */
1802 {8, 0, 1} /* 21: UTF32_BE */
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001803};
1804
1805
1806/*
1807 * Internal: This function is used to find the machine format of a given
1808 * array type code. This returns UNKNOWN_FORMAT when the machine format cannot
1809 * be found.
1810 */
1811static enum machine_format_code
Victor Stinnerf8bb7d02011-09-30 00:03:59 +02001812typecode_to_mformat_code(char typecode)
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001813{
Christian Heimes743e0cd2012-10-17 23:52:17 +02001814 const int is_big_endian = PY_BIG_ENDIAN;
1815
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001816 size_t intsize;
1817 int is_signed;
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001818
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001819 switch (typecode) {
1820 case 'b':
1821 return SIGNED_INT8;
1822 case 'B':
1823 return UNSIGNED_INT8;
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001824
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001825 case 'u':
Victor Stinner62bb3942012-08-06 00:46:05 +02001826 if (sizeof(Py_UNICODE) == 2) {
1827 return UTF16_LE + is_big_endian;
1828 }
1829 if (sizeof(Py_UNICODE) == 4) {
1830 return UTF32_LE + is_big_endian;
1831 }
1832 return UNKNOWN_FORMAT;
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001833
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001834 case 'f':
1835 if (sizeof(float) == 4) {
1836 const float y = 16711938.0;
1837 if (memcmp(&y, "\x4b\x7f\x01\x02", 4) == 0)
1838 return IEEE_754_FLOAT_BE;
1839 if (memcmp(&y, "\x02\x01\x7f\x4b", 4) == 0)
1840 return IEEE_754_FLOAT_LE;
1841 }
1842 return UNKNOWN_FORMAT;
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001843
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001844 case 'd':
1845 if (sizeof(double) == 8) {
1846 const double x = 9006104071832581.0;
1847 if (memcmp(&x, "\x43\x3f\xff\x01\x02\x03\x04\x05", 8) == 0)
1848 return IEEE_754_DOUBLE_BE;
1849 if (memcmp(&x, "\x05\x04\x03\x02\x01\xff\x3f\x43", 8) == 0)
1850 return IEEE_754_DOUBLE_LE;
1851 }
1852 return UNKNOWN_FORMAT;
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001853
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001854 /* Integers */
1855 case 'h':
1856 intsize = sizeof(short);
1857 is_signed = 1;
1858 break;
1859 case 'H':
1860 intsize = sizeof(short);
1861 is_signed = 0;
1862 break;
1863 case 'i':
1864 intsize = sizeof(int);
1865 is_signed = 1;
1866 break;
1867 case 'I':
1868 intsize = sizeof(int);
1869 is_signed = 0;
1870 break;
1871 case 'l':
1872 intsize = sizeof(long);
1873 is_signed = 1;
1874 break;
1875 case 'L':
1876 intsize = sizeof(long);
1877 is_signed = 0;
1878 break;
Meador Inge1c9f0c92011-09-20 19:55:51 -05001879 case 'q':
Benjamin Petersonaf580df2016-09-06 10:46:49 -07001880 intsize = sizeof(long long);
Meador Inge1c9f0c92011-09-20 19:55:51 -05001881 is_signed = 1;
1882 break;
1883 case 'Q':
Benjamin Petersonaf580df2016-09-06 10:46:49 -07001884 intsize = sizeof(long long);
Meador Inge1c9f0c92011-09-20 19:55:51 -05001885 is_signed = 0;
1886 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001887 default:
1888 return UNKNOWN_FORMAT;
1889 }
1890 switch (intsize) {
1891 case 2:
1892 return UNSIGNED_INT16_LE + is_big_endian + (2 * is_signed);
1893 case 4:
1894 return UNSIGNED_INT32_LE + is_big_endian + (2 * is_signed);
1895 case 8:
1896 return UNSIGNED_INT64_LE + is_big_endian + (2 * is_signed);
1897 default:
1898 return UNKNOWN_FORMAT;
1899 }
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001900}
1901
1902/* Forward declaration. */
1903static PyObject *array_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
1904
1905/*
1906 * Internal: This function wraps the array constructor--i.e., array_new()--to
1907 * allow the creation of array objects from C code without having to deal
1908 * directly the tuple argument of array_new(). The typecode argument is a
1909 * Unicode character value, like 'i' or 'f' for example, representing an array
1910 * type code. The items argument is a bytes or a list object from which
1911 * contains the initial value of the array.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001912 *
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001913 * On success, this functions returns the array object created. Otherwise,
1914 * NULL is returned to indicate a failure.
1915 */
1916static PyObject *
Victor Stinnerf8bb7d02011-09-30 00:03:59 +02001917make_array(PyTypeObject *arraytype, char typecode, PyObject *items)
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001918{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001919 PyObject *new_args;
1920 PyObject *array_obj;
1921 PyObject *typecode_obj;
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001922
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001923 assert(arraytype != NULL);
1924 assert(items != NULL);
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001925
Victor Stinnerf8bb7d02011-09-30 00:03:59 +02001926 typecode_obj = PyUnicode_FromOrdinal(typecode);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001927 if (typecode_obj == NULL)
1928 return NULL;
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001929
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001930 new_args = PyTuple_New(2);
Mat M56935a52017-11-14 01:00:54 -05001931 if (new_args == NULL) {
1932 Py_DECREF(typecode_obj);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001933 return NULL;
Mat M56935a52017-11-14 01:00:54 -05001934 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001935 Py_INCREF(items);
1936 PyTuple_SET_ITEM(new_args, 0, typecode_obj);
1937 PyTuple_SET_ITEM(new_args, 1, items);
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001938
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001939 array_obj = array_new(arraytype, new_args, NULL);
1940 Py_DECREF(new_args);
1941 if (array_obj == NULL)
1942 return NULL;
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001943
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001944 return array_obj;
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001945}
1946
1947/*
1948 * This functions is a special constructor used when unpickling an array. It
1949 * provides a portable way to rebuild an array from its memory representation.
1950 */
Brett Cannon1eb32c22014-10-10 16:26:45 -04001951/*[clinic input]
1952array._array_reconstructor
1953
1954 arraytype: object(type="PyTypeObject *")
Larry Hastingsdbfdc382015-05-04 06:59:46 -07001955 typecode: int(accept={str})
Brett Cannon1eb32c22014-10-10 16:26:45 -04001956 mformat_code: int(type="enum machine_format_code")
1957 items: object
1958 /
1959
1960Internal. Used for pickling support.
1961[clinic start generated code]*/
1962
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001963static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001964array__array_reconstructor_impl(PyObject *module, PyTypeObject *arraytype,
Larry Hastings89964c42015-04-14 18:07:59 -04001965 int typecode,
1966 enum machine_format_code mformat_code,
1967 PyObject *items)
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001968/*[clinic end generated code: output=e05263141ba28365 input=2464dc8f4c7736b5]*/
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001969{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001970 PyObject *converted_items;
1971 PyObject *result;
Serhiy Storchaka2d06e842015-12-25 19:53:18 +02001972 const struct arraydescr *descr;
Alexandre Vassalottiad077152009-07-15 17:49:23 +00001973
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001974 if (!PyType_Check(arraytype)) {
1975 PyErr_Format(PyExc_TypeError,
Sylvaina90e64b2017-03-29 20:09:22 +02001976 "first argument must be a type object, not %.200s",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001977 Py_TYPE(arraytype)->tp_name);
1978 return NULL;
1979 }
1980 if (!PyType_IsSubtype(arraytype, &Arraytype)) {
1981 PyErr_Format(PyExc_TypeError,
1982 "%.200s is not a subtype of %.200s",
1983 arraytype->tp_name, Arraytype.tp_name);
1984 return NULL;
1985 }
1986 for (descr = descriptors; descr->typecode != '\0'; descr++) {
Victor Stinnerf8bb7d02011-09-30 00:03:59 +02001987 if ((int)descr->typecode == typecode)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001988 break;
1989 }
1990 if (descr->typecode == '\0') {
1991 PyErr_SetString(PyExc_ValueError,
1992 "second argument must be a valid type code");
1993 return NULL;
1994 }
Larry Hastingsdfbeb162014-10-13 10:39:41 +01001995 if (mformat_code < MACHINE_FORMAT_CODE_MIN ||
1996 mformat_code > MACHINE_FORMAT_CODE_MAX) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001997 PyErr_SetString(PyExc_ValueError,
1998 "third argument must be a valid machine format code.");
1999 return NULL;
2000 }
2001 if (!PyBytes_Check(items)) {
2002 PyErr_Format(PyExc_TypeError,
2003 "fourth argument should be bytes, not %.200s",
2004 Py_TYPE(items)->tp_name);
2005 return NULL;
2006 }
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002007
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002008 /* Fast path: No decoding has to be done. */
Larry Hastingsdfbeb162014-10-13 10:39:41 +01002009 if (mformat_code == typecode_to_mformat_code((char)typecode) ||
2010 mformat_code == UNKNOWN_FORMAT) {
Victor Stinnerf8bb7d02011-09-30 00:03:59 +02002011 return make_array(arraytype, (char)typecode, items);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002012 }
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002013
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002014 /* Slow path: Decode the byte string according to the given machine
2015 * format code. This occurs when the computer unpickling the array
2016 * object is architecturally different from the one that pickled the
2017 * array.
2018 */
Larry Hastingsdfbeb162014-10-13 10:39:41 +01002019 if (Py_SIZE(items) % mformat_descriptors[mformat_code].size != 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002020 PyErr_SetString(PyExc_ValueError,
2021 "string length not a multiple of item size");
2022 return NULL;
2023 }
Larry Hastingsdfbeb162014-10-13 10:39:41 +01002024 switch (mformat_code) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002025 case IEEE_754_FLOAT_LE:
2026 case IEEE_754_FLOAT_BE: {
2027 int i;
Larry Hastingsdfbeb162014-10-13 10:39:41 +01002028 int le = (mformat_code == IEEE_754_FLOAT_LE) ? 1 : 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002029 Py_ssize_t itemcount = Py_SIZE(items) / 4;
2030 const unsigned char *memstr =
2031 (unsigned char *)PyBytes_AS_STRING(items);
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002032
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002033 converted_items = PyList_New(itemcount);
2034 if (converted_items == NULL)
2035 return NULL;
2036 for (i = 0; i < itemcount; i++) {
2037 PyObject *pyfloat = PyFloat_FromDouble(
2038 _PyFloat_Unpack4(&memstr[i * 4], le));
2039 if (pyfloat == NULL) {
2040 Py_DECREF(converted_items);
2041 return NULL;
2042 }
2043 PyList_SET_ITEM(converted_items, i, pyfloat);
2044 }
2045 break;
2046 }
2047 case IEEE_754_DOUBLE_LE:
2048 case IEEE_754_DOUBLE_BE: {
2049 int i;
Larry Hastingsdfbeb162014-10-13 10:39:41 +01002050 int le = (mformat_code == IEEE_754_DOUBLE_LE) ? 1 : 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002051 Py_ssize_t itemcount = Py_SIZE(items) / 8;
2052 const unsigned char *memstr =
2053 (unsigned char *)PyBytes_AS_STRING(items);
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002054
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002055 converted_items = PyList_New(itemcount);
2056 if (converted_items == NULL)
2057 return NULL;
2058 for (i = 0; i < itemcount; i++) {
2059 PyObject *pyfloat = PyFloat_FromDouble(
2060 _PyFloat_Unpack8(&memstr[i * 8], le));
2061 if (pyfloat == NULL) {
2062 Py_DECREF(converted_items);
2063 return NULL;
2064 }
2065 PyList_SET_ITEM(converted_items, i, pyfloat);
2066 }
2067 break;
2068 }
2069 case UTF16_LE:
2070 case UTF16_BE: {
Larry Hastingsdfbeb162014-10-13 10:39:41 +01002071 int byteorder = (mformat_code == UTF16_LE) ? -1 : 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002072 converted_items = PyUnicode_DecodeUTF16(
2073 PyBytes_AS_STRING(items), Py_SIZE(items),
2074 "strict", &byteorder);
2075 if (converted_items == NULL)
2076 return NULL;
2077 break;
2078 }
2079 case UTF32_LE:
2080 case UTF32_BE: {
Larry Hastingsdfbeb162014-10-13 10:39:41 +01002081 int byteorder = (mformat_code == UTF32_LE) ? -1 : 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002082 converted_items = PyUnicode_DecodeUTF32(
2083 PyBytes_AS_STRING(items), Py_SIZE(items),
2084 "strict", &byteorder);
2085 if (converted_items == NULL)
2086 return NULL;
2087 break;
2088 }
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002089
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002090 case UNSIGNED_INT8:
2091 case SIGNED_INT8:
2092 case UNSIGNED_INT16_LE:
2093 case UNSIGNED_INT16_BE:
2094 case SIGNED_INT16_LE:
2095 case SIGNED_INT16_BE:
2096 case UNSIGNED_INT32_LE:
2097 case UNSIGNED_INT32_BE:
2098 case SIGNED_INT32_LE:
2099 case SIGNED_INT32_BE:
2100 case UNSIGNED_INT64_LE:
2101 case UNSIGNED_INT64_BE:
2102 case SIGNED_INT64_LE:
2103 case SIGNED_INT64_BE: {
2104 int i;
2105 const struct mformatdescr mf_descr =
Larry Hastingsdfbeb162014-10-13 10:39:41 +01002106 mformat_descriptors[mformat_code];
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002107 Py_ssize_t itemcount = Py_SIZE(items) / mf_descr.size;
2108 const unsigned char *memstr =
2109 (unsigned char *)PyBytes_AS_STRING(items);
Serhiy Storchaka2d06e842015-12-25 19:53:18 +02002110 const struct arraydescr *descr;
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002111
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002112 /* If possible, try to pack array's items using a data type
2113 * that fits better. This may result in an array with narrower
2114 * or wider elements.
2115 *
Martin Panter4c359642016-05-08 13:53:41 +00002116 * For example, if a 32-bit machine pickles an L-code array of
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002117 * unsigned longs, then the array will be unpickled by 64-bit
2118 * machine as an I-code array of unsigned ints.
2119 *
2120 * XXX: Is it possible to write a unit test for this?
2121 */
2122 for (descr = descriptors; descr->typecode != '\0'; descr++) {
2123 if (descr->is_integer_type &&
Victor Stinner706768c2014-08-16 01:03:39 +02002124 (size_t)descr->itemsize == mf_descr.size &&
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002125 descr->is_signed == mf_descr.is_signed)
2126 typecode = descr->typecode;
2127 }
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002128
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002129 converted_items = PyList_New(itemcount);
2130 if (converted_items == NULL)
2131 return NULL;
2132 for (i = 0; i < itemcount; i++) {
2133 PyObject *pylong;
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002134
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002135 pylong = _PyLong_FromByteArray(
2136 &memstr[i * mf_descr.size],
2137 mf_descr.size,
2138 !mf_descr.is_big_endian,
2139 mf_descr.is_signed);
2140 if (pylong == NULL) {
2141 Py_DECREF(converted_items);
2142 return NULL;
2143 }
2144 PyList_SET_ITEM(converted_items, i, pylong);
2145 }
2146 break;
2147 }
2148 case UNKNOWN_FORMAT:
2149 /* Impossible, but needed to shut up GCC about the unhandled
2150 * enumeration value.
2151 */
2152 default:
2153 PyErr_BadArgument();
2154 return NULL;
2155 }
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002156
Victor Stinnerf8bb7d02011-09-30 00:03:59 +02002157 result = make_array(arraytype, (char)typecode, converted_items);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002158 Py_DECREF(converted_items);
2159 return result;
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002160}
2161
Brett Cannon1eb32c22014-10-10 16:26:45 -04002162/*[clinic input]
2163array.array.__reduce_ex__
2164
2165 value: object
2166 /
2167
2168Return state information for pickling.
2169[clinic start generated code]*/
2170
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002171static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04002172array_array___reduce_ex__(arrayobject *self, PyObject *value)
2173/*[clinic end generated code: output=051e0a6175d0eddb input=c36c3f85de7df6cd]*/
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002174{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002175 PyObject *dict;
2176 PyObject *result;
2177 PyObject *array_str;
Brett Cannon1eb32c22014-10-10 16:26:45 -04002178 int typecode = self->ob_descr->typecode;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002179 int mformat_code;
2180 static PyObject *array_reconstructor = NULL;
2181 long protocol;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +02002182 _Py_IDENTIFIER(_array_reconstructor);
2183 _Py_IDENTIFIER(__dict__);
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002184
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002185 if (array_reconstructor == NULL) {
2186 PyObject *array_module = PyImport_ImportModule("array");
2187 if (array_module == NULL)
2188 return NULL;
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +02002189 array_reconstructor = _PyObject_GetAttrId(
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002190 array_module,
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +02002191 &PyId__array_reconstructor);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002192 Py_DECREF(array_module);
2193 if (array_reconstructor == NULL)
2194 return NULL;
2195 }
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002196
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002197 if (!PyLong_Check(value)) {
2198 PyErr_SetString(PyExc_TypeError,
Sylvaina90e64b2017-03-29 20:09:22 +02002199 "__reduce_ex__ argument should be an integer");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002200 return NULL;
2201 }
2202 protocol = PyLong_AsLong(value);
2203 if (protocol == -1 && PyErr_Occurred())
2204 return NULL;
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002205
Brett Cannon1eb32c22014-10-10 16:26:45 -04002206 dict = _PyObject_GetAttrId((PyObject *)self, &PyId___dict__);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002207 if (dict == NULL) {
2208 if (!PyErr_ExceptionMatches(PyExc_AttributeError))
2209 return NULL;
2210 PyErr_Clear();
2211 dict = Py_None;
2212 Py_INCREF(dict);
2213 }
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002214
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002215 mformat_code = typecode_to_mformat_code(typecode);
2216 if (mformat_code == UNKNOWN_FORMAT || protocol < 3) {
2217 /* Convert the array to a list if we got something weird
2218 * (e.g., non-IEEE floats), or we are pickling the array using
2219 * a Python 2.x compatible protocol.
2220 *
2221 * It is necessary to use a list representation for Python 2.x
2222 * compatible pickle protocol, since Python 2's str objects
2223 * are unpickled as unicode by Python 3. Thus it is impossible
2224 * to make arrays unpicklable by Python 3 by using their memory
2225 * representation, unless we resort to ugly hacks such as
2226 * coercing unicode objects to bytes in array_reconstructor.
2227 */
2228 PyObject *list;
Brett Cannon1eb32c22014-10-10 16:26:45 -04002229 list = array_array_tolist_impl(self);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002230 if (list == NULL) {
2231 Py_DECREF(dict);
2232 return NULL;
2233 }
2234 result = Py_BuildValue(
Brett Cannon1eb32c22014-10-10 16:26:45 -04002235 "O(CO)O", Py_TYPE(self), typecode, list, dict);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002236 Py_DECREF(list);
2237 Py_DECREF(dict);
2238 return result;
2239 }
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002240
Brett Cannon1eb32c22014-10-10 16:26:45 -04002241 array_str = array_array_tobytes_impl(self);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002242 if (array_str == NULL) {
2243 Py_DECREF(dict);
2244 return NULL;
2245 }
2246 result = Py_BuildValue(
Brett Cannon1eb32c22014-10-10 16:26:45 -04002247 "O(OCiN)O", array_reconstructor, Py_TYPE(self), typecode,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002248 mformat_code, array_str, dict);
2249 Py_DECREF(dict);
2250 return result;
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002251}
2252
Martin v. Löwis99866332002-03-01 10:27:01 +00002253static PyObject *
2254array_get_typecode(arrayobject *a, void *closure)
2255{
Victor Stinnerf8bb7d02011-09-30 00:03:59 +02002256 char typecode = a->ob_descr->typecode;
2257 return PyUnicode_FromOrdinal(typecode);
Martin v. Löwis99866332002-03-01 10:27:01 +00002258}
2259
2260static PyObject *
2261array_get_itemsize(arrayobject *a, void *closure)
2262{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002263 return PyLong_FromLong((long)a->ob_descr->itemsize);
Martin v. Löwis99866332002-03-01 10:27:01 +00002264}
2265
2266static PyGetSetDef array_getsets [] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002267 {"typecode", (getter) array_get_typecode, NULL,
2268 "the typecode character used to create the array"},
2269 {"itemsize", (getter) array_get_itemsize, NULL,
2270 "the size, in bytes, of one array item"},
2271 {NULL}
Martin v. Löwis99866332002-03-01 10:27:01 +00002272};
2273
Martin v. Löwis59683e82008-06-13 07:50:45 +00002274static PyMethodDef array_methods[] = {
Brett Cannon1eb32c22014-10-10 16:26:45 -04002275 ARRAY_ARRAY_APPEND_METHODDEF
2276 ARRAY_ARRAY_BUFFER_INFO_METHODDEF
2277 ARRAY_ARRAY_BYTESWAP_METHODDEF
2278 ARRAY_ARRAY___COPY___METHODDEF
2279 ARRAY_ARRAY_COUNT_METHODDEF
2280 ARRAY_ARRAY___DEEPCOPY___METHODDEF
2281 ARRAY_ARRAY_EXTEND_METHODDEF
2282 ARRAY_ARRAY_FROMFILE_METHODDEF
2283 ARRAY_ARRAY_FROMLIST_METHODDEF
2284 ARRAY_ARRAY_FROMSTRING_METHODDEF
2285 ARRAY_ARRAY_FROMBYTES_METHODDEF
2286 ARRAY_ARRAY_FROMUNICODE_METHODDEF
2287 ARRAY_ARRAY_INDEX_METHODDEF
2288 ARRAY_ARRAY_INSERT_METHODDEF
2289 ARRAY_ARRAY_POP_METHODDEF
2290 ARRAY_ARRAY___REDUCE_EX___METHODDEF
2291 ARRAY_ARRAY_REMOVE_METHODDEF
2292 ARRAY_ARRAY_REVERSE_METHODDEF
2293 ARRAY_ARRAY_TOFILE_METHODDEF
2294 ARRAY_ARRAY_TOLIST_METHODDEF
2295 ARRAY_ARRAY_TOSTRING_METHODDEF
2296 ARRAY_ARRAY_TOBYTES_METHODDEF
2297 ARRAY_ARRAY_TOUNICODE_METHODDEF
2298 ARRAY_ARRAY___SIZEOF___METHODDEF
2299 {NULL, NULL} /* sentinel */
Guido van Rossum778983b1993-02-19 15:55:02 +00002300};
2301
Roger E. Masse2919eaa1996-12-09 20:10:36 +00002302static PyObject *
Peter Schneider-Kamp9656abd2000-07-13 21:10:57 +00002303array_repr(arrayobject *a)
Guido van Rossum778983b1993-02-19 15:55:02 +00002304{
Victor Stinnerf8bb7d02011-09-30 00:03:59 +02002305 char typecode;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002306 PyObject *s, *v = NULL;
2307 Py_ssize_t len;
Martin v. Löwis99866332002-03-01 10:27:01 +00002308
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002309 len = Py_SIZE(a);
2310 typecode = a->ob_descr->typecode;
2311 if (len == 0) {
Serhiy Storchakab3a77962017-09-21 14:24:13 +03002312 return PyUnicode_FromFormat("%s('%c')",
2313 _PyType_Name(Py_TYPE(a)), (int)typecode);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002314 }
Gregory P. Smith9504b132012-12-10 20:20:20 -08002315 if (typecode == 'u') {
Brett Cannon1eb32c22014-10-10 16:26:45 -04002316 v = array_array_tounicode_impl(a);
Gregory P. Smith9504b132012-12-10 20:20:20 -08002317 } else {
Brett Cannon1eb32c22014-10-10 16:26:45 -04002318 v = array_array_tolist_impl(a);
Gregory P. Smith9504b132012-12-10 20:20:20 -08002319 }
Victor Stinner29ec5952013-02-26 00:27:38 +01002320 if (v == NULL)
2321 return NULL;
Raymond Hettinger88ba1e32003-04-23 17:27:00 +00002322
Serhiy Storchakab3a77962017-09-21 14:24:13 +03002323 s = PyUnicode_FromFormat("%s('%c', %R)",
2324 _PyType_Name(Py_TYPE(a)), (int)typecode, v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002325 Py_DECREF(v);
2326 return s;
Guido van Rossum778983b1993-02-19 15:55:02 +00002327}
2328
Michael W. Hudson9c14bad2002-06-19 15:44:15 +00002329static PyObject*
2330array_subscr(arrayobject* self, PyObject* item)
2331{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002332 if (PyIndex_Check(item)) {
2333 Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError);
2334 if (i==-1 && PyErr_Occurred()) {
2335 return NULL;
2336 }
2337 if (i < 0)
2338 i += Py_SIZE(self);
2339 return array_item(self, i);
2340 }
2341 else if (PySlice_Check(item)) {
2342 Py_ssize_t start, stop, step, slicelength, cur, i;
2343 PyObject* result;
2344 arrayobject* ar;
2345 int itemsize = self->ob_descr->itemsize;
Michael W. Hudson9c14bad2002-06-19 15:44:15 +00002346
Serhiy Storchakab879fe82017-04-08 09:53:51 +03002347 if (PySlice_Unpack(item, &start, &stop, &step) < 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002348 return NULL;
2349 }
Serhiy Storchakab879fe82017-04-08 09:53:51 +03002350 slicelength = PySlice_AdjustIndices(Py_SIZE(self), &start, &stop,
2351 step);
Michael W. Hudson9c14bad2002-06-19 15:44:15 +00002352
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002353 if (slicelength <= 0) {
2354 return newarrayobject(&Arraytype, 0, self->ob_descr);
2355 }
2356 else if (step == 1) {
2357 PyObject *result = newarrayobject(&Arraytype,
2358 slicelength, self->ob_descr);
2359 if (result == NULL)
2360 return NULL;
2361 memcpy(((arrayobject *)result)->ob_item,
2362 self->ob_item + start * itemsize,
2363 slicelength * itemsize);
2364 return result;
2365 }
2366 else {
2367 result = newarrayobject(&Arraytype, slicelength, self->ob_descr);
2368 if (!result) return NULL;
Michael W. Hudson9c14bad2002-06-19 15:44:15 +00002369
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002370 ar = (arrayobject*)result;
Michael W. Hudson9c14bad2002-06-19 15:44:15 +00002371
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002372 for (cur = start, i = 0; i < slicelength;
2373 cur += step, i++) {
2374 memcpy(ar->ob_item + i*itemsize,
2375 self->ob_item + cur*itemsize,
2376 itemsize);
2377 }
2378
2379 return result;
2380 }
2381 }
2382 else {
2383 PyErr_SetString(PyExc_TypeError,
2384 "array indices must be integers");
2385 return NULL;
2386 }
Michael W. Hudson9c14bad2002-06-19 15:44:15 +00002387}
2388
2389static int
2390array_ass_subscr(arrayobject* self, PyObject* item, PyObject* value)
2391{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002392 Py_ssize_t start, stop, step, slicelength, needed;
2393 arrayobject* other;
2394 int itemsize;
Thomas Woutersed03b412007-08-28 21:37:11 +00002395
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002396 if (PyIndex_Check(item)) {
2397 Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError);
Alexandre Vassalotti47137252009-07-05 19:57:00 +00002398
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002399 if (i == -1 && PyErr_Occurred())
2400 return -1;
2401 if (i < 0)
2402 i += Py_SIZE(self);
2403 if (i < 0 || i >= Py_SIZE(self)) {
2404 PyErr_SetString(PyExc_IndexError,
2405 "array assignment index out of range");
2406 return -1;
2407 }
2408 if (value == NULL) {
2409 /* Fall through to slice assignment */
2410 start = i;
2411 stop = i + 1;
2412 step = 1;
2413 slicelength = 1;
2414 }
2415 else
2416 return (*self->ob_descr->setitem)(self, i, value);
2417 }
2418 else if (PySlice_Check(item)) {
Serhiy Storchakab879fe82017-04-08 09:53:51 +03002419 if (PySlice_Unpack(item, &start, &stop, &step) < 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002420 return -1;
2421 }
Serhiy Storchakab879fe82017-04-08 09:53:51 +03002422 slicelength = PySlice_AdjustIndices(Py_SIZE(self), &start, &stop,
2423 step);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002424 }
2425 else {
2426 PyErr_SetString(PyExc_TypeError,
Sylvaina90e64b2017-03-29 20:09:22 +02002427 "array indices must be integers");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002428 return -1;
2429 }
2430 if (value == NULL) {
2431 other = NULL;
2432 needed = 0;
2433 }
2434 else if (array_Check(value)) {
2435 other = (arrayobject *)value;
2436 needed = Py_SIZE(other);
2437 if (self == other) {
2438 /* Special case "self[i:j] = self" -- copy self first */
2439 int ret;
2440 value = array_slice(other, 0, needed);
2441 if (value == NULL)
2442 return -1;
2443 ret = array_ass_subscr(self, item, value);
2444 Py_DECREF(value);
2445 return ret;
2446 }
2447 if (other->ob_descr != self->ob_descr) {
2448 PyErr_BadArgument();
2449 return -1;
2450 }
2451 }
2452 else {
2453 PyErr_Format(PyExc_TypeError,
2454 "can only assign array (not \"%.200s\") to array slice",
2455 Py_TYPE(value)->tp_name);
2456 return -1;
2457 }
2458 itemsize = self->ob_descr->itemsize;
2459 /* for 'a[2:1] = ...', the insertion point is 'start', not 'stop' */
2460 if ((step > 0 && stop < start) ||
2461 (step < 0 && stop > start))
2462 stop = start;
Alexandre Vassalotti47137252009-07-05 19:57:00 +00002463
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002464 /* Issue #4509: If the array has exported buffers and the slice
2465 assignment would change the size of the array, fail early to make
2466 sure we don't modify it. */
2467 if ((needed == 0 || slicelength != needed) && self->ob_exports > 0) {
2468 PyErr_SetString(PyExc_BufferError,
2469 "cannot resize an array that is exporting buffers");
2470 return -1;
2471 }
Mark Dickinsonbc099642010-01-29 17:27:24 +00002472
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002473 if (step == 1) {
2474 if (slicelength > needed) {
2475 memmove(self->ob_item + (start + needed) * itemsize,
2476 self->ob_item + stop * itemsize,
2477 (Py_SIZE(self) - stop) * itemsize);
2478 if (array_resize(self, Py_SIZE(self) +
2479 needed - slicelength) < 0)
2480 return -1;
2481 }
2482 else if (slicelength < needed) {
2483 if (array_resize(self, Py_SIZE(self) +
2484 needed - slicelength) < 0)
2485 return -1;
2486 memmove(self->ob_item + (start + needed) * itemsize,
2487 self->ob_item + stop * itemsize,
2488 (Py_SIZE(self) - start - needed) * itemsize);
2489 }
2490 if (needed > 0)
2491 memcpy(self->ob_item + start * itemsize,
2492 other->ob_item, needed * itemsize);
2493 return 0;
2494 }
2495 else if (needed == 0) {
2496 /* Delete slice */
2497 size_t cur;
2498 Py_ssize_t i;
Thomas Woutersed03b412007-08-28 21:37:11 +00002499
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002500 if (step < 0) {
2501 stop = start + 1;
2502 start = stop + step * (slicelength - 1) - 1;
2503 step = -step;
2504 }
2505 for (cur = start, i = 0; i < slicelength;
2506 cur += step, i++) {
2507 Py_ssize_t lim = step - 1;
Thomas Woutersed03b412007-08-28 21:37:11 +00002508
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002509 if (cur + step >= (size_t)Py_SIZE(self))
2510 lim = Py_SIZE(self) - cur - 1;
2511 memmove(self->ob_item + (cur - i) * itemsize,
2512 self->ob_item + (cur + 1) * itemsize,
2513 lim * itemsize);
2514 }
Mark Dickinsonc7d93b72011-09-25 15:34:32 +01002515 cur = start + (size_t)slicelength * step;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002516 if (cur < (size_t)Py_SIZE(self)) {
2517 memmove(self->ob_item + (cur-slicelength) * itemsize,
2518 self->ob_item + cur * itemsize,
2519 (Py_SIZE(self) - cur) * itemsize);
2520 }
2521 if (array_resize(self, Py_SIZE(self) - slicelength) < 0)
2522 return -1;
2523 return 0;
2524 }
2525 else {
2526 Py_ssize_t cur, i;
2527
2528 if (needed != slicelength) {
2529 PyErr_Format(PyExc_ValueError,
2530 "attempt to assign array of size %zd "
2531 "to extended slice of size %zd",
2532 needed, slicelength);
2533 return -1;
2534 }
2535 for (cur = start, i = 0; i < slicelength;
2536 cur += step, i++) {
2537 memcpy(self->ob_item + cur * itemsize,
2538 other->ob_item + i * itemsize,
2539 itemsize);
2540 }
2541 return 0;
2542 }
Michael W. Hudson9c14bad2002-06-19 15:44:15 +00002543}
2544
2545static PyMappingMethods array_as_mapping = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002546 (lenfunc)array_length,
2547 (binaryfunc)array_subscr,
2548 (objobjargproc)array_ass_subscr
Michael W. Hudson9c14bad2002-06-19 15:44:15 +00002549};
2550
Guido van Rossumd8faa362007-04-27 19:54:29 +00002551static const void *emptybuf = "";
2552
Travis E. Oliphantb99f7622007-08-18 11:21:56 +00002553
2554static int
Travis E. Oliphant8ae62b62007-09-23 02:00:13 +00002555array_buffer_getbuf(arrayobject *self, Py_buffer *view, int flags)
Guido van Rossumfdf95dd1997-05-05 22:15:02 +00002556{
Stefan Krah650c1e82015-02-03 21:43:23 +01002557 if (view == NULL) {
2558 PyErr_SetString(PyExc_BufferError,
2559 "array_buffer_getbuf: view==NULL argument is obsolete");
2560 return -1;
2561 }
Travis E. Oliphantb99f7622007-08-18 11:21:56 +00002562
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002563 view->buf = (void *)self->ob_item;
2564 view->obj = (PyObject*)self;
2565 Py_INCREF(self);
2566 if (view->buf == NULL)
2567 view->buf = (void *)emptybuf;
2568 view->len = (Py_SIZE(self)) * self->ob_descr->itemsize;
2569 view->readonly = 0;
2570 view->ndim = 1;
2571 view->itemsize = self->ob_descr->itemsize;
2572 view->suboffsets = NULL;
2573 view->shape = NULL;
2574 if ((flags & PyBUF_ND)==PyBUF_ND) {
2575 view->shape = &((Py_SIZE(self)));
2576 }
2577 view->strides = NULL;
2578 if ((flags & PyBUF_STRIDES)==PyBUF_STRIDES)
2579 view->strides = &(view->itemsize);
2580 view->format = NULL;
2581 view->internal = NULL;
Victor Stinner62bb3942012-08-06 00:46:05 +02002582 if ((flags & PyBUF_FORMAT) == PyBUF_FORMAT) {
Serhiy Storchaka2d06e842015-12-25 19:53:18 +02002583 view->format = (char *)self->ob_descr->formats;
Victor Stinner62bb3942012-08-06 00:46:05 +02002584#ifdef Py_UNICODE_WIDE
2585 if (self->ob_descr->typecode == 'u') {
2586 view->format = "w";
2587 }
2588#endif
2589 }
Travis E. Oliphantb99f7622007-08-18 11:21:56 +00002590
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002591 self->ob_exports++;
2592 return 0;
Guido van Rossumfdf95dd1997-05-05 22:15:02 +00002593}
2594
Travis E. Oliphantb99f7622007-08-18 11:21:56 +00002595static void
Travis E. Oliphant8ae62b62007-09-23 02:00:13 +00002596array_buffer_relbuf(arrayobject *self, Py_buffer *view)
Guido van Rossumfdf95dd1997-05-05 22:15:02 +00002597{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002598 self->ob_exports--;
Guido van Rossumfdf95dd1997-05-05 22:15:02 +00002599}
2600
Roger E. Masse2919eaa1996-12-09 20:10:36 +00002601static PySequenceMethods array_as_sequence = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002602 (lenfunc)array_length, /*sq_length*/
2603 (binaryfunc)array_concat, /*sq_concat*/
2604 (ssizeargfunc)array_repeat, /*sq_repeat*/
2605 (ssizeargfunc)array_item, /*sq_item*/
2606 0, /*sq_slice*/
2607 (ssizeobjargproc)array_ass_item, /*sq_ass_item*/
2608 0, /*sq_ass_slice*/
2609 (objobjproc)array_contains, /*sq_contains*/
2610 (binaryfunc)array_inplace_concat, /*sq_inplace_concat*/
2611 (ssizeargfunc)array_inplace_repeat /*sq_inplace_repeat*/
Guido van Rossum778983b1993-02-19 15:55:02 +00002612};
2613
Guido van Rossumfdf95dd1997-05-05 22:15:02 +00002614static PyBufferProcs array_as_buffer = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002615 (getbufferproc)array_buffer_getbuf,
2616 (releasebufferproc)array_buffer_relbuf
Guido van Rossumfdf95dd1997-05-05 22:15:02 +00002617};
2618
Roger E. Masse2919eaa1996-12-09 20:10:36 +00002619static PyObject *
Martin v. Löwis99866332002-03-01 10:27:01 +00002620array_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
Guido van Rossum778983b1993-02-19 15:55:02 +00002621{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002622 int c;
2623 PyObject *initial = NULL, *it = NULL;
Serhiy Storchaka2d06e842015-12-25 19:53:18 +02002624 const struct arraydescr *descr;
Martin v. Löwis99866332002-03-01 10:27:01 +00002625
Serhiy Storchaka6cca5c82017-06-08 14:41:19 +03002626 if (type == &Arraytype && !_PyArg_NoKeywords("array.array", kwds))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002627 return NULL;
Martin v. Löwis99866332002-03-01 10:27:01 +00002628
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002629 if (!PyArg_ParseTuple(args, "C|O:array", &c, &initial))
2630 return NULL;
Raymond Hettinger84fc9aa2003-04-24 10:41:55 +00002631
Alexandre Vassalotti9730e332013-11-29 20:47:15 -08002632 if (initial && c != 'u') {
2633 if (PyUnicode_Check(initial)) {
2634 PyErr_Format(PyExc_TypeError, "cannot use a str to initialize "
2635 "an array with typecode '%c'", c);
2636 return NULL;
2637 }
2638 else if (array_Check(initial) &&
2639 ((arrayobject*)initial)->ob_descr->typecode == 'u') {
2640 PyErr_Format(PyExc_TypeError, "cannot use a unicode array to "
2641 "initialize an array with typecode '%c'", c);
2642 return NULL;
2643 }
2644 }
2645
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002646 if (!(initial == NULL || PyList_Check(initial)
2647 || PyByteArray_Check(initial)
2648 || PyBytes_Check(initial)
2649 || PyTuple_Check(initial)
Alexander Belopolskyef4a03f2011-01-11 21:44:00 +00002650 || ((c=='u') && PyUnicode_Check(initial))
2651 || (array_Check(initial)
2652 && c == ((arrayobject*)initial)->ob_descr->typecode))) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002653 it = PyObject_GetIter(initial);
2654 if (it == NULL)
2655 return NULL;
2656 /* We set initial to NULL so that the subsequent code
2657 will create an empty array of the appropriate type
2658 and afterwards we can use array_iter_extend to populate
2659 the array.
2660 */
2661 initial = NULL;
2662 }
2663 for (descr = descriptors; descr->typecode != '\0'; descr++) {
2664 if (descr->typecode == c) {
2665 PyObject *a;
2666 Py_ssize_t len;
Martin v. Löwis99866332002-03-01 10:27:01 +00002667
Alexander Belopolskyef4a03f2011-01-11 21:44:00 +00002668 if (initial == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002669 len = 0;
Alexander Belopolskyef4a03f2011-01-11 21:44:00 +00002670 else if (PyList_Check(initial))
2671 len = PyList_GET_SIZE(initial);
2672 else if (PyTuple_Check(initial) || array_Check(initial))
2673 len = Py_SIZE(initial);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002674 else
Alexander Belopolskyef4a03f2011-01-11 21:44:00 +00002675 len = 0;
Martin v. Löwis99866332002-03-01 10:27:01 +00002676
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002677 a = newarrayobject(type, len, descr);
2678 if (a == NULL)
2679 return NULL;
2680
Alexander Belopolskyef4a03f2011-01-11 21:44:00 +00002681 if (len > 0 && !array_Check(initial)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002682 Py_ssize_t i;
2683 for (i = 0; i < len; i++) {
2684 PyObject *v =
2685 PySequence_GetItem(initial, i);
2686 if (v == NULL) {
2687 Py_DECREF(a);
2688 return NULL;
2689 }
2690 if (setarrayitem(a, i, v) != 0) {
2691 Py_DECREF(v);
2692 Py_DECREF(a);
2693 return NULL;
2694 }
2695 Py_DECREF(v);
2696 }
2697 }
2698 else if (initial != NULL && (PyByteArray_Check(initial) ||
2699 PyBytes_Check(initial))) {
Serhiy Storchaka04e6dba2015-04-04 17:06:55 +03002700 PyObject *v;
Brett Cannon1eb32c22014-10-10 16:26:45 -04002701 v = array_array_frombytes((arrayobject *)a,
Serhiy Storchaka04e6dba2015-04-04 17:06:55 +03002702 initial);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002703 if (v == NULL) {
2704 Py_DECREF(a);
2705 return NULL;
2706 }
2707 Py_DECREF(v);
2708 }
2709 else if (initial != NULL && PyUnicode_Check(initial)) {
Victor Stinner62bb3942012-08-06 00:46:05 +02002710 Py_UNICODE *ustr;
Victor Stinner1fbcaef2011-09-30 01:54:04 +02002711 Py_ssize_t n;
Victor Stinner62bb3942012-08-06 00:46:05 +02002712
2713 ustr = PyUnicode_AsUnicode(initial);
2714 if (ustr == NULL) {
2715 PyErr_NoMemory();
Victor Stinner1fbcaef2011-09-30 01:54:04 +02002716 Py_DECREF(a);
2717 return NULL;
2718 }
Victor Stinner62bb3942012-08-06 00:46:05 +02002719
2720 n = PyUnicode_GET_DATA_SIZE(initial);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002721 if (n > 0) {
2722 arrayobject *self = (arrayobject *)a;
Victor Stinner62bb3942012-08-06 00:46:05 +02002723 char *item = self->ob_item;
2724 item = (char *)PyMem_Realloc(item, n);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002725 if (item == NULL) {
2726 PyErr_NoMemory();
2727 Py_DECREF(a);
2728 return NULL;
2729 }
Victor Stinner62bb3942012-08-06 00:46:05 +02002730 self->ob_item = item;
2731 Py_SIZE(self) = n / sizeof(Py_UNICODE);
2732 memcpy(item, ustr, n);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002733 self->allocated = Py_SIZE(self);
2734 }
2735 }
Benjamin Peterson682124c2014-10-10 20:58:30 -04002736 else if (initial != NULL && array_Check(initial) && len > 0) {
Alexander Belopolskyef4a03f2011-01-11 21:44:00 +00002737 arrayobject *self = (arrayobject *)a;
2738 arrayobject *other = (arrayobject *)initial;
2739 memcpy(self->ob_item, other->ob_item, len * other->ob_descr->itemsize);
2740 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002741 if (it != NULL) {
2742 if (array_iter_extend((arrayobject *)a, it) == -1) {
2743 Py_DECREF(it);
2744 Py_DECREF(a);
2745 return NULL;
2746 }
2747 Py_DECREF(it);
2748 }
2749 return a;
2750 }
2751 }
2752 PyErr_SetString(PyExc_ValueError,
Meador Inge1c9f0c92011-09-20 19:55:51 -05002753 "bad typecode (must be b, B, u, h, H, i, I, l, L, q, Q, f or d)");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002754 return NULL;
Guido van Rossum778983b1993-02-19 15:55:02 +00002755}
2756
Guido van Rossum778983b1993-02-19 15:55:02 +00002757
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002758PyDoc_STRVAR(module_doc,
Martin v. Löwis99866332002-03-01 10:27:01 +00002759"This module defines an object type which can efficiently represent\n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002760an array of basic values: characters, integers, floating point\n\
2761numbers. Arrays are sequence types and behave very much like lists,\n\
Alexandre Vassalotti9730e332013-11-29 20:47:15 -08002762except that the type of objects stored in them is constrained.\n");
2763
2764PyDoc_STRVAR(arraytype_doc,
2765"array(typecode [, initializer]) -> array\n\
2766\n\
2767Return a new array whose items are restricted by typecode, and\n\
2768initialized from the optional initializer value, which must be a list,\n\
2769string or iterable over elements of the appropriate type.\n\
2770\n\
2771Arrays represent basic values and behave very much like lists, except\n\
2772the type of objects stored in them is constrained. The type is specified\n\
2773at object creation time by using a type code, which is a single character.\n\
2774The following type codes are defined:\n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002775\n\
2776 Type code C Type Minimum size in bytes \n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002777 'b' signed integer 1 \n\
2778 'B' unsigned integer 1 \n\
Victor Stinner62bb3942012-08-06 00:46:05 +02002779 'u' Unicode character 2 (see note) \n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002780 'h' signed integer 2 \n\
2781 'H' unsigned integer 2 \n\
2782 'i' signed integer 2 \n\
2783 'I' unsigned integer 2 \n\
2784 'l' signed integer 4 \n\
2785 'L' unsigned integer 4 \n\
Meador Inge1c9f0c92011-09-20 19:55:51 -05002786 'q' signed integer 8 (see note) \n\
2787 'Q' unsigned integer 8 (see note) \n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002788 'f' floating point 4 \n\
2789 'd' floating point 8 \n\
2790\n\
Victor Stinner62bb3942012-08-06 00:46:05 +02002791NOTE: The 'u' typecode corresponds to Python's unicode character. On \n\
2792narrow builds this is 2-bytes on wide builds this is 4-bytes.\n\
2793\n\
Meador Inge1c9f0c92011-09-20 19:55:51 -05002794NOTE: The 'q' and 'Q' type codes are only available if the platform \n\
2795C compiler used to build Python supports 'long long', or, on Windows, \n\
2796'__int64'.\n\
2797\n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002798Methods:\n\
2799\n\
2800append() -- append a new item to the end of the array\n\
2801buffer_info() -- return information giving the current memory info\n\
2802byteswap() -- byteswap all the items of the array\n\
Mark Dickinson934896d2009-02-21 20:59:32 +00002803count() -- return number of occurrences of an object\n\
Raymond Hettinger49f9bd12004-03-14 05:43:59 +00002804extend() -- extend array by appending multiple elements from an iterable\n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002805fromfile() -- read items from a file object\n\
2806fromlist() -- append items from the list\n\
Florent Xiclunac45fb252011-10-24 13:14:55 +02002807frombytes() -- append items from the string\n\
Mark Dickinson934896d2009-02-21 20:59:32 +00002808index() -- return index of first occurrence of an object\n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002809insert() -- insert a new item into the array at a provided position\n\
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00002810pop() -- remove and return item (default last)\n\
Mark Dickinson934896d2009-02-21 20:59:32 +00002811remove() -- remove first occurrence of an object\n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002812reverse() -- reverse the order of the items in the array\n\
2813tofile() -- write all items to a file object\n\
2814tolist() -- return the array converted to an ordinary list\n\
Florent Xiclunac45fb252011-10-24 13:14:55 +02002815tobytes() -- return the array converted to a string\n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002816\n\
Martin v. Löwis99866332002-03-01 10:27:01 +00002817Attributes:\n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002818\n\
2819typecode -- the typecode character used to create the array\n\
2820itemsize -- the length in bytes of one array item\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002821");
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002822
Raymond Hettinger625812f2003-01-07 01:58:52 +00002823static PyObject *array_iter(arrayobject *ao);
2824
Tim Peters0c322792002-07-17 16:49:03 +00002825static PyTypeObject Arraytype = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002826 PyVarObject_HEAD_INIT(NULL, 0)
2827 "array.array",
2828 sizeof(arrayobject),
2829 0,
2830 (destructor)array_dealloc, /* tp_dealloc */
2831 0, /* tp_print */
2832 0, /* tp_getattr */
2833 0, /* tp_setattr */
2834 0, /* tp_reserved */
2835 (reprfunc)array_repr, /* tp_repr */
2836 0, /* tp_as_number*/
2837 &array_as_sequence, /* tp_as_sequence*/
2838 &array_as_mapping, /* tp_as_mapping*/
2839 0, /* tp_hash */
2840 0, /* tp_call */
2841 0, /* tp_str */
2842 PyObject_GenericGetAttr, /* tp_getattro */
2843 0, /* tp_setattro */
2844 &array_as_buffer, /* tp_as_buffer*/
2845 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
2846 arraytype_doc, /* tp_doc */
2847 0, /* tp_traverse */
2848 0, /* tp_clear */
2849 array_richcompare, /* tp_richcompare */
2850 offsetof(arrayobject, weakreflist), /* tp_weaklistoffset */
2851 (getiterfunc)array_iter, /* tp_iter */
2852 0, /* tp_iternext */
2853 array_methods, /* tp_methods */
2854 0, /* tp_members */
2855 array_getsets, /* tp_getset */
2856 0, /* tp_base */
2857 0, /* tp_dict */
2858 0, /* tp_descr_get */
2859 0, /* tp_descr_set */
2860 0, /* tp_dictoffset */
2861 0, /* tp_init */
2862 PyType_GenericAlloc, /* tp_alloc */
2863 array_new, /* tp_new */
2864 PyObject_Del, /* tp_free */
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002865};
2866
Raymond Hettinger625812f2003-01-07 01:58:52 +00002867
2868/*********************** Array Iterator **************************/
2869
Brett Cannon1eb32c22014-10-10 16:26:45 -04002870/*[clinic input]
2871class array.arrayiterator "arrayiterobject *" "&PyArrayIter_Type"
2872[clinic start generated code]*/
2873/*[clinic end generated code: output=da39a3ee5e6b4b0d input=5aefd2d74d8c8e30]*/
Raymond Hettinger625812f2003-01-07 01:58:52 +00002874
2875static PyObject *
2876array_iter(arrayobject *ao)
2877{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002878 arrayiterobject *it;
Raymond Hettinger625812f2003-01-07 01:58:52 +00002879
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002880 if (!array_Check(ao)) {
2881 PyErr_BadInternalCall();
2882 return NULL;
2883 }
Raymond Hettinger625812f2003-01-07 01:58:52 +00002884
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002885 it = PyObject_GC_New(arrayiterobject, &PyArrayIter_Type);
2886 if (it == NULL)
2887 return NULL;
Raymond Hettinger625812f2003-01-07 01:58:52 +00002888
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002889 Py_INCREF(ao);
2890 it->ao = ao;
2891 it->index = 0;
2892 it->getitem = ao->ob_descr->getitem;
2893 PyObject_GC_Track(it);
2894 return (PyObject *)it;
Raymond Hettinger625812f2003-01-07 01:58:52 +00002895}
2896
2897static PyObject *
Raymond Hettinger625812f2003-01-07 01:58:52 +00002898arrayiter_next(arrayiterobject *it)
2899{
Serhiy Storchakaab0d1982016-03-30 21:11:16 +03002900 arrayobject *ao;
2901
2902 assert(it != NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002903 assert(PyArrayIter_Check(it));
Serhiy Storchakaab0d1982016-03-30 21:11:16 +03002904 ao = it->ao;
2905 if (ao == NULL) {
2906 return NULL;
2907 }
2908 assert(array_Check(ao));
2909 if (it->index < Py_SIZE(ao)) {
2910 return (*it->getitem)(ao, it->index++);
2911 }
2912 it->ao = NULL;
2913 Py_DECREF(ao);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002914 return NULL;
Raymond Hettinger625812f2003-01-07 01:58:52 +00002915}
2916
2917static void
2918arrayiter_dealloc(arrayiterobject *it)
2919{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002920 PyObject_GC_UnTrack(it);
2921 Py_XDECREF(it->ao);
2922 PyObject_GC_Del(it);
Raymond Hettinger625812f2003-01-07 01:58:52 +00002923}
2924
2925static int
2926arrayiter_traverse(arrayiterobject *it, visitproc visit, void *arg)
2927{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002928 Py_VISIT(it->ao);
2929 return 0;
Raymond Hettinger625812f2003-01-07 01:58:52 +00002930}
2931
Brett Cannon1eb32c22014-10-10 16:26:45 -04002932/*[clinic input]
2933array.arrayiterator.__reduce__
2934
2935Return state information for pickling.
2936[clinic start generated code]*/
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00002937
2938static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04002939array_arrayiterator___reduce___impl(arrayiterobject *self)
2940/*[clinic end generated code: output=7898a52e8e66e016 input=a062ea1e9951417a]*/
2941{
Serhiy Storchakaab0d1982016-03-30 21:11:16 +03002942 PyObject *func = _PyObject_GetBuiltin("iter");
2943 if (self->ao == NULL) {
2944 return Py_BuildValue("N(())", func);
2945 }
2946 return Py_BuildValue("N(O)n", func, self->ao, self->index);
Brett Cannon1eb32c22014-10-10 16:26:45 -04002947}
2948
2949/*[clinic input]
2950array.arrayiterator.__setstate__
2951
2952 state: object
2953 /
2954
2955Set state information for unpickling.
2956[clinic start generated code]*/
2957
2958static PyObject *
2959array_arrayiterator___setstate__(arrayiterobject *self, PyObject *state)
2960/*[clinic end generated code: output=397da9904e443cbe input=f47d5ceda19e787b]*/
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00002961{
2962 Py_ssize_t index = PyLong_AsSsize_t(state);
2963 if (index == -1 && PyErr_Occurred())
2964 return NULL;
2965 if (index < 0)
2966 index = 0;
Brett Cannon1eb32c22014-10-10 16:26:45 -04002967 else if (index > Py_SIZE(self->ao))
2968 index = Py_SIZE(self->ao); /* iterator exhausted */
2969 self->index = index;
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00002970 Py_RETURN_NONE;
2971}
2972
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00002973static PyMethodDef arrayiter_methods[] = {
Brett Cannon1eb32c22014-10-10 16:26:45 -04002974 ARRAY_ARRAYITERATOR___REDUCE___METHODDEF
2975 ARRAY_ARRAYITERATOR___SETSTATE___METHODDEF
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00002976 {NULL, NULL} /* sentinel */
2977};
2978
Raymond Hettinger625812f2003-01-07 01:58:52 +00002979static PyTypeObject PyArrayIter_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002980 PyVarObject_HEAD_INIT(NULL, 0)
2981 "arrayiterator", /* tp_name */
2982 sizeof(arrayiterobject), /* tp_basicsize */
2983 0, /* tp_itemsize */
2984 /* methods */
2985 (destructor)arrayiter_dealloc, /* tp_dealloc */
2986 0, /* tp_print */
2987 0, /* tp_getattr */
2988 0, /* tp_setattr */
2989 0, /* tp_reserved */
2990 0, /* tp_repr */
2991 0, /* tp_as_number */
2992 0, /* tp_as_sequence */
2993 0, /* tp_as_mapping */
2994 0, /* tp_hash */
2995 0, /* tp_call */
2996 0, /* tp_str */
2997 PyObject_GenericGetAttr, /* tp_getattro */
2998 0, /* tp_setattro */
2999 0, /* tp_as_buffer */
3000 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
3001 0, /* tp_doc */
3002 (traverseproc)arrayiter_traverse, /* tp_traverse */
3003 0, /* tp_clear */
3004 0, /* tp_richcompare */
3005 0, /* tp_weaklistoffset */
3006 PyObject_SelfIter, /* tp_iter */
3007 (iternextfunc)arrayiter_next, /* tp_iternext */
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00003008 arrayiter_methods, /* tp_methods */
Raymond Hettinger625812f2003-01-07 01:58:52 +00003009};
3010
3011
3012/*********************** Install Module **************************/
3013
Martin v. Löwis99866332002-03-01 10:27:01 +00003014/* No functions in array module. */
3015static PyMethodDef a_methods[] = {
Brett Cannon1eb32c22014-10-10 16:26:45 -04003016 ARRAY__ARRAY_RECONSTRUCTOR_METHODDEF
Martin v. Löwis99866332002-03-01 10:27:01 +00003017 {NULL, NULL, 0, NULL} /* Sentinel */
3018};
3019
Nick Coghland5cacbb2015-05-23 22:24:10 +10003020static int
3021array_modexec(PyObject *m)
Guido van Rossum778983b1993-02-19 15:55:02 +00003022{
Georg Brandl4cb0de22011-09-28 21:49:49 +02003023 char buffer[Py_ARRAY_LENGTH(descriptors)], *p;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003024 PyObject *typecodes;
3025 Py_ssize_t size = 0;
Serhiy Storchaka2d06e842015-12-25 19:53:18 +02003026 const struct arraydescr *descr;
Fred Drake0d40ba42000-02-04 20:33:49 +00003027
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003028 if (PyType_Ready(&Arraytype) < 0)
Nick Coghland5cacbb2015-05-23 22:24:10 +10003029 return -1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003030 Py_TYPE(&PyArrayIter_Type) = &PyType_Type;
Fred Drakef4e34842002-04-01 03:45:06 +00003031
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003032 Py_INCREF((PyObject *)&Arraytype);
3033 PyModule_AddObject(m, "ArrayType", (PyObject *)&Arraytype);
3034 Py_INCREF((PyObject *)&Arraytype);
3035 PyModule_AddObject(m, "array", (PyObject *)&Arraytype);
Travis E. Oliphantd5c0add2007-10-12 22:05:15 +00003036
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003037 for (descr=descriptors; descr->typecode != '\0'; descr++) {
3038 size++;
3039 }
Travis E. Oliphantd5c0add2007-10-12 22:05:15 +00003040
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003041 p = buffer;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003042 for (descr = descriptors; descr->typecode != '\0'; descr++) {
3043 *p++ = (char)descr->typecode;
3044 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003045 typecodes = PyUnicode_DecodeASCII(buffer, p - buffer, NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003046
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003047 PyModule_AddObject(m, "typecodes", typecodes);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003048
3049 if (PyErr_Occurred()) {
3050 Py_DECREF(m);
3051 m = NULL;
3052 }
Nick Coghland5cacbb2015-05-23 22:24:10 +10003053 return 0;
3054}
3055
3056static PyModuleDef_Slot arrayslots[] = {
3057 {Py_mod_exec, array_modexec},
3058 {0, NULL}
3059};
3060
3061
3062static struct PyModuleDef arraymodule = {
3063 PyModuleDef_HEAD_INIT,
3064 "array",
3065 module_doc,
3066 0,
3067 a_methods,
3068 arrayslots,
3069 NULL,
3070 NULL,
3071 NULL
3072};
3073
3074
3075PyMODINIT_FUNC
3076PyInit_array(void)
3077{
3078 return PyModuleDef_Init(&arraymodule);
Guido van Rossum778983b1993-02-19 15:55:02 +00003079}