| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | /* Iterator objects */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "Python.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  | 	PyObject_HEAD | 
					
						
							|  |  |  | 	long      it_index; | 
					
						
							| 
									
										
										
										
											2002-07-16 20:24:46 +00:00
										 |  |  | 	PyObject *it_seq; /* Set to NULL when iterator is exhausted */ | 
					
						
							| 
									
										
										
										
											2001-04-23 14:08:49 +00:00
										 |  |  | } seqiterobject; | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											2001-04-23 14:08:49 +00:00
										 |  |  | PySeqIter_New(PyObject *seq) | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2001-04-23 14:08:49 +00:00
										 |  |  | 	seqiterobject *it; | 
					
						
							| 
									
										
										
										
											2002-05-08 08:44:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!PySequence_Check(seq)) { | 
					
						
							|  |  |  | 		PyErr_BadInternalCall(); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	}	 | 
					
						
							| 
									
										
										
										
											2002-03-18 20:43:51 +00:00
										 |  |  | 	it = PyObject_GC_New(seqiterobject, &PySeqIter_Type); | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | 	if (it == NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	it->it_index = 0; | 
					
						
							|  |  |  | 	Py_INCREF(seq); | 
					
						
							|  |  |  | 	it->it_seq = seq; | 
					
						
							| 
									
										
										
										
											2002-03-18 20:43:51 +00:00
										 |  |  | 	_PyObject_GC_TRACK(it); | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | 	return (PyObject *)it; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2002-07-16 20:24:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | static void | 
					
						
							| 
									
										
										
										
											2001-04-23 14:08:49 +00:00
										 |  |  | iter_dealloc(seqiterobject *it) | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2002-03-18 20:43:51 +00:00
										 |  |  | 	_PyObject_GC_UNTRACK(it); | 
					
						
							| 
									
										
										
										
											2002-07-16 20:24:46 +00:00
										 |  |  | 	Py_XDECREF(it->it_seq); | 
					
						
							| 
									
										
										
										
											2002-03-18 20:43:51 +00:00
										 |  |  | 	PyObject_GC_Del(it); | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:25 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | iter_traverse(seqiterobject *it, visitproc visit, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2002-07-16 20:24:46 +00:00
										 |  |  | 	if (it->it_seq == NULL) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:25 +00:00
										 |  |  | 	return visit(it->it_seq, arg); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-23 14:08:49 +00:00
										 |  |  | static PyObject * | 
					
						
							|  |  |  | iter_iternext(PyObject *iterator) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	seqiterobject *it; | 
					
						
							|  |  |  | 	PyObject *seq; | 
					
						
							| 
									
										
										
										
											2002-08-09 01:30:17 +00:00
										 |  |  | 	PyObject *result; | 
					
						
							| 
									
										
										
										
											2001-04-23 14:08:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	assert(PySeqIter_Check(iterator)); | 
					
						
							|  |  |  | 	it = (seqiterobject *)iterator; | 
					
						
							|  |  |  | 	seq = it->it_seq; | 
					
						
							| 
									
										
										
										
											2002-07-16 20:24:46 +00:00
										 |  |  | 	if (seq == NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-09 01:30:17 +00:00
										 |  |  | 	result = PySequence_GetItem(seq, it->it_index); | 
					
						
							|  |  |  | 	if (result != NULL) { | 
					
						
							|  |  |  | 		it->it_index++; | 
					
						
							|  |  |  | 		return result; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (PyErr_ExceptionMatches(PyExc_IndexError) || | 
					
						
							|  |  |  | 	    PyErr_ExceptionMatches(PyExc_StopIteration)) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		PyErr_Clear(); | 
					
						
							| 
									
										
										
										
											2002-07-16 20:24:46 +00:00
										 |  |  | 		Py_DECREF(seq); | 
					
						
							|  |  |  | 		it->it_seq = NULL; | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-08-09 01:30:17 +00:00
										 |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-24 21:23:05 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2004-03-18 22:43:10 +00:00
										 |  |  | iter_len(seqiterobject *it) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-04-12 18:10:01 +00:00
										 |  |  | 	int seqsize, len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (it->it_seq) { | 
					
						
							|  |  |  | 		seqsize = PySequence_Size(it->it_seq); | 
					
						
							|  |  |  | 		if (seqsize == -1) | 
					
						
							| 
									
										
										
										
											2005-09-24 21:23:05 +00:00
										 |  |  | 			return NULL; | 
					
						
							| 
									
										
										
										
											2004-04-12 18:10:01 +00:00
										 |  |  | 		len = seqsize - it->it_index; | 
					
						
							|  |  |  | 		if (len >= 0) | 
					
						
							| 
									
										
										
										
											2005-09-24 21:23:05 +00:00
										 |  |  | 			return PyInt_FromLong(len); | 
					
						
							| 
									
										
										
										
											2004-04-12 18:10:01 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-09-24 21:23:05 +00:00
										 |  |  | 	return PyInt_FromLong(0); | 
					
						
							| 
									
										
										
										
											2004-03-18 22:43:10 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-24 21:23:05 +00:00
										 |  |  | PyDoc_STRVAR(length_cue_doc, "Private method returning an estimate of len(list(it))."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyMethodDef seqiter_methods[] = { | 
					
						
							|  |  |  | 	{"_length_cue", (PyCFunction)iter_len, METH_NOARGS, length_cue_doc}, | 
					
						
							|  |  |  |  	{NULL,		NULL}		/* sentinel */ | 
					
						
							| 
									
										
										
										
											2004-03-18 22:43:10 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-23 14:08:49 +00:00
										 |  |  | PyTypeObject PySeqIter_Type = { | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | 	PyObject_HEAD_INIT(&PyType_Type) | 
					
						
							|  |  |  | 	0,					/* ob_size */ | 
					
						
							|  |  |  | 	"iterator",				/* tp_name */ | 
					
						
							| 
									
										
										
										
											2002-03-18 20:43:51 +00:00
										 |  |  | 	sizeof(seqiterobject),			/* tp_basicsize */ | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | 	0,					/* tp_itemsize */ | 
					
						
							|  |  |  | 	/* methods */ | 
					
						
							|  |  |  | 	(destructor)iter_dealloc, 		/* tp_dealloc */ | 
					
						
							|  |  |  | 	0,					/* tp_print */ | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | 	0,					/* tp_getattr */ | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | 	0,					/* tp_setattr */ | 
					
						
							|  |  |  | 	0,					/* tp_compare */ | 
					
						
							|  |  |  | 	0,					/* tp_repr */ | 
					
						
							|  |  |  | 	0,					/* tp_as_number */ | 
					
						
							| 
									
										
										
										
											2005-09-24 21:23:05 +00:00
										 |  |  | 	0,					/* tp_as_sequence */ | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | 	0,					/* tp_as_mapping */ | 
					
						
							|  |  |  | 	0,					/* tp_hash */ | 
					
						
							|  |  |  | 	0,					/* tp_call */ | 
					
						
							|  |  |  | 	0,					/* tp_str */ | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | 	PyObject_GenericGetAttr,		/* tp_getattro */ | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | 	0,					/* tp_setattro */ | 
					
						
							|  |  |  | 	0,					/* tp_as_buffer */ | 
					
						
							| 
									
										
										
										
											2002-03-18 20:43:51 +00:00
										 |  |  | 	Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */ | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  |  	0,					/* tp_doc */ | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:25 +00:00
										 |  |  |  	(traverseproc)iter_traverse,		/* tp_traverse */ | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  |  	0,					/* tp_clear */ | 
					
						
							|  |  |  | 	0,					/* tp_richcompare */ | 
					
						
							|  |  |  | 	0,					/* tp_weaklistoffset */ | 
					
						
							| 
									
										
										
										
											2003-03-17 19:46:11 +00:00
										 |  |  | 	PyObject_SelfIter,			/* tp_iter */ | 
					
						
							| 
									
										
										
										
											2001-04-23 14:08:49 +00:00
										 |  |  | 	(iternextfunc)iter_iternext,		/* tp_iternext */ | 
					
						
							| 
									
										
										
										
											2005-09-24 21:23:05 +00:00
										 |  |  | 	seqiter_methods,			/* tp_methods */ | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | 	0,					/* tp_members */ | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* -------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  | 	PyObject_HEAD | 
					
						
							| 
									
										
										
										
											2002-07-16 20:24:46 +00:00
										 |  |  | 	PyObject *it_callable; /* Set to NULL when iterator is exhausted */ | 
					
						
							|  |  |  | 	PyObject *it_sentinel; /* Set to NULL when iterator is exhausted */ | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | } calliterobject; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyCallIter_New(PyObject *callable, PyObject *sentinel) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	calliterobject *it; | 
					
						
							| 
									
										
										
										
											2002-03-18 20:43:51 +00:00
										 |  |  | 	it = PyObject_GC_New(calliterobject, &PyCallIter_Type); | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | 	if (it == NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	Py_INCREF(callable); | 
					
						
							|  |  |  | 	it->it_callable = callable; | 
					
						
							|  |  |  | 	Py_INCREF(sentinel); | 
					
						
							|  |  |  | 	it->it_sentinel = sentinel; | 
					
						
							| 
									
										
										
										
											2002-03-18 20:43:51 +00:00
										 |  |  | 	_PyObject_GC_TRACK(it); | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | 	return (PyObject *)it; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | calliter_dealloc(calliterobject *it) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2002-03-18 20:43:51 +00:00
										 |  |  | 	_PyObject_GC_UNTRACK(it); | 
					
						
							| 
									
										
										
										
											2002-07-16 20:24:46 +00:00
										 |  |  | 	Py_XDECREF(it->it_callable); | 
					
						
							|  |  |  | 	Py_XDECREF(it->it_sentinel); | 
					
						
							| 
									
										
										
										
											2002-03-18 20:43:51 +00:00
										 |  |  | 	PyObject_GC_Del(it); | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2001-04-23 14:08:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:25 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | calliter_traverse(calliterobject *it, visitproc visit, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2002-07-16 20:24:46 +00:00
										 |  |  | 	if (it->it_callable != NULL && (err = visit(it->it_callable, arg))) | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:25 +00:00
										 |  |  | 		return err; | 
					
						
							| 
									
										
										
										
											2002-07-16 20:24:46 +00:00
										 |  |  | 	if (it->it_sentinel != NULL && (err = visit(it->it_sentinel, arg))) | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:25 +00:00
										 |  |  | 		return err; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-23 14:08:49 +00:00
										 |  |  | static PyObject * | 
					
						
							|  |  |  | calliter_iternext(calliterobject *it) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2002-07-16 20:24:46 +00:00
										 |  |  | 	if (it->it_callable != NULL) { | 
					
						
							| 
									
										
										
										
											2002-08-16 17:01:09 +00:00
										 |  |  | 		PyObject *args = PyTuple_New(0); | 
					
						
							|  |  |  | 		PyObject *result; | 
					
						
							|  |  |  | 		if (args == NULL) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		result = PyObject_Call(it->it_callable, args, NULL); | 
					
						
							|  |  |  | 		Py_DECREF(args); | 
					
						
							| 
									
										
										
										
											2002-07-16 20:24:46 +00:00
										 |  |  | 		if (result != NULL) { | 
					
						
							|  |  |  | 			int ok; | 
					
						
							|  |  |  | 			ok = PyObject_RichCompareBool(result, | 
					
						
							|  |  |  | 						      it->it_sentinel, | 
					
						
							|  |  |  | 						      Py_EQ); | 
					
						
							|  |  |  | 			if (ok == 0) | 
					
						
							|  |  |  | 				return result; /* Common case, fast path */ | 
					
						
							| 
									
										
										
										
											2001-04-23 14:08:49 +00:00
										 |  |  | 			Py_DECREF(result); | 
					
						
							| 
									
										
										
										
											2002-07-16 20:24:46 +00:00
										 |  |  | 			if (ok > 0) { | 
					
						
							| 
									
										
										
										
											2004-09-01 07:02:44 +00:00
										 |  |  | 				Py_CLEAR(it->it_callable); | 
					
						
							|  |  |  | 				Py_CLEAR(it->it_sentinel); | 
					
						
							| 
									
										
										
										
											2002-07-16 20:24:46 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else if (PyErr_ExceptionMatches(PyExc_StopIteration)) { | 
					
						
							|  |  |  | 			PyErr_Clear(); | 
					
						
							| 
									
										
										
										
											2004-09-01 07:02:44 +00:00
										 |  |  | 			Py_CLEAR(it->it_callable); | 
					
						
							|  |  |  | 			Py_CLEAR(it->it_sentinel); | 
					
						
							| 
									
										
										
										
											2001-04-23 14:08:49 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-07-16 20:24:46 +00:00
										 |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2001-04-23 14:08:49 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | PyTypeObject PyCallIter_Type = { | 
					
						
							|  |  |  | 	PyObject_HEAD_INIT(&PyType_Type) | 
					
						
							|  |  |  | 	0,					/* ob_size */ | 
					
						
							|  |  |  | 	"callable-iterator",			/* tp_name */ | 
					
						
							| 
									
										
										
										
											2002-03-18 20:43:51 +00:00
										 |  |  | 	sizeof(calliterobject),			/* tp_basicsize */ | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | 	0,					/* tp_itemsize */ | 
					
						
							|  |  |  | 	/* methods */ | 
					
						
							|  |  |  | 	(destructor)calliter_dealloc, 		/* tp_dealloc */ | 
					
						
							|  |  |  | 	0,					/* tp_print */ | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | 	0,					/* tp_getattr */ | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | 	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 */ | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | 	PyObject_GenericGetAttr,		/* tp_getattro */ | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | 	0,					/* tp_setattro */ | 
					
						
							|  |  |  | 	0,					/* tp_as_buffer */ | 
					
						
							| 
									
										
										
										
											2002-03-18 20:43:51 +00:00
										 |  |  | 	Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */ | 
					
						
							| 
									
										
										
										
											2003-06-25 13:12:18 +00:00
										 |  |  | 	0,					/* tp_doc */ | 
					
						
							|  |  |  | 	(traverseproc)calliter_traverse,	/* tp_traverse */ | 
					
						
							|  |  |  | 	0,					/* tp_clear */ | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | 	0,					/* tp_richcompare */ | 
					
						
							|  |  |  | 	0,					/* tp_weaklistoffset */ | 
					
						
							| 
									
										
										
										
											2003-03-17 19:46:11 +00:00
										 |  |  | 	PyObject_SelfIter,			/* tp_iter */ | 
					
						
							| 
									
										
										
										
											2001-04-23 14:08:49 +00:00
										 |  |  | 	(iternextfunc)calliter_iternext,	/* tp_iternext */ | 
					
						
							| 
									
										
										
										
											2002-07-16 20:24:46 +00:00
										 |  |  | 	0,					/* tp_methods */ | 
					
						
							| 
									
										
										
										
											2001-04-20 21:06:46 +00:00
										 |  |  | }; |