summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Berg <bberg@redhat.com>2020-11-13 00:19:47 +0100
committerBenjamin Berg <benjamin@sipsolutions.net>2022-12-26 15:37:36 +0100
commit3c3fa39e7f9c0fd604ca70c6d0bdd5dbf5bb5354 (patch)
tree8698013e14135d8fd8212b5db7b2974280755582
parentc57bd80c07a4f846c4ebcc55dcd10f629319c0be (diff)
downloadpygobject-3c3fa39e7f9c0fd604ca70c6d0bdd5dbf5bb5354.tar.gz
async: Add a new async type that is an awaitable for a _finish call
-rw-r--r--gi/gimodule.c3
-rw-r--r--gi/meson.build1
-rw-r--r--gi/pygi-async.c663
-rw-r--r--gi/pygi-async.h61
4 files changed, 728 insertions, 0 deletions
diff --git a/gi/gimodule.c b/gi/gimodule.c
index 766fd341..36e7924e 100644
--- a/gi/gimodule.c
+++ b/gi/gimodule.c
@@ -34,6 +34,7 @@
#include "pygi-error.h"
#include "pygi-foreign.h"
#include "pygi-resulttuple.h"
+#include "pygi-async.h"
#include "pygi-source.h"
#include "pygi-ccallback.h"
#include "pygi-closure.h"
@@ -2572,6 +2573,8 @@ PYGI_MODINIT_FUNC PyInit__gi(void) {
return NULL;
if (pygi_resulttuple_register_types (module) < 0)
return NULL;
+ if (pygi_async_register_types (module) < 0)
+ return NULL;
if (pygi_spawn_register_types (module_dict) < 0)
return NULL;
diff --git a/gi/meson.build b/gi/meson.build
index 8edf8328..7eb3311e 100644
--- a/gi/meson.build
+++ b/gi/meson.build
@@ -17,6 +17,7 @@ sources = [
'pygi-source.c',
'pygi-argument.c',
'pygi-resulttuple.c',
+ 'pygi-async.c',
'pygi-type.c',
'pygi-boxed.c',
'pygi-closure.c',
diff --git a/gi/pygi-async.c b/gi/pygi-async.c
new file mode 100644
index 00000000..30f6c2a3
--- /dev/null
+++ b/gi/pygi-async.c
@@ -0,0 +1,663 @@
+/* -*- Mode: C; c-basic-offset: 4 -*-
+ * vim: tabstop=4 shiftwidth=4 expandtab
+ *
+ * Copyright (C) 2015 Christoph Reiter <reiter.christoph@gmail.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <Python.h>
+#include <structmember.h>
+#include <glib.h>
+#include "pygobject-object.h"
+#include "pygboxed.h"
+#include "pygi-async.h"
+#include "pygi-util.h"
+#include "pygi-info.h"
+#include "pygi-invoke.h"
+
+
+static PyObject *asyncio_InvalidStateError;
+static PyObject *asyncio_get_running_loop;
+#if PY_VERSION_HEX >= 0x03070000 && defined(PYPY_VERSION)
+static PyObject *contextvars_copy_context;
+#endif
+static PyObject *cancellable_info;
+
+/* This is never instantiated. */
+PYGI_DEFINE_TYPE ("gi._gi.Async", PyGIAsync_Type, PyGIAsync)
+
+/**
+ * Async.__repr__() implementation.
+ * Takes the _Async.__repr_format format string and applies the finish function
+ * info to it.
+ */
+static PyObject*
+async_repr(PyGIAsync *self) {
+ PyObject *string;
+ char *func_descr;
+
+ func_descr = _pygi_g_base_info_get_fullname (self->finish_func->base.info);
+
+ string = PyUnicode_FromFormat ("%s(finish_func=%s, done=%s)",
+ Py_TYPE(self)->tp_name,
+ func_descr,
+ (self->result || self->exception) ? "True" : "False");
+
+ g_free (func_descr);
+
+ return string;
+}
+
+/**
+ * async_cancel:
+ *
+ * Cancel the asynchronous operation.
+ */
+static PyObject *
+async_cancel(PyGIAsync *self) {
+
+ return PyObject_CallMethod (self->cancellable, "cancel", NULL);
+}
+
+static PyObject *
+async_done(PyGIAsync *self) {
+
+ return PyBool_FromLong (self->result || self->exception);
+}
+
+static PyObject *
+async_result(PyGIAsync *self) {
+
+ if (!self->result && !self->exception) {
+ PyErr_SetString(asyncio_InvalidStateError, "Async task is still running!");
+ return NULL;
+ }
+
+ self->log_tb = FALSE;
+
+ if (self->result) {
+ Py_INCREF (self->result);
+ return self->result;
+ } else {
+ PyErr_SetObject(PyExceptionInstance_Class(self->exception), self->exception);
+ return NULL;
+ }
+}
+
+static PyObject *
+async_exception(PyGIAsync *self) {
+
+ PyObject *res;
+
+ if (!self->result && !self->exception) {
+ PyErr_SetString(asyncio_InvalidStateError, "Async task is still running!");
+ return NULL;
+ }
+
+ if (self->exception)
+ res =self->exception;
+ else
+ res = Py_None;
+
+ self->log_tb = FALSE;
+
+ Py_INCREF (res);
+ return res;
+}
+
+static PyObject*
+call_soon (PyGIAsync *self, PyGIAsyncCallback *cb)
+{
+ PyObject *call_soon;
+ PyObject *args, *kwargs = NULL;
+ PyObject *ret;
+
+ call_soon = PyObject_GetAttrString(self->loop, "call_soon");
+ if (!call_soon)
+ return NULL;
+
+ args = Py_BuildValue ("(OO)", cb->func, self);
+#if PY_VERSION_HEX >= 0x03070000
+ kwargs = PyDict_New ();
+ PyDict_SetItemString (kwargs, "context", cb->context);
+ Py_CLEAR (kwargs);
+#endif
+ ret = PyObject_Call (call_soon, args, kwargs);
+
+ Py_CLEAR (args);
+ Py_CLEAR (call_soon);
+
+ return ret;
+}
+
+static PyObject*
+async_add_done_callback (PyGIAsync *self, PyObject *args, PyObject *kwargs)
+{
+ PyGIAsyncCallback callback = { NULL };
+
+#if PY_VERSION_HEX >= 0x03070000
+ static char * kwlist[] = {"", "context", NULL};
+
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|$O:add_done_callback", kwlist,
+ &callback.func, &callback.context))
+ return NULL;
+
+ Py_INCREF(callback.func);
+ if (callback.context == NULL)
+#ifndef PYPY_VERSION
+ callback.context = PyContext_CopyCurrent ();
+#else
+ callback.context = PyObject_CallObject (contextvars_copy_context, NULL);
+#endif
+ else
+ Py_INCREF(callback.context);
+#else
+ if (!PyArg_ParseTuple(args, "O:add_done_callback", &callback.func))
+ return NULL;
+#endif
+
+ /* Note that we don't need to copy the current context in this case. */
+ if (self->result || self->exception) {
+ PyObject *res = call_soon (self, &callback);
+
+ Py_DECREF(callback.func);
+#if PY_VERSION_HEX >= 0x03070000
+ Py_DECREF(callback.context);
+#endif
+ if (res) {
+ Py_DECREF(res);
+ Py_RETURN_NONE;
+ } else {
+ return NULL;
+ }
+ }
+
+ if (!self->callbacks)
+ self->callbacks = g_array_new (TRUE, TRUE, sizeof (PyGIAsyncCallback));
+
+ g_array_append_val (self->callbacks, callback);
+
+ Py_RETURN_NONE;
+}
+
+static PyObject*
+async_remove_done_callback (PyGIAsync *self, PyObject *fn)
+{
+ guint i = 0;
+ gssize removed = 0;
+
+ while (self->callbacks && i < self->callbacks->len) {
+ PyGIAsyncCallback *cb = &g_array_index (self->callbacks, PyGIAsyncCallback, i);
+
+ if (PyObject_RichCompareBool (cb->func, fn, Py_EQ) == 1) {
+ Py_DECREF(cb->func);
+#if PY_VERSION_HEX >= 0x03070000
+ Py_DECREF(cb->context);
+#endif
+
+ removed += 1;
+ g_array_remove_index (self->callbacks, i);
+ } else {
+ i += 1;
+ }
+ }
+
+ return PyLong_FromSsize_t(removed);
+}
+
+static int
+async_init(PyGIAsync *self, PyObject *args, PyObject *kwargs)
+{
+ static char *kwlist[] = { "finish_func", "cancellable", NULL };
+ PyObject *context = NULL;
+ GMainContext *ctx = NULL;
+ int ret = -1;
+
+ if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!|O!$:gi._gi.Async.__init__", kwlist,
+ &PyGICallableInfo_Type, &self->finish_func,
+ &PyGObject_Type, &self->cancellable))
+ goto out;
+
+ Py_INCREF(self->finish_func);
+
+ /* We need to pull in Gio.Cancellable at some point, but we delay it
+ * until really needed to avoid having a dependency.
+ */
+ if (G_UNLIKELY (!cancellable_info)) {
+ PyObject *gio;
+
+ gio = PyImport_ImportModule("gi.repository.Gio");
+ if (gio == NULL)
+ goto out;
+
+ cancellable_info = PyObject_GetAttrString(gio, "Cancellable");
+ Py_DECREF(gio);
+
+ if (!cancellable_info)
+ goto out;
+ }
+
+ if (self->cancellable) {
+ int res;
+
+ Py_INCREF (self->cancellable);
+
+ res = PyObject_IsInstance (self->cancellable, cancellable_info);
+ if (res == -1)
+ goto out;
+
+ if (res == 0) {
+ PyErr_SetString (PyExc_TypeError, "cancellable argument needs to be of type Gio.Cancellable");
+ goto out;
+ }
+ } else {
+ self->cancellable = PyObject_CallObject (cancellable_info, NULL);
+ }
+
+ self->loop = PyObject_CallObject (asyncio_get_running_loop, NULL);
+ if (!self->loop)
+ goto out;
+
+ /* We use g_main_context_ref_thread_default() here, as that is what GTask
+ * does. We then only allow creating an awaitable if python has a *running*
+ * EventLoop iterating this context (i.e. has it as its `_context` attr).
+ *
+ * NOTE: This is a bit backward. Instead, it would make more sense to just
+ * fetch the current EventLoop object for the ref'ed GMainContext.
+ * Python will then do the rest and ensure it is not awaited from the wrong
+ * EventLoop.
+ */
+ ctx = g_main_context_ref_thread_default ();
+ assert(ctx != NULL);
+
+ /* Duck-type the running loop. It needs to have a _context attribute. */
+ context = PyObject_GetAttrString (self->loop, "_context");
+ if (context == NULL)
+ goto out;
+
+ if (!pyg_boxed_check (context, G_TYPE_MAIN_CONTEXT) ||
+ pyg_boxed_get_ptr (context) != ctx) {
+ PyErr_SetString (PyExc_TypeError, "Running EventLoop is iterating a different GMainContext");
+ goto out;
+ }
+
+ /* Success! */
+ ret = 0;
+
+out:
+ g_main_context_unref (ctx);
+ Py_XDECREF (context);
+
+ return ret;
+}
+
+static PyMethodDef async_methods[] = {
+ {"cancel", (PyCFunction)async_cancel, METH_NOARGS},
+ {"done", (PyCFunction)async_done, METH_NOARGS},
+ {"result", (PyCFunction)async_result, METH_NOARGS},
+ {"exception", (PyCFunction)async_exception, METH_NOARGS},
+ {"add_done_callback", (PyCFunction)async_add_done_callback, METH_VARARGS | METH_KEYWORDS},
+ {"remove_done_callback", (PyCFunction)async_remove_done_callback, METH_O},
+ {NULL, NULL, 0},
+};
+
+static PyObject *
+async_await (PyGIAsync *self) {
+ /* We return ourselves as iterator. This is legal in principle, but we
+ * don't stop iterating after one item and just continue indefinately,
+ * meaning that certain errors cannot be caught!
+ */
+
+ if (!self->result && !self->exception)
+ self->_asyncio_future_blocking = TRUE;
+
+ Py_INCREF (self);
+ return (PyObject *) self;
+}
+
+static PyObject *
+async_iternext (PyGIAsync *self) {
+ /* Return ourselves if iteration needs to continue. */
+ if (!self->result && !self->exception) {
+ Py_INCREF (self);
+ return (PyObject *) self;
+ }
+
+ if (self->exception) {
+ PyErr_SetObject(PyExceptionInstance_Class(self->exception), self->exception);
+ return NULL;
+ } else {
+ PyObject *e;
+
+ e = PyObject_CallFunctionObjArgs(PyExc_StopIteration, self->result, NULL);
+ if (e == NULL)
+ return NULL;
+
+ PyErr_SetObject(PyExc_StopIteration, e);
+ Py_DECREF(e);
+ return NULL;
+ }
+}
+
+static PyAsyncMethods async_async_methods = {
+ .am_await = (unaryfunc) async_await,
+};
+
+static void
+async_finalize(PyGIAsync *self)
+{
+ PyObject *error_type, *error_value, *error_traceback;
+ PyObject *context = NULL;
+ PyObject *message = NULL;
+ PyObject *call_exception_handler = NULL;
+ PyObject *res = NULL;
+
+ if (!self->log_tb)
+ return;
+
+ assert(self->exception != NULL);
+ self->log_tb = 0;
+
+ /* Save the current exception, if any. */
+ PyErr_Fetch(&error_type, &error_value, &error_traceback);
+
+ context = PyDict_New();
+ if (context == NULL) {
+ goto finally;
+ }
+
+ message = PyUnicode_FromFormat(
+ "%s exception was never retrieved", Py_TYPE(self)->tp_name);
+ if (message == NULL)
+ goto finally;
+
+ if (PyDict_SetItemString(context, "message", message) < 0 ||
+ PyDict_SetItemString(context, "exception", self->exception) < 0 ||
+ PyDict_SetItemString(context, "future", (PyObject*) self) < 0)
+ goto finally;
+
+ call_exception_handler = PyObject_GetAttrString(self->loop, "call_exception_handler");
+ if (!call_exception_handler)
+ goto finally;
+
+ res = PyObject_CallFunction(call_exception_handler, "(O)", context);
+ if (res == NULL)
+ PyErr_WriteUnraisable(context);
+
+finally:
+ Py_CLEAR (res);
+ Py_CLEAR (context);
+ Py_CLEAR (message);
+ Py_CLEAR (call_exception_handler);
+
+ Py_CLEAR(self->loop);
+ Py_CLEAR(self->finish_func);
+ if (self->cancellable)
+ Py_CLEAR(self->cancellable);
+ if (self->result)
+ Py_CLEAR(self->result);
+ if (self->exception)
+ Py_CLEAR(self->exception);
+
+ /* Precation, cannot happen */
+ if (self->callbacks)
+ g_array_free (self->callbacks, TRUE);
+
+ /* Restore the saved exception. */
+ PyErr_Restore(error_type, error_value, error_traceback);
+}
+
+static void
+async_dealloc(PyGIAsync *self)
+{
+#ifndef PYPY_VERSION
+ /* The finalizer might resurrect the object */
+ if (PyObject_CallFinalizerFromDealloc((PyObject *)self) < 0)
+ return;
+#endif
+
+ Py_TYPE(self)->tp_free((PyObject *)self);
+}
+
+void
+pygi_async_finish_cb (GObject *source_object, gpointer res, PyGIAsync *self)
+{
+ PyGILState_STATE py_state;
+ PyObject *source_pyobj, *res_pyobj, *args;
+ PyObject *ret;
+ guint i;
+
+ /* Lock the GIL as we are coming into this code without the lock and we
+ may be executing python code */
+ py_state = PyGILState_Ensure ();
+
+ /* We might still be called at shutdown time. */
+ if (!Py_IsInitialized()) {
+ PyGILState_Release (py_state);
+ return;
+ }
+
+ res_pyobj = pygobject_new_full (res, FALSE, NULL);
+ if (source_object) {
+ source_pyobj = pygobject_new_full (source_object, FALSE, NULL);
+ args = Py_BuildValue ("(OO)", source_pyobj, res_pyobj);
+ } else {
+ source_pyobj = NULL;
+ args = Py_BuildValue ("(O)", res_pyobj);
+ }
+ ret = _wrap_g_callable_info_invoke ((PyGIBaseInfo *) self->finish_func, args, NULL);
+ Py_XDECREF (res_pyobj);
+ Py_XDECREF (source_pyobj);
+ Py_XDECREF (args);
+
+ if (PyErr_Occurred ()) {
+ PyObject *exc = NULL, *value = NULL, *traceback = NULL;
+ PyObject *exc_val;
+
+ PyErr_Fetch (&exc, &value, &traceback);
+
+ Py_XDECREF (ret);
+
+ if (!value)
+ exc_val = PyObject_CallFunction(exc, "");
+ else
+ exc_val = PyObject_CallFunction(exc, "O", value);
+
+ if (exc_val == NULL)
+ exc_val = PyObject_CallFunction(PyExc_TypeError, "Invalid exception from _finish function call!");
+
+ g_assert (exc_val);
+ self->exception = exc_val;
+ self->log_tb = TRUE;
+
+ Py_XDECREF (exc);
+ Py_XDECREF (value);
+ Py_XDECREF (traceback);
+ Py_XDECREF (ret);
+ } else {
+ self->result = ret;
+ }
+
+ for (i = 0; self->callbacks && i < self->callbacks->len; i++) {
+ PyGIAsyncCallback *cb = &g_array_index (self->callbacks, PyGIAsyncCallback, i);
+ /* We stop calling anything after the first exception, but still clear
+ * the internal state as if we did.
+ * This matches the pure python implementation of Future.
+ */
+ if (!PyErr_Occurred ()) {
+ ret = call_soon (self, cb);
+ if (!ret)
+ PyErr_PrintEx (FALSE);
+ else
+ Py_DECREF(ret);
+ }
+
+ Py_DECREF(cb->func);
+#if PY_VERSION_HEX >= 0x03070000
+ Py_DECREF(cb->context);
+#endif
+ }
+ if (self->callbacks)
+ g_array_free(self->callbacks, TRUE);
+ self->callbacks = NULL;
+
+ Py_DECREF(self);
+ PyGILState_Release (py_state);
+}
+
+/**
+ * pygi_async_new:
+ * @finish_func: A #GIFunctionInfo to wrap that is used to finish.
+ * @cancellable: A #PyObject containging a #GCancellable, or None
+ *
+ * Return a new async instance.
+ *
+ * Returns: An instance of gi.Async or %NULL on error.
+ */
+PyObject *
+pygi_async_new(PyObject *finish_func, PyObject *cancellable) {
+
+ PyObject *res;
+ PyObject *args;
+
+ res = PyGIAsync_Type.tp_alloc (&PyGIAsync_Type, 0);
+
+ if (res) {
+ if (cancellable && cancellable != Py_None)
+ args = Py_BuildValue ("(OO)", finish_func, cancellable);
+ else
+ args = Py_BuildValue ("(O)", finish_func);
+
+ if (PyGIAsync_Type.tp_init (res, args, NULL) < 0) {
+ Py_DECREF (args);
+ Py_DECREF (res);
+
+ /* Ignore exception from object initializer */
+ PyErr_Clear ();
+
+ return NULL;
+ }
+
+ Py_DECREF(args);
+ }
+
+ return res;
+}
+
+static struct PyMemberDef async_members[] = {
+ {
+ "_asyncio_future_blocking",
+ T_BOOL,
+ offsetof(PyGIAsync, _asyncio_future_blocking),
+ 0,
+ NULL
+ },
+ {
+ "_loop",
+ T_OBJECT,
+ offsetof(PyGIAsync, loop),
+ READONLY,
+ NULL
+ },
+ {
+ "_finish_func",
+ T_OBJECT,
+ offsetof(PyGIAsync, finish_func),
+ READONLY,
+ NULL
+ },
+ {
+ "cancellable",
+ T_OBJECT,
+ offsetof(PyGIAsync, cancellable),
+ READONLY,
+ "The Gio.Cancellable associated with the task."
+ },
+ { NULL, }
+};
+
+
+/**
+ * pygi_async_register_types:
+ * @module: A Python modules to which Async gets added to.
+ *
+ * Initializes the Async class and adds it to the passed @module.
+ *
+ * Returns: -1 on error, 0 on success.
+ */
+int pygi_async_register_types(PyObject *module) {
+ PyObject *asyncio = NULL;
+#if PY_VERSION_HEX >= 0x03070000 && defined(PYPY_VERSION)
+ PyObject *contextvars = NULL;
+#endif
+
+#ifndef PYPY_VERSION
+ PyGIAsync_Type.tp_finalize = (destructor)async_finalize;
+#else
+ PyGIAsync_Type.tp_del = (destructor)async_finalize;
+#endif
+ PyGIAsync_Type.tp_dealloc = (destructor)async_dealloc;
+ PyGIAsync_Type.tp_repr = (reprfunc)async_repr;
+ PyGIAsync_Type.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_FINALIZE;
+ PyGIAsync_Type.tp_methods = async_methods;
+ PyGIAsync_Type.tp_members = async_members;
+ PyGIAsync_Type.tp_as_async = &async_async_methods;
+ PyGIAsync_Type.tp_iternext = (iternextfunc) &async_iternext;
+ PyGIAsync_Type.tp_init = (initproc)async_init;
+ PyGIAsync_Type.tp_new = PyType_GenericNew;
+
+ if (PyType_Ready (&PyGIAsync_Type) < 0)
+ return -1;
+
+ Py_INCREF (&PyGIAsync_Type);
+ if (PyModule_AddObject (module, "Async",
+ (PyObject *)&PyGIAsync_Type) < 0) {
+ Py_DECREF (&PyGIAsync_Type);
+ return -1;
+ }
+
+ asyncio = PyImport_ImportModule("asyncio");
+ if (asyncio == NULL) {
+ goto fail;
+ }
+ asyncio_InvalidStateError = PyObject_GetAttrString(asyncio, "InvalidStateError");
+ if (asyncio_InvalidStateError == NULL)
+ goto fail;
+
+ asyncio_get_running_loop = PyObject_GetAttrString(asyncio, "_get_running_loop");
+ if (asyncio_get_running_loop == NULL)
+ goto fail;
+
+#if PY_VERSION_HEX >= 0x03070000 && defined(PYPY_VERSION)
+ contextvars = PyImport_ImportModule("contextvars");
+ if (asyncio == NULL) {
+ goto fail;
+ }
+
+ contextvars_copy_context = PyObject_GetAttrString(contextvars, "copy_context");
+ if (contextvars_copy_context == NULL)
+ goto fail;
+#endif
+
+ /* Only initialized when really needed! */
+ cancellable_info = NULL;
+
+ Py_CLEAR(asyncio);
+ return 0;
+
+fail:
+ Py_CLEAR(asyncio);
+ return -1;
+}
diff --git a/gi/pygi-async.h b/gi/pygi-async.h
new file mode 100644
index 00000000..c5952c9b
--- /dev/null
+++ b/gi/pygi-async.h
@@ -0,0 +1,61 @@
+/* -*- Mode: C; c-basic-offset: 4 -*-
+ * vim: tabstop=4 shiftwidth=4 expandtab
+ *
+ * Copyright (C) 2015 Christoph Reiter <reiter.christoph@gmail.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef __PYGI_ASYNC_H__
+#define __PYGI_ASYNC_H__
+
+#include "Python.h"
+
+#include "pygi-info.h"
+#include "pygi-cache.h"
+
+typedef struct {
+ PyObject *func;
+#if PY_VERSION_HEX >= 0x03070000
+ PyObject *context;
+#endif
+} PyGIAsyncCallback;
+
+typedef struct {
+ PyObject_HEAD
+
+ /* Everything for the instance, finish_func is kept in the class. */
+ PyGICallableInfo *finish_func;
+ PyObject *loop;
+ PyObject *cancellable;
+ int _asyncio_future_blocking;
+ PyObject *result;
+ PyObject *exception;
+
+ gboolean log_tb;
+
+ GArray *callbacks;
+} PyGIAsync;
+
+
+int
+pygi_async_register_types (PyObject *d);
+
+void
+pygi_async_finish_cb (GObject *source_object, gpointer res, PyGIAsync *async);
+
+PyObject*
+pygi_async_new (PyObject *async_finish, PyObject *cancellable);
+
+#endif /* __PYGI_ASYNCRESULT_H__ */