[2] | 1 | /* 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 |
|
---|
| 6 | #define PY_SSIZE_T_CLEAN
|
---|
| 7 | #include "Python.h"
|
---|
| 8 | #include "structmember.h"
|
---|
| 9 |
|
---|
| 10 | #ifdef STDC_HEADERS
|
---|
| 11 | #include <stddef.h>
|
---|
| 12 | #else /* !STDC_HEADERS */
|
---|
| 13 | #ifdef HAVE_SYS_TYPES_H
|
---|
[391] | 14 | #include <sys/types.h> /* For size_t */
|
---|
[2] | 15 | #endif /* HAVE_SYS_TYPES_H */
|
---|
| 16 | #endif /* !STDC_HEADERS */
|
---|
| 17 |
|
---|
| 18 | struct arrayobject; /* Forward */
|
---|
| 19 |
|
---|
| 20 | /* All possible arraydescr values are defined in the vector "descriptors"
|
---|
| 21 | * below. That's defined later because the appropriate get and set
|
---|
| 22 | * functions aren't visible yet.
|
---|
| 23 | */
|
---|
| 24 | struct arraydescr {
|
---|
[391] | 25 | int typecode;
|
---|
| 26 | int itemsize;
|
---|
| 27 | PyObject * (*getitem)(struct arrayobject *, Py_ssize_t);
|
---|
| 28 | int (*setitem)(struct arrayobject *, Py_ssize_t, PyObject *);
|
---|
[2] | 29 | };
|
---|
| 30 |
|
---|
| 31 | typedef struct arrayobject {
|
---|
[391] | 32 | PyObject_VAR_HEAD
|
---|
| 33 | char *ob_item;
|
---|
| 34 | Py_ssize_t allocated;
|
---|
| 35 | struct arraydescr *ob_descr;
|
---|
| 36 | PyObject *weakreflist; /* List of weak references */
|
---|
[2] | 37 | } arrayobject;
|
---|
| 38 |
|
---|
| 39 | static PyTypeObject Arraytype;
|
---|
| 40 |
|
---|
| 41 | #define array_Check(op) PyObject_TypeCheck(op, &Arraytype)
|
---|
| 42 | #define array_CheckExact(op) (Py_TYPE(op) == &Arraytype)
|
---|
| 43 |
|
---|
| 44 | static int
|
---|
| 45 | array_resize(arrayobject *self, Py_ssize_t newsize)
|
---|
| 46 | {
|
---|
[391] | 47 | char *items;
|
---|
| 48 | size_t _new_size;
|
---|
[2] | 49 |
|
---|
[391] | 50 | /* Bypass realloc() when a previous overallocation is large enough
|
---|
| 51 | to accommodate the newsize. If the newsize is 16 smaller than the
|
---|
| 52 | current size, then proceed with the realloc() to shrink the list.
|
---|
| 53 | */
|
---|
[2] | 54 |
|
---|
[391] | 55 | if (self->allocated >= newsize &&
|
---|
| 56 | Py_SIZE(self) < newsize + 16 &&
|
---|
| 57 | self->ob_item != NULL) {
|
---|
| 58 | Py_SIZE(self) = newsize;
|
---|
| 59 | return 0;
|
---|
| 60 | }
|
---|
[2] | 61 |
|
---|
[391] | 62 | /* This over-allocates proportional to the array size, making room
|
---|
| 63 | * for additional growth. The over-allocation is mild, but is
|
---|
| 64 | * enough to give linear-time amortized behavior over a long
|
---|
| 65 | * sequence of appends() in the presence of a poorly-performing
|
---|
| 66 | * system realloc().
|
---|
| 67 | * The growth pattern is: 0, 4, 8, 16, 25, 34, 46, 56, 67, 79, ...
|
---|
| 68 | * Note, the pattern starts out the same as for lists but then
|
---|
| 69 | * grows at a smaller rate so that larger arrays only overallocate
|
---|
| 70 | * by about 1/16th -- this is done because arrays are presumed to be more
|
---|
| 71 | * memory critical.
|
---|
| 72 | */
|
---|
[2] | 73 |
|
---|
[391] | 74 | _new_size = (newsize >> 4) + (Py_SIZE(self) < 8 ? 3 : 7) + newsize;
|
---|
| 75 | items = self->ob_item;
|
---|
| 76 | /* XXX The following multiplication and division does not optimize away
|
---|
| 77 | like it does for lists since the size is not known at compile time */
|
---|
| 78 | if (_new_size <= ((~(size_t)0) / self->ob_descr->itemsize))
|
---|
| 79 | PyMem_RESIZE(items, char, (_new_size * self->ob_descr->itemsize));
|
---|
| 80 | else
|
---|
| 81 | items = NULL;
|
---|
| 82 | if (items == NULL) {
|
---|
| 83 | PyErr_NoMemory();
|
---|
| 84 | return -1;
|
---|
| 85 | }
|
---|
| 86 | self->ob_item = items;
|
---|
| 87 | Py_SIZE(self) = newsize;
|
---|
| 88 | self->allocated = _new_size;
|
---|
| 89 | return 0;
|
---|
[2] | 90 | }
|
---|
| 91 |
|
---|
| 92 | /****************************************************************************
|
---|
| 93 | Get and Set functions for each type.
|
---|
| 94 | A Get function takes an arrayobject* and an integer index, returning the
|
---|
| 95 | array value at that index wrapped in an appropriate PyObject*.
|
---|
| 96 | A Set function takes an arrayobject, integer index, and PyObject*; sets
|
---|
| 97 | the array value at that index to the raw C data extracted from the PyObject*,
|
---|
| 98 | and returns 0 if successful, else nonzero on failure (PyObject* not of an
|
---|
| 99 | appropriate type or value).
|
---|
| 100 | Note that the basic Get and Set functions do NOT check that the index is
|
---|
| 101 | in bounds; that's the responsibility of the caller.
|
---|
| 102 | ****************************************************************************/
|
---|
| 103 |
|
---|
| 104 | static PyObject *
|
---|
| 105 | c_getitem(arrayobject *ap, Py_ssize_t i)
|
---|
| 106 | {
|
---|
[391] | 107 | return PyString_FromStringAndSize(&((char *)ap->ob_item)[i], 1);
|
---|
[2] | 108 | }
|
---|
| 109 |
|
---|
| 110 | static int
|
---|
| 111 | c_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
|
---|
| 112 | {
|
---|
[391] | 113 | char x;
|
---|
| 114 | if (!PyArg_Parse(v, "c;array item must be char", &x))
|
---|
| 115 | return -1;
|
---|
| 116 | if (i >= 0)
|
---|
| 117 | ((char *)ap->ob_item)[i] = x;
|
---|
| 118 | return 0;
|
---|
[2] | 119 | }
|
---|
| 120 |
|
---|
| 121 | static PyObject *
|
---|
| 122 | b_getitem(arrayobject *ap, Py_ssize_t i)
|
---|
| 123 | {
|
---|
[391] | 124 | long x = ((char *)ap->ob_item)[i];
|
---|
| 125 | if (x >= 128)
|
---|
| 126 | x -= 256;
|
---|
| 127 | return PyInt_FromLong(x);
|
---|
[2] | 128 | }
|
---|
| 129 |
|
---|
| 130 | static int
|
---|
| 131 | b_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
|
---|
| 132 | {
|
---|
[391] | 133 | short x;
|
---|
| 134 | /* PyArg_Parse's 'b' formatter is for an unsigned char, therefore
|
---|
| 135 | must use the next size up that is signed ('h') and manually do
|
---|
| 136 | the overflow checking */
|
---|
| 137 | if (!PyArg_Parse(v, "h;array item must be integer", &x))
|
---|
| 138 | return -1;
|
---|
| 139 | else if (x < -128) {
|
---|
| 140 | PyErr_SetString(PyExc_OverflowError,
|
---|
| 141 | "signed char is less than minimum");
|
---|
| 142 | return -1;
|
---|
| 143 | }
|
---|
| 144 | else if (x > 127) {
|
---|
| 145 | PyErr_SetString(PyExc_OverflowError,
|
---|
| 146 | "signed char is greater than maximum");
|
---|
| 147 | return -1;
|
---|
| 148 | }
|
---|
| 149 | if (i >= 0)
|
---|
| 150 | ((char *)ap->ob_item)[i] = (char)x;
|
---|
| 151 | return 0;
|
---|
[2] | 152 | }
|
---|
| 153 |
|
---|
| 154 | static PyObject *
|
---|
| 155 | BB_getitem(arrayobject *ap, Py_ssize_t i)
|
---|
| 156 | {
|
---|
[391] | 157 | long x = ((unsigned char *)ap->ob_item)[i];
|
---|
| 158 | return PyInt_FromLong(x);
|
---|
[2] | 159 | }
|
---|
| 160 |
|
---|
| 161 | static int
|
---|
| 162 | BB_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
|
---|
| 163 | {
|
---|
[391] | 164 | unsigned char x;
|
---|
| 165 | /* 'B' == unsigned char, maps to PyArg_Parse's 'b' formatter */
|
---|
| 166 | if (!PyArg_Parse(v, "b;array item must be integer", &x))
|
---|
| 167 | return -1;
|
---|
| 168 | if (i >= 0)
|
---|
| 169 | ((char *)ap->ob_item)[i] = x;
|
---|
| 170 | return 0;
|
---|
[2] | 171 | }
|
---|
| 172 |
|
---|
| 173 | #ifdef Py_USING_UNICODE
|
---|
| 174 | static PyObject *
|
---|
| 175 | u_getitem(arrayobject *ap, Py_ssize_t i)
|
---|
| 176 | {
|
---|
[391] | 177 | return PyUnicode_FromUnicode(&((Py_UNICODE *) ap->ob_item)[i], 1);
|
---|
[2] | 178 | }
|
---|
| 179 |
|
---|
| 180 | static int
|
---|
| 181 | u_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
|
---|
| 182 | {
|
---|
[391] | 183 | Py_UNICODE *p;
|
---|
| 184 | Py_ssize_t len;
|
---|
[2] | 185 |
|
---|
[391] | 186 | if (!PyArg_Parse(v, "u#;array item must be unicode character", &p, &len))
|
---|
| 187 | return -1;
|
---|
| 188 | if (len != 1) {
|
---|
| 189 | PyErr_SetString(PyExc_TypeError,
|
---|
| 190 | "array item must be unicode character");
|
---|
| 191 | return -1;
|
---|
| 192 | }
|
---|
| 193 | if (i >= 0)
|
---|
| 194 | ((Py_UNICODE *)ap->ob_item)[i] = p[0];
|
---|
| 195 | return 0;
|
---|
[2] | 196 | }
|
---|
| 197 | #endif
|
---|
| 198 |
|
---|
| 199 | static PyObject *
|
---|
| 200 | h_getitem(arrayobject *ap, Py_ssize_t i)
|
---|
| 201 | {
|
---|
[391] | 202 | return PyInt_FromLong((long) ((short *)ap->ob_item)[i]);
|
---|
[2] | 203 | }
|
---|
| 204 |
|
---|
| 205 | static int
|
---|
| 206 | h_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
|
---|
| 207 | {
|
---|
[391] | 208 | short x;
|
---|
| 209 | /* 'h' == signed short, maps to PyArg_Parse's 'h' formatter */
|
---|
| 210 | if (!PyArg_Parse(v, "h;array item must be integer", &x))
|
---|
| 211 | return -1;
|
---|
| 212 | if (i >= 0)
|
---|
| 213 | ((short *)ap->ob_item)[i] = x;
|
---|
| 214 | return 0;
|
---|
[2] | 215 | }
|
---|
| 216 |
|
---|
| 217 | static PyObject *
|
---|
| 218 | HH_getitem(arrayobject *ap, Py_ssize_t i)
|
---|
| 219 | {
|
---|
[391] | 220 | return PyInt_FromLong((long) ((unsigned short *)ap->ob_item)[i]);
|
---|
[2] | 221 | }
|
---|
| 222 |
|
---|
| 223 | static int
|
---|
| 224 | HH_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
|
---|
| 225 | {
|
---|
[391] | 226 | int x;
|
---|
| 227 | /* PyArg_Parse's 'h' formatter is for a signed short, therefore
|
---|
| 228 | must use the next size up and manually do the overflow checking */
|
---|
| 229 | if (!PyArg_Parse(v, "i;array item must be integer", &x))
|
---|
| 230 | return -1;
|
---|
| 231 | else if (x < 0) {
|
---|
| 232 | PyErr_SetString(PyExc_OverflowError,
|
---|
| 233 | "unsigned short is less than minimum");
|
---|
| 234 | return -1;
|
---|
| 235 | }
|
---|
| 236 | else if (x > USHRT_MAX) {
|
---|
| 237 | PyErr_SetString(PyExc_OverflowError,
|
---|
| 238 | "unsigned short is greater than maximum");
|
---|
| 239 | return -1;
|
---|
| 240 | }
|
---|
| 241 | if (i >= 0)
|
---|
| 242 | ((short *)ap->ob_item)[i] = (short)x;
|
---|
| 243 | return 0;
|
---|
[2] | 244 | }
|
---|
| 245 |
|
---|
| 246 | static PyObject *
|
---|
| 247 | i_getitem(arrayobject *ap, Py_ssize_t i)
|
---|
| 248 | {
|
---|
[391] | 249 | return PyInt_FromLong((long) ((int *)ap->ob_item)[i]);
|
---|
[2] | 250 | }
|
---|
| 251 |
|
---|
| 252 | static int
|
---|
| 253 | i_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
|
---|
| 254 | {
|
---|
[391] | 255 | int x;
|
---|
| 256 | /* 'i' == signed int, maps to PyArg_Parse's 'i' formatter */
|
---|
| 257 | if (!PyArg_Parse(v, "i;array item must be integer", &x))
|
---|
| 258 | return -1;
|
---|
| 259 | if (i >= 0)
|
---|
| 260 | ((int *)ap->ob_item)[i] = x;
|
---|
| 261 | return 0;
|
---|
[2] | 262 | }
|
---|
| 263 |
|
---|
| 264 | static PyObject *
|
---|
| 265 | II_getitem(arrayobject *ap, Py_ssize_t i)
|
---|
| 266 | {
|
---|
[391] | 267 | return PyLong_FromUnsignedLong(
|
---|
| 268 | (unsigned long) ((unsigned int *)ap->ob_item)[i]);
|
---|
[2] | 269 | }
|
---|
| 270 |
|
---|
| 271 | static int
|
---|
| 272 | II_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
|
---|
| 273 | {
|
---|
[391] | 274 | unsigned long x;
|
---|
| 275 | if (PyLong_Check(v)) {
|
---|
| 276 | x = PyLong_AsUnsignedLong(v);
|
---|
| 277 | if (x == (unsigned long) -1 && PyErr_Occurred())
|
---|
| 278 | return -1;
|
---|
| 279 | }
|
---|
| 280 | else {
|
---|
| 281 | long y;
|
---|
| 282 | if (!PyArg_Parse(v, "l;array item must be integer", &y))
|
---|
| 283 | return -1;
|
---|
| 284 | if (y < 0) {
|
---|
| 285 | PyErr_SetString(PyExc_OverflowError,
|
---|
| 286 | "unsigned int is less than minimum");
|
---|
| 287 | return -1;
|
---|
| 288 | }
|
---|
| 289 | x = (unsigned long)y;
|
---|
[2] | 290 |
|
---|
[391] | 291 | }
|
---|
| 292 | if (x > UINT_MAX) {
|
---|
| 293 | PyErr_SetString(PyExc_OverflowError,
|
---|
| 294 | "unsigned int is greater than maximum");
|
---|
| 295 | return -1;
|
---|
| 296 | }
|
---|
[2] | 297 |
|
---|
[391] | 298 | if (i >= 0)
|
---|
| 299 | ((unsigned int *)ap->ob_item)[i] = (unsigned int)x;
|
---|
| 300 | return 0;
|
---|
[2] | 301 | }
|
---|
| 302 |
|
---|
| 303 | static PyObject *
|
---|
| 304 | l_getitem(arrayobject *ap, Py_ssize_t i)
|
---|
| 305 | {
|
---|
[391] | 306 | return PyInt_FromLong(((long *)ap->ob_item)[i]);
|
---|
[2] | 307 | }
|
---|
| 308 |
|
---|
| 309 | static int
|
---|
| 310 | l_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
|
---|
| 311 | {
|
---|
[391] | 312 | long x;
|
---|
| 313 | if (!PyArg_Parse(v, "l;array item must be integer", &x))
|
---|
| 314 | return -1;
|
---|
| 315 | if (i >= 0)
|
---|
| 316 | ((long *)ap->ob_item)[i] = x;
|
---|
| 317 | return 0;
|
---|
[2] | 318 | }
|
---|
| 319 |
|
---|
| 320 | static PyObject *
|
---|
| 321 | LL_getitem(arrayobject *ap, Py_ssize_t i)
|
---|
| 322 | {
|
---|
[391] | 323 | return PyLong_FromUnsignedLong(((unsigned long *)ap->ob_item)[i]);
|
---|
[2] | 324 | }
|
---|
| 325 |
|
---|
| 326 | static int
|
---|
| 327 | LL_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
|
---|
| 328 | {
|
---|
[391] | 329 | unsigned long x;
|
---|
| 330 | if (PyLong_Check(v)) {
|
---|
| 331 | x = PyLong_AsUnsignedLong(v);
|
---|
| 332 | if (x == (unsigned long) -1 && PyErr_Occurred())
|
---|
| 333 | return -1;
|
---|
| 334 | }
|
---|
| 335 | else {
|
---|
| 336 | long y;
|
---|
| 337 | if (!PyArg_Parse(v, "l;array item must be integer", &y))
|
---|
| 338 | return -1;
|
---|
| 339 | if (y < 0) {
|
---|
| 340 | PyErr_SetString(PyExc_OverflowError,
|
---|
| 341 | "unsigned long is less than minimum");
|
---|
| 342 | return -1;
|
---|
| 343 | }
|
---|
| 344 | x = (unsigned long)y;
|
---|
[2] | 345 |
|
---|
[391] | 346 | }
|
---|
| 347 | if (x > ULONG_MAX) {
|
---|
| 348 | PyErr_SetString(PyExc_OverflowError,
|
---|
| 349 | "unsigned long is greater than maximum");
|
---|
| 350 | return -1;
|
---|
| 351 | }
|
---|
[2] | 352 |
|
---|
[391] | 353 | if (i >= 0)
|
---|
| 354 | ((unsigned long *)ap->ob_item)[i] = x;
|
---|
| 355 | return 0;
|
---|
[2] | 356 | }
|
---|
| 357 |
|
---|
| 358 | static PyObject *
|
---|
| 359 | f_getitem(arrayobject *ap, Py_ssize_t i)
|
---|
| 360 | {
|
---|
[391] | 361 | return PyFloat_FromDouble((double) ((float *)ap->ob_item)[i]);
|
---|
[2] | 362 | }
|
---|
| 363 |
|
---|
| 364 | static int
|
---|
| 365 | f_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
|
---|
| 366 | {
|
---|
[391] | 367 | float x;
|
---|
| 368 | if (!PyArg_Parse(v, "f;array item must be float", &x))
|
---|
| 369 | return -1;
|
---|
| 370 | if (i >= 0)
|
---|
| 371 | ((float *)ap->ob_item)[i] = x;
|
---|
| 372 | return 0;
|
---|
[2] | 373 | }
|
---|
| 374 |
|
---|
| 375 | static PyObject *
|
---|
| 376 | d_getitem(arrayobject *ap, Py_ssize_t i)
|
---|
| 377 | {
|
---|
[391] | 378 | return PyFloat_FromDouble(((double *)ap->ob_item)[i]);
|
---|
[2] | 379 | }
|
---|
| 380 |
|
---|
| 381 | static int
|
---|
| 382 | d_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
|
---|
| 383 | {
|
---|
[391] | 384 | double x;
|
---|
| 385 | if (!PyArg_Parse(v, "d;array item must be float", &x))
|
---|
| 386 | return -1;
|
---|
| 387 | if (i >= 0)
|
---|
| 388 | ((double *)ap->ob_item)[i] = x;
|
---|
| 389 | return 0;
|
---|
[2] | 390 | }
|
---|
| 391 |
|
---|
| 392 | /* Description of types */
|
---|
| 393 | static struct arraydescr descriptors[] = {
|
---|
[391] | 394 | {'c', sizeof(char), c_getitem, c_setitem},
|
---|
| 395 | {'b', sizeof(char), b_getitem, b_setitem},
|
---|
| 396 | {'B', sizeof(char), BB_getitem, BB_setitem},
|
---|
[2] | 397 | #ifdef Py_USING_UNICODE
|
---|
[391] | 398 | {'u', sizeof(Py_UNICODE), u_getitem, u_setitem},
|
---|
[2] | 399 | #endif
|
---|
[391] | 400 | {'h', sizeof(short), h_getitem, h_setitem},
|
---|
| 401 | {'H', sizeof(short), HH_getitem, HH_setitem},
|
---|
| 402 | {'i', sizeof(int), i_getitem, i_setitem},
|
---|
| 403 | {'I', sizeof(int), II_getitem, II_setitem},
|
---|
| 404 | {'l', sizeof(long), l_getitem, l_setitem},
|
---|
| 405 | {'L', sizeof(long), LL_getitem, LL_setitem},
|
---|
| 406 | {'f', sizeof(float), f_getitem, f_setitem},
|
---|
| 407 | {'d', sizeof(double), d_getitem, d_setitem},
|
---|
| 408 | {'\0', 0, 0, 0} /* Sentinel */
|
---|
[2] | 409 | };
|
---|
| 410 |
|
---|
| 411 | /****************************************************************************
|
---|
| 412 | Implementations of array object methods.
|
---|
| 413 | ****************************************************************************/
|
---|
| 414 |
|
---|
| 415 | static PyObject *
|
---|
| 416 | newarrayobject(PyTypeObject *type, Py_ssize_t size, struct arraydescr *descr)
|
---|
| 417 | {
|
---|
[391] | 418 | arrayobject *op;
|
---|
| 419 | size_t nbytes;
|
---|
[2] | 420 |
|
---|
[391] | 421 | if (size < 0) {
|
---|
| 422 | PyErr_BadInternalCall();
|
---|
| 423 | return NULL;
|
---|
| 424 | }
|
---|
[2] | 425 |
|
---|
[391] | 426 | nbytes = size * descr->itemsize;
|
---|
| 427 | /* Check for overflow */
|
---|
| 428 | if (nbytes / descr->itemsize != (size_t)size) {
|
---|
| 429 | return PyErr_NoMemory();
|
---|
| 430 | }
|
---|
| 431 | op = (arrayobject *) type->tp_alloc(type, 0);
|
---|
| 432 | if (op == NULL) {
|
---|
| 433 | return NULL;
|
---|
| 434 | }
|
---|
| 435 | op->ob_descr = descr;
|
---|
| 436 | op->allocated = size;
|
---|
| 437 | op->weakreflist = NULL;
|
---|
| 438 | Py_SIZE(op) = size;
|
---|
| 439 | if (size <= 0) {
|
---|
| 440 | op->ob_item = NULL;
|
---|
| 441 | }
|
---|
| 442 | else {
|
---|
| 443 | op->ob_item = PyMem_NEW(char, nbytes);
|
---|
| 444 | if (op->ob_item == NULL) {
|
---|
| 445 | Py_DECREF(op);
|
---|
| 446 | return PyErr_NoMemory();
|
---|
| 447 | }
|
---|
| 448 | }
|
---|
| 449 | return (PyObject *) op;
|
---|
[2] | 450 | }
|
---|
| 451 |
|
---|
| 452 | static PyObject *
|
---|
| 453 | getarrayitem(PyObject *op, Py_ssize_t i)
|
---|
| 454 | {
|
---|
[391] | 455 | register arrayobject *ap;
|
---|
| 456 | assert(array_Check(op));
|
---|
| 457 | ap = (arrayobject *)op;
|
---|
| 458 | assert(i>=0 && i<Py_SIZE(ap));
|
---|
| 459 | return (*ap->ob_descr->getitem)(ap, i);
|
---|
[2] | 460 | }
|
---|
| 461 |
|
---|
| 462 | static int
|
---|
| 463 | ins1(arrayobject *self, Py_ssize_t where, PyObject *v)
|
---|
| 464 | {
|
---|
[391] | 465 | char *items;
|
---|
| 466 | Py_ssize_t n = Py_SIZE(self);
|
---|
| 467 | if (v == NULL) {
|
---|
| 468 | PyErr_BadInternalCall();
|
---|
| 469 | return -1;
|
---|
| 470 | }
|
---|
| 471 | if ((*self->ob_descr->setitem)(self, -1, v) < 0)
|
---|
| 472 | return -1;
|
---|
[2] | 473 |
|
---|
[391] | 474 | if (array_resize(self, n+1) == -1)
|
---|
| 475 | return -1;
|
---|
| 476 | items = self->ob_item;
|
---|
| 477 | if (where < 0) {
|
---|
| 478 | where += n;
|
---|
| 479 | if (where < 0)
|
---|
| 480 | where = 0;
|
---|
| 481 | }
|
---|
| 482 | if (where > n)
|
---|
| 483 | where = n;
|
---|
| 484 | /* appends don't need to call memmove() */
|
---|
| 485 | if (where != n)
|
---|
| 486 | memmove(items + (where+1)*self->ob_descr->itemsize,
|
---|
| 487 | items + where*self->ob_descr->itemsize,
|
---|
| 488 | (n-where)*self->ob_descr->itemsize);
|
---|
| 489 | return (*self->ob_descr->setitem)(self, where, v);
|
---|
[2] | 490 | }
|
---|
| 491 |
|
---|
| 492 | /* Methods */
|
---|
| 493 |
|
---|
| 494 | static void
|
---|
| 495 | array_dealloc(arrayobject *op)
|
---|
| 496 | {
|
---|
[391] | 497 | if (op->weakreflist != NULL)
|
---|
| 498 | PyObject_ClearWeakRefs((PyObject *) op);
|
---|
| 499 | if (op->ob_item != NULL)
|
---|
| 500 | PyMem_DEL(op->ob_item);
|
---|
| 501 | Py_TYPE(op)->tp_free((PyObject *)op);
|
---|
[2] | 502 | }
|
---|
| 503 |
|
---|
| 504 | static PyObject *
|
---|
| 505 | array_richcompare(PyObject *v, PyObject *w, int op)
|
---|
| 506 | {
|
---|
[391] | 507 | arrayobject *va, *wa;
|
---|
| 508 | PyObject *vi = NULL;
|
---|
| 509 | PyObject *wi = NULL;
|
---|
| 510 | Py_ssize_t i, k;
|
---|
| 511 | PyObject *res;
|
---|
[2] | 512 |
|
---|
[391] | 513 | if (!array_Check(v) || !array_Check(w)) {
|
---|
| 514 | Py_INCREF(Py_NotImplemented);
|
---|
| 515 | return Py_NotImplemented;
|
---|
| 516 | }
|
---|
[2] | 517 |
|
---|
[391] | 518 | va = (arrayobject *)v;
|
---|
| 519 | wa = (arrayobject *)w;
|
---|
[2] | 520 |
|
---|
[391] | 521 | if (Py_SIZE(va) != Py_SIZE(wa) && (op == Py_EQ || op == Py_NE)) {
|
---|
| 522 | /* Shortcut: if the lengths differ, the arrays differ */
|
---|
| 523 | if (op == Py_EQ)
|
---|
| 524 | res = Py_False;
|
---|
| 525 | else
|
---|
| 526 | res = Py_True;
|
---|
| 527 | Py_INCREF(res);
|
---|
| 528 | return res;
|
---|
| 529 | }
|
---|
[2] | 530 |
|
---|
[391] | 531 | /* Search for the first index where items are different */
|
---|
| 532 | k = 1;
|
---|
| 533 | for (i = 0; i < Py_SIZE(va) && i < Py_SIZE(wa); i++) {
|
---|
| 534 | vi = getarrayitem(v, i);
|
---|
| 535 | wi = getarrayitem(w, i);
|
---|
| 536 | if (vi == NULL || wi == NULL) {
|
---|
| 537 | Py_XDECREF(vi);
|
---|
| 538 | Py_XDECREF(wi);
|
---|
| 539 | return NULL;
|
---|
| 540 | }
|
---|
| 541 | k = PyObject_RichCompareBool(vi, wi, Py_EQ);
|
---|
| 542 | if (k == 0)
|
---|
| 543 | break; /* Keeping vi and wi alive! */
|
---|
| 544 | Py_DECREF(vi);
|
---|
| 545 | Py_DECREF(wi);
|
---|
| 546 | if (k < 0)
|
---|
| 547 | return NULL;
|
---|
| 548 | }
|
---|
[2] | 549 |
|
---|
[391] | 550 | if (k) {
|
---|
| 551 | /* No more items to compare -- compare sizes */
|
---|
| 552 | Py_ssize_t vs = Py_SIZE(va);
|
---|
| 553 | Py_ssize_t ws = Py_SIZE(wa);
|
---|
| 554 | int cmp;
|
---|
| 555 | switch (op) {
|
---|
| 556 | case Py_LT: cmp = vs < ws; break;
|
---|
| 557 | case Py_LE: cmp = vs <= ws; break;
|
---|
| 558 | case Py_EQ: cmp = vs == ws; break;
|
---|
| 559 | case Py_NE: cmp = vs != ws; break;
|
---|
| 560 | case Py_GT: cmp = vs > ws; break;
|
---|
| 561 | case Py_GE: cmp = vs >= ws; break;
|
---|
| 562 | default: return NULL; /* cannot happen */
|
---|
| 563 | }
|
---|
| 564 | if (cmp)
|
---|
| 565 | res = Py_True;
|
---|
| 566 | else
|
---|
| 567 | res = Py_False;
|
---|
| 568 | Py_INCREF(res);
|
---|
| 569 | return res;
|
---|
| 570 | }
|
---|
[2] | 571 |
|
---|
[391] | 572 | /* We have an item that differs. First, shortcuts for EQ/NE */
|
---|
| 573 | if (op == Py_EQ) {
|
---|
| 574 | Py_INCREF(Py_False);
|
---|
| 575 | res = Py_False;
|
---|
| 576 | }
|
---|
| 577 | else if (op == Py_NE) {
|
---|
| 578 | Py_INCREF(Py_True);
|
---|
| 579 | res = Py_True;
|
---|
| 580 | }
|
---|
| 581 | else {
|
---|
| 582 | /* Compare the final item again using the proper operator */
|
---|
| 583 | res = PyObject_RichCompare(vi, wi, op);
|
---|
| 584 | }
|
---|
| 585 | Py_DECREF(vi);
|
---|
| 586 | Py_DECREF(wi);
|
---|
| 587 | return res;
|
---|
[2] | 588 | }
|
---|
| 589 |
|
---|
| 590 | static Py_ssize_t
|
---|
| 591 | array_length(arrayobject *a)
|
---|
| 592 | {
|
---|
[391] | 593 | return Py_SIZE(a);
|
---|
[2] | 594 | }
|
---|
| 595 |
|
---|
| 596 | static PyObject *
|
---|
| 597 | array_item(arrayobject *a, Py_ssize_t i)
|
---|
| 598 | {
|
---|
[391] | 599 | if (i < 0 || i >= Py_SIZE(a)) {
|
---|
| 600 | PyErr_SetString(PyExc_IndexError, "array index out of range");
|
---|
| 601 | return NULL;
|
---|
| 602 | }
|
---|
| 603 | return getarrayitem((PyObject *)a, i);
|
---|
[2] | 604 | }
|
---|
| 605 |
|
---|
| 606 | static PyObject *
|
---|
| 607 | array_slice(arrayobject *a, Py_ssize_t ilow, Py_ssize_t ihigh)
|
---|
| 608 | {
|
---|
[391] | 609 | arrayobject *np;
|
---|
| 610 | if (ilow < 0)
|
---|
| 611 | ilow = 0;
|
---|
| 612 | else if (ilow > Py_SIZE(a))
|
---|
| 613 | ilow = Py_SIZE(a);
|
---|
| 614 | if (ihigh < 0)
|
---|
| 615 | ihigh = 0;
|
---|
| 616 | if (ihigh < ilow)
|
---|
| 617 | ihigh = ilow;
|
---|
| 618 | else if (ihigh > Py_SIZE(a))
|
---|
| 619 | ihigh = Py_SIZE(a);
|
---|
| 620 | np = (arrayobject *) newarrayobject(&Arraytype, ihigh - ilow, a->ob_descr);
|
---|
| 621 | if (np == NULL)
|
---|
| 622 | return NULL;
|
---|
| 623 | memcpy(np->ob_item, a->ob_item + ilow * a->ob_descr->itemsize,
|
---|
| 624 | (ihigh-ilow) * a->ob_descr->itemsize);
|
---|
| 625 | return (PyObject *)np;
|
---|
[2] | 626 | }
|
---|
| 627 |
|
---|
| 628 | static PyObject *
|
---|
| 629 | array_copy(arrayobject *a, PyObject *unused)
|
---|
| 630 | {
|
---|
[391] | 631 | return array_slice(a, 0, Py_SIZE(a));
|
---|
[2] | 632 | }
|
---|
| 633 |
|
---|
| 634 | PyDoc_STRVAR(copy_doc,
|
---|
| 635 | "copy(array)\n\
|
---|
| 636 | \n\
|
---|
| 637 | Return a copy of the array.");
|
---|
| 638 |
|
---|
| 639 | static PyObject *
|
---|
| 640 | array_concat(arrayobject *a, PyObject *bb)
|
---|
| 641 | {
|
---|
[391] | 642 | Py_ssize_t size;
|
---|
| 643 | arrayobject *np;
|
---|
| 644 | if (!array_Check(bb)) {
|
---|
| 645 | PyErr_Format(PyExc_TypeError,
|
---|
| 646 | "can only append array (not \"%.200s\") to array",
|
---|
| 647 | Py_TYPE(bb)->tp_name);
|
---|
| 648 | return NULL;
|
---|
| 649 | }
|
---|
[2] | 650 | #define b ((arrayobject *)bb)
|
---|
[391] | 651 | if (a->ob_descr != b->ob_descr) {
|
---|
| 652 | PyErr_BadArgument();
|
---|
| 653 | return NULL;
|
---|
| 654 | }
|
---|
| 655 | if (Py_SIZE(a) > PY_SSIZE_T_MAX - Py_SIZE(b)) {
|
---|
| 656 | return PyErr_NoMemory();
|
---|
| 657 | }
|
---|
| 658 | size = Py_SIZE(a) + Py_SIZE(b);
|
---|
| 659 | np = (arrayobject *) newarrayobject(&Arraytype, size, a->ob_descr);
|
---|
| 660 | if (np == NULL) {
|
---|
| 661 | return NULL;
|
---|
| 662 | }
|
---|
| 663 | memcpy(np->ob_item, a->ob_item, Py_SIZE(a)*a->ob_descr->itemsize);
|
---|
| 664 | memcpy(np->ob_item + Py_SIZE(a)*a->ob_descr->itemsize,
|
---|
| 665 | b->ob_item, Py_SIZE(b)*b->ob_descr->itemsize);
|
---|
| 666 | return (PyObject *)np;
|
---|
[2] | 667 | #undef b
|
---|
| 668 | }
|
---|
| 669 |
|
---|
| 670 | static PyObject *
|
---|
| 671 | array_repeat(arrayobject *a, Py_ssize_t n)
|
---|
| 672 | {
|
---|
[391] | 673 | Py_ssize_t i;
|
---|
| 674 | Py_ssize_t size;
|
---|
| 675 | arrayobject *np;
|
---|
| 676 | char *p;
|
---|
| 677 | Py_ssize_t nbytes;
|
---|
| 678 | if (n < 0)
|
---|
| 679 | n = 0;
|
---|
| 680 | if ((Py_SIZE(a) != 0) && (n > PY_SSIZE_T_MAX / Py_SIZE(a))) {
|
---|
| 681 | return PyErr_NoMemory();
|
---|
| 682 | }
|
---|
| 683 | size = Py_SIZE(a) * n;
|
---|
| 684 | np = (arrayobject *) newarrayobject(&Arraytype, size, a->ob_descr);
|
---|
| 685 | if (np == NULL)
|
---|
| 686 | return NULL;
|
---|
| 687 | p = np->ob_item;
|
---|
| 688 | nbytes = Py_SIZE(a) * a->ob_descr->itemsize;
|
---|
| 689 | for (i = 0; i < n; i++) {
|
---|
| 690 | memcpy(p, a->ob_item, nbytes);
|
---|
| 691 | p += nbytes;
|
---|
| 692 | }
|
---|
| 693 | return (PyObject *) np;
|
---|
[2] | 694 | }
|
---|
| 695 |
|
---|
| 696 | static int
|
---|
| 697 | array_ass_slice(arrayobject *a, Py_ssize_t ilow, Py_ssize_t ihigh, PyObject *v)
|
---|
| 698 | {
|
---|
[391] | 699 | char *item;
|
---|
| 700 | Py_ssize_t n; /* Size of replacement array */
|
---|
| 701 | Py_ssize_t d; /* Change in size */
|
---|
[2] | 702 | #define b ((arrayobject *)v)
|
---|
[391] | 703 | if (v == NULL)
|
---|
| 704 | n = 0;
|
---|
| 705 | else if (array_Check(v)) {
|
---|
| 706 | n = Py_SIZE(b);
|
---|
| 707 | if (a == b) {
|
---|
| 708 | /* Special case "a[i:j] = a" -- copy b first */
|
---|
| 709 | int ret;
|
---|
| 710 | v = array_slice(b, 0, n);
|
---|
| 711 | if (!v)
|
---|
| 712 | return -1;
|
---|
| 713 | ret = array_ass_slice(a, ilow, ihigh, v);
|
---|
| 714 | Py_DECREF(v);
|
---|
| 715 | return ret;
|
---|
| 716 | }
|
---|
| 717 | if (b->ob_descr != a->ob_descr) {
|
---|
| 718 | PyErr_BadArgument();
|
---|
| 719 | return -1;
|
---|
| 720 | }
|
---|
| 721 | }
|
---|
| 722 | else {
|
---|
| 723 | PyErr_Format(PyExc_TypeError,
|
---|
| 724 | "can only assign array (not \"%.200s\") to array slice",
|
---|
| 725 | Py_TYPE(v)->tp_name);
|
---|
| 726 | return -1;
|
---|
| 727 | }
|
---|
| 728 | if (ilow < 0)
|
---|
| 729 | ilow = 0;
|
---|
| 730 | else if (ilow > Py_SIZE(a))
|
---|
| 731 | ilow = Py_SIZE(a);
|
---|
| 732 | if (ihigh < 0)
|
---|
| 733 | ihigh = 0;
|
---|
| 734 | if (ihigh < ilow)
|
---|
| 735 | ihigh = ilow;
|
---|
| 736 | else if (ihigh > Py_SIZE(a))
|
---|
| 737 | ihigh = Py_SIZE(a);
|
---|
| 738 | item = a->ob_item;
|
---|
| 739 | d = n - (ihigh-ilow);
|
---|
| 740 | if (d < 0) { /* Delete -d items */
|
---|
| 741 | memmove(item + (ihigh+d)*a->ob_descr->itemsize,
|
---|
| 742 | item + ihigh*a->ob_descr->itemsize,
|
---|
| 743 | (Py_SIZE(a)-ihigh)*a->ob_descr->itemsize);
|
---|
| 744 | Py_SIZE(a) += d;
|
---|
| 745 | PyMem_RESIZE(item, char, Py_SIZE(a)*a->ob_descr->itemsize);
|
---|
| 746 | /* Can't fail */
|
---|
| 747 | a->ob_item = item;
|
---|
| 748 | a->allocated = Py_SIZE(a);
|
---|
| 749 | }
|
---|
| 750 | else if (d > 0) { /* Insert d items */
|
---|
| 751 | PyMem_RESIZE(item, char,
|
---|
| 752 | (Py_SIZE(a) + d)*a->ob_descr->itemsize);
|
---|
| 753 | if (item == NULL) {
|
---|
| 754 | PyErr_NoMemory();
|
---|
| 755 | return -1;
|
---|
| 756 | }
|
---|
| 757 | memmove(item + (ihigh+d)*a->ob_descr->itemsize,
|
---|
| 758 | item + ihigh*a->ob_descr->itemsize,
|
---|
| 759 | (Py_SIZE(a)-ihigh)*a->ob_descr->itemsize);
|
---|
| 760 | a->ob_item = item;
|
---|
| 761 | Py_SIZE(a) += d;
|
---|
| 762 | a->allocated = Py_SIZE(a);
|
---|
| 763 | }
|
---|
| 764 | if (n > 0)
|
---|
| 765 | memcpy(item + ilow*a->ob_descr->itemsize, b->ob_item,
|
---|
| 766 | n*b->ob_descr->itemsize);
|
---|
| 767 | return 0;
|
---|
[2] | 768 | #undef b
|
---|
| 769 | }
|
---|
| 770 |
|
---|
| 771 | static int
|
---|
| 772 | array_ass_item(arrayobject *a, Py_ssize_t i, PyObject *v)
|
---|
| 773 | {
|
---|
[391] | 774 | if (i < 0 || i >= Py_SIZE(a)) {
|
---|
| 775 | PyErr_SetString(PyExc_IndexError,
|
---|
| 776 | "array assignment index out of range");
|
---|
| 777 | return -1;
|
---|
| 778 | }
|
---|
| 779 | if (v == NULL)
|
---|
| 780 | return array_ass_slice(a, i, i+1, v);
|
---|
| 781 | return (*a->ob_descr->setitem)(a, i, v);
|
---|
[2] | 782 | }
|
---|
| 783 |
|
---|
| 784 | static int
|
---|
| 785 | setarrayitem(PyObject *a, Py_ssize_t i, PyObject *v)
|
---|
| 786 | {
|
---|
[391] | 787 | assert(array_Check(a));
|
---|
| 788 | return array_ass_item((arrayobject *)a, i, v);
|
---|
[2] | 789 | }
|
---|
| 790 |
|
---|
| 791 | static int
|
---|
| 792 | array_iter_extend(arrayobject *self, PyObject *bb)
|
---|
| 793 | {
|
---|
[391] | 794 | PyObject *it, *v;
|
---|
[2] | 795 |
|
---|
[391] | 796 | it = PyObject_GetIter(bb);
|
---|
| 797 | if (it == NULL)
|
---|
| 798 | return -1;
|
---|
[2] | 799 |
|
---|
[391] | 800 | while ((v = PyIter_Next(it)) != NULL) {
|
---|
| 801 | if (ins1(self, Py_SIZE(self), v) != 0) {
|
---|
| 802 | Py_DECREF(v);
|
---|
| 803 | Py_DECREF(it);
|
---|
| 804 | return -1;
|
---|
| 805 | }
|
---|
| 806 | Py_DECREF(v);
|
---|
| 807 | }
|
---|
| 808 | Py_DECREF(it);
|
---|
| 809 | if (PyErr_Occurred())
|
---|
| 810 | return -1;
|
---|
| 811 | return 0;
|
---|
[2] | 812 | }
|
---|
| 813 |
|
---|
| 814 | static int
|
---|
| 815 | array_do_extend(arrayobject *self, PyObject *bb)
|
---|
| 816 | {
|
---|
[391] | 817 | Py_ssize_t size;
|
---|
| 818 | char *old_item;
|
---|
[2] | 819 |
|
---|
[391] | 820 | if (!array_Check(bb))
|
---|
| 821 | return array_iter_extend(self, bb);
|
---|
[2] | 822 | #define b ((arrayobject *)bb)
|
---|
[391] | 823 | if (self->ob_descr != b->ob_descr) {
|
---|
| 824 | PyErr_SetString(PyExc_TypeError,
|
---|
| 825 | "can only extend with array of same kind");
|
---|
| 826 | return -1;
|
---|
| 827 | }
|
---|
| 828 | if ((Py_SIZE(self) > PY_SSIZE_T_MAX - Py_SIZE(b)) ||
|
---|
| 829 | ((Py_SIZE(self) + Py_SIZE(b)) > PY_SSIZE_T_MAX / self->ob_descr->itemsize)) {
|
---|
| 830 | PyErr_NoMemory();
|
---|
| 831 | return -1;
|
---|
| 832 | }
|
---|
| 833 | size = Py_SIZE(self) + Py_SIZE(b);
|
---|
| 834 | old_item = self->ob_item;
|
---|
| 835 | PyMem_RESIZE(self->ob_item, char, size*self->ob_descr->itemsize);
|
---|
| 836 | if (self->ob_item == NULL) {
|
---|
| 837 | self->ob_item = old_item;
|
---|
| 838 | PyErr_NoMemory();
|
---|
| 839 | return -1;
|
---|
| 840 | }
|
---|
| 841 | memcpy(self->ob_item + Py_SIZE(self)*self->ob_descr->itemsize,
|
---|
| 842 | b->ob_item, Py_SIZE(b)*b->ob_descr->itemsize);
|
---|
| 843 | Py_SIZE(self) = size;
|
---|
| 844 | self->allocated = size;
|
---|
[2] | 845 |
|
---|
[391] | 846 | return 0;
|
---|
[2] | 847 | #undef b
|
---|
| 848 | }
|
---|
| 849 |
|
---|
| 850 | static PyObject *
|
---|
| 851 | array_inplace_concat(arrayobject *self, PyObject *bb)
|
---|
| 852 | {
|
---|
[391] | 853 | if (!array_Check(bb)) {
|
---|
| 854 | PyErr_Format(PyExc_TypeError,
|
---|
| 855 | "can only extend array with array (not \"%.200s\")",
|
---|
| 856 | Py_TYPE(bb)->tp_name);
|
---|
| 857 | return NULL;
|
---|
| 858 | }
|
---|
| 859 | if (array_do_extend(self, bb) == -1)
|
---|
| 860 | return NULL;
|
---|
| 861 | Py_INCREF(self);
|
---|
| 862 | return (PyObject *)self;
|
---|
[2] | 863 | }
|
---|
| 864 |
|
---|
| 865 | static PyObject *
|
---|
| 866 | array_inplace_repeat(arrayobject *self, Py_ssize_t n)
|
---|
| 867 | {
|
---|
[391] | 868 | char *items, *p;
|
---|
| 869 | Py_ssize_t size, i;
|
---|
[2] | 870 |
|
---|
[391] | 871 | if (Py_SIZE(self) > 0) {
|
---|
| 872 | if (n < 0)
|
---|
| 873 | n = 0;
|
---|
| 874 | items = self->ob_item;
|
---|
| 875 | if ((self->ob_descr->itemsize != 0) &&
|
---|
| 876 | (Py_SIZE(self) > PY_SSIZE_T_MAX / self->ob_descr->itemsize)) {
|
---|
| 877 | return PyErr_NoMemory();
|
---|
| 878 | }
|
---|
| 879 | size = Py_SIZE(self) * self->ob_descr->itemsize;
|
---|
| 880 | if (n == 0) {
|
---|
| 881 | PyMem_FREE(items);
|
---|
| 882 | self->ob_item = NULL;
|
---|
| 883 | Py_SIZE(self) = 0;
|
---|
| 884 | self->allocated = 0;
|
---|
| 885 | }
|
---|
| 886 | else {
|
---|
| 887 | if (size > PY_SSIZE_T_MAX / n) {
|
---|
| 888 | return PyErr_NoMemory();
|
---|
| 889 | }
|
---|
| 890 | PyMem_RESIZE(items, char, n * size);
|
---|
| 891 | if (items == NULL)
|
---|
| 892 | return PyErr_NoMemory();
|
---|
| 893 | p = items;
|
---|
| 894 | for (i = 1; i < n; i++) {
|
---|
| 895 | p += size;
|
---|
| 896 | memcpy(p, items, size);
|
---|
| 897 | }
|
---|
| 898 | self->ob_item = items;
|
---|
| 899 | Py_SIZE(self) *= n;
|
---|
| 900 | self->allocated = Py_SIZE(self);
|
---|
| 901 | }
|
---|
| 902 | }
|
---|
| 903 | Py_INCREF(self);
|
---|
| 904 | return (PyObject *)self;
|
---|
[2] | 905 | }
|
---|
| 906 |
|
---|
| 907 |
|
---|
| 908 | static PyObject *
|
---|
| 909 | ins(arrayobject *self, Py_ssize_t where, PyObject *v)
|
---|
| 910 | {
|
---|
[391] | 911 | if (ins1(self, where, v) != 0)
|
---|
| 912 | return NULL;
|
---|
| 913 | Py_INCREF(Py_None);
|
---|
| 914 | return Py_None;
|
---|
[2] | 915 | }
|
---|
| 916 |
|
---|
| 917 | static PyObject *
|
---|
| 918 | array_count(arrayobject *self, PyObject *v)
|
---|
| 919 | {
|
---|
[391] | 920 | Py_ssize_t count = 0;
|
---|
| 921 | Py_ssize_t i;
|
---|
[2] | 922 |
|
---|
[391] | 923 | for (i = 0; i < Py_SIZE(self); i++) {
|
---|
| 924 | PyObject *selfi = getarrayitem((PyObject *)self, i);
|
---|
| 925 | int cmp = PyObject_RichCompareBool(selfi, v, Py_EQ);
|
---|
| 926 | Py_DECREF(selfi);
|
---|
| 927 | if (cmp > 0)
|
---|
| 928 | count++;
|
---|
| 929 | else if (cmp < 0)
|
---|
| 930 | return NULL;
|
---|
| 931 | }
|
---|
| 932 | return PyInt_FromSsize_t(count);
|
---|
[2] | 933 | }
|
---|
| 934 |
|
---|
| 935 | PyDoc_STRVAR(count_doc,
|
---|
| 936 | "count(x)\n\
|
---|
| 937 | \n\
|
---|
| 938 | Return number of occurrences of x in the array.");
|
---|
| 939 |
|
---|
| 940 | static PyObject *
|
---|
| 941 | array_index(arrayobject *self, PyObject *v)
|
---|
| 942 | {
|
---|
[391] | 943 | Py_ssize_t i;
|
---|
[2] | 944 |
|
---|
[391] | 945 | for (i = 0; i < Py_SIZE(self); i++) {
|
---|
| 946 | PyObject *selfi = getarrayitem((PyObject *)self, i);
|
---|
| 947 | int cmp = PyObject_RichCompareBool(selfi, v, Py_EQ);
|
---|
| 948 | Py_DECREF(selfi);
|
---|
| 949 | if (cmp > 0) {
|
---|
| 950 | return PyInt_FromLong((long)i);
|
---|
| 951 | }
|
---|
| 952 | else if (cmp < 0)
|
---|
| 953 | return NULL;
|
---|
| 954 | }
|
---|
| 955 | PyErr_SetString(PyExc_ValueError, "array.index(x): x not in list");
|
---|
| 956 | return NULL;
|
---|
[2] | 957 | }
|
---|
| 958 |
|
---|
| 959 | PyDoc_STRVAR(index_doc,
|
---|
| 960 | "index(x)\n\
|
---|
| 961 | \n\
|
---|
| 962 | Return index of first occurrence of x in the array.");
|
---|
| 963 |
|
---|
| 964 | static int
|
---|
| 965 | array_contains(arrayobject *self, PyObject *v)
|
---|
| 966 | {
|
---|
[391] | 967 | Py_ssize_t i;
|
---|
| 968 | int cmp;
|
---|
[2] | 969 |
|
---|
[391] | 970 | for (i = 0, cmp = 0 ; cmp == 0 && i < Py_SIZE(self); i++) {
|
---|
| 971 | PyObject *selfi = getarrayitem((PyObject *)self, i);
|
---|
| 972 | cmp = PyObject_RichCompareBool(selfi, v, Py_EQ);
|
---|
| 973 | Py_DECREF(selfi);
|
---|
| 974 | }
|
---|
| 975 | return cmp;
|
---|
[2] | 976 | }
|
---|
| 977 |
|
---|
| 978 | static PyObject *
|
---|
| 979 | array_remove(arrayobject *self, PyObject *v)
|
---|
| 980 | {
|
---|
[391] | 981 | int i;
|
---|
[2] | 982 |
|
---|
[391] | 983 | for (i = 0; i < Py_SIZE(self); i++) {
|
---|
| 984 | PyObject *selfi = getarrayitem((PyObject *)self,i);
|
---|
| 985 | int cmp = PyObject_RichCompareBool(selfi, v, Py_EQ);
|
---|
| 986 | Py_DECREF(selfi);
|
---|
| 987 | if (cmp > 0) {
|
---|
| 988 | if (array_ass_slice(self, i, i+1,
|
---|
| 989 | (PyObject *)NULL) != 0)
|
---|
| 990 | return NULL;
|
---|
| 991 | Py_INCREF(Py_None);
|
---|
| 992 | return Py_None;
|
---|
| 993 | }
|
---|
| 994 | else if (cmp < 0)
|
---|
| 995 | return NULL;
|
---|
| 996 | }
|
---|
| 997 | PyErr_SetString(PyExc_ValueError, "array.remove(x): x not in list");
|
---|
| 998 | return NULL;
|
---|
[2] | 999 | }
|
---|
| 1000 |
|
---|
| 1001 | PyDoc_STRVAR(remove_doc,
|
---|
| 1002 | "remove(x)\n\
|
---|
| 1003 | \n\
|
---|
| 1004 | Remove the first occurrence of x in the array.");
|
---|
| 1005 |
|
---|
| 1006 | static PyObject *
|
---|
| 1007 | array_pop(arrayobject *self, PyObject *args)
|
---|
| 1008 | {
|
---|
[391] | 1009 | Py_ssize_t i = -1;
|
---|
| 1010 | PyObject *v;
|
---|
| 1011 | if (!PyArg_ParseTuple(args, "|n:pop", &i))
|
---|
| 1012 | return NULL;
|
---|
| 1013 | if (Py_SIZE(self) == 0) {
|
---|
| 1014 | /* Special-case most common failure cause */
|
---|
| 1015 | PyErr_SetString(PyExc_IndexError, "pop from empty array");
|
---|
| 1016 | return NULL;
|
---|
| 1017 | }
|
---|
| 1018 | if (i < 0)
|
---|
| 1019 | i += Py_SIZE(self);
|
---|
| 1020 | if (i < 0 || i >= Py_SIZE(self)) {
|
---|
| 1021 | PyErr_SetString(PyExc_IndexError, "pop index out of range");
|
---|
| 1022 | return NULL;
|
---|
| 1023 | }
|
---|
| 1024 | v = getarrayitem((PyObject *)self,i);
|
---|
| 1025 | if (array_ass_slice(self, i, i+1, (PyObject *)NULL) != 0) {
|
---|
| 1026 | Py_DECREF(v);
|
---|
| 1027 | return NULL;
|
---|
| 1028 | }
|
---|
| 1029 | return v;
|
---|
[2] | 1030 | }
|
---|
| 1031 |
|
---|
| 1032 | PyDoc_STRVAR(pop_doc,
|
---|
| 1033 | "pop([i])\n\
|
---|
| 1034 | \n\
|
---|
| 1035 | Return the i-th element and delete it from the array. i defaults to -1.");
|
---|
| 1036 |
|
---|
| 1037 | static PyObject *
|
---|
| 1038 | array_extend(arrayobject *self, PyObject *bb)
|
---|
| 1039 | {
|
---|
[391] | 1040 | if (array_do_extend(self, bb) == -1)
|
---|
| 1041 | return NULL;
|
---|
| 1042 | Py_INCREF(Py_None);
|
---|
| 1043 | return Py_None;
|
---|
[2] | 1044 | }
|
---|
| 1045 |
|
---|
| 1046 | PyDoc_STRVAR(extend_doc,
|
---|
| 1047 | "extend(array or iterable)\n\
|
---|
| 1048 | \n\
|
---|
| 1049 | Append items to the end of the array.");
|
---|
| 1050 |
|
---|
| 1051 | static PyObject *
|
---|
| 1052 | array_insert(arrayobject *self, PyObject *args)
|
---|
| 1053 | {
|
---|
[391] | 1054 | Py_ssize_t i;
|
---|
| 1055 | PyObject *v;
|
---|
| 1056 | if (!PyArg_ParseTuple(args, "nO:insert", &i, &v))
|
---|
| 1057 | return NULL;
|
---|
| 1058 | return ins(self, i, v);
|
---|
[2] | 1059 | }
|
---|
| 1060 |
|
---|
| 1061 | PyDoc_STRVAR(insert_doc,
|
---|
| 1062 | "insert(i,x)\n\
|
---|
| 1063 | \n\
|
---|
| 1064 | Insert a new item x into the array before position i.");
|
---|
| 1065 |
|
---|
| 1066 |
|
---|
| 1067 | static PyObject *
|
---|
| 1068 | array_buffer_info(arrayobject *self, PyObject *unused)
|
---|
| 1069 | {
|
---|
[391] | 1070 | PyObject* retval = NULL;
|
---|
| 1071 | retval = PyTuple_New(2);
|
---|
| 1072 | if (!retval)
|
---|
| 1073 | return NULL;
|
---|
[2] | 1074 |
|
---|
[391] | 1075 | PyTuple_SET_ITEM(retval, 0, PyLong_FromVoidPtr(self->ob_item));
|
---|
| 1076 | PyTuple_SET_ITEM(retval, 1, PyInt_FromLong((long)(Py_SIZE(self))));
|
---|
[2] | 1077 |
|
---|
[391] | 1078 | return retval;
|
---|
[2] | 1079 | }
|
---|
| 1080 |
|
---|
| 1081 | PyDoc_STRVAR(buffer_info_doc,
|
---|
| 1082 | "buffer_info() -> (address, length)\n\
|
---|
| 1083 | \n\
|
---|
| 1084 | Return a tuple (address, length) giving the current memory address and\n\
|
---|
| 1085 | the length in items of the buffer used to hold array's contents\n\
|
---|
| 1086 | The length should be multiplied by the itemsize attribute to calculate\n\
|
---|
| 1087 | the buffer length in bytes.");
|
---|
| 1088 |
|
---|
| 1089 |
|
---|
| 1090 | static PyObject *
|
---|
| 1091 | array_append(arrayobject *self, PyObject *v)
|
---|
| 1092 | {
|
---|
[391] | 1093 | return ins(self, Py_SIZE(self), v);
|
---|
[2] | 1094 | }
|
---|
| 1095 |
|
---|
| 1096 | PyDoc_STRVAR(append_doc,
|
---|
| 1097 | "append(x)\n\
|
---|
| 1098 | \n\
|
---|
| 1099 | Append new value x to the end of the array.");
|
---|
| 1100 |
|
---|
| 1101 |
|
---|
| 1102 | static PyObject *
|
---|
| 1103 | array_byteswap(arrayobject *self, PyObject *unused)
|
---|
| 1104 | {
|
---|
[391] | 1105 | char *p;
|
---|
| 1106 | Py_ssize_t i;
|
---|
[2] | 1107 |
|
---|
[391] | 1108 | switch (self->ob_descr->itemsize) {
|
---|
| 1109 | case 1:
|
---|
| 1110 | break;
|
---|
| 1111 | case 2:
|
---|
| 1112 | for (p = self->ob_item, i = Py_SIZE(self); --i >= 0; p += 2) {
|
---|
| 1113 | char p0 = p[0];
|
---|
| 1114 | p[0] = p[1];
|
---|
| 1115 | p[1] = p0;
|
---|
| 1116 | }
|
---|
| 1117 | break;
|
---|
| 1118 | case 4:
|
---|
| 1119 | for (p = self->ob_item, i = Py_SIZE(self); --i >= 0; p += 4) {
|
---|
| 1120 | char p0 = p[0];
|
---|
| 1121 | char p1 = p[1];
|
---|
| 1122 | p[0] = p[3];
|
---|
| 1123 | p[1] = p[2];
|
---|
| 1124 | p[2] = p1;
|
---|
| 1125 | p[3] = p0;
|
---|
| 1126 | }
|
---|
| 1127 | break;
|
---|
| 1128 | case 8:
|
---|
| 1129 | for (p = self->ob_item, i = Py_SIZE(self); --i >= 0; p += 8) {
|
---|
| 1130 | char p0 = p[0];
|
---|
| 1131 | char p1 = p[1];
|
---|
| 1132 | char p2 = p[2];
|
---|
| 1133 | char p3 = p[3];
|
---|
| 1134 | p[0] = p[7];
|
---|
| 1135 | p[1] = p[6];
|
---|
| 1136 | p[2] = p[5];
|
---|
| 1137 | p[3] = p[4];
|
---|
| 1138 | p[4] = p3;
|
---|
| 1139 | p[5] = p2;
|
---|
| 1140 | p[6] = p1;
|
---|
| 1141 | p[7] = p0;
|
---|
| 1142 | }
|
---|
| 1143 | break;
|
---|
| 1144 | default:
|
---|
| 1145 | PyErr_SetString(PyExc_RuntimeError,
|
---|
| 1146 | "don't know how to byteswap this array type");
|
---|
| 1147 | return NULL;
|
---|
| 1148 | }
|
---|
| 1149 | Py_INCREF(Py_None);
|
---|
| 1150 | return Py_None;
|
---|
[2] | 1151 | }
|
---|
| 1152 |
|
---|
| 1153 | PyDoc_STRVAR(byteswap_doc,
|
---|
| 1154 | "byteswap()\n\
|
---|
| 1155 | \n\
|
---|
| 1156 | Byteswap all items of the array. If the items in the array are not 1, 2,\n\
|
---|
| 1157 | 4, or 8 bytes in size, RuntimeError is raised.");
|
---|
| 1158 |
|
---|
| 1159 | static PyObject *
|
---|
| 1160 | array_reverse(arrayobject *self, PyObject *unused)
|
---|
| 1161 | {
|
---|
[391] | 1162 | register Py_ssize_t itemsize = self->ob_descr->itemsize;
|
---|
| 1163 | register char *p, *q;
|
---|
| 1164 | /* little buffer to hold items while swapping */
|
---|
| 1165 | char tmp[256]; /* 8 is probably enough -- but why skimp */
|
---|
| 1166 | assert((size_t)itemsize <= sizeof(tmp));
|
---|
[2] | 1167 |
|
---|
[391] | 1168 | if (Py_SIZE(self) > 1) {
|
---|
| 1169 | for (p = self->ob_item,
|
---|
| 1170 | q = self->ob_item + (Py_SIZE(self) - 1)*itemsize;
|
---|
| 1171 | p < q;
|
---|
| 1172 | p += itemsize, q -= itemsize) {
|
---|
| 1173 | /* memory areas guaranteed disjoint, so memcpy
|
---|
| 1174 | * is safe (& memmove may be slower).
|
---|
| 1175 | */
|
---|
| 1176 | memcpy(tmp, p, itemsize);
|
---|
| 1177 | memcpy(p, q, itemsize);
|
---|
| 1178 | memcpy(q, tmp, itemsize);
|
---|
| 1179 | }
|
---|
| 1180 | }
|
---|
[2] | 1181 |
|
---|
[391] | 1182 | Py_INCREF(Py_None);
|
---|
| 1183 | return Py_None;
|
---|
[2] | 1184 | }
|
---|
| 1185 |
|
---|
| 1186 | PyDoc_STRVAR(reverse_doc,
|
---|
| 1187 | "reverse()\n\
|
---|
| 1188 | \n\
|
---|
| 1189 | Reverse the order of the items in the array.");
|
---|
| 1190 |
|
---|
| 1191 | static PyObject *
|
---|
| 1192 | array_fromfile(arrayobject *self, PyObject *args)
|
---|
| 1193 | {
|
---|
[391] | 1194 | PyObject *f;
|
---|
| 1195 | Py_ssize_t n;
|
---|
| 1196 | FILE *fp;
|
---|
| 1197 | if (!PyArg_ParseTuple(args, "On:fromfile", &f, &n))
|
---|
| 1198 | return NULL;
|
---|
| 1199 | fp = PyFile_AsFile(f);
|
---|
| 1200 | if (fp == NULL) {
|
---|
| 1201 | PyErr_SetString(PyExc_TypeError, "arg1 must be open file");
|
---|
| 1202 | return NULL;
|
---|
| 1203 | }
|
---|
| 1204 | if (n > 0) {
|
---|
| 1205 | char *item = self->ob_item;
|
---|
| 1206 | Py_ssize_t itemsize = self->ob_descr->itemsize;
|
---|
| 1207 | size_t nread;
|
---|
| 1208 | Py_ssize_t newlength;
|
---|
| 1209 | size_t newbytes;
|
---|
| 1210 | /* Be careful here about overflow */
|
---|
| 1211 | if ((newlength = Py_SIZE(self) + n) <= 0 ||
|
---|
| 1212 | (newbytes = newlength * itemsize) / itemsize !=
|
---|
| 1213 | (size_t)newlength)
|
---|
| 1214 | goto nomem;
|
---|
| 1215 | PyMem_RESIZE(item, char, newbytes);
|
---|
| 1216 | if (item == NULL) {
|
---|
| 1217 | nomem:
|
---|
| 1218 | PyErr_NoMemory();
|
---|
| 1219 | return NULL;
|
---|
| 1220 | }
|
---|
| 1221 | self->ob_item = item;
|
---|
| 1222 | Py_SIZE(self) += n;
|
---|
| 1223 | self->allocated = Py_SIZE(self);
|
---|
| 1224 | nread = fread(item + (Py_SIZE(self) - n) * itemsize,
|
---|
| 1225 | itemsize, n, fp);
|
---|
| 1226 | if (nread < (size_t)n) {
|
---|
| 1227 | Py_SIZE(self) -= (n - nread);
|
---|
| 1228 | PyMem_RESIZE(item, char, Py_SIZE(self)*itemsize);
|
---|
| 1229 | self->ob_item = item;
|
---|
| 1230 | self->allocated = Py_SIZE(self);
|
---|
| 1231 | if (ferror(fp)) {
|
---|
| 1232 | PyErr_SetFromErrno(PyExc_IOError);
|
---|
| 1233 | clearerr(fp);
|
---|
| 1234 | }
|
---|
| 1235 | else {
|
---|
| 1236 | PyErr_SetString(PyExc_EOFError,
|
---|
| 1237 | "not enough items in file");
|
---|
| 1238 | }
|
---|
| 1239 | return NULL;
|
---|
| 1240 | }
|
---|
| 1241 | }
|
---|
| 1242 | Py_INCREF(Py_None);
|
---|
| 1243 | return Py_None;
|
---|
[2] | 1244 | }
|
---|
| 1245 |
|
---|
| 1246 | PyDoc_STRVAR(fromfile_doc,
|
---|
| 1247 | "fromfile(f, n)\n\
|
---|
| 1248 | \n\
|
---|
| 1249 | Read n objects from the file object f and append them to the end of the\n\
|
---|
| 1250 | array. Also called as read.");
|
---|
| 1251 |
|
---|
| 1252 |
|
---|
| 1253 | static PyObject *
|
---|
| 1254 | array_fromfile_as_read(arrayobject *self, PyObject *args)
|
---|
| 1255 | {
|
---|
[391] | 1256 | if (PyErr_WarnPy3k("array.read() not supported in 3.x; "
|
---|
| 1257 | "use array.fromfile()", 1) < 0)
|
---|
| 1258 | return NULL;
|
---|
| 1259 | return array_fromfile(self, args);
|
---|
[2] | 1260 | }
|
---|
| 1261 |
|
---|
| 1262 |
|
---|
| 1263 | static PyObject *
|
---|
| 1264 | array_tofile(arrayobject *self, PyObject *f)
|
---|
| 1265 | {
|
---|
[391] | 1266 | FILE *fp;
|
---|
[2] | 1267 |
|
---|
[391] | 1268 | fp = PyFile_AsFile(f);
|
---|
| 1269 | if (fp == NULL) {
|
---|
| 1270 | PyErr_SetString(PyExc_TypeError, "arg must be open file");
|
---|
| 1271 | return NULL;
|
---|
| 1272 | }
|
---|
| 1273 | if (self->ob_size > 0) {
|
---|
| 1274 | if (fwrite(self->ob_item, self->ob_descr->itemsize,
|
---|
| 1275 | self->ob_size, fp) != (size_t)self->ob_size) {
|
---|
| 1276 | PyErr_SetFromErrno(PyExc_IOError);
|
---|
| 1277 | clearerr(fp);
|
---|
| 1278 | return NULL;
|
---|
| 1279 | }
|
---|
| 1280 | }
|
---|
| 1281 | Py_INCREF(Py_None);
|
---|
| 1282 | return Py_None;
|
---|
[2] | 1283 | }
|
---|
| 1284 |
|
---|
| 1285 | PyDoc_STRVAR(tofile_doc,
|
---|
| 1286 | "tofile(f)\n\
|
---|
| 1287 | \n\
|
---|
| 1288 | Write all items (as machine values) to the file object f. Also called as\n\
|
---|
| 1289 | write.");
|
---|
| 1290 |
|
---|
| 1291 |
|
---|
| 1292 | static PyObject *
|
---|
| 1293 | array_tofile_as_write(arrayobject *self, PyObject *f)
|
---|
| 1294 | {
|
---|
[391] | 1295 | if (PyErr_WarnPy3k("array.write() not supported in 3.x; "
|
---|
| 1296 | "use array.tofile()", 1) < 0)
|
---|
| 1297 | return NULL;
|
---|
| 1298 | return array_tofile(self, f);
|
---|
[2] | 1299 | }
|
---|
| 1300 |
|
---|
| 1301 |
|
---|
| 1302 | static PyObject *
|
---|
| 1303 | array_fromlist(arrayobject *self, PyObject *list)
|
---|
| 1304 | {
|
---|
[391] | 1305 | Py_ssize_t n;
|
---|
| 1306 | Py_ssize_t itemsize = self->ob_descr->itemsize;
|
---|
[2] | 1307 |
|
---|
[391] | 1308 | if (!PyList_Check(list)) {
|
---|
| 1309 | PyErr_SetString(PyExc_TypeError, "arg must be list");
|
---|
| 1310 | return NULL;
|
---|
| 1311 | }
|
---|
| 1312 | n = PyList_Size(list);
|
---|
| 1313 | if (n > 0) {
|
---|
| 1314 | char *item = self->ob_item;
|
---|
| 1315 | Py_ssize_t i;
|
---|
| 1316 | PyMem_RESIZE(item, char, (Py_SIZE(self) + n) * itemsize);
|
---|
| 1317 | if (item == NULL) {
|
---|
| 1318 | PyErr_NoMemory();
|
---|
| 1319 | return NULL;
|
---|
| 1320 | }
|
---|
| 1321 | self->ob_item = item;
|
---|
| 1322 | Py_SIZE(self) += n;
|
---|
| 1323 | self->allocated = Py_SIZE(self);
|
---|
| 1324 | for (i = 0; i < n; i++) {
|
---|
| 1325 | PyObject *v = PyList_GetItem(list, i);
|
---|
| 1326 | if ((*self->ob_descr->setitem)(self,
|
---|
| 1327 | Py_SIZE(self) - n + i, v) != 0) {
|
---|
| 1328 | Py_SIZE(self) -= n;
|
---|
| 1329 | if (itemsize && (self->ob_size > PY_SSIZE_T_MAX / itemsize)) {
|
---|
| 1330 | return PyErr_NoMemory();
|
---|
| 1331 | }
|
---|
| 1332 | PyMem_RESIZE(item, char,
|
---|
| 1333 | Py_SIZE(self) * itemsize);
|
---|
| 1334 | self->ob_item = item;
|
---|
| 1335 | self->allocated = Py_SIZE(self);
|
---|
| 1336 | return NULL;
|
---|
| 1337 | }
|
---|
| 1338 | }
|
---|
| 1339 | }
|
---|
| 1340 | Py_INCREF(Py_None);
|
---|
| 1341 | return Py_None;
|
---|
[2] | 1342 | }
|
---|
| 1343 |
|
---|
| 1344 | PyDoc_STRVAR(fromlist_doc,
|
---|
| 1345 | "fromlist(list)\n\
|
---|
| 1346 | \n\
|
---|
| 1347 | Append items to array from list.");
|
---|
| 1348 |
|
---|
| 1349 |
|
---|
| 1350 | static PyObject *
|
---|
| 1351 | array_tolist(arrayobject *self, PyObject *unused)
|
---|
| 1352 | {
|
---|
[391] | 1353 | PyObject *list = PyList_New(Py_SIZE(self));
|
---|
| 1354 | Py_ssize_t i;
|
---|
[2] | 1355 |
|
---|
[391] | 1356 | if (list == NULL)
|
---|
| 1357 | return NULL;
|
---|
| 1358 | for (i = 0; i < Py_SIZE(self); i++) {
|
---|
| 1359 | PyObject *v = getarrayitem((PyObject *)self, i);
|
---|
| 1360 | if (v == NULL) {
|
---|
| 1361 | Py_DECREF(list);
|
---|
| 1362 | return NULL;
|
---|
| 1363 | }
|
---|
| 1364 | PyList_SetItem(list, i, v);
|
---|
| 1365 | }
|
---|
| 1366 | return list;
|
---|
[2] | 1367 | }
|
---|
| 1368 |
|
---|
| 1369 | PyDoc_STRVAR(tolist_doc,
|
---|
| 1370 | "tolist() -> list\n\
|
---|
| 1371 | \n\
|
---|
| 1372 | Convert array to an ordinary list with the same items.");
|
---|
| 1373 |
|
---|
| 1374 |
|
---|
| 1375 | static PyObject *
|
---|
| 1376 | array_fromstring(arrayobject *self, PyObject *args)
|
---|
| 1377 | {
|
---|
[391] | 1378 | char *str;
|
---|
| 1379 | Py_ssize_t n;
|
---|
| 1380 | int itemsize = self->ob_descr->itemsize;
|
---|
| 1381 | if (!PyArg_ParseTuple(args, "s#:fromstring", &str, &n))
|
---|
| 1382 | return NULL;
|
---|
| 1383 | if (n % itemsize != 0) {
|
---|
| 1384 | PyErr_SetString(PyExc_ValueError,
|
---|
| 1385 | "string length not a multiple of item size");
|
---|
| 1386 | return NULL;
|
---|
| 1387 | }
|
---|
| 1388 | n = n / itemsize;
|
---|
| 1389 | if (n > 0) {
|
---|
| 1390 | char *item = self->ob_item;
|
---|
| 1391 | if ((n > PY_SSIZE_T_MAX - Py_SIZE(self)) ||
|
---|
| 1392 | ((Py_SIZE(self) + n) > PY_SSIZE_T_MAX / itemsize)) {
|
---|
| 1393 | return PyErr_NoMemory();
|
---|
| 1394 | }
|
---|
| 1395 | PyMem_RESIZE(item, char, (Py_SIZE(self) + n) * itemsize);
|
---|
| 1396 | if (item == NULL) {
|
---|
| 1397 | PyErr_NoMemory();
|
---|
| 1398 | return NULL;
|
---|
| 1399 | }
|
---|
| 1400 | self->ob_item = item;
|
---|
| 1401 | Py_SIZE(self) += n;
|
---|
| 1402 | self->allocated = Py_SIZE(self);
|
---|
| 1403 | memcpy(item + (Py_SIZE(self) - n) * itemsize,
|
---|
| 1404 | str, itemsize*n);
|
---|
| 1405 | }
|
---|
| 1406 | Py_INCREF(Py_None);
|
---|
| 1407 | return Py_None;
|
---|
[2] | 1408 | }
|
---|
| 1409 |
|
---|
| 1410 | PyDoc_STRVAR(fromstring_doc,
|
---|
| 1411 | "fromstring(string)\n\
|
---|
| 1412 | \n\
|
---|
| 1413 | Appends items from the string, interpreting it as an array of machine\n\
|
---|
| 1414 | values,as if it had been read from a file using the fromfile() method).");
|
---|
| 1415 |
|
---|
| 1416 |
|
---|
| 1417 | static PyObject *
|
---|
| 1418 | array_tostring(arrayobject *self, PyObject *unused)
|
---|
| 1419 | {
|
---|
[391] | 1420 | if (self->ob_size <= PY_SSIZE_T_MAX / self->ob_descr->itemsize) {
|
---|
| 1421 | return PyString_FromStringAndSize(self->ob_item,
|
---|
| 1422 | Py_SIZE(self) * self->ob_descr->itemsize);
|
---|
| 1423 | } else {
|
---|
| 1424 | return PyErr_NoMemory();
|
---|
| 1425 | }
|
---|
[2] | 1426 | }
|
---|
| 1427 |
|
---|
| 1428 | PyDoc_STRVAR(tostring_doc,
|
---|
| 1429 | "tostring() -> string\n\
|
---|
| 1430 | \n\
|
---|
| 1431 | Convert the array to an array of machine values and return the string\n\
|
---|
| 1432 | representation.");
|
---|
| 1433 |
|
---|
| 1434 |
|
---|
| 1435 |
|
---|
| 1436 | #ifdef Py_USING_UNICODE
|
---|
| 1437 | static PyObject *
|
---|
| 1438 | array_fromunicode(arrayobject *self, PyObject *args)
|
---|
| 1439 | {
|
---|
[391] | 1440 | Py_UNICODE *ustr;
|
---|
| 1441 | Py_ssize_t n;
|
---|
[2] | 1442 |
|
---|
[391] | 1443 | if (!PyArg_ParseTuple(args, "u#:fromunicode", &ustr, &n))
|
---|
| 1444 | return NULL;
|
---|
| 1445 | if (self->ob_descr->typecode != 'u') {
|
---|
| 1446 | PyErr_SetString(PyExc_ValueError,
|
---|
| 1447 | "fromunicode() may only be called on "
|
---|
| 1448 | "type 'u' arrays");
|
---|
| 1449 | return NULL;
|
---|
| 1450 | }
|
---|
| 1451 | if (n > 0) {
|
---|
| 1452 | Py_UNICODE *item = (Py_UNICODE *) self->ob_item;
|
---|
| 1453 | if (Py_SIZE(self) > PY_SSIZE_T_MAX - n) {
|
---|
| 1454 | return PyErr_NoMemory();
|
---|
| 1455 | }
|
---|
| 1456 | PyMem_RESIZE(item, Py_UNICODE, Py_SIZE(self) + n);
|
---|
| 1457 | if (item == NULL) {
|
---|
| 1458 | PyErr_NoMemory();
|
---|
| 1459 | return NULL;
|
---|
| 1460 | }
|
---|
| 1461 | self->ob_item = (char *) item;
|
---|
| 1462 | Py_SIZE(self) += n;
|
---|
| 1463 | self->allocated = Py_SIZE(self);
|
---|
| 1464 | memcpy(item + Py_SIZE(self) - n,
|
---|
| 1465 | ustr, n * sizeof(Py_UNICODE));
|
---|
| 1466 | }
|
---|
[2] | 1467 |
|
---|
[391] | 1468 | Py_INCREF(Py_None);
|
---|
| 1469 | return Py_None;
|
---|
[2] | 1470 | }
|
---|
| 1471 |
|
---|
| 1472 | PyDoc_STRVAR(fromunicode_doc,
|
---|
| 1473 | "fromunicode(ustr)\n\
|
---|
| 1474 | \n\
|
---|
| 1475 | Extends this array with data from the unicode string ustr.\n\
|
---|
| 1476 | The array must be a type 'u' array; otherwise a ValueError\n\
|
---|
| 1477 | is raised. Use array.fromstring(ustr.decode(...)) to\n\
|
---|
| 1478 | append Unicode data to an array of some other type.");
|
---|
| 1479 |
|
---|
| 1480 |
|
---|
| 1481 | static PyObject *
|
---|
| 1482 | array_tounicode(arrayobject *self, PyObject *unused)
|
---|
| 1483 | {
|
---|
[391] | 1484 | if (self->ob_descr->typecode != 'u') {
|
---|
| 1485 | PyErr_SetString(PyExc_ValueError,
|
---|
| 1486 | "tounicode() may only be called on type 'u' arrays");
|
---|
| 1487 | return NULL;
|
---|
| 1488 | }
|
---|
| 1489 | return PyUnicode_FromUnicode((Py_UNICODE *) self->ob_item, Py_SIZE(self));
|
---|
[2] | 1490 | }
|
---|
| 1491 |
|
---|
| 1492 | PyDoc_STRVAR(tounicode_doc,
|
---|
| 1493 | "tounicode() -> unicode\n\
|
---|
| 1494 | \n\
|
---|
| 1495 | Convert the array to a unicode string. The array must be\n\
|
---|
| 1496 | a type 'u' array; otherwise a ValueError is raised. Use\n\
|
---|
| 1497 | array.tostring().decode() to obtain a unicode string from\n\
|
---|
| 1498 | an array of some other type.");
|
---|
| 1499 |
|
---|
| 1500 | #endif /* Py_USING_UNICODE */
|
---|
| 1501 |
|
---|
[391] | 1502 | static PyObject *
|
---|
| 1503 | array_reduce(arrayobject *array)
|
---|
| 1504 | {
|
---|
| 1505 | PyObject *dict, *result, *list;
|
---|
[2] | 1506 |
|
---|
[391] | 1507 | dict = PyObject_GetAttrString((PyObject *)array, "__dict__");
|
---|
| 1508 | if (dict == NULL) {
|
---|
| 1509 | if (!PyErr_ExceptionMatches(PyExc_AttributeError))
|
---|
| 1510 | return NULL;
|
---|
| 1511 | PyErr_Clear();
|
---|
| 1512 | dict = Py_None;
|
---|
| 1513 | Py_INCREF(dict);
|
---|
| 1514 | }
|
---|
| 1515 | /* Unlike in Python 3.x, we never use the more efficient memory
|
---|
| 1516 | * representation of an array for pickling. This is unfortunately
|
---|
| 1517 | * necessary to allow array objects to be unpickled by Python 3.x,
|
---|
| 1518 | * since str objects from 2.x are always decoded to unicode in
|
---|
| 1519 | * Python 3.x.
|
---|
| 1520 | */
|
---|
| 1521 | list = array_tolist(array, NULL);
|
---|
| 1522 | if (list == NULL) {
|
---|
| 1523 | Py_DECREF(dict);
|
---|
| 1524 | return NULL;
|
---|
| 1525 | }
|
---|
| 1526 | result = Py_BuildValue(
|
---|
| 1527 | "O(cO)O", Py_TYPE(array), array->ob_descr->typecode, list, dict);
|
---|
| 1528 | Py_DECREF(list);
|
---|
| 1529 | Py_DECREF(dict);
|
---|
| 1530 | return result;
|
---|
| 1531 | }
|
---|
| 1532 |
|
---|
| 1533 | PyDoc_STRVAR(reduce_doc, "Return state information for pickling.");
|
---|
| 1534 |
|
---|
[2] | 1535 | static PyObject *
|
---|
[391] | 1536 | array_sizeof(arrayobject *self, PyObject *unused)
|
---|
| 1537 | {
|
---|
| 1538 | Py_ssize_t res;
|
---|
| 1539 | res = sizeof(arrayobject) + self->allocated * self->ob_descr->itemsize;
|
---|
| 1540 | return PyLong_FromSsize_t(res);
|
---|
| 1541 | }
|
---|
| 1542 |
|
---|
| 1543 | PyDoc_STRVAR(sizeof_doc,
|
---|
| 1544 | "__sizeof__() -> int\n\
|
---|
| 1545 | \n\
|
---|
| 1546 | Size of the array in memory, in bytes.");
|
---|
| 1547 |
|
---|
| 1548 | static PyObject *
|
---|
[2] | 1549 | array_get_typecode(arrayobject *a, void *closure)
|
---|
| 1550 | {
|
---|
[391] | 1551 | char tc = a->ob_descr->typecode;
|
---|
| 1552 | return PyString_FromStringAndSize(&tc, 1);
|
---|
[2] | 1553 | }
|
---|
| 1554 |
|
---|
| 1555 | static PyObject *
|
---|
| 1556 | array_get_itemsize(arrayobject *a, void *closure)
|
---|
| 1557 | {
|
---|
[391] | 1558 | return PyInt_FromLong((long)a->ob_descr->itemsize);
|
---|
[2] | 1559 | }
|
---|
| 1560 |
|
---|
| 1561 | static PyGetSetDef array_getsets [] = {
|
---|
[391] | 1562 | {"typecode", (getter) array_get_typecode, NULL,
|
---|
| 1563 | "the typecode character used to create the array"},
|
---|
| 1564 | {"itemsize", (getter) array_get_itemsize, NULL,
|
---|
| 1565 | "the size, in bytes, of one array item"},
|
---|
| 1566 | {NULL}
|
---|
[2] | 1567 | };
|
---|
| 1568 |
|
---|
| 1569 | static PyMethodDef array_methods[] = {
|
---|
[391] | 1570 | {"append", (PyCFunction)array_append, METH_O,
|
---|
| 1571 | append_doc},
|
---|
| 1572 | {"buffer_info", (PyCFunction)array_buffer_info, METH_NOARGS,
|
---|
| 1573 | buffer_info_doc},
|
---|
| 1574 | {"byteswap", (PyCFunction)array_byteswap, METH_NOARGS,
|
---|
| 1575 | byteswap_doc},
|
---|
| 1576 | {"__copy__", (PyCFunction)array_copy, METH_NOARGS,
|
---|
| 1577 | copy_doc},
|
---|
| 1578 | {"count", (PyCFunction)array_count, METH_O,
|
---|
| 1579 | count_doc},
|
---|
| 1580 | {"__deepcopy__",(PyCFunction)array_copy, METH_O,
|
---|
| 1581 | copy_doc},
|
---|
| 1582 | {"extend", (PyCFunction)array_extend, METH_O,
|
---|
| 1583 | extend_doc},
|
---|
| 1584 | {"fromfile", (PyCFunction)array_fromfile, METH_VARARGS,
|
---|
| 1585 | fromfile_doc},
|
---|
| 1586 | {"fromlist", (PyCFunction)array_fromlist, METH_O,
|
---|
| 1587 | fromlist_doc},
|
---|
| 1588 | {"fromstring", (PyCFunction)array_fromstring, METH_VARARGS,
|
---|
| 1589 | fromstring_doc},
|
---|
[2] | 1590 | #ifdef Py_USING_UNICODE
|
---|
[391] | 1591 | {"fromunicode", (PyCFunction)array_fromunicode, METH_VARARGS,
|
---|
| 1592 | fromunicode_doc},
|
---|
[2] | 1593 | #endif
|
---|
[391] | 1594 | {"index", (PyCFunction)array_index, METH_O,
|
---|
| 1595 | index_doc},
|
---|
| 1596 | {"insert", (PyCFunction)array_insert, METH_VARARGS,
|
---|
| 1597 | insert_doc},
|
---|
| 1598 | {"pop", (PyCFunction)array_pop, METH_VARARGS,
|
---|
| 1599 | pop_doc},
|
---|
| 1600 | {"read", (PyCFunction)array_fromfile_as_read, METH_VARARGS,
|
---|
| 1601 | fromfile_doc},
|
---|
| 1602 | {"__reduce__", (PyCFunction)array_reduce, METH_NOARGS,
|
---|
| 1603 | reduce_doc},
|
---|
| 1604 | {"remove", (PyCFunction)array_remove, METH_O,
|
---|
| 1605 | remove_doc},
|
---|
| 1606 | {"reverse", (PyCFunction)array_reverse, METH_NOARGS,
|
---|
| 1607 | reverse_doc},
|
---|
| 1608 | /* {"sort", (PyCFunction)array_sort, METH_VARARGS,
|
---|
| 1609 | sort_doc},*/
|
---|
| 1610 | {"tofile", (PyCFunction)array_tofile, METH_O,
|
---|
| 1611 | tofile_doc},
|
---|
| 1612 | {"tolist", (PyCFunction)array_tolist, METH_NOARGS,
|
---|
| 1613 | tolist_doc},
|
---|
| 1614 | {"tostring", (PyCFunction)array_tostring, METH_NOARGS,
|
---|
| 1615 | tostring_doc},
|
---|
[2] | 1616 | #ifdef Py_USING_UNICODE
|
---|
[391] | 1617 | {"tounicode", (PyCFunction)array_tounicode, METH_NOARGS,
|
---|
| 1618 | tounicode_doc},
|
---|
[2] | 1619 | #endif
|
---|
[391] | 1620 | {"write", (PyCFunction)array_tofile_as_write, METH_O,
|
---|
| 1621 | tofile_doc},
|
---|
| 1622 | {"__sizeof__", (PyCFunction)array_sizeof, METH_NOARGS,
|
---|
| 1623 | sizeof_doc},
|
---|
| 1624 | {NULL, NULL} /* sentinel */
|
---|
[2] | 1625 | };
|
---|
| 1626 |
|
---|
| 1627 | static PyObject *
|
---|
| 1628 | array_repr(arrayobject *a)
|
---|
| 1629 | {
|
---|
[391] | 1630 | char buf[256], typecode;
|
---|
| 1631 | PyObject *s, *t, *v = NULL;
|
---|
| 1632 | Py_ssize_t len;
|
---|
[2] | 1633 |
|
---|
[391] | 1634 | len = Py_SIZE(a);
|
---|
| 1635 | typecode = a->ob_descr->typecode;
|
---|
| 1636 | if (len == 0) {
|
---|
| 1637 | PyOS_snprintf(buf, sizeof(buf), "array('%c')", typecode);
|
---|
| 1638 | return PyString_FromString(buf);
|
---|
| 1639 | }
|
---|
| 1640 |
|
---|
| 1641 | if (typecode == 'c')
|
---|
| 1642 | v = array_tostring(a, NULL);
|
---|
[2] | 1643 | #ifdef Py_USING_UNICODE
|
---|
[391] | 1644 | else if (typecode == 'u')
|
---|
| 1645 | v = array_tounicode(a, NULL);
|
---|
[2] | 1646 | #endif
|
---|
[391] | 1647 | else
|
---|
| 1648 | v = array_tolist(a, NULL);
|
---|
| 1649 | t = PyObject_Repr(v);
|
---|
| 1650 | Py_XDECREF(v);
|
---|
[2] | 1651 |
|
---|
[391] | 1652 | PyOS_snprintf(buf, sizeof(buf), "array('%c', ", typecode);
|
---|
| 1653 | s = PyString_FromString(buf);
|
---|
| 1654 | PyString_ConcatAndDel(&s, t);
|
---|
| 1655 | PyString_ConcatAndDel(&s, PyString_FromString(")"));
|
---|
| 1656 | return s;
|
---|
[2] | 1657 | }
|
---|
| 1658 |
|
---|
| 1659 | static PyObject*
|
---|
| 1660 | array_subscr(arrayobject* self, PyObject* item)
|
---|
| 1661 | {
|
---|
[391] | 1662 | if (PyIndex_Check(item)) {
|
---|
| 1663 | Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError);
|
---|
| 1664 | if (i==-1 && PyErr_Occurred()) {
|
---|
| 1665 | return NULL;
|
---|
| 1666 | }
|
---|
| 1667 | if (i < 0)
|
---|
| 1668 | i += Py_SIZE(self);
|
---|
| 1669 | return array_item(self, i);
|
---|
| 1670 | }
|
---|
| 1671 | else if (PySlice_Check(item)) {
|
---|
| 1672 | Py_ssize_t start, stop, step, slicelength, cur, i;
|
---|
| 1673 | PyObject* result;
|
---|
| 1674 | arrayobject* ar;
|
---|
| 1675 | int itemsize = self->ob_descr->itemsize;
|
---|
[2] | 1676 |
|
---|
[391] | 1677 | if (PySlice_GetIndicesEx((PySliceObject*)item, Py_SIZE(self),
|
---|
| 1678 | &start, &stop, &step, &slicelength) < 0) {
|
---|
| 1679 | return NULL;
|
---|
| 1680 | }
|
---|
[2] | 1681 |
|
---|
[391] | 1682 | if (slicelength <= 0) {
|
---|
| 1683 | return newarrayobject(&Arraytype, 0, self->ob_descr);
|
---|
| 1684 | }
|
---|
| 1685 | else if (step == 1) {
|
---|
| 1686 | PyObject *result = newarrayobject(&Arraytype,
|
---|
| 1687 | slicelength, self->ob_descr);
|
---|
| 1688 | if (result == NULL)
|
---|
| 1689 | return NULL;
|
---|
| 1690 | memcpy(((arrayobject *)result)->ob_item,
|
---|
| 1691 | self->ob_item + start * itemsize,
|
---|
| 1692 | slicelength * itemsize);
|
---|
| 1693 | return result;
|
---|
| 1694 | }
|
---|
| 1695 | else {
|
---|
| 1696 | result = newarrayobject(&Arraytype, slicelength, self->ob_descr);
|
---|
| 1697 | if (!result) return NULL;
|
---|
[2] | 1698 |
|
---|
[391] | 1699 | ar = (arrayobject*)result;
|
---|
[2] | 1700 |
|
---|
[391] | 1701 | for (cur = start, i = 0; i < slicelength;
|
---|
| 1702 | cur += step, i++) {
|
---|
| 1703 | memcpy(ar->ob_item + i*itemsize,
|
---|
| 1704 | self->ob_item + cur*itemsize,
|
---|
| 1705 | itemsize);
|
---|
| 1706 | }
|
---|
| 1707 |
|
---|
| 1708 | return result;
|
---|
| 1709 | }
|
---|
| 1710 | }
|
---|
| 1711 | else {
|
---|
| 1712 | PyErr_SetString(PyExc_TypeError,
|
---|
| 1713 | "array indices must be integers");
|
---|
| 1714 | return NULL;
|
---|
| 1715 | }
|
---|
[2] | 1716 | }
|
---|
| 1717 |
|
---|
| 1718 | static int
|
---|
| 1719 | array_ass_subscr(arrayobject* self, PyObject* item, PyObject* value)
|
---|
| 1720 | {
|
---|
[391] | 1721 | Py_ssize_t start, stop, step, slicelength, needed;
|
---|
| 1722 | arrayobject* other;
|
---|
| 1723 | int itemsize;
|
---|
[2] | 1724 |
|
---|
[391] | 1725 | if (PyIndex_Check(item)) {
|
---|
| 1726 | Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError);
|
---|
[2] | 1727 |
|
---|
[391] | 1728 | if (i == -1 && PyErr_Occurred())
|
---|
| 1729 | return -1;
|
---|
| 1730 | if (i < 0)
|
---|
| 1731 | i += Py_SIZE(self);
|
---|
| 1732 | if (i < 0 || i >= Py_SIZE(self)) {
|
---|
| 1733 | PyErr_SetString(PyExc_IndexError,
|
---|
| 1734 | "array assignment index out of range");
|
---|
| 1735 | return -1;
|
---|
| 1736 | }
|
---|
| 1737 | if (value == NULL) {
|
---|
| 1738 | /* Fall through to slice assignment */
|
---|
| 1739 | start = i;
|
---|
| 1740 | stop = i + 1;
|
---|
| 1741 | step = 1;
|
---|
| 1742 | slicelength = 1;
|
---|
| 1743 | }
|
---|
| 1744 | else
|
---|
| 1745 | return (*self->ob_descr->setitem)(self, i, value);
|
---|
| 1746 | }
|
---|
| 1747 | else if (PySlice_Check(item)) {
|
---|
| 1748 | if (PySlice_GetIndicesEx((PySliceObject *)item,
|
---|
| 1749 | Py_SIZE(self), &start, &stop,
|
---|
| 1750 | &step, &slicelength) < 0) {
|
---|
| 1751 | return -1;
|
---|
| 1752 | }
|
---|
| 1753 | }
|
---|
| 1754 | else {
|
---|
| 1755 | PyErr_SetString(PyExc_TypeError,
|
---|
| 1756 | "array indices must be integer");
|
---|
| 1757 | return -1;
|
---|
| 1758 | }
|
---|
| 1759 | if (value == NULL) {
|
---|
| 1760 | other = NULL;
|
---|
| 1761 | needed = 0;
|
---|
| 1762 | }
|
---|
| 1763 | else if (array_Check(value)) {
|
---|
| 1764 | other = (arrayobject *)value;
|
---|
| 1765 | needed = Py_SIZE(other);
|
---|
| 1766 | if (self == other) {
|
---|
| 1767 | /* Special case "self[i:j] = self" -- copy self first */
|
---|
| 1768 | int ret;
|
---|
| 1769 | value = array_slice(other, 0, needed);
|
---|
| 1770 | if (value == NULL)
|
---|
| 1771 | return -1;
|
---|
| 1772 | ret = array_ass_subscr(self, item, value);
|
---|
| 1773 | Py_DECREF(value);
|
---|
| 1774 | return ret;
|
---|
| 1775 | }
|
---|
| 1776 | if (other->ob_descr != self->ob_descr) {
|
---|
| 1777 | PyErr_BadArgument();
|
---|
| 1778 | return -1;
|
---|
| 1779 | }
|
---|
| 1780 | }
|
---|
| 1781 | else {
|
---|
| 1782 | PyErr_Format(PyExc_TypeError,
|
---|
| 1783 | "can only assign array (not \"%.200s\") to array slice",
|
---|
| 1784 | Py_TYPE(value)->tp_name);
|
---|
| 1785 | return -1;
|
---|
| 1786 | }
|
---|
| 1787 | itemsize = self->ob_descr->itemsize;
|
---|
| 1788 | /* for 'a[2:1] = ...', the insertion point is 'start', not 'stop' */
|
---|
| 1789 | if ((step > 0 && stop < start) ||
|
---|
| 1790 | (step < 0 && stop > start))
|
---|
| 1791 | stop = start;
|
---|
| 1792 | if (step == 1) {
|
---|
| 1793 | if (slicelength > needed) {
|
---|
| 1794 | memmove(self->ob_item + (start + needed) * itemsize,
|
---|
| 1795 | self->ob_item + stop * itemsize,
|
---|
| 1796 | (Py_SIZE(self) - stop) * itemsize);
|
---|
| 1797 | if (array_resize(self, Py_SIZE(self) +
|
---|
| 1798 | needed - slicelength) < 0)
|
---|
| 1799 | return -1;
|
---|
| 1800 | }
|
---|
| 1801 | else if (slicelength < needed) {
|
---|
| 1802 | if (array_resize(self, Py_SIZE(self) +
|
---|
| 1803 | needed - slicelength) < 0)
|
---|
| 1804 | return -1;
|
---|
| 1805 | memmove(self->ob_item + (start + needed) * itemsize,
|
---|
| 1806 | self->ob_item + stop * itemsize,
|
---|
| 1807 | (Py_SIZE(self) - start - needed) * itemsize);
|
---|
| 1808 | }
|
---|
| 1809 | if (needed > 0)
|
---|
| 1810 | memcpy(self->ob_item + start * itemsize,
|
---|
| 1811 | other->ob_item, needed * itemsize);
|
---|
| 1812 | return 0;
|
---|
| 1813 | }
|
---|
| 1814 | else if (needed == 0) {
|
---|
| 1815 | /* Delete slice */
|
---|
| 1816 | size_t cur;
|
---|
| 1817 | Py_ssize_t i;
|
---|
[2] | 1818 |
|
---|
[391] | 1819 | if (step < 0) {
|
---|
| 1820 | stop = start + 1;
|
---|
| 1821 | start = stop + step * (slicelength - 1) - 1;
|
---|
| 1822 | step = -step;
|
---|
| 1823 | }
|
---|
| 1824 | for (cur = start, i = 0; i < slicelength;
|
---|
| 1825 | cur += step, i++) {
|
---|
| 1826 | Py_ssize_t lim = step - 1;
|
---|
[2] | 1827 |
|
---|
[391] | 1828 | if (cur + step >= (size_t)Py_SIZE(self))
|
---|
| 1829 | lim = Py_SIZE(self) - cur - 1;
|
---|
| 1830 | memmove(self->ob_item + (cur - i) * itemsize,
|
---|
| 1831 | self->ob_item + (cur + 1) * itemsize,
|
---|
| 1832 | lim * itemsize);
|
---|
| 1833 | }
|
---|
| 1834 | cur = start + slicelength * step;
|
---|
| 1835 | if (cur < (size_t)Py_SIZE(self)) {
|
---|
| 1836 | memmove(self->ob_item + (cur-slicelength) * itemsize,
|
---|
| 1837 | self->ob_item + cur * itemsize,
|
---|
| 1838 | (Py_SIZE(self) - cur) * itemsize);
|
---|
| 1839 | }
|
---|
| 1840 | if (array_resize(self, Py_SIZE(self) - slicelength) < 0)
|
---|
| 1841 | return -1;
|
---|
| 1842 | return 0;
|
---|
| 1843 | }
|
---|
| 1844 | else {
|
---|
| 1845 | Py_ssize_t cur, i;
|
---|
| 1846 |
|
---|
| 1847 | if (needed != slicelength) {
|
---|
| 1848 | PyErr_Format(PyExc_ValueError,
|
---|
| 1849 | "attempt to assign array of size %zd "
|
---|
| 1850 | "to extended slice of size %zd",
|
---|
| 1851 | needed, slicelength);
|
---|
| 1852 | return -1;
|
---|
| 1853 | }
|
---|
| 1854 | for (cur = start, i = 0; i < slicelength;
|
---|
| 1855 | cur += step, i++) {
|
---|
| 1856 | memcpy(self->ob_item + cur * itemsize,
|
---|
| 1857 | other->ob_item + i * itemsize,
|
---|
| 1858 | itemsize);
|
---|
| 1859 | }
|
---|
| 1860 | return 0;
|
---|
| 1861 | }
|
---|
[2] | 1862 | }
|
---|
| 1863 |
|
---|
| 1864 | static PyMappingMethods array_as_mapping = {
|
---|
[391] | 1865 | (lenfunc)array_length,
|
---|
| 1866 | (binaryfunc)array_subscr,
|
---|
| 1867 | (objobjargproc)array_ass_subscr
|
---|
[2] | 1868 | };
|
---|
| 1869 |
|
---|
| 1870 | static const void *emptybuf = "";
|
---|
| 1871 |
|
---|
| 1872 | static Py_ssize_t
|
---|
| 1873 | array_buffer_getreadbuf(arrayobject *self, Py_ssize_t index, const void **ptr)
|
---|
| 1874 | {
|
---|
[391] | 1875 | if ( index != 0 ) {
|
---|
| 1876 | PyErr_SetString(PyExc_SystemError,
|
---|
| 1877 | "Accessing non-existent array segment");
|
---|
| 1878 | return -1;
|
---|
| 1879 | }
|
---|
| 1880 | *ptr = (void *)self->ob_item;
|
---|
| 1881 | if (*ptr == NULL)
|
---|
| 1882 | *ptr = emptybuf;
|
---|
| 1883 | return Py_SIZE(self)*self->ob_descr->itemsize;
|
---|
[2] | 1884 | }
|
---|
| 1885 |
|
---|
| 1886 | static Py_ssize_t
|
---|
| 1887 | array_buffer_getwritebuf(arrayobject *self, Py_ssize_t index, const void **ptr)
|
---|
| 1888 | {
|
---|
[391] | 1889 | if ( index != 0 ) {
|
---|
| 1890 | PyErr_SetString(PyExc_SystemError,
|
---|
| 1891 | "Accessing non-existent array segment");
|
---|
| 1892 | return -1;
|
---|
| 1893 | }
|
---|
| 1894 | *ptr = (void *)self->ob_item;
|
---|
| 1895 | if (*ptr == NULL)
|
---|
| 1896 | *ptr = emptybuf;
|
---|
| 1897 | return Py_SIZE(self)*self->ob_descr->itemsize;
|
---|
[2] | 1898 | }
|
---|
| 1899 |
|
---|
| 1900 | static Py_ssize_t
|
---|
| 1901 | array_buffer_getsegcount(arrayobject *self, Py_ssize_t *lenp)
|
---|
| 1902 | {
|
---|
[391] | 1903 | if ( lenp )
|
---|
| 1904 | *lenp = Py_SIZE(self)*self->ob_descr->itemsize;
|
---|
| 1905 | return 1;
|
---|
[2] | 1906 | }
|
---|
| 1907 |
|
---|
| 1908 | static PySequenceMethods array_as_sequence = {
|
---|
[391] | 1909 | (lenfunc)array_length, /*sq_length*/
|
---|
| 1910 | (binaryfunc)array_concat, /*sq_concat*/
|
---|
| 1911 | (ssizeargfunc)array_repeat, /*sq_repeat*/
|
---|
| 1912 | (ssizeargfunc)array_item, /*sq_item*/
|
---|
| 1913 | (ssizessizeargfunc)array_slice, /*sq_slice*/
|
---|
| 1914 | (ssizeobjargproc)array_ass_item, /*sq_ass_item*/
|
---|
| 1915 | (ssizessizeobjargproc)array_ass_slice, /*sq_ass_slice*/
|
---|
| 1916 | (objobjproc)array_contains, /*sq_contains*/
|
---|
| 1917 | (binaryfunc)array_inplace_concat, /*sq_inplace_concat*/
|
---|
| 1918 | (ssizeargfunc)array_inplace_repeat /*sq_inplace_repeat*/
|
---|
[2] | 1919 | };
|
---|
| 1920 |
|
---|
| 1921 | static PyBufferProcs array_as_buffer = {
|
---|
[391] | 1922 | (readbufferproc)array_buffer_getreadbuf,
|
---|
| 1923 | (writebufferproc)array_buffer_getwritebuf,
|
---|
| 1924 | (segcountproc)array_buffer_getsegcount,
|
---|
| 1925 | NULL,
|
---|
[2] | 1926 | };
|
---|
| 1927 |
|
---|
| 1928 | static PyObject *
|
---|
| 1929 | array_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
|
---|
| 1930 | {
|
---|
[391] | 1931 | char c;
|
---|
| 1932 | PyObject *initial = NULL, *it = NULL;
|
---|
| 1933 | struct arraydescr *descr;
|
---|
[2] | 1934 |
|
---|
[391] | 1935 | if (type == &Arraytype && !_PyArg_NoKeywords("array.array()", kwds))
|
---|
| 1936 | return NULL;
|
---|
[2] | 1937 |
|
---|
[391] | 1938 | if (!PyArg_ParseTuple(args, "c|O:array", &c, &initial))
|
---|
| 1939 | return NULL;
|
---|
[2] | 1940 |
|
---|
[391] | 1941 | if (!(initial == NULL || PyList_Check(initial)
|
---|
| 1942 | || PyString_Check(initial) || PyTuple_Check(initial)
|
---|
| 1943 | || (c == 'u' && PyUnicode_Check(initial)))) {
|
---|
| 1944 | it = PyObject_GetIter(initial);
|
---|
| 1945 | if (it == NULL)
|
---|
| 1946 | return NULL;
|
---|
| 1947 | /* We set initial to NULL so that the subsequent code
|
---|
| 1948 | will create an empty array of the appropriate type
|
---|
| 1949 | and afterwards we can use array_iter_extend to populate
|
---|
| 1950 | the array.
|
---|
| 1951 | */
|
---|
| 1952 | initial = NULL;
|
---|
| 1953 | }
|
---|
| 1954 | for (descr = descriptors; descr->typecode != '\0'; descr++) {
|
---|
| 1955 | if (descr->typecode == c) {
|
---|
| 1956 | PyObject *a;
|
---|
| 1957 | Py_ssize_t len;
|
---|
[2] | 1958 |
|
---|
[391] | 1959 | if (initial == NULL || !(PyList_Check(initial)
|
---|
| 1960 | || PyTuple_Check(initial)))
|
---|
| 1961 | len = 0;
|
---|
| 1962 | else
|
---|
| 1963 | len = PySequence_Size(initial);
|
---|
[2] | 1964 |
|
---|
[391] | 1965 | a = newarrayobject(type, len, descr);
|
---|
| 1966 | if (a == NULL)
|
---|
| 1967 | return NULL;
|
---|
| 1968 |
|
---|
| 1969 | if (len > 0) {
|
---|
| 1970 | Py_ssize_t i;
|
---|
| 1971 | for (i = 0; i < len; i++) {
|
---|
| 1972 | PyObject *v =
|
---|
| 1973 | PySequence_GetItem(initial, i);
|
---|
| 1974 | if (v == NULL) {
|
---|
| 1975 | Py_DECREF(a);
|
---|
| 1976 | return NULL;
|
---|
| 1977 | }
|
---|
| 1978 | if (setarrayitem(a, i, v) != 0) {
|
---|
| 1979 | Py_DECREF(v);
|
---|
| 1980 | Py_DECREF(a);
|
---|
| 1981 | return NULL;
|
---|
| 1982 | }
|
---|
| 1983 | Py_DECREF(v);
|
---|
| 1984 | }
|
---|
| 1985 | } else if (initial != NULL && PyString_Check(initial)) {
|
---|
| 1986 | PyObject *t_initial, *v;
|
---|
| 1987 | t_initial = PyTuple_Pack(1, initial);
|
---|
| 1988 | if (t_initial == NULL) {
|
---|
| 1989 | Py_DECREF(a);
|
---|
| 1990 | return NULL;
|
---|
| 1991 | }
|
---|
| 1992 | v = array_fromstring((arrayobject *)a,
|
---|
| 1993 | t_initial);
|
---|
| 1994 | Py_DECREF(t_initial);
|
---|
| 1995 | if (v == NULL) {
|
---|
| 1996 | Py_DECREF(a);
|
---|
| 1997 | return NULL;
|
---|
| 1998 | }
|
---|
| 1999 | Py_DECREF(v);
|
---|
[2] | 2000 | #ifdef Py_USING_UNICODE
|
---|
[391] | 2001 | } else if (initial != NULL && PyUnicode_Check(initial)) {
|
---|
| 2002 | Py_ssize_t n = PyUnicode_GET_DATA_SIZE(initial);
|
---|
| 2003 | if (n > 0) {
|
---|
| 2004 | arrayobject *self = (arrayobject *)a;
|
---|
| 2005 | char *item = self->ob_item;
|
---|
| 2006 | item = (char *)PyMem_Realloc(item, n);
|
---|
| 2007 | if (item == NULL) {
|
---|
| 2008 | PyErr_NoMemory();
|
---|
| 2009 | Py_DECREF(a);
|
---|
| 2010 | return NULL;
|
---|
| 2011 | }
|
---|
| 2012 | self->ob_item = item;
|
---|
| 2013 | Py_SIZE(self) = n / sizeof(Py_UNICODE);
|
---|
| 2014 | memcpy(item, PyUnicode_AS_DATA(initial), n);
|
---|
| 2015 | self->allocated = Py_SIZE(self);
|
---|
| 2016 | }
|
---|
[2] | 2017 | #endif
|
---|
[391] | 2018 | }
|
---|
| 2019 | if (it != NULL) {
|
---|
| 2020 | if (array_iter_extend((arrayobject *)a, it) == -1) {
|
---|
| 2021 | Py_DECREF(it);
|
---|
| 2022 | Py_DECREF(a);
|
---|
| 2023 | return NULL;
|
---|
| 2024 | }
|
---|
| 2025 | Py_DECREF(it);
|
---|
| 2026 | }
|
---|
| 2027 | return a;
|
---|
| 2028 | }
|
---|
| 2029 | }
|
---|
| 2030 | PyErr_SetString(PyExc_ValueError,
|
---|
| 2031 | "bad typecode (must be c, b, B, u, h, H, i, I, l, L, f or d)");
|
---|
| 2032 | return NULL;
|
---|
[2] | 2033 | }
|
---|
| 2034 |
|
---|
| 2035 |
|
---|
| 2036 | PyDoc_STRVAR(module_doc,
|
---|
| 2037 | "This module defines an object type which can efficiently represent\n\
|
---|
| 2038 | an array of basic values: characters, integers, floating point\n\
|
---|
| 2039 | numbers. Arrays are sequence types and behave very much like lists,\n\
|
---|
| 2040 | except that the type of objects stored in them is constrained. The\n\
|
---|
| 2041 | type is specified at object creation time by using a type code, which\n\
|
---|
| 2042 | is a single character. The following type codes are defined:\n\
|
---|
| 2043 | \n\
|
---|
| 2044 | Type code C Type Minimum size in bytes \n\
|
---|
| 2045 | 'c' character 1 \n\
|
---|
| 2046 | 'b' signed integer 1 \n\
|
---|
| 2047 | 'B' unsigned integer 1 \n\
|
---|
| 2048 | 'u' Unicode character 2 \n\
|
---|
| 2049 | 'h' signed integer 2 \n\
|
---|
| 2050 | 'H' unsigned integer 2 \n\
|
---|
| 2051 | 'i' signed integer 2 \n\
|
---|
| 2052 | 'I' unsigned integer 2 \n\
|
---|
| 2053 | 'l' signed integer 4 \n\
|
---|
| 2054 | 'L' unsigned integer 4 \n\
|
---|
| 2055 | 'f' floating point 4 \n\
|
---|
| 2056 | 'd' floating point 8 \n\
|
---|
| 2057 | \n\
|
---|
| 2058 | The constructor is:\n\
|
---|
| 2059 | \n\
|
---|
| 2060 | array(typecode [, initializer]) -- create a new array\n\
|
---|
| 2061 | ");
|
---|
| 2062 |
|
---|
| 2063 | PyDoc_STRVAR(arraytype_doc,
|
---|
| 2064 | "array(typecode [, initializer]) -> array\n\
|
---|
| 2065 | \n\
|
---|
| 2066 | Return a new array whose items are restricted by typecode, and\n\
|
---|
| 2067 | initialized from the optional initializer value, which must be a list,\n\
|
---|
[391] | 2068 | string or iterable over elements of the appropriate type.\n\
|
---|
[2] | 2069 | \n\
|
---|
| 2070 | Arrays represent basic values and behave very much like lists, except\n\
|
---|
| 2071 | the type of objects stored in them is constrained.\n\
|
---|
| 2072 | \n\
|
---|
| 2073 | Methods:\n\
|
---|
| 2074 | \n\
|
---|
| 2075 | append() -- append a new item to the end of the array\n\
|
---|
| 2076 | buffer_info() -- return information giving the current memory info\n\
|
---|
| 2077 | byteswap() -- byteswap all the items of the array\n\
|
---|
| 2078 | count() -- return number of occurrences of an object\n\
|
---|
| 2079 | extend() -- extend array by appending multiple elements from an iterable\n\
|
---|
| 2080 | fromfile() -- read items from a file object\n\
|
---|
| 2081 | fromlist() -- append items from the list\n\
|
---|
| 2082 | fromstring() -- append items from the string\n\
|
---|
| 2083 | index() -- return index of first occurrence of an object\n\
|
---|
| 2084 | insert() -- insert a new item into the array at a provided position\n\
|
---|
| 2085 | pop() -- remove and return item (default last)\n\
|
---|
| 2086 | read() -- DEPRECATED, use fromfile()\n\
|
---|
| 2087 | remove() -- remove first occurrence of an object\n\
|
---|
| 2088 | reverse() -- reverse the order of the items in the array\n\
|
---|
| 2089 | tofile() -- write all items to a file object\n\
|
---|
| 2090 | tolist() -- return the array converted to an ordinary list\n\
|
---|
| 2091 | tostring() -- return the array converted to a string\n\
|
---|
| 2092 | write() -- DEPRECATED, use tofile()\n\
|
---|
| 2093 | \n\
|
---|
| 2094 | Attributes:\n\
|
---|
| 2095 | \n\
|
---|
| 2096 | typecode -- the typecode character used to create the array\n\
|
---|
| 2097 | itemsize -- the length in bytes of one array item\n\
|
---|
| 2098 | ");
|
---|
| 2099 |
|
---|
| 2100 | static PyObject *array_iter(arrayobject *ao);
|
---|
| 2101 |
|
---|
| 2102 | static PyTypeObject Arraytype = {
|
---|
[391] | 2103 | PyVarObject_HEAD_INIT(NULL, 0)
|
---|
| 2104 | "array.array",
|
---|
| 2105 | sizeof(arrayobject),
|
---|
| 2106 | 0,
|
---|
| 2107 | (destructor)array_dealloc, /* tp_dealloc */
|
---|
| 2108 | 0, /* tp_print */
|
---|
| 2109 | 0, /* tp_getattr */
|
---|
| 2110 | 0, /* tp_setattr */
|
---|
| 2111 | 0, /* tp_compare */
|
---|
| 2112 | (reprfunc)array_repr, /* tp_repr */
|
---|
| 2113 | 0, /* tp_as_number*/
|
---|
| 2114 | &array_as_sequence, /* tp_as_sequence*/
|
---|
| 2115 | &array_as_mapping, /* tp_as_mapping*/
|
---|
| 2116 | 0, /* tp_hash */
|
---|
| 2117 | 0, /* tp_call */
|
---|
| 2118 | 0, /* tp_str */
|
---|
| 2119 | PyObject_GenericGetAttr, /* tp_getattro */
|
---|
| 2120 | 0, /* tp_setattro */
|
---|
| 2121 | &array_as_buffer, /* tp_as_buffer*/
|
---|
| 2122 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_WEAKREFS, /* tp_flags */
|
---|
| 2123 | arraytype_doc, /* tp_doc */
|
---|
| 2124 | 0, /* tp_traverse */
|
---|
| 2125 | 0, /* tp_clear */
|
---|
| 2126 | array_richcompare, /* tp_richcompare */
|
---|
| 2127 | offsetof(arrayobject, weakreflist), /* tp_weaklistoffset */
|
---|
| 2128 | (getiterfunc)array_iter, /* tp_iter */
|
---|
| 2129 | 0, /* tp_iternext */
|
---|
| 2130 | array_methods, /* tp_methods */
|
---|
| 2131 | 0, /* tp_members */
|
---|
| 2132 | array_getsets, /* tp_getset */
|
---|
| 2133 | 0, /* tp_base */
|
---|
| 2134 | 0, /* tp_dict */
|
---|
| 2135 | 0, /* tp_descr_get */
|
---|
| 2136 | 0, /* tp_descr_set */
|
---|
| 2137 | 0, /* tp_dictoffset */
|
---|
| 2138 | 0, /* tp_init */
|
---|
| 2139 | PyType_GenericAlloc, /* tp_alloc */
|
---|
| 2140 | array_new, /* tp_new */
|
---|
| 2141 | PyObject_Del, /* tp_free */
|
---|
[2] | 2142 | };
|
---|
| 2143 |
|
---|
| 2144 |
|
---|
| 2145 | /*********************** Array Iterator **************************/
|
---|
| 2146 |
|
---|
| 2147 | typedef struct {
|
---|
[391] | 2148 | PyObject_HEAD
|
---|
| 2149 | Py_ssize_t index;
|
---|
| 2150 | arrayobject *ao;
|
---|
| 2151 | PyObject * (*getitem)(struct arrayobject *, Py_ssize_t);
|
---|
[2] | 2152 | } arrayiterobject;
|
---|
| 2153 |
|
---|
| 2154 | static PyTypeObject PyArrayIter_Type;
|
---|
| 2155 |
|
---|
| 2156 | #define PyArrayIter_Check(op) PyObject_TypeCheck(op, &PyArrayIter_Type)
|
---|
| 2157 |
|
---|
| 2158 | static PyObject *
|
---|
| 2159 | array_iter(arrayobject *ao)
|
---|
| 2160 | {
|
---|
[391] | 2161 | arrayiterobject *it;
|
---|
[2] | 2162 |
|
---|
[391] | 2163 | if (!array_Check(ao)) {
|
---|
| 2164 | PyErr_BadInternalCall();
|
---|
| 2165 | return NULL;
|
---|
| 2166 | }
|
---|
[2] | 2167 |
|
---|
[391] | 2168 | it = PyObject_GC_New(arrayiterobject, &PyArrayIter_Type);
|
---|
| 2169 | if (it == NULL)
|
---|
| 2170 | return NULL;
|
---|
[2] | 2171 |
|
---|
[391] | 2172 | Py_INCREF(ao);
|
---|
| 2173 | it->ao = ao;
|
---|
| 2174 | it->index = 0;
|
---|
| 2175 | it->getitem = ao->ob_descr->getitem;
|
---|
| 2176 | PyObject_GC_Track(it);
|
---|
| 2177 | return (PyObject *)it;
|
---|
[2] | 2178 | }
|
---|
| 2179 |
|
---|
| 2180 | static PyObject *
|
---|
| 2181 | arrayiter_next(arrayiterobject *it)
|
---|
| 2182 | {
|
---|
[391] | 2183 | assert(PyArrayIter_Check(it));
|
---|
| 2184 | if (it->index < Py_SIZE(it->ao))
|
---|
| 2185 | return (*it->getitem)(it->ao, it->index++);
|
---|
| 2186 | return NULL;
|
---|
[2] | 2187 | }
|
---|
| 2188 |
|
---|
| 2189 | static void
|
---|
| 2190 | arrayiter_dealloc(arrayiterobject *it)
|
---|
| 2191 | {
|
---|
[391] | 2192 | PyObject_GC_UnTrack(it);
|
---|
| 2193 | Py_XDECREF(it->ao);
|
---|
| 2194 | PyObject_GC_Del(it);
|
---|
[2] | 2195 | }
|
---|
| 2196 |
|
---|
| 2197 | static int
|
---|
| 2198 | arrayiter_traverse(arrayiterobject *it, visitproc visit, void *arg)
|
---|
| 2199 | {
|
---|
[391] | 2200 | Py_VISIT(it->ao);
|
---|
| 2201 | return 0;
|
---|
[2] | 2202 | }
|
---|
| 2203 |
|
---|
| 2204 | static PyTypeObject PyArrayIter_Type = {
|
---|
[391] | 2205 | PyVarObject_HEAD_INIT(NULL, 0)
|
---|
| 2206 | "arrayiterator", /* tp_name */
|
---|
| 2207 | sizeof(arrayiterobject), /* tp_basicsize */
|
---|
| 2208 | 0, /* tp_itemsize */
|
---|
| 2209 | /* methods */
|
---|
| 2210 | (destructor)arrayiter_dealloc, /* tp_dealloc */
|
---|
| 2211 | 0, /* tp_print */
|
---|
| 2212 | 0, /* tp_getattr */
|
---|
| 2213 | 0, /* tp_setattr */
|
---|
| 2214 | 0, /* tp_compare */
|
---|
| 2215 | 0, /* tp_repr */
|
---|
| 2216 | 0, /* tp_as_number */
|
---|
| 2217 | 0, /* tp_as_sequence */
|
---|
| 2218 | 0, /* tp_as_mapping */
|
---|
| 2219 | 0, /* tp_hash */
|
---|
| 2220 | 0, /* tp_call */
|
---|
| 2221 | 0, /* tp_str */
|
---|
| 2222 | PyObject_GenericGetAttr, /* tp_getattro */
|
---|
| 2223 | 0, /* tp_setattro */
|
---|
| 2224 | 0, /* tp_as_buffer */
|
---|
| 2225 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
|
---|
| 2226 | 0, /* tp_doc */
|
---|
| 2227 | (traverseproc)arrayiter_traverse, /* tp_traverse */
|
---|
| 2228 | 0, /* tp_clear */
|
---|
| 2229 | 0, /* tp_richcompare */
|
---|
| 2230 | 0, /* tp_weaklistoffset */
|
---|
| 2231 | PyObject_SelfIter, /* tp_iter */
|
---|
| 2232 | (iternextfunc)arrayiter_next, /* tp_iternext */
|
---|
| 2233 | 0, /* tp_methods */
|
---|
[2] | 2234 | };
|
---|
| 2235 |
|
---|
| 2236 |
|
---|
| 2237 | /*********************** Install Module **************************/
|
---|
| 2238 |
|
---|
| 2239 | /* No functions in array module. */
|
---|
| 2240 | static PyMethodDef a_methods[] = {
|
---|
| 2241 | {NULL, NULL, 0, NULL} /* Sentinel */
|
---|
| 2242 | };
|
---|
| 2243 |
|
---|
| 2244 |
|
---|
| 2245 | PyMODINIT_FUNC
|
---|
| 2246 | initarray(void)
|
---|
| 2247 | {
|
---|
[391] | 2248 | PyObject *m;
|
---|
[2] | 2249 |
|
---|
[391] | 2250 | Arraytype.ob_type = &PyType_Type;
|
---|
| 2251 | PyArrayIter_Type.ob_type = &PyType_Type;
|
---|
| 2252 | m = Py_InitModule3("array", a_methods, module_doc);
|
---|
| 2253 | if (m == NULL)
|
---|
| 2254 | return;
|
---|
[2] | 2255 |
|
---|
[391] | 2256 | Py_INCREF((PyObject *)&Arraytype);
|
---|
| 2257 | PyModule_AddObject(m, "ArrayType", (PyObject *)&Arraytype);
|
---|
| 2258 | Py_INCREF((PyObject *)&Arraytype);
|
---|
| 2259 | PyModule_AddObject(m, "array", (PyObject *)&Arraytype);
|
---|
| 2260 | /* No need to check the error here, the caller will do that */
|
---|
[2] | 2261 | }
|
---|