如何异步插入任务以在另一个线程中运行的asyncio
事件循环中运行?
我的动机是支持解释器中的交互式异步工作负载。我无法阻止主REPL线程。
我目前的缺陷理解是,以下内容应该有效。为什么不呢?什么是实现上述目标的更好方法?
import asyncio
from threading import Thread
loop = asyncio.new_event_loop()
def f(loop):
asyncio.set_event_loop(loop)
loop.run_forever()
t = Thread(target=f, args=(loop,))
t.start()
@asyncio.coroutine
def g():
yield from asyncio.sleep(1)
print('Hello, world!')
asyncio.async(g(), loop=loop)
答案 0 :(得分:7)
您必须使用call_soon_threadsafe
来安排来自不同线程的回调:
import asyncio
from threading import Thread
loop = asyncio.new_event_loop()
def f(loop):
asyncio.set_event_loop(loop)
loop.run_forever()
t = Thread(target=f, args=(loop,))
t.start()
@asyncio.coroutine
def g():
yield from asyncio.sleep(1)
print('Hello, world!')
loop.call_soon_threadsafe(asyncio.async, g())
有关详细信息,请参阅https://docs.python.org/3/library/asyncio-dev.html#asyncio-multithreading。
编辑:支持异步工作负载的解释器示例
# vim: filetype=python3 tabstop=2 expandtab
import asyncio as aio
import random
@aio.coroutine
def async_eval(input_, sec):
yield from aio.sleep(sec)
print("")
try:
result = eval(input_)
except Exception as e:
print("< {!r} does not compute >".format(input_))
else:
print("< {!r} = {} >".format(input_, result))
@aio.coroutine
def main(loop):
while True:
input_ = yield from loop.run_in_executor(None, input, "> ")
if input_ == "quit":
break
elif input_ == "":
continue
else:
sec = random.uniform(5, 10)
print("< {!r} scheduled for execution in {:.02} sec>".format(input_, sec))
aio.async(async_eval(input_, sec))
loop = aio.get_event_loop()
loop.run_until_complete(main(loop))
loop.close()
答案 1 :(得分:4)
Jashandeep Sohi 回答中的第一个示例在 3.7+ 中对我不起作用,并打印有关已弃用注释的警告。我把它改造成一个在 3.8 下运行的东西。我也稍微调整了一下以满足我的需求。我是 Python 中的多线程的新手(但一般没有多线程),因此感谢您提供任何建议、指导等:
import asyncio
from threading import Thread
loop = asyncio.new_event_loop()
running = True
def evaluate(future):
global running
stop = future.result()
if stop:
print("press enter to exit...")
running = False
def side_thread(loop):
asyncio.set_event_loop(loop)
loop.run_forever()
thread = Thread(target=side_thread, args=(loop,), daemon=True)
thread.start()
async def display(text):
await asyncio.sleep(5)
print("echo:", text)
return text == "exit"
while running:
text = input("enter text: ")
future = asyncio.run_coroutine_threadsafe(display(text), loop)
future.add_done_callback(evaluate)
print("exiting")
回声和其他输出会与提示冲突,但应该足以证明它可以正常工作。
我不确定的一件事是从一个线程设置全局 running
并从另一个线程读取它。我想 GIL 可能会同步线程缓存,但我很想得到确认(或不确认)。