summaryrefslogtreecommitdiffstats
path: root/Modules/_asynciomodule.c
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2017-12-23 20:04:15 (GMT)
committerGitHub <noreply@github.com>2017-12-23 20:04:15 (GMT)
commitca9b36cd1a384e5ecb56d9df9a59144240353ef0 (patch)
tree3efb5c02ae40b61eb5c6391d3144d0f2f26cd616 /Modules/_asynciomodule.c
parent558aa30f7971e087c4a00b1f49cc2ef3195c01ca (diff)
downloadcpython-ca9b36cd1a384e5ecb56d9df9a59144240353ef0.zip
cpython-ca9b36cd1a384e5ecb56d9df9a59144240353ef0.tar.gz
cpython-ca9b36cd1a384e5ecb56d9df9a59144240353ef0.tar.bz2
bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992)
Diffstat (limited to 'Modules/_asynciomodule.c')
-rw-r--r--Modules/_asynciomodule.c98
1 files changed, 69 insertions, 29 deletions
diff --git a/Modules/_asynciomodule.c b/Modules/_asynciomodule.c
index f52297d..25acd55 100644
--- a/Modules/_asynciomodule.c
+++ b/Modules/_asynciomodule.c
@@ -16,7 +16,6 @@ _Py_IDENTIFIER(call_soon);
_Py_IDENTIFIER(cancel);
_Py_IDENTIFIER(current_task);
_Py_IDENTIFIER(get_event_loop);
-_Py_IDENTIFIER(pop);
_Py_IDENTIFIER(send);
_Py_IDENTIFIER(throw);
_Py_IDENTIFIER(_step);
@@ -39,15 +38,12 @@ static PyObject *asyncio_InvalidStateError;
static PyObject *asyncio_CancelledError;
-/* WeakKeyDictionary of {Task: EventLoop} containing all tasks alive.
- Task should be a weak reference to remove entry on task garbage
- collection, EventLoop is required
- to not access to private task._loop attribute. */
-static PyObject *current_tasks;
+/* WeakSet containing all alive tasks. */
+static PyObject *all_tasks;
/* Dictionary containing tasks that are currently active in
all running event loops. {EventLoop: Task} */
-static PyObject *all_tasks;
+static PyObject *current_tasks;
/* An isinstance type cache for the 'is_coroutine()' function. */
static PyObject *iscoroutine_typecache;
@@ -186,6 +182,31 @@ is_coroutine(PyObject *coro)
}
+static PyObject *
+get_future_loop(PyObject *fut)
+{
+ /* Implementation of `asyncio.futures._get_loop` */
+
+ _Py_IDENTIFIER(get_loop);
+ _Py_IDENTIFIER(_loop);
+
+ if (Future_CheckExact(fut) || Task_CheckExact(fut)) {
+ PyObject *loop = ((FutureObj *)fut)->fut_loop;
+ Py_INCREF(loop);
+ return loop;
+ }
+
+ PyObject *getloop = _PyObject_GetAttrId(fut, &PyId_get_loop);
+ if (getloop != NULL) {
+ PyObject *res = _PyObject_CallNoArg(getloop);
+ Py_DECREF(getloop);
+ return res;
+ }
+
+ return _PyObject_GetAttrId(fut, &PyId__loop);
+}
+
+
static int
get_running_loop(PyObject **loop)
{
@@ -977,6 +998,20 @@ _asyncio_Future_done_impl(FutureObj *self)
}
}
+/*[clinic input]
+_asyncio.Future.get_loop
+
+Return the event loop the Future is bound to.
+[clinic start generated code]*/
+
+static PyObject *
+_asyncio_Future_get_loop_impl(FutureObj *self)
+/*[clinic end generated code: output=119b6ea0c9816c3f input=cba48c2136c79d1f]*/
+{
+ Py_INCREF(self->fut_loop);
+ return self->fut_loop;
+}
+
static PyObject *
FutureObj_get_blocking(FutureObj *fut)
{
@@ -1295,6 +1330,7 @@ static PyMethodDef FutureType_methods[] = {
_ASYNCIO_FUTURE_CANCEL_METHODDEF
_ASYNCIO_FUTURE_CANCELLED_METHODDEF
_ASYNCIO_FUTURE_DONE_METHODDEF
+ _ASYNCIO_FUTURE_GET_LOOP_METHODDEF
_ASYNCIO_FUTURE__REPR_INFO_METHODDEF
_ASYNCIO_FUTURE__SCHEDULE_CALLBACKS_METHODDEF
{NULL, NULL} /* Sentinel */
@@ -1759,19 +1795,27 @@ TaskWakeupMethWrapper_new(TaskObj *task)
/* ----- Task introspection helpers */
static int
-register_task(PyObject *loop, PyObject *task)
+register_task(PyObject *task)
{
- return PyObject_SetItem(all_tasks, task, loop);
+ _Py_IDENTIFIER(add);
+
+ PyObject *res = _PyObject_CallMethodIdObjArgs(
+ all_tasks, &PyId_add, task, NULL);
+ if (res == NULL) {
+ return -1;
+ }
+ Py_DECREF(res);
+ return 0;
}
static int
-unregister_task(PyObject *loop, PyObject *task)
+unregister_task(PyObject *task)
{
- PyObject *res;
+ _Py_IDENTIFIER(discard);
- res = _PyObject_CallMethodIdObjArgs(all_tasks, &PyId_pop,
- task, Py_None, NULL);
+ PyObject *res = _PyObject_CallMethodIdObjArgs(
+ all_tasks, &PyId_discard, task, NULL);
if (res == NULL) {
return -1;
}
@@ -1871,7 +1915,7 @@ _asyncio_Task___init___impl(TaskObj *self, PyObject *coro, PyObject *loop)
if (task_call_step_soon(self, NULL)) {
return -1;
}
- return register_task(self->task_loop, (PyObject*)self);
+ return register_task((PyObject*)self);
}
static int
@@ -2622,7 +2666,7 @@ set_exception:
}
/* Check if `result` future is attached to a different loop */
- PyObject *oloop = PyObject_GetAttrString(result, "_loop");
+ PyObject *oloop = get_future_loop(result);
if (oloop == NULL) {
goto fail;
}
@@ -2928,7 +2972,6 @@ _asyncio_get_running_loop_impl(PyObject *module)
/*[clinic input]
_asyncio._register_task
- loop: object
task: object
Register a new task in asyncio as executed by loop.
@@ -2937,11 +2980,10 @@ Returns None.
[clinic start generated code]*/
static PyObject *
-_asyncio__register_task_impl(PyObject *module, PyObject *loop,
- PyObject *task)
-/*[clinic end generated code: output=54c5cb733dbe0f38 input=9b5fee38fcb2c288]*/
+_asyncio__register_task_impl(PyObject *module, PyObject *task)
+/*[clinic end generated code: output=8672dadd69a7d4e2 input=21075aaea14dfbad]*/
{
- if (register_task(loop, task) < 0) {
+ if (register_task(task) < 0) {
return NULL;
}
Py_RETURN_NONE;
@@ -2951,7 +2993,6 @@ _asyncio__register_task_impl(PyObject *module, PyObject *loop,
/*[clinic input]
_asyncio._unregister_task
- loop: object
task: object
Unregister a task.
@@ -2960,11 +3001,10 @@ Returns None.
[clinic start generated code]*/
static PyObject *
-_asyncio__unregister_task_impl(PyObject *module, PyObject *loop,
- PyObject *task)
-/*[clinic end generated code: output=f634743a76b84ebc input=51fa1820634ef331]*/
+_asyncio__unregister_task_impl(PyObject *module, PyObject *task)
+/*[clinic end generated code: output=6e5585706d568a46 input=28fb98c3975f7bdc]*/
{
- if (unregister_task(loop, task) < 0) {
+ if (unregister_task(task) < 0) {
return NULL;
}
Py_RETURN_NONE;
@@ -3123,11 +3163,11 @@ module_init(void)
WITH_MOD("traceback")
GET_MOD_ATTR(traceback_extract_stack, "extract_stack")
- PyObject *weak_key_dict;
+ PyObject *weak_set;
WITH_MOD("weakref")
- GET_MOD_ATTR(weak_key_dict, "WeakKeyDictionary");
- all_tasks = _PyObject_CallNoArg(weak_key_dict);
- Py_CLEAR(weak_key_dict);
+ GET_MOD_ATTR(weak_set, "WeakSet");
+ all_tasks = _PyObject_CallNoArg(weak_set);
+ Py_CLEAR(weak_set);
if (all_tasks == NULL) {
goto fail;
}