blob: 75b2fcbd411302f9a892de03cabc391225b03462 [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;
Serhiy Storchaka4faf5c52015-05-21 20:50:25 +030057 if (it->it_index == PY_SSIZE_T_MAX) {
58 PyErr_SetString(PyExc_OverflowError,
59 "iter index too large");
60 return NULL;
61 }
Guido van Rossum213c7a62001-04-23 14:08:49 +000062
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000063 result = PySequence_GetItem(seq, it->it_index);
64 if (result != NULL) {
65 it->it_index++;
66 return result;
67 }
68 if (PyErr_ExceptionMatches(PyExc_IndexError) ||
69 PyErr_ExceptionMatches(PyExc_StopIteration))
70 {
71 PyErr_Clear();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000072 it->it_seq = NULL;
Serhiy Storchakafbb1c5e2016-03-30 20:40:02 +030073 Py_DECREF(seq);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000074 }
75 return NULL;
Guido van Rossum213c7a62001-04-23 14:08:49 +000076}
77
Raymond Hettinger6b27cda2005-09-24 21:23:05 +000078static PyObject *
Raymond Hettinger435bf582004-03-18 22:43:10 +000079iter_len(seqiterobject *it)
80{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000081 Py_ssize_t seqsize, len;
Raymond Hettinger7892b1c2004-04-12 18:10:01 +000082
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000083 if (it->it_seq) {
Armin Ronacheraa9a79d2012-10-06 14:03:24 +020084 if (_PyObject_HasLen(it->it_seq)) {
85 seqsize = PySequence_Size(it->it_seq);
86 if (seqsize == -1)
87 return NULL;
88 }
89 else {
Armin Ronacher23c5bb42012-10-06 14:30:32 +020090 Py_RETURN_NOTIMPLEMENTED;
Armin Ronacheraa9a79d2012-10-06 14:03:24 +020091 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000092 len = seqsize - it->it_index;
93 if (len >= 0)
94 return PyLong_FromSsize_t(len);
95 }
96 return PyLong_FromLong(0);
Raymond Hettinger435bf582004-03-18 22:43:10 +000097}
98
Armin Rigof5b3e362006-02-11 21:32:43 +000099PyDoc_STRVAR(length_hint_doc, "Private method returning an estimate of len(list(it)).");
Raymond Hettinger6b27cda2005-09-24 21:23:05 +0000100
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +0000101static PyObject *
102iter_reduce(seqiterobject *it)
103{
104 if (it->it_seq != NULL)
Antoine Pitroua7013882012-04-05 00:04:20 +0200105 return Py_BuildValue("N(O)n", _PyObject_GetBuiltin("iter"),
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +0000106 it->it_seq, it->it_index);
107 else
Antoine Pitroua7013882012-04-05 00:04:20 +0200108 return Py_BuildValue("N(())", _PyObject_GetBuiltin("iter"));
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +0000109}
110
111PyDoc_STRVAR(reduce_doc, "Return state information for pickling.");
112
113static PyObject *
114iter_setstate(seqiterobject *it, PyObject *state)
115{
116 Py_ssize_t index = PyLong_AsSsize_t(state);
117 if (index == -1 && PyErr_Occurred())
118 return NULL;
119 if (it->it_seq != NULL) {
120 if (index < 0)
121 index = 0;
122 it->it_index = index;
123 }
124 Py_RETURN_NONE;
125}
126
127PyDoc_STRVAR(setstate_doc, "Set state information for unpickling.");
128
Raymond Hettinger6b27cda2005-09-24 21:23:05 +0000129static PyMethodDef seqiter_methods[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000130 {"__length_hint__", (PyCFunction)iter_len, METH_NOARGS, length_hint_doc},
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +0000131 {"__reduce__", (PyCFunction)iter_reduce, METH_NOARGS, reduce_doc},
132 {"__setstate__", (PyCFunction)iter_setstate, METH_O, setstate_doc},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000133 {NULL, NULL} /* sentinel */
Raymond Hettinger435bf582004-03-18 22:43:10 +0000134};
135
Guido van Rossum213c7a62001-04-23 14:08:49 +0000136PyTypeObject PySeqIter_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000137 PyVarObject_HEAD_INIT(&PyType_Type, 0)
138 "iterator", /* tp_name */
139 sizeof(seqiterobject), /* tp_basicsize */
140 0, /* tp_itemsize */
141 /* methods */
142 (destructor)iter_dealloc, /* tp_dealloc */
143 0, /* tp_print */
144 0, /* tp_getattr */
145 0, /* tp_setattr */
146 0, /* tp_reserved */
147 0, /* tp_repr */
148 0, /* tp_as_number */
149 0, /* tp_as_sequence */
150 0, /* tp_as_mapping */
151 0, /* tp_hash */
152 0, /* tp_call */
153 0, /* tp_str */
154 PyObject_GenericGetAttr, /* tp_getattro */
155 0, /* tp_setattro */
156 0, /* tp_as_buffer */
157 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
158 0, /* tp_doc */
159 (traverseproc)iter_traverse, /* tp_traverse */
160 0, /* tp_clear */
161 0, /* tp_richcompare */
162 0, /* tp_weaklistoffset */
163 PyObject_SelfIter, /* tp_iter */
164 iter_iternext, /* tp_iternext */
165 seqiter_methods, /* tp_methods */
166 0, /* tp_members */
Guido van Rossum05311482001-04-20 21:06:46 +0000167};
168
169/* -------------------------------------- */
170
171typedef struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000172 PyObject_HEAD
173 PyObject *it_callable; /* Set to NULL when iterator is exhausted */
174 PyObject *it_sentinel; /* Set to NULL when iterator is exhausted */
Guido van Rossum05311482001-04-20 21:06:46 +0000175} calliterobject;
176
177PyObject *
178PyCallIter_New(PyObject *callable, PyObject *sentinel)
179{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000180 calliterobject *it;
181 it = PyObject_GC_New(calliterobject, &PyCallIter_Type);
182 if (it == NULL)
183 return NULL;
184 Py_INCREF(callable);
185 it->it_callable = callable;
186 Py_INCREF(sentinel);
187 it->it_sentinel = sentinel;
188 _PyObject_GC_TRACK(it);
189 return (PyObject *)it;
Guido van Rossum05311482001-04-20 21:06:46 +0000190}
191static void
192calliter_dealloc(calliterobject *it)
193{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000194 _PyObject_GC_UNTRACK(it);
195 Py_XDECREF(it->it_callable);
196 Py_XDECREF(it->it_sentinel);
197 PyObject_GC_Del(it);
Guido van Rossum05311482001-04-20 21:06:46 +0000198}
Guido van Rossum213c7a62001-04-23 14:08:49 +0000199
Neil Schemenauer7eac9b72001-07-12 13:27:25 +0000200static int
201calliter_traverse(calliterobject *it, visitproc visit, void *arg)
202{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000203 Py_VISIT(it->it_callable);
204 Py_VISIT(it->it_sentinel);
205 return 0;
Neil Schemenauer7eac9b72001-07-12 13:27:25 +0000206}
207
Guido van Rossum05311482001-04-20 21:06:46 +0000208static PyObject *
Guido van Rossum213c7a62001-04-23 14:08:49 +0000209calliter_iternext(calliterobject *it)
210{
Victor Stinner99ee9c72016-08-19 18:47:10 +0200211 PyObject *result;
212
213 if (it->it_callable == NULL) {
214 return NULL;
215 }
216
Victor Stinner559bb6a2016-08-22 22:48:54 +0200217 result = _PyObject_CallNoArg(it->it_callable);
Victor Stinner99ee9c72016-08-19 18:47:10 +0200218 if (result != NULL) {
219 int ok;
220
221 ok = PyObject_RichCompareBool(it->it_sentinel, result, Py_EQ);
222 if (ok == 0) {
223 return result; /* Common case, fast path */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000224 }
Victor Stinner99ee9c72016-08-19 18:47:10 +0200225
226 Py_DECREF(result);
227 if (ok > 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000228 Py_CLEAR(it->it_callable);
229 Py_CLEAR(it->it_sentinel);
230 }
231 }
Victor Stinner99ee9c72016-08-19 18:47:10 +0200232 else if (PyErr_ExceptionMatches(PyExc_StopIteration)) {
233 PyErr_Clear();
234 Py_CLEAR(it->it_callable);
235 Py_CLEAR(it->it_sentinel);
236 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000237 return NULL;
Guido van Rossum213c7a62001-04-23 14:08:49 +0000238}
239
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +0000240static PyObject *
241calliter_reduce(calliterobject *it)
242{
243 if (it->it_callable != NULL && it->it_sentinel != NULL)
Antoine Pitroua7013882012-04-05 00:04:20 +0200244 return Py_BuildValue("N(OO)", _PyObject_GetBuiltin("iter"),
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +0000245 it->it_callable, it->it_sentinel);
246 else
Antoine Pitroua7013882012-04-05 00:04:20 +0200247 return Py_BuildValue("N(())", _PyObject_GetBuiltin("iter"));
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +0000248}
249
250static PyMethodDef calliter_methods[] = {
251 {"__reduce__", (PyCFunction)calliter_reduce, METH_NOARGS, reduce_doc},
252 {NULL, NULL} /* sentinel */
253};
254
Guido van Rossum05311482001-04-20 21:06:46 +0000255PyTypeObject PyCallIter_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000256 PyVarObject_HEAD_INIT(&PyType_Type, 0)
257 "callable_iterator", /* tp_name */
258 sizeof(calliterobject), /* tp_basicsize */
259 0, /* tp_itemsize */
260 /* methods */
261 (destructor)calliter_dealloc, /* tp_dealloc */
262 0, /* tp_print */
263 0, /* tp_getattr */
264 0, /* tp_setattr */
265 0, /* tp_reserved */
266 0, /* tp_repr */
267 0, /* tp_as_number */
268 0, /* tp_as_sequence */
269 0, /* tp_as_mapping */
270 0, /* tp_hash */
271 0, /* tp_call */
272 0, /* tp_str */
273 PyObject_GenericGetAttr, /* tp_getattro */
274 0, /* tp_setattro */
275 0, /* tp_as_buffer */
276 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
277 0, /* tp_doc */
278 (traverseproc)calliter_traverse, /* tp_traverse */
279 0, /* tp_clear */
280 0, /* tp_richcompare */
281 0, /* tp_weaklistoffset */
282 PyObject_SelfIter, /* tp_iter */
283 (iternextfunc)calliter_iternext, /* tp_iternext */
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +0000284 calliter_methods, /* tp_methods */
Guido van Rossum05311482001-04-20 21:06:46 +0000285};
Guido van Rossumb65fb332006-08-25 23:26:40 +0000286
287