blob: 8c1825fc070131d2d5caad43d26072dfd79c4eac [file] [log] [blame]
Martin v. Löwise440e472004-06-01 15:22:42 +00001
2/* Generator object interface */
3
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00004#ifndef Py_LIMITED_API
Martin v. Löwise440e472004-06-01 15:22:42 +00005#ifndef Py_GENOBJECT_H
6#define Py_GENOBJECT_H
7#ifdef __cplusplus
8extern "C" {
9#endif
10
Martin v. Löwis8d97e332004-06-27 15:43:12 +000011struct _frame; /* Avoid including frameobject.h */
12
Yury Selivanov5376ba92015-06-22 12:19:30 -040013/* _PyGenObject_HEAD defines the initial segment of generator
14 and coroutine objects. */
15#define _PyGenObject_HEAD(prefix) \
16 PyObject_HEAD \
17 /* Note: gi_frame can be NULL if the generator is "finished" */ \
18 struct _frame *prefix##_frame; \
19 /* True if generator is being executed. */ \
20 char prefix##_running; \
21 /* The code object backing the generator */ \
22 PyObject *prefix##_code; \
23 /* List of weak reference. */ \
24 PyObject *prefix##_weakreflist; \
25 /* Name of the generator. */ \
26 PyObject *prefix##_name; \
27 /* Qualified name of the generator. */ \
28 PyObject *prefix##_qualname;
29
Martin v. Löwise440e472004-06-01 15:22:42 +000030typedef struct {
Nick Coghlan76e1bb02012-01-14 16:08:08 +100031 /* The gi_ prefix is intended to remind of generator-iterator. */
Yury Selivanov5376ba92015-06-22 12:19:30 -040032 _PyGenObject_HEAD(gi)
Martin v. Löwise440e472004-06-01 15:22:42 +000033} PyGenObject;
34
35PyAPI_DATA(PyTypeObject) PyGen_Type;
36
37#define PyGen_Check(op) PyObject_TypeCheck(op, &PyGen_Type)
Christian Heimes90aa7642007-12-19 02:45:37 +000038#define PyGen_CheckExact(op) (Py_TYPE(op) == &PyGen_Type)
Martin v. Löwise440e472004-06-01 15:22:42 +000039
Martin v. Löwis8d97e332004-06-27 15:43:12 +000040PyAPI_FUNC(PyObject *) PyGen_New(struct _frame *);
Victor Stinner40ee3012014-06-16 15:59:28 +020041PyAPI_FUNC(PyObject *) PyGen_NewWithQualName(struct _frame *,
42 PyObject *name, PyObject *qualname);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000043PyAPI_FUNC(int) PyGen_NeedsFinalizing(PyGenObject *);
Serhiy Storchaka24411f82016-11-06 18:44:42 +020044PyAPI_FUNC(int) _PyGen_SetStopIterationValue(PyObject *);
Nick Coghlanc40bc092012-06-17 15:15:49 +100045PyAPI_FUNC(int) _PyGen_FetchStopIterationValue(PyObject **);
Yury Selivanov833c6262016-10-28 18:48:50 -040046PyAPI_FUNC(PyObject *) _PyGen_Send(PyGenObject *, PyObject *);
Yury Selivanovc724bae2016-03-02 11:30:46 -050047PyObject *_PyGen_yf(PyGenObject *);
Antoine Pitrou58720d62013-08-05 23:26:40 +020048PyAPI_FUNC(void) _PyGen_Finalize(PyObject *self);
49
Yury Selivanov5376ba92015-06-22 12:19:30 -040050#ifndef Py_LIMITED_API
51typedef struct {
52 _PyGenObject_HEAD(cr)
53} PyCoroObject;
54
55PyAPI_DATA(PyTypeObject) PyCoro_Type;
56PyAPI_DATA(PyTypeObject) _PyCoroWrapper_Type;
57
Yury Selivanova6f6edb2016-06-09 15:08:31 -040058PyAPI_DATA(PyTypeObject) _PyAIterWrapper_Type;
59PyObject *_PyAIterWrapper_New(PyObject *aiter);
60
Yury Selivanov5376ba92015-06-22 12:19:30 -040061#define PyCoro_CheckExact(op) (Py_TYPE(op) == &PyCoro_Type)
62PyObject *_PyCoro_GetAwaitableIter(PyObject *o);
63PyAPI_FUNC(PyObject *) PyCoro_New(struct _frame *,
64 PyObject *name, PyObject *qualname);
Yury Selivanoveb636452016-09-08 22:01:51 -070065
66/* Asynchronous Generators */
67
68typedef struct {
69 _PyGenObject_HEAD(ag)
70 PyObject *ag_finalizer;
71
72 /* Flag is set to 1 when hooks set up by sys.set_asyncgen_hooks
73 were called on the generator, to avoid calling them more
74 than once. */
75 int ag_hooks_inited;
76
77 /* Flag is set to 1 when aclose() is called for the first time, or
78 when a StopAsyncIteration exception is raised. */
79 int ag_closed;
80} PyAsyncGenObject;
81
82PyAPI_DATA(PyTypeObject) PyAsyncGen_Type;
83PyAPI_DATA(PyTypeObject) _PyAsyncGenASend_Type;
84PyAPI_DATA(PyTypeObject) _PyAsyncGenWrappedValue_Type;
85PyAPI_DATA(PyTypeObject) _PyAsyncGenAThrow_Type;
86
87PyAPI_FUNC(PyObject *) PyAsyncGen_New(struct _frame *,
88 PyObject *name, PyObject *qualname);
89
90#define PyAsyncGen_CheckExact(op) (Py_TYPE(op) == &PyAsyncGen_Type)
91
92PyObject *_PyAsyncGenValueWrapperNew(PyObject *);
93
94int PyAsyncGen_ClearFreeLists(void);
95
Yury Selivanov5376ba92015-06-22 12:19:30 -040096#endif
97
98#undef _PyGenObject_HEAD
Martin v. Löwise440e472004-06-01 15:22:42 +000099
100#ifdef __cplusplus
101}
102#endif
103#endif /* !Py_GENOBJECT_H */
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000104#endif /* Py_LIMITED_API */