diff options
author | Raymond Hettinger <python@rcn.com> | 2003-01-07 01:58:52 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-01-07 01:58:52 (GMT) |
commit | 625812f6184438d33ac0f2d70ab1276691a30162 (patch) | |
tree | fab1b113e664b2c3933419c95968c868e55beafd /Modules/arraymodule.c | |
parent | 4e68a1ec6c8b89d4fad70cf54eaa70ae32d66054 (diff) | |
download | cpython-625812f6184438d33ac0f2d70ab1276691a30162.zip cpython-625812f6184438d33ac0f2d70ab1276691a30162.tar.gz cpython-625812f6184438d33ac0f2d70ab1276691a30162.tar.bz2 |
SF patch #662433: Fill arraymodule's tp_iter and sq_contains slots
Diffstat (limited to 'Modules/arraymodule.c')
-rw-r--r-- | Modules/arraymodule.c | 123 |
1 files changed, 121 insertions, 2 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c index 03447cb..e048d99 100644 --- a/Modules/arraymodule.c +++ b/Modules/arraymodule.c @@ -844,6 +844,19 @@ PyDoc_STRVAR(index_doc, \n\ Return index of first occurence of x in the array."); +static int +array_contains(arrayobject *self, PyObject *v) +{ + int i, cmp; + + for (i = 0, cmp = 0 ; cmp == 0 && i < self->ob_size; i++) { + PyObject *selfi = getarrayitem((PyObject *)self, i); + cmp = PyObject_RichCompareBool(selfi, v, Py_EQ); + Py_DECREF(selfi); + } + return cmp; +} + static PyObject * array_remove(arrayobject *self, PyObject *v) { @@ -1655,7 +1668,7 @@ static PySequenceMethods array_as_sequence = { (intintargfunc)array_slice, /*sq_slice*/ (intobjargproc)array_ass_item, /*sq_ass_item*/ (intintobjargproc)array_ass_slice, /*sq_ass_slice*/ - NULL, /*sq_contains*/ + (objobjproc)array_contains, /*sq_contains*/ (binaryfunc)array_inplace_concat, /*sq_inplace_concat*/ (intargfunc)array_inplace_repeat /*sq_inplace_repeat*/ }; @@ -1822,6 +1835,8 @@ typecode -- the typecode character used to create the array\n\ itemsize -- the length in bytes of one array item\n\ "); +static PyObject *array_iter(arrayobject *ao); + static PyTypeObject Arraytype = { PyObject_HEAD_INIT(NULL) 0, @@ -1849,7 +1864,7 @@ static PyTypeObject Arraytype = { 0, /* tp_clear */ array_richcompare, /* tp_richcompare */ 0, /* tp_weaklistoffset */ - 0, /* tp_iter */ + (getiterfunc)array_iter, /* tp_iter */ 0, /* tp_iternext */ array_methods, /* tp_methods */ 0, /* tp_members */ @@ -1865,6 +1880,110 @@ static PyTypeObject Arraytype = { PyObject_Del, /* tp_free */ }; + +/*********************** Array Iterator **************************/ + +typedef struct { + PyObject_HEAD + long index; + arrayobject *ao; + PyObject * (*getitem)(struct arrayobject *, int); +} arrayiterobject; + +static PyTypeObject PyArrayIter_Type; + +#define PyArrayIter_Check(op) PyObject_TypeCheck(op, &PyArrayIter_Type) + +static PyObject * +array_iter(arrayobject *ao) +{ + arrayiterobject *it; + + if (!array_Check(ao)) { + PyErr_BadInternalCall(); + return NULL; + } + + it = PyObject_GC_New(arrayiterobject, &PyArrayIter_Type); + if (it == NULL) + return NULL; + + Py_INCREF(ao); + it->ao = ao; + it->index = 0; + it->getitem = ao->ob_descr->getitem; + PyObject_GC_Track(it); + return (PyObject *)it; +} + +static PyObject * +arrayiter_getiter(PyObject *it) +{ + Py_INCREF(it); + return it; +} + +static PyObject * +arrayiter_next(arrayiterobject *it) +{ + assert(PyArrayIter_Check(it)); + if (it->index < it->ao->ob_size) + return (*it->getitem)(it->ao, it->index++); + return NULL; +} + +static void +arrayiter_dealloc(arrayiterobject *it) +{ + PyObject_GC_UnTrack(it); + Py_XDECREF(it->ao); + PyObject_GC_Del(it); +} + +static int +arrayiter_traverse(arrayiterobject *it, visitproc visit, void *arg) +{ + if (it->ao != NULL) + return visit((PyObject *)(it->ao), arg); + return 0; +} + +static PyTypeObject PyArrayIter_Type = { + PyObject_HEAD_INIT(&PyType_Type) + 0, /* ob_size */ + "arrayiterator", /* tp_name */ + sizeof(arrayiterobject), /* tp_basicsize */ + 0, /* tp_itemsize */ + /* methods */ + (destructor)arrayiter_dealloc, /* tp_dealloc */ + 0, /* tp_print */ + 0, /* tp_getattr */ + 0, /* tp_setattr */ + 0, /* tp_compare */ + 0, /* tp_repr */ + 0, /* tp_as_number */ + 0, /* tp_as_sequence */ + 0, /* tp_as_mapping */ + 0, /* tp_hash */ + 0, /* tp_call */ + 0, /* tp_str */ + PyObject_GenericGetAttr, /* tp_getattro */ + 0, /* tp_setattro */ + 0, /* tp_as_buffer */ + Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */ + 0, /* tp_doc */ + (traverseproc)arrayiter_traverse, /* tp_traverse */ + 0, /* tp_clear */ + 0, /* tp_richcompare */ + 0, /* tp_weaklistoffset */ + (getiterfunc)arrayiter_getiter, /* tp_iter */ + (iternextfunc)arrayiter_next, /* tp_iternext */ + 0, /* tp_methods */ +}; + + +/*********************** Install Module **************************/ + /* No functions in array module. */ static PyMethodDef a_methods[] = { {NULL, NULL, 0, NULL} /* Sentinel */ |