blob: 6a9ff3ec6252d99d5b11a55e0c5008ca21023bb7 [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
Serhiy Storchakaf320be72018-01-25 10:49:40 +02002206 if (_PyObject_LookupAttrId((PyObject *)self, &PyId___dict__, &dict) < 0) {
2207 return NULL;
2208 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002209 if (dict == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002210 dict = Py_None;
2211 Py_INCREF(dict);
2212 }
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002213
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002214 mformat_code = typecode_to_mformat_code(typecode);
2215 if (mformat_code == UNKNOWN_FORMAT || protocol < 3) {
2216 /* Convert the array to a list if we got something weird
2217 * (e.g., non-IEEE floats), or we are pickling the array using
2218 * a Python 2.x compatible protocol.
2219 *
2220 * It is necessary to use a list representation for Python 2.x
2221 * compatible pickle protocol, since Python 2's str objects
2222 * are unpickled as unicode by Python 3. Thus it is impossible
2223 * to make arrays unpicklable by Python 3 by using their memory
2224 * representation, unless we resort to ugly hacks such as
2225 * coercing unicode objects to bytes in array_reconstructor.
2226 */
2227 PyObject *list;
Brett Cannon1eb32c22014-10-10 16:26:45 -04002228 list = array_array_tolist_impl(self);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002229 if (list == NULL) {
2230 Py_DECREF(dict);
2231 return NULL;
2232 }
2233 result = Py_BuildValue(
Brett Cannon1eb32c22014-10-10 16:26:45 -04002234 "O(CO)O", Py_TYPE(self), typecode, list, dict);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002235 Py_DECREF(list);
2236 Py_DECREF(dict);
2237 return result;
2238 }
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002239
Brett Cannon1eb32c22014-10-10 16:26:45 -04002240 array_str = array_array_tobytes_impl(self);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002241 if (array_str == NULL) {
2242 Py_DECREF(dict);
2243 return NULL;
2244 }
2245 result = Py_BuildValue(
Brett Cannon1eb32c22014-10-10 16:26:45 -04002246 "O(OCiN)O", array_reconstructor, Py_TYPE(self), typecode,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002247 mformat_code, array_str, dict);
2248 Py_DECREF(dict);
2249 return result;
Alexandre Vassalottiad077152009-07-15 17:49:23 +00002250}
2251
Martin v. Löwis99866332002-03-01 10:27:01 +00002252static PyObject *
2253array_get_typecode(arrayobject *a, void *closure)
2254{
Victor Stinnerf8bb7d02011-09-30 00:03:59 +02002255 char typecode = a->ob_descr->typecode;
2256 return PyUnicode_FromOrdinal(typecode);
Martin v. Löwis99866332002-03-01 10:27:01 +00002257}
2258
2259static PyObject *
2260array_get_itemsize(arrayobject *a, void *closure)
2261{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002262 return PyLong_FromLong((long)a->ob_descr->itemsize);
Martin v. Löwis99866332002-03-01 10:27:01 +00002263}
2264
2265static PyGetSetDef array_getsets [] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002266 {"typecode", (getter) array_get_typecode, NULL,
2267 "the typecode character used to create the array"},
2268 {"itemsize", (getter) array_get_itemsize, NULL,
2269 "the size, in bytes, of one array item"},
2270 {NULL}
Martin v. Löwis99866332002-03-01 10:27:01 +00002271};
2272
Martin v. Löwis59683e82008-06-13 07:50:45 +00002273static PyMethodDef array_methods[] = {
Brett Cannon1eb32c22014-10-10 16:26:45 -04002274 ARRAY_ARRAY_APPEND_METHODDEF
2275 ARRAY_ARRAY_BUFFER_INFO_METHODDEF
2276 ARRAY_ARRAY_BYTESWAP_METHODDEF
2277 ARRAY_ARRAY___COPY___METHODDEF
2278 ARRAY_ARRAY_COUNT_METHODDEF
2279 ARRAY_ARRAY___DEEPCOPY___METHODDEF
2280 ARRAY_ARRAY_EXTEND_METHODDEF
2281 ARRAY_ARRAY_FROMFILE_METHODDEF
2282 ARRAY_ARRAY_FROMLIST_METHODDEF
2283 ARRAY_ARRAY_FROMSTRING_METHODDEF
2284 ARRAY_ARRAY_FROMBYTES_METHODDEF
2285 ARRAY_ARRAY_FROMUNICODE_METHODDEF
2286 ARRAY_ARRAY_INDEX_METHODDEF
2287 ARRAY_ARRAY_INSERT_METHODDEF
2288 ARRAY_ARRAY_POP_METHODDEF
2289 ARRAY_ARRAY___REDUCE_EX___METHODDEF
2290 ARRAY_ARRAY_REMOVE_METHODDEF
2291 ARRAY_ARRAY_REVERSE_METHODDEF
2292 ARRAY_ARRAY_TOFILE_METHODDEF
2293 ARRAY_ARRAY_TOLIST_METHODDEF
2294 ARRAY_ARRAY_TOSTRING_METHODDEF
2295 ARRAY_ARRAY_TOBYTES_METHODDEF
2296 ARRAY_ARRAY_TOUNICODE_METHODDEF
2297 ARRAY_ARRAY___SIZEOF___METHODDEF
2298 {NULL, NULL} /* sentinel */
Guido van Rossum778983b1993-02-19 15:55:02 +00002299};
2300
Roger E. Masse2919eaa1996-12-09 20:10:36 +00002301static PyObject *
Peter Schneider-Kamp9656abd2000-07-13 21:10:57 +00002302array_repr(arrayobject *a)
Guido van Rossum778983b1993-02-19 15:55:02 +00002303{
Victor Stinnerf8bb7d02011-09-30 00:03:59 +02002304 char typecode;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002305 PyObject *s, *v = NULL;
2306 Py_ssize_t len;
Martin v. Löwis99866332002-03-01 10:27:01 +00002307
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002308 len = Py_SIZE(a);
2309 typecode = a->ob_descr->typecode;
2310 if (len == 0) {
Serhiy Storchakab3a77962017-09-21 14:24:13 +03002311 return PyUnicode_FromFormat("%s('%c')",
2312 _PyType_Name(Py_TYPE(a)), (int)typecode);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002313 }
Gregory P. Smith9504b132012-12-10 20:20:20 -08002314 if (typecode == 'u') {
Brett Cannon1eb32c22014-10-10 16:26:45 -04002315 v = array_array_tounicode_impl(a);
Gregory P. Smith9504b132012-12-10 20:20:20 -08002316 } else {
Brett Cannon1eb32c22014-10-10 16:26:45 -04002317 v = array_array_tolist_impl(a);
Gregory P. Smith9504b132012-12-10 20:20:20 -08002318 }
Victor Stinner29ec5952013-02-26 00:27:38 +01002319 if (v == NULL)
2320 return NULL;
Raymond Hettinger88ba1e32003-04-23 17:27:00 +00002321
Serhiy Storchakab3a77962017-09-21 14:24:13 +03002322 s = PyUnicode_FromFormat("%s('%c', %R)",
2323 _PyType_Name(Py_TYPE(a)), (int)typecode, v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002324 Py_DECREF(v);
2325 return s;
Guido van Rossum778983b1993-02-19 15:55:02 +00002326}
2327
Michael W. Hudson9c14bad2002-06-19 15:44:15 +00002328static PyObject*
2329array_subscr(arrayobject* self, PyObject* item)
2330{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002331 if (PyIndex_Check(item)) {
2332 Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError);
2333 if (i==-1 && PyErr_Occurred()) {
2334 return NULL;
2335 }
2336 if (i < 0)
2337 i += Py_SIZE(self);
2338 return array_item(self, i);
2339 }
2340 else if (PySlice_Check(item)) {
2341 Py_ssize_t start, stop, step, slicelength, cur, i;
2342 PyObject* result;
2343 arrayobject* ar;
2344 int itemsize = self->ob_descr->itemsize;
Michael W. Hudson9c14bad2002-06-19 15:44:15 +00002345
Serhiy Storchakab879fe82017-04-08 09:53:51 +03002346 if (PySlice_Unpack(item, &start, &stop, &step) < 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002347 return NULL;
2348 }
Serhiy Storchakab879fe82017-04-08 09:53:51 +03002349 slicelength = PySlice_AdjustIndices(Py_SIZE(self), &start, &stop,
2350 step);
Michael W. Hudson9c14bad2002-06-19 15:44:15 +00002351
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002352 if (slicelength <= 0) {
2353 return newarrayobject(&Arraytype, 0, self->ob_descr);
2354 }
2355 else if (step == 1) {
2356 PyObject *result = newarrayobject(&Arraytype,
2357 slicelength, self->ob_descr);
2358 if (result == NULL)
2359 return NULL;
2360 memcpy(((arrayobject *)result)->ob_item,
2361 self->ob_item + start * itemsize,
2362 slicelength * itemsize);
2363 return result;
2364 }
2365 else {
2366 result = newarrayobject(&Arraytype, slicelength, self->ob_descr);
2367 if (!result) return NULL;
Michael W. Hudson9c14bad2002-06-19 15:44:15 +00002368
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002369 ar = (arrayobject*)result;
Michael W. Hudson9c14bad2002-06-19 15:44:15 +00002370
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002371 for (cur = start, i = 0; i < slicelength;
2372 cur += step, i++) {
2373 memcpy(ar->ob_item + i*itemsize,
2374 self->ob_item + cur*itemsize,
2375 itemsize);
2376 }
2377
2378 return result;
2379 }
2380 }
2381 else {
2382 PyErr_SetString(PyExc_TypeError,
2383 "array indices must be integers");
2384 return NULL;
2385 }
Michael W. Hudson9c14bad2002-06-19 15:44:15 +00002386}
2387
2388static int
2389array_ass_subscr(arrayobject* self, PyObject* item, PyObject* value)
2390{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002391 Py_ssize_t start, stop, step, slicelength, needed;
2392 arrayobject* other;
2393 int itemsize;
Thomas Woutersed03b412007-08-28 21:37:11 +00002394
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002395 if (PyIndex_Check(item)) {
2396 Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError);
Alexandre Vassalotti47137252009-07-05 19:57:00 +00002397
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002398 if (i == -1 && PyErr_Occurred())
2399 return -1;
2400 if (i < 0)
2401 i += Py_SIZE(self);
2402 if (i < 0 || i >= Py_SIZE(self)) {
2403 PyErr_SetString(PyExc_IndexError,
2404 "array assignment index out of range");
2405 return -1;
2406 }
2407 if (value == NULL) {
2408 /* Fall through to slice assignment */
2409 start = i;
2410 stop = i + 1;
2411 step = 1;
2412 slicelength = 1;
2413 }
2414 else
2415 return (*self->ob_descr->setitem)(self, i, value);
2416 }
2417 else if (PySlice_Check(item)) {
Serhiy Storchakab879fe82017-04-08 09:53:51 +03002418 if (PySlice_Unpack(item, &start, &stop, &step) < 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002419 return -1;
2420 }
Serhiy Storchakab879fe82017-04-08 09:53:51 +03002421 slicelength = PySlice_AdjustIndices(Py_SIZE(self), &start, &stop,
2422 step);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002423 }
2424 else {
2425 PyErr_SetString(PyExc_TypeError,
Sylvaina90e64b2017-03-29 20:09:22 +02002426 "array indices must be integers");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002427 return -1;
2428 }
2429 if (value == NULL) {
2430 other = NULL;
2431 needed = 0;
2432 }
2433 else if (array_Check(value)) {
2434 other = (arrayobject *)value;
2435 needed = Py_SIZE(other);
2436 if (self == other) {
2437 /* Special case "self[i:j] = self" -- copy self first */
2438 int ret;
2439 value = array_slice(other, 0, needed);
2440 if (value == NULL)
2441 return -1;
2442 ret = array_ass_subscr(self, item, value);
2443 Py_DECREF(value);
2444 return ret;
2445 }
2446 if (other->ob_descr != self->ob_descr) {
2447 PyErr_BadArgument();
2448 return -1;
2449 }
2450 }
2451 else {
2452 PyErr_Format(PyExc_TypeError,
2453 "can only assign array (not \"%.200s\") to array slice",
2454 Py_TYPE(value)->tp_name);
2455 return -1;
2456 }
2457 itemsize = self->ob_descr->itemsize;
2458 /* for 'a[2:1] = ...', the insertion point is 'start', not 'stop' */
2459 if ((step > 0 && stop < start) ||
2460 (step < 0 && stop > start))
2461 stop = start;
Alexandre Vassalotti47137252009-07-05 19:57:00 +00002462
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002463 /* Issue #4509: If the array has exported buffers and the slice
2464 assignment would change the size of the array, fail early to make
2465 sure we don't modify it. */
2466 if ((needed == 0 || slicelength != needed) && self->ob_exports > 0) {
2467 PyErr_SetString(PyExc_BufferError,
2468 "cannot resize an array that is exporting buffers");
2469 return -1;
2470 }
Mark Dickinsonbc099642010-01-29 17:27:24 +00002471
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002472 if (step == 1) {
2473 if (slicelength > needed) {
2474 memmove(self->ob_item + (start + needed) * itemsize,
2475 self->ob_item + stop * itemsize,
2476 (Py_SIZE(self) - stop) * itemsize);
2477 if (array_resize(self, Py_SIZE(self) +
2478 needed - slicelength) < 0)
2479 return -1;
2480 }
2481 else if (slicelength < needed) {
2482 if (array_resize(self, Py_SIZE(self) +
2483 needed - slicelength) < 0)
2484 return -1;
2485 memmove(self->ob_item + (start + needed) * itemsize,
2486 self->ob_item + stop * itemsize,
2487 (Py_SIZE(self) - start - needed) * itemsize);
2488 }
2489 if (needed > 0)
2490 memcpy(self->ob_item + start * itemsize,
2491 other->ob_item, needed * itemsize);
2492 return 0;
2493 }
2494 else if (needed == 0) {
2495 /* Delete slice */
2496 size_t cur;
2497 Py_ssize_t i;
Thomas Woutersed03b412007-08-28 21:37:11 +00002498
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002499 if (step < 0) {
2500 stop = start + 1;
2501 start = stop + step * (slicelength - 1) - 1;
2502 step = -step;
2503 }
2504 for (cur = start, i = 0; i < slicelength;
2505 cur += step, i++) {
2506 Py_ssize_t lim = step - 1;
Thomas Woutersed03b412007-08-28 21:37:11 +00002507
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002508 if (cur + step >= (size_t)Py_SIZE(self))
2509 lim = Py_SIZE(self) - cur - 1;
2510 memmove(self->ob_item + (cur - i) * itemsize,
2511 self->ob_item + (cur + 1) * itemsize,
2512 lim * itemsize);
2513 }
Mark Dickinsonc7d93b72011-09-25 15:34:32 +01002514 cur = start + (size_t)slicelength * step;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002515 if (cur < (size_t)Py_SIZE(self)) {
2516 memmove(self->ob_item + (cur-slicelength) * itemsize,
2517 self->ob_item + cur * itemsize,
2518 (Py_SIZE(self) - cur) * itemsize);
2519 }
2520 if (array_resize(self, Py_SIZE(self) - slicelength) < 0)
2521 return -1;
2522 return 0;
2523 }
2524 else {
2525 Py_ssize_t cur, i;
2526
2527 if (needed != slicelength) {
2528 PyErr_Format(PyExc_ValueError,
2529 "attempt to assign array of size %zd "
2530 "to extended slice of size %zd",
2531 needed, slicelength);
2532 return -1;
2533 }
2534 for (cur = start, i = 0; i < slicelength;
2535 cur += step, i++) {
2536 memcpy(self->ob_item + cur * itemsize,
2537 other->ob_item + i * itemsize,
2538 itemsize);
2539 }
2540 return 0;
2541 }
Michael W. Hudson9c14bad2002-06-19 15:44:15 +00002542}
2543
2544static PyMappingMethods array_as_mapping = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002545 (lenfunc)array_length,
2546 (binaryfunc)array_subscr,
2547 (objobjargproc)array_ass_subscr
Michael W. Hudson9c14bad2002-06-19 15:44:15 +00002548};
2549
Guido van Rossumd8faa362007-04-27 19:54:29 +00002550static const void *emptybuf = "";
2551
Travis E. Oliphantb99f7622007-08-18 11:21:56 +00002552
2553static int
Travis E. Oliphant8ae62b62007-09-23 02:00:13 +00002554array_buffer_getbuf(arrayobject *self, Py_buffer *view, int flags)
Guido van Rossumfdf95dd1997-05-05 22:15:02 +00002555{
Stefan Krah650c1e82015-02-03 21:43:23 +01002556 if (view == NULL) {
2557 PyErr_SetString(PyExc_BufferError,
2558 "array_buffer_getbuf: view==NULL argument is obsolete");
2559 return -1;
2560 }
Travis E. Oliphantb99f7622007-08-18 11:21:56 +00002561
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002562 view->buf = (void *)self->ob_item;
2563 view->obj = (PyObject*)self;
2564 Py_INCREF(self);
2565 if (view->buf == NULL)
2566 view->buf = (void *)emptybuf;
2567 view->len = (Py_SIZE(self)) * self->ob_descr->itemsize;
2568 view->readonly = 0;
2569 view->ndim = 1;
2570 view->itemsize = self->ob_descr->itemsize;
2571 view->suboffsets = NULL;
2572 view->shape = NULL;
2573 if ((flags & PyBUF_ND)==PyBUF_ND) {
2574 view->shape = &((Py_SIZE(self)));
2575 }
2576 view->strides = NULL;
2577 if ((flags & PyBUF_STRIDES)==PyBUF_STRIDES)
2578 view->strides = &(view->itemsize);
2579 view->format = NULL;
2580 view->internal = NULL;
Victor Stinner62bb3942012-08-06 00:46:05 +02002581 if ((flags & PyBUF_FORMAT) == PyBUF_FORMAT) {
Serhiy Storchaka2d06e842015-12-25 19:53:18 +02002582 view->format = (char *)self->ob_descr->formats;
Victor Stinner62bb3942012-08-06 00:46:05 +02002583#ifdef Py_UNICODE_WIDE
2584 if (self->ob_descr->typecode == 'u') {
2585 view->format = "w";
2586 }
2587#endif
2588 }
Travis E. Oliphantb99f7622007-08-18 11:21:56 +00002589
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002590 self->ob_exports++;
2591 return 0;
Guido van Rossumfdf95dd1997-05-05 22:15:02 +00002592}
2593
Travis E. Oliphantb99f7622007-08-18 11:21:56 +00002594static void
Travis E. Oliphant8ae62b62007-09-23 02:00:13 +00002595array_buffer_relbuf(arrayobject *self, Py_buffer *view)
Guido van Rossumfdf95dd1997-05-05 22:15:02 +00002596{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002597 self->ob_exports--;
Guido van Rossumfdf95dd1997-05-05 22:15:02 +00002598}
2599
Roger E. Masse2919eaa1996-12-09 20:10:36 +00002600static PySequenceMethods array_as_sequence = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002601 (lenfunc)array_length, /*sq_length*/
2602 (binaryfunc)array_concat, /*sq_concat*/
2603 (ssizeargfunc)array_repeat, /*sq_repeat*/
2604 (ssizeargfunc)array_item, /*sq_item*/
2605 0, /*sq_slice*/
2606 (ssizeobjargproc)array_ass_item, /*sq_ass_item*/
2607 0, /*sq_ass_slice*/
2608 (objobjproc)array_contains, /*sq_contains*/
2609 (binaryfunc)array_inplace_concat, /*sq_inplace_concat*/
2610 (ssizeargfunc)array_inplace_repeat /*sq_inplace_repeat*/
Guido van Rossum778983b1993-02-19 15:55:02 +00002611};
2612
Guido van Rossumfdf95dd1997-05-05 22:15:02 +00002613static PyBufferProcs array_as_buffer = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002614 (getbufferproc)array_buffer_getbuf,
2615 (releasebufferproc)array_buffer_relbuf
Guido van Rossumfdf95dd1997-05-05 22:15:02 +00002616};
2617
Roger E. Masse2919eaa1996-12-09 20:10:36 +00002618static PyObject *
Martin v. Löwis99866332002-03-01 10:27:01 +00002619array_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
Guido van Rossum778983b1993-02-19 15:55:02 +00002620{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002621 int c;
2622 PyObject *initial = NULL, *it = NULL;
Serhiy Storchaka2d06e842015-12-25 19:53:18 +02002623 const struct arraydescr *descr;
Martin v. Löwis99866332002-03-01 10:27:01 +00002624
Serhiy Storchaka6cca5c82017-06-08 14:41:19 +03002625 if (type == &Arraytype && !_PyArg_NoKeywords("array.array", kwds))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002626 return NULL;
Martin v. Löwis99866332002-03-01 10:27:01 +00002627
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002628 if (!PyArg_ParseTuple(args, "C|O:array", &c, &initial))
2629 return NULL;
Raymond Hettinger84fc9aa2003-04-24 10:41:55 +00002630
Alexandre Vassalotti9730e332013-11-29 20:47:15 -08002631 if (initial && c != 'u') {
2632 if (PyUnicode_Check(initial)) {
2633 PyErr_Format(PyExc_TypeError, "cannot use a str to initialize "
2634 "an array with typecode '%c'", c);
2635 return NULL;
2636 }
2637 else if (array_Check(initial) &&
2638 ((arrayobject*)initial)->ob_descr->typecode == 'u') {
2639 PyErr_Format(PyExc_TypeError, "cannot use a unicode array to "
2640 "initialize an array with typecode '%c'", c);
2641 return NULL;
2642 }
2643 }
2644
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002645 if (!(initial == NULL || PyList_Check(initial)
2646 || PyByteArray_Check(initial)
2647 || PyBytes_Check(initial)
2648 || PyTuple_Check(initial)
Alexander Belopolskyef4a03f2011-01-11 21:44:00 +00002649 || ((c=='u') && PyUnicode_Check(initial))
2650 || (array_Check(initial)
2651 && c == ((arrayobject*)initial)->ob_descr->typecode))) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002652 it = PyObject_GetIter(initial);
2653 if (it == NULL)
2654 return NULL;
2655 /* We set initial to NULL so that the subsequent code
2656 will create an empty array of the appropriate type
2657 and afterwards we can use array_iter_extend to populate
2658 the array.
2659 */
2660 initial = NULL;
2661 }
2662 for (descr = descriptors; descr->typecode != '\0'; descr++) {
2663 if (descr->typecode == c) {
2664 PyObject *a;
2665 Py_ssize_t len;
Martin v. Löwis99866332002-03-01 10:27:01 +00002666
Alexander Belopolskyef4a03f2011-01-11 21:44:00 +00002667 if (initial == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002668 len = 0;
Alexander Belopolskyef4a03f2011-01-11 21:44:00 +00002669 else if (PyList_Check(initial))
2670 len = PyList_GET_SIZE(initial);
2671 else if (PyTuple_Check(initial) || array_Check(initial))
2672 len = Py_SIZE(initial);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002673 else
Alexander Belopolskyef4a03f2011-01-11 21:44:00 +00002674 len = 0;
Martin v. Löwis99866332002-03-01 10:27:01 +00002675
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002676 a = newarrayobject(type, len, descr);
2677 if (a == NULL)
2678 return NULL;
2679
Alexander Belopolskyef4a03f2011-01-11 21:44:00 +00002680 if (len > 0 && !array_Check(initial)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002681 Py_ssize_t i;
2682 for (i = 0; i < len; i++) {
2683 PyObject *v =
2684 PySequence_GetItem(initial, i);
2685 if (v == NULL) {
2686 Py_DECREF(a);
2687 return NULL;
2688 }
2689 if (setarrayitem(a, i, v) != 0) {
2690 Py_DECREF(v);
2691 Py_DECREF(a);
2692 return NULL;
2693 }
2694 Py_DECREF(v);
2695 }
2696 }
2697 else if (initial != NULL && (PyByteArray_Check(initial) ||
2698 PyBytes_Check(initial))) {
Serhiy Storchaka04e6dba2015-04-04 17:06:55 +03002699 PyObject *v;
Brett Cannon1eb32c22014-10-10 16:26:45 -04002700 v = array_array_frombytes((arrayobject *)a,
Serhiy Storchaka04e6dba2015-04-04 17:06:55 +03002701 initial);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002702 if (v == NULL) {
2703 Py_DECREF(a);
2704 return NULL;
2705 }
2706 Py_DECREF(v);
2707 }
2708 else if (initial != NULL && PyUnicode_Check(initial)) {
Victor Stinner62bb3942012-08-06 00:46:05 +02002709 Py_UNICODE *ustr;
Victor Stinner1fbcaef2011-09-30 01:54:04 +02002710 Py_ssize_t n;
Victor Stinner62bb3942012-08-06 00:46:05 +02002711
2712 ustr = PyUnicode_AsUnicode(initial);
2713 if (ustr == NULL) {
2714 PyErr_NoMemory();
Victor Stinner1fbcaef2011-09-30 01:54:04 +02002715 Py_DECREF(a);
2716 return NULL;
2717 }
Victor Stinner62bb3942012-08-06 00:46:05 +02002718
2719 n = PyUnicode_GET_DATA_SIZE(initial);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002720 if (n > 0) {
2721 arrayobject *self = (arrayobject *)a;
Victor Stinner62bb3942012-08-06 00:46:05 +02002722 char *item = self->ob_item;
2723 item = (char *)PyMem_Realloc(item, n);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002724 if (item == NULL) {
2725 PyErr_NoMemory();
2726 Py_DECREF(a);
2727 return NULL;
2728 }
Victor Stinner62bb3942012-08-06 00:46:05 +02002729 self->ob_item = item;
2730 Py_SIZE(self) = n / sizeof(Py_UNICODE);
2731 memcpy(item, ustr, n);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002732 self->allocated = Py_SIZE(self);
2733 }
2734 }
Benjamin Peterson682124c2014-10-10 20:58:30 -04002735 else if (initial != NULL && array_Check(initial) && len > 0) {
Alexander Belopolskyef4a03f2011-01-11 21:44:00 +00002736 arrayobject *self = (arrayobject *)a;
2737 arrayobject *other = (arrayobject *)initial;
2738 memcpy(self->ob_item, other->ob_item, len * other->ob_descr->itemsize);
2739 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002740 if (it != NULL) {
2741 if (array_iter_extend((arrayobject *)a, it) == -1) {
2742 Py_DECREF(it);
2743 Py_DECREF(a);
2744 return NULL;
2745 }
2746 Py_DECREF(it);
2747 }
2748 return a;
2749 }
2750 }
2751 PyErr_SetString(PyExc_ValueError,
Meador Inge1c9f0c92011-09-20 19:55:51 -05002752 "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 +00002753 return NULL;
Guido van Rossum778983b1993-02-19 15:55:02 +00002754}
2755
Guido van Rossum778983b1993-02-19 15:55:02 +00002756
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002757PyDoc_STRVAR(module_doc,
Martin v. Löwis99866332002-03-01 10:27:01 +00002758"This module defines an object type which can efficiently represent\n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002759an array of basic values: characters, integers, floating point\n\
2760numbers. Arrays are sequence types and behave very much like lists,\n\
Alexandre Vassalotti9730e332013-11-29 20:47:15 -08002761except that the type of objects stored in them is constrained.\n");
2762
2763PyDoc_STRVAR(arraytype_doc,
2764"array(typecode [, initializer]) -> array\n\
2765\n\
2766Return a new array whose items are restricted by typecode, and\n\
2767initialized from the optional initializer value, which must be a list,\n\
2768string or iterable over elements of the appropriate type.\n\
2769\n\
2770Arrays represent basic values and behave very much like lists, except\n\
2771the type of objects stored in them is constrained. The type is specified\n\
2772at object creation time by using a type code, which is a single character.\n\
2773The following type codes are defined:\n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002774\n\
oldkaa0735f2018-02-02 16:52:55 +08002775 Type code C Type Minimum size in bytes\n\
2776 'b' signed integer 1\n\
2777 'B' unsigned integer 1\n\
2778 'u' Unicode character 2 (see note)\n\
2779 'h' signed integer 2\n\
2780 'H' unsigned integer 2\n\
2781 'i' signed integer 2\n\
2782 'I' unsigned integer 2\n\
2783 'l' signed integer 4\n\
2784 'L' unsigned integer 4\n\
2785 'q' signed integer 8 (see note)\n\
2786 'Q' unsigned integer 8 (see note)\n\
2787 'f' floating point 4\n\
2788 'd' floating point 8\n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002789\n\
oldkaa0735f2018-02-02 16:52:55 +08002790NOTE: The 'u' typecode corresponds to Python's unicode character. On\n\
Victor Stinner62bb3942012-08-06 00:46:05 +02002791narrow builds this is 2-bytes on wide builds this is 4-bytes.\n\
2792\n\
oldkaa0735f2018-02-02 16:52:55 +08002793NOTE: The 'q' and 'Q' type codes are only available if the platform\n\
2794C compiler used to build Python supports 'long long', or, on Windows,\n\
Meador Inge1c9f0c92011-09-20 19:55:51 -05002795'__int64'.\n\
2796\n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002797Methods:\n\
2798\n\
2799append() -- append a new item to the end of the array\n\
2800buffer_info() -- return information giving the current memory info\n\
2801byteswap() -- byteswap all the items of the array\n\
Mark Dickinson934896d2009-02-21 20:59:32 +00002802count() -- return number of occurrences of an object\n\
Raymond Hettinger49f9bd12004-03-14 05:43:59 +00002803extend() -- extend array by appending multiple elements from an iterable\n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002804fromfile() -- read items from a file object\n\
2805fromlist() -- append items from the list\n\
Florent Xiclunac45fb252011-10-24 13:14:55 +02002806frombytes() -- append items from the string\n\
Mark Dickinson934896d2009-02-21 20:59:32 +00002807index() -- return index of first occurrence of an object\n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002808insert() -- insert a new item into the array at a provided position\n\
Peter Schneider-Kamp5a65c2d2000-07-31 20:52:21 +00002809pop() -- remove and return item (default last)\n\
Mark Dickinson934896d2009-02-21 20:59:32 +00002810remove() -- remove first occurrence of an object\n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002811reverse() -- reverse the order of the items in the array\n\
2812tofile() -- write all items to a file object\n\
2813tolist() -- return the array converted to an ordinary list\n\
Florent Xiclunac45fb252011-10-24 13:14:55 +02002814tobytes() -- return the array converted to a string\n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002815\n\
Martin v. Löwis99866332002-03-01 10:27:01 +00002816Attributes:\n\
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002817\n\
2818typecode -- the typecode character used to create the array\n\
2819itemsize -- the length in bytes of one array item\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002820");
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002821
Raymond Hettinger625812f2003-01-07 01:58:52 +00002822static PyObject *array_iter(arrayobject *ao);
2823
Tim Peters0c322792002-07-17 16:49:03 +00002824static PyTypeObject Arraytype = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002825 PyVarObject_HEAD_INIT(NULL, 0)
2826 "array.array",
2827 sizeof(arrayobject),
2828 0,
2829 (destructor)array_dealloc, /* tp_dealloc */
2830 0, /* tp_print */
2831 0, /* tp_getattr */
2832 0, /* tp_setattr */
2833 0, /* tp_reserved */
2834 (reprfunc)array_repr, /* tp_repr */
2835 0, /* tp_as_number*/
2836 &array_as_sequence, /* tp_as_sequence*/
2837 &array_as_mapping, /* tp_as_mapping*/
2838 0, /* tp_hash */
2839 0, /* tp_call */
2840 0, /* tp_str */
2841 PyObject_GenericGetAttr, /* tp_getattro */
2842 0, /* tp_setattro */
2843 &array_as_buffer, /* tp_as_buffer*/
2844 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
2845 arraytype_doc, /* tp_doc */
2846 0, /* tp_traverse */
2847 0, /* tp_clear */
2848 array_richcompare, /* tp_richcompare */
2849 offsetof(arrayobject, weakreflist), /* tp_weaklistoffset */
2850 (getiterfunc)array_iter, /* tp_iter */
2851 0, /* tp_iternext */
2852 array_methods, /* tp_methods */
2853 0, /* tp_members */
2854 array_getsets, /* tp_getset */
2855 0, /* tp_base */
2856 0, /* tp_dict */
2857 0, /* tp_descr_get */
2858 0, /* tp_descr_set */
2859 0, /* tp_dictoffset */
2860 0, /* tp_init */
2861 PyType_GenericAlloc, /* tp_alloc */
2862 array_new, /* tp_new */
2863 PyObject_Del, /* tp_free */
Guido van Rossumb39b90d1998-10-13 14:27:22 +00002864};
2865
Raymond Hettinger625812f2003-01-07 01:58:52 +00002866
2867/*********************** Array Iterator **************************/
2868
Brett Cannon1eb32c22014-10-10 16:26:45 -04002869/*[clinic input]
2870class array.arrayiterator "arrayiterobject *" "&PyArrayIter_Type"
2871[clinic start generated code]*/
2872/*[clinic end generated code: output=da39a3ee5e6b4b0d input=5aefd2d74d8c8e30]*/
Raymond Hettinger625812f2003-01-07 01:58:52 +00002873
2874static PyObject *
2875array_iter(arrayobject *ao)
2876{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002877 arrayiterobject *it;
Raymond Hettinger625812f2003-01-07 01:58:52 +00002878
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002879 if (!array_Check(ao)) {
2880 PyErr_BadInternalCall();
2881 return NULL;
2882 }
Raymond Hettinger625812f2003-01-07 01:58:52 +00002883
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002884 it = PyObject_GC_New(arrayiterobject, &PyArrayIter_Type);
2885 if (it == NULL)
2886 return NULL;
Raymond Hettinger625812f2003-01-07 01:58:52 +00002887
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002888 Py_INCREF(ao);
2889 it->ao = ao;
2890 it->index = 0;
2891 it->getitem = ao->ob_descr->getitem;
2892 PyObject_GC_Track(it);
2893 return (PyObject *)it;
Raymond Hettinger625812f2003-01-07 01:58:52 +00002894}
2895
2896static PyObject *
Raymond Hettinger625812f2003-01-07 01:58:52 +00002897arrayiter_next(arrayiterobject *it)
2898{
Serhiy Storchakaab0d1982016-03-30 21:11:16 +03002899 arrayobject *ao;
2900
2901 assert(it != NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002902 assert(PyArrayIter_Check(it));
Serhiy Storchakaab0d1982016-03-30 21:11:16 +03002903 ao = it->ao;
2904 if (ao == NULL) {
2905 return NULL;
2906 }
2907 assert(array_Check(ao));
2908 if (it->index < Py_SIZE(ao)) {
2909 return (*it->getitem)(ao, it->index++);
2910 }
2911 it->ao = NULL;
2912 Py_DECREF(ao);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002913 return NULL;
Raymond Hettinger625812f2003-01-07 01:58:52 +00002914}
2915
2916static void
2917arrayiter_dealloc(arrayiterobject *it)
2918{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002919 PyObject_GC_UnTrack(it);
2920 Py_XDECREF(it->ao);
2921 PyObject_GC_Del(it);
Raymond Hettinger625812f2003-01-07 01:58:52 +00002922}
2923
2924static int
2925arrayiter_traverse(arrayiterobject *it, visitproc visit, void *arg)
2926{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002927 Py_VISIT(it->ao);
2928 return 0;
Raymond Hettinger625812f2003-01-07 01:58:52 +00002929}
2930
Brett Cannon1eb32c22014-10-10 16:26:45 -04002931/*[clinic input]
2932array.arrayiterator.__reduce__
2933
2934Return state information for pickling.
2935[clinic start generated code]*/
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00002936
2937static PyObject *
Brett Cannon1eb32c22014-10-10 16:26:45 -04002938array_arrayiterator___reduce___impl(arrayiterobject *self)
2939/*[clinic end generated code: output=7898a52e8e66e016 input=a062ea1e9951417a]*/
2940{
Serhiy Storchakaab0d1982016-03-30 21:11:16 +03002941 PyObject *func = _PyObject_GetBuiltin("iter");
2942 if (self->ao == NULL) {
2943 return Py_BuildValue("N(())", func);
2944 }
2945 return Py_BuildValue("N(O)n", func, self->ao, self->index);
Brett Cannon1eb32c22014-10-10 16:26:45 -04002946}
2947
2948/*[clinic input]
2949array.arrayiterator.__setstate__
2950
2951 state: object
2952 /
2953
2954Set state information for unpickling.
2955[clinic start generated code]*/
2956
2957static PyObject *
2958array_arrayiterator___setstate__(arrayiterobject *self, PyObject *state)
2959/*[clinic end generated code: output=397da9904e443cbe input=f47d5ceda19e787b]*/
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00002960{
2961 Py_ssize_t index = PyLong_AsSsize_t(state);
2962 if (index == -1 && PyErr_Occurred())
2963 return NULL;
2964 if (index < 0)
2965 index = 0;
Brett Cannon1eb32c22014-10-10 16:26:45 -04002966 else if (index > Py_SIZE(self->ao))
2967 index = Py_SIZE(self->ao); /* iterator exhausted */
2968 self->index = index;
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00002969 Py_RETURN_NONE;
2970}
2971
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00002972static PyMethodDef arrayiter_methods[] = {
Brett Cannon1eb32c22014-10-10 16:26:45 -04002973 ARRAY_ARRAYITERATOR___REDUCE___METHODDEF
2974 ARRAY_ARRAYITERATOR___SETSTATE___METHODDEF
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00002975 {NULL, NULL} /* sentinel */
2976};
2977
Raymond Hettinger625812f2003-01-07 01:58:52 +00002978static PyTypeObject PyArrayIter_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002979 PyVarObject_HEAD_INIT(NULL, 0)
2980 "arrayiterator", /* tp_name */
2981 sizeof(arrayiterobject), /* tp_basicsize */
2982 0, /* tp_itemsize */
2983 /* methods */
2984 (destructor)arrayiter_dealloc, /* tp_dealloc */
2985 0, /* tp_print */
2986 0, /* tp_getattr */
2987 0, /* tp_setattr */
2988 0, /* tp_reserved */
2989 0, /* tp_repr */
2990 0, /* tp_as_number */
2991 0, /* tp_as_sequence */
2992 0, /* tp_as_mapping */
2993 0, /* tp_hash */
2994 0, /* tp_call */
2995 0, /* tp_str */
2996 PyObject_GenericGetAttr, /* tp_getattro */
2997 0, /* tp_setattro */
2998 0, /* tp_as_buffer */
2999 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
3000 0, /* tp_doc */
3001 (traverseproc)arrayiter_traverse, /* tp_traverse */
3002 0, /* tp_clear */
3003 0, /* tp_richcompare */
3004 0, /* tp_weaklistoffset */
3005 PyObject_SelfIter, /* tp_iter */
3006 (iternextfunc)arrayiter_next, /* tp_iternext */
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +00003007 arrayiter_methods, /* tp_methods */
Raymond Hettinger625812f2003-01-07 01:58:52 +00003008};
3009
3010
3011/*********************** Install Module **************************/
3012
Martin v. Löwis99866332002-03-01 10:27:01 +00003013/* No functions in array module. */
3014static PyMethodDef a_methods[] = {
Brett Cannon1eb32c22014-10-10 16:26:45 -04003015 ARRAY__ARRAY_RECONSTRUCTOR_METHODDEF
Martin v. Löwis99866332002-03-01 10:27:01 +00003016 {NULL, NULL, 0, NULL} /* Sentinel */
3017};
3018
Nick Coghland5cacbb2015-05-23 22:24:10 +10003019static int
3020array_modexec(PyObject *m)
Guido van Rossum778983b1993-02-19 15:55:02 +00003021{
Georg Brandl4cb0de22011-09-28 21:49:49 +02003022 char buffer[Py_ARRAY_LENGTH(descriptors)], *p;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003023 PyObject *typecodes;
3024 Py_ssize_t size = 0;
Serhiy Storchaka2d06e842015-12-25 19:53:18 +02003025 const struct arraydescr *descr;
Fred Drake0d40ba42000-02-04 20:33:49 +00003026
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003027 if (PyType_Ready(&Arraytype) < 0)
Nick Coghland5cacbb2015-05-23 22:24:10 +10003028 return -1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003029 Py_TYPE(&PyArrayIter_Type) = &PyType_Type;
Fred Drakef4e34842002-04-01 03:45:06 +00003030
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003031 Py_INCREF((PyObject *)&Arraytype);
3032 PyModule_AddObject(m, "ArrayType", (PyObject *)&Arraytype);
3033 Py_INCREF((PyObject *)&Arraytype);
3034 PyModule_AddObject(m, "array", (PyObject *)&Arraytype);
Travis E. Oliphantd5c0add2007-10-12 22:05:15 +00003035
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003036 for (descr=descriptors; descr->typecode != '\0'; descr++) {
3037 size++;
3038 }
Travis E. Oliphantd5c0add2007-10-12 22:05:15 +00003039
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003040 p = buffer;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003041 for (descr = descriptors; descr->typecode != '\0'; descr++) {
3042 *p++ = (char)descr->typecode;
3043 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003044 typecodes = PyUnicode_DecodeASCII(buffer, p - buffer, NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003045
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003046 PyModule_AddObject(m, "typecodes", typecodes);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003047
3048 if (PyErr_Occurred()) {
3049 Py_DECREF(m);
3050 m = NULL;
3051 }
Nick Coghland5cacbb2015-05-23 22:24:10 +10003052 return 0;
3053}
3054
3055static PyModuleDef_Slot arrayslots[] = {
3056 {Py_mod_exec, array_modexec},
3057 {0, NULL}
3058};
3059
3060
3061static struct PyModuleDef arraymodule = {
3062 PyModuleDef_HEAD_INIT,
3063 "array",
3064 module_doc,
3065 0,
3066 a_methods,
3067 arrayslots,
3068 NULL,
3069 NULL,
3070 NULL
3071};
3072
3073
3074PyMODINIT_FUNC
3075PyInit_array(void)
3076{
3077 return PyModuleDef_Init(&arraymodule);
Guido van Rossum778983b1993-02-19 15:55:02 +00003078}