【发布时间】:2015-11-10 14:35:13
【问题描述】:
当此计数器被另一个计时器事件(stop_future)中断并完成时,我无法清理下面的 count_timer(睡眠)。
import asyncio
import datetime
from concurrent.futures import FIRST_COMPLETED
DISPLAY_DT_TIMEOUT = 7
MAX_DISPLAY_COUNT = 3
COUNT_TIMEOUT = 4
def stop(stop_future, display_count):
print('stop', display_count, datetime.datetime.now())
stop_future.set_result('Done!')
async def display_dt1():
display_count = 0
stop_future = asyncio.Future()
stop_handle = loop.call_later(DISPLAY_DT_TIMEOUT, stop, stop_future, display_count)
# loop until
while not stop_future.done() and display_count < MAX_DISPLAY_COUNT:
print('dt1-1', display_count, datetime.datetime.now())
count_timer = asyncio.sleep(COUNT_TIMEOUT) # cleanup ??
await asyncio.wait([count_timer, stop_future], return_when=FIRST_COMPLETED)
print('dt-2', display_count, datetime.datetime.now())
display_count += 1
if not stop_future.done():
# cleanup stop future
stop_handle.cancel()
stop_future.cancel()
async def wait_before_loop_close():
await asyncio.sleep(10)
loop = asyncio.get_event_loop()
coro = display_dt1()
loop.run_until_complete(coro)
# this print shows the count_timer is still pending
print('tasks-1', asyncio.Task.all_tasks())
# wait for the count_timer to finish
loop.run_until_complete(wait_before_loop_close())
loop.close()
print('tasks-2', asyncio.Task.all_tasks())
print('finished', datetime.datetime.now())
结果:
dt1-1 0 2015-11-10 15:20:58.200107
dt-2 0 2015-11-10 15:21:02.201654
dt1-1 1 2015-11-10 15:21:02.201654
stop 0 2015-11-10 15:21:05.186800 # stop interrupt
dt-2 1 2015-11-10 15:21:05.186800 # results in stop counting
tasks-1 {<Task pending coro=<sleep() running at D:\Python\Python35-32\lib\asyncio\tasks.py:495> wait_for=<Future pending cb=[Task._wakeup()]>>}
>>> tasks-2 set()
finished 2015-11-10 15:21:15.193669
Update-1:取消 count_timer(包装在未来)
async def display_dt1():
count_timer_task = None
display_count = 0
stop_future = asyncio.Future()
stop_handle = loop.call_later(DISPLAY_DT_TIMEOUT, stop, stop_future, display_count)
while not stop_future.done() and display_count < MAX_DISPLAY_COUNT:
print('dt1-1', display_count, datetime.datetime.now())
count_timer = asyncio.sleep(COUNT_TIMEOUT) # cleanup ??
count_timer_task = asyncio.ensure_future(count_timer)
await asyncio.wait([count_timer_task, stop_future], return_when=FIRST_COMPLETED)
print('dt-2', display_count, datetime.datetime.now())
display_count += 1
if count_timer_task and not count_timer_task.cancelled():
count_timer_task.cancel()
print('check-1', datetime.datetime.now(), count_timer_task)
if not stop_future.done():
stop_handle.cancel()
stop_future.cancel()
print('check-2', datetime.datetime.now(), stop_future)
结果:
dt1-1 0 2015-11-10 16:44:29.180372
dt-2 0 2015-11-10 16:44:33.180908
dt1-1 1 2015-11-10 16:44:33.180908
stop 0 2015-11-10 16:44:36.181062
dt-2 1 2015-11-10 16:44:36.181062
check-1 2015-11-10 16:44:36.181062 <Task pending coro=<sleep() running at D:\Python\Python35-32\lib\asyncio\tasks.py:495> wait_for=<Future cancelled>>
tasks-1 set()
>>> tasks-2 set()
finished 2015-11-10 16:44:46.181965
【问题讨论】:
-
当
wait()协程返回时你不能直接调用count_timer.cancel()吗? -
@Benjamin。我必须在将来包装 count_timer 才能取消它。但我不完全理解清理工作。请参阅上面的 update-1 和 Result check-1。
标签: python future coroutine python-asyncio python-3.5