blob: 77ff8106fd214eb13a2b3075cfc95923cb7cc492 [file] [log] [blame]
Guido van Rossum05311482001-04-20 21:06:46 +00001/* Iterator objects */
2
3#include "Python.h"
4
5typedef struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00006 PyObject_HEAD
Victor Stinnere0b99ba2013-06-04 23:02:46 +02007 Py_ssize_t it_index;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00008 PyObject *it_seq; /* Set to NULL when iterator is exhausted */
Guido van Rossum213c7a62001-04-23 14:08:49 +00009} seqiterobject;
Guido van Rossum05311482001-04-20 21:06:46 +000010
11PyObject *
Guido van Rossum213c7a62001-04-23 14:08:49 +000012PySeqIter_New(PyObject *seq)
Guido van Rossum05311482001-04-20 21:06:46 +000013{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000014 seqiterobject *it;
Martin v. Löwis01f94bd2002-05-08 08:44:21 +000015
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000016 if (!PySequence_Check(seq)) {
17 PyErr_BadInternalCall();
18 return NULL;
19 }
20 it = PyObject_GC_New(seqiterobject, &PySeqIter_Type);
21 if (it == NULL)
22 return NULL;
23 it->it_index = 0;
24 Py_INCREF(seq);
25 it->it_seq = seq;
26 _PyObject_GC_TRACK(it);
27 return (PyObject *)it;
Guido van Rossum05311482001-04-20 21:06:46 +000028}
Guido van Rossum613bed32002-07-16 20:24:46 +000029
Guido van Rossum05311482001-04-20 21:06:46 +000030static void
Guido van Rossum213c7a62001-04-23 14:08:49 +000031iter_dealloc(seqiterobject *it)
Guido van Rossum05311482001-04-20 21:06:46 +000032{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000033 _PyObject_GC_UNTRACK(it);
34 Py_XDECREF(it->it_seq);
35 PyObject_GC_Del(it);
Guido van Rossum05311482001-04-20 21:06:46 +000036}
37
Neil Schemenauer7eac9b72001-07-12 13:27:25 +000038static int
39iter_traverse(seqiterobject *it, visitproc visit, void *arg)
40{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000041 Py_VISIT(it->it_seq);
42 return 0;
Neil Schemenauer7eac9b72001-07-12 13:27:25 +000043}
44
Guido van Rossum05311482001-04-20 21:06:46 +000045static PyObject *
Guido van Rossum213c7a62001-04-23 14:08:49 +000046iter_iternext(PyObject *iterator)
47{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000048 seqiterobject *it;
49 PyObject *seq;
50 PyObject *result;
Guido van Rossum213c7a62001-04-23 14:08:49 +000051
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000052 assert(PySeqIter_Check(iterator));
53 it = (seqiterobject *)iterator;
54 seq = it->it_seq;
55 if (seq == NULL)
56 return NULL;
Guido van Rossum213c7a62001-04-23 14:08:49 +000057
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000058 result = PySequence_GetItem(seq, it->it_index);
59 if (result != NULL) {
60 it->it_index++;
61 return result;
62 }
63 if (PyErr_ExceptionMatches(PyExc_IndexError) ||
64 PyErr_ExceptionMatches(PyExc_StopIteration))
65 {
66 PyErr_Clear();
67 Py_DECREF(seq);
68 it->it_seq = NULL;
69 }
70 return NULL;
Guido van Rossum213c7a62001-04-23 14:08:49 +000071}
72
Raymond Hettinger6b27cda2005-09-24 21:23:05 +000073static PyObject *
Raymond Hettinger435bf582004-03-18 22:43:10 +000074iter_len(seqiterobject *it)
75{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000076 Py_ssize_t seqsize, len;
Raymond Hettinger7892b1c2004-04-12 18:10:01 +000077
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000078 if (it->it_seq) {
Armin Ronacheraa9a79d2012-10-06 14:03:24 +020079 if (_PyObject_HasLen(it->it_seq)) {
80 seqsize = PySequence_Size(it->it_seq);
81 if (seqsize == -1)
82 return NULL;
83 }
84 else {
Armin Ronacher23c5bb42012-10-06 14:30:32 +020085 Py_RETURN_NOTIMPLEMENTED;
Armin Ronacheraa9a79d2012-10-06 14:03:24 +020086 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000087 len = seqsize - it->it_index;
88 if (len >= 0)
89 return PyLong_FromSsize_t(len);
90 }
91 return PyLong_FromLong(0);
Raymond Hettinger435bf582004-03-18 22:43:10 +000092}
93
Armin Rigof5b3e362006-02-11 21:32:43 +000094PyDoc_STRVAR(length_hint_doc, "Private method returning an estimate of len(list(it)).");
Raymond Hettinger6b27cda2005-09-24 21:23:05 +000095
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +000096static PyObject *
97iter_reduce(seqiterobject *it)
98{
99 if (it->it_seq != NULL)
Antoine Pitroua7013882012-04-05 00:04:20 +0200100 return Py_BuildValue("N(O)n", _PyObject_GetBuiltin("iter"),
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +0000101 it->it_seq, it->it_index);
102 else
Antoine Pitroua7013882012-04-05 00:04:20 +0200103 return Py_BuildValue("N(())", _PyObject_GetBuiltin("iter"));
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +0000104}
105
106PyDoc_STRVAR(reduce_doc, "Return state information for pickling.");
107
108static PyObject *
109iter_setstate(seqiterobject *it, PyObject *state)
110{
111 Py_ssize_t index = PyLong_AsSsize_t(state);
112 if (index == -1 && PyErr_Occurred())
113 return NULL;
114 if (it->it_seq != NULL) {
115 if (index < 0)
116 index = 0;
117 it->it_index = index;
118 }
119 Py_RETURN_NONE;
120}
121
122PyDoc_STRVAR(setstate_doc, "Set state information for unpickling.");
123
Raymond Hettinger6b27cda2005-09-24 21:23:05 +0000124static PyMethodDef seqiter_methods[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000125 {"__length_hint__", (PyCFunction)iter_len, METH_NOARGS, length_hint_doc},
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +0000126 {"__reduce__", (PyCFunction)iter_reduce, METH_NOARGS, reduce_doc},
127 {"__setstate__", (PyCFunction)iter_setstate, METH_O, setstate_doc},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000128 {NULL, NULL} /* sentinel */
Raymond Hettinger435bf582004-03-18 22:43:10 +0000129};
130
Guido van Rossum213c7a62001-04-23 14:08:49 +0000131PyTypeObject PySeqIter_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000132 PyVarObject_HEAD_INIT(&PyType_Type, 0)
133 "iterator", /* tp_name */
134 sizeof(seqiterobject), /* tp_basicsize */
135 0, /* tp_itemsize */
136 /* methods */
137 (destructor)iter_dealloc, /* tp_dealloc */
138 0, /* tp_print */
139 0, /* tp_getattr */
140 0, /* tp_setattr */
141 0, /* tp_reserved */
142 0, /* tp_repr */
143 0, /* tp_as_number */
144 0, /* tp_as_sequence */
145 0, /* tp_as_mapping */
146 0, /* tp_hash */
147 0, /* tp_call */
148 0, /* tp_str */
149 PyObject_GenericGetAttr, /* tp_getattro */
150 0, /* tp_setattro */
151 0, /* tp_as_buffer */
152 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
153 0, /* tp_doc */
154 (traverseproc)iter_traverse, /* tp_traverse */
155 0, /* tp_clear */
156 0, /* tp_richcompare */
157 0, /* tp_weaklistoffset */
158 PyObject_SelfIter, /* tp_iter */
159 iter_iternext, /* tp_iternext */
160 seqiter_methods, /* tp_methods */
161 0, /* tp_members */
Guido van Rossum05311482001-04-20 21:06:46 +0000162};
163
164/* -------------------------------------- */
165
166typedef struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000167 PyObject_HEAD
168 PyObject *it_callable; /* Set to NULL when iterator is exhausted */
169 PyObject *it_sentinel; /* Set to NULL when iterator is exhausted */
Guido van Rossum05311482001-04-20 21:06:46 +0000170} calliterobject;
171
172PyObject *
173PyCallIter_New(PyObject *callable, PyObject *sentinel)
174{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000175 calliterobject *it;
176 it = PyObject_GC_New(calliterobject, &PyCallIter_Type);
177 if (it == NULL)
178 return NULL;
179 Py_INCREF(callable);
180 it->it_callable = callable;
181 Py_INCREF(sentinel);
182 it->it_sentinel = sentinel;
183 _PyObject_GC_TRACK(it);
184 return (PyObject *)it;
Guido van Rossum05311482001-04-20 21:06:46 +0000185}
186static void
187calliter_dealloc(calliterobject *it)
188{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000189 _PyObject_GC_UNTRACK(it);
190 Py_XDECREF(it->it_callable);
191 Py_XDECREF(it->it_sentinel);
192 PyObject_GC_Del(it);
Guido van Rossum05311482001-04-20 21:06:46 +0000193}
Guido van Rossum213c7a62001-04-23 14:08:49 +0000194
Neil Schemenauer7eac9b72001-07-12 13:27:25 +0000195static int
196calliter_traverse(calliterobject *it, visitproc visit, void *arg)
197{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000198 Py_VISIT(it->it_callable);
199 Py_VISIT(it->it_sentinel);
200 return 0;
Neil Schemenauer7eac9b72001-07-12 13:27:25 +0000201}
202
Guido van Rossum05311482001-04-20 21:06:46 +0000203static PyObject *
Guido van Rossum213c7a62001-04-23 14:08:49 +0000204calliter_iternext(calliterobject *it)
205{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000206 if (it->it_callable != NULL) {
207 PyObject *args = PyTuple_New(0);
208 PyObject *result;
209 if (args == NULL)
210 return NULL;
211 result = PyObject_Call(it->it_callable, args, NULL);
212 Py_DECREF(args);
213 if (result != NULL) {
214 int ok;
Raymond Hettinger1b669962010-08-07 05:54:08 +0000215 ok = PyObject_RichCompareBool(it->it_sentinel, result, Py_EQ);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000216 if (ok == 0)
217 return result; /* Common case, fast path */
218 Py_DECREF(result);
219 if (ok > 0) {
220 Py_CLEAR(it->it_callable);
221 Py_CLEAR(it->it_sentinel);
222 }
223 }
224 else if (PyErr_ExceptionMatches(PyExc_StopIteration)) {
225 PyErr_Clear();
226 Py_CLEAR(it->it_callable);
227 Py_CLEAR(it->it_sentinel);
228 }
229 }
230 return NULL;
Guido van Rossum213c7a62001-04-23 14:08:49 +0000231}
232
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +0000233static PyObject *
234calliter_reduce(calliterobject *it)
235{
236 if (it->it_callable != NULL && it->it_sentinel != NULL)
Antoine Pitroua7013882012-04-05 00:04:20 +0200237 return Py_BuildValue("N(OO)", _PyObject_GetBuiltin("iter"),
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +0000238 it->it_callable, it->it_sentinel);
239 else
Antoine Pitroua7013882012-04-05 00:04:20 +0200240 return Py_BuildValue("N(())", _PyObject_GetBuiltin("iter"));
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +0000241}
242
243static PyMethodDef calliter_methods[] = {
244 {"__reduce__", (PyCFunction)calliter_reduce, METH_NOARGS, reduce_doc},
245 {NULL, NULL} /* sentinel */
246};
247
Guido van Rossum05311482001-04-20 21:06:46 +0000248PyTypeObject PyCallIter_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000249 PyVarObject_HEAD_INIT(&PyType_Type, 0)
250 "callable_iterator", /* tp_name */
251 sizeof(calliterobject), /* tp_basicsize */
252 0, /* tp_itemsize */
253 /* methods */
254 (destructor)calliter_dealloc, /* tp_dealloc */
255 0, /* tp_print */
256 0, /* tp_getattr */
257 0, /* tp_setattr */
258 0, /* tp_reserved */
259 0, /* tp_repr */
260 0, /* tp_as_number */
261 0, /* tp_as_sequence */
262 0, /* tp_as_mapping */
263 0, /* tp_hash */
264 0, /* tp_call */
265 0, /* tp_str */
266 PyObject_GenericGetAttr, /* tp_getattro */
267 0, /* tp_setattro */
268 0, /* tp_as_buffer */
269 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
270 0, /* tp_doc */
271 (traverseproc)calliter_traverse, /* tp_traverse */
272 0, /* tp_clear */
273 0, /* tp_richcompare */
274 0, /* tp_weaklistoffset */
275 PyObject_SelfIter, /* tp_iter */
276 (iternextfunc)calliter_iternext, /* tp_iternext */
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +0000277 calliter_methods, /* tp_methods */
Guido van Rossum05311482001-04-20 21:06:46 +0000278};
Guido van Rossumb65fb332006-08-25 23:26:40 +0000279
280