coroutinebased.py 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. import asyncio
  2. import logging
  3. import sys
  4. import threading
  5. import traceback
  6. from contextlib import contextmanager
  7. from functools import partial
  8. from .base import AbstractSession
  9. from ..exceptions import SessionNotFoundException, SessionClosedException, SessionException
  10. from ..utils import random_str, isgeneratorfunction, iscoroutinefunction, catch_exp_call
  11. logger = logging.getLogger(__name__)
  12. class WebIOFuture:
  13. def __init__(self, coro=None):
  14. self.coro = coro
  15. def __iter__(self):
  16. result = yield self
  17. return result
  18. __await__ = __iter__ # make compatible with 'await' expression
  19. class _context:
  20. current_session = None # type:"CoroutineBasedSession"
  21. current_task_id = None
  22. class CoroutineBasedSession(AbstractSession):
  23. """
  24. 基于协程的任务会话
  25. 当主协程任务和会话内所有通过 `run_async` 注册的协程都退出后,会话关闭。
  26. 当用户浏览器主动关闭会话,CoroutineBasedSession.close 被调用, 协程任务和会话内所有通过 `run_async` 注册的协程都被关闭。
  27. """
  28. # 运行事件循环的线程id
  29. # 用于在 CoroutineBasedSession.get_current_session() 判断调用方是否合法
  30. # Tornado backend时,在创建第一个CoroutineBasedSession时初始化
  31. # Flask backend时,在platform.flaskrun_event_loop()时初始化
  32. event_loop_thread_id = None
  33. _active_session_cnt = 0
  34. @classmethod
  35. def active_session_count(cls):
  36. return cls._active_session_cnt
  37. @classmethod
  38. def get_current_session(cls) -> "CoroutineBasedSession":
  39. if _context.current_session is None or cls.event_loop_thread_id != threading.current_thread().ident:
  40. raise SessionNotFoundException("No session found in current context!")
  41. if _context.current_session.closed():
  42. raise SessionClosedException
  43. return _context.current_session
  44. @staticmethod
  45. def get_current_task_id():
  46. if _context.current_task_id is None:
  47. raise RuntimeError("No current task found in context!")
  48. return _context.current_task_id
  49. def __init__(self, target, session_info, on_task_command=None, on_session_close=None):
  50. """
  51. :param target: 协程函数
  52. :param on_task_command: 由协程内发给session的消息的处理函数
  53. :param on_session_close: 会话结束的处理函数。后端Backend在相应on_session_close时关闭连接时,需要保证会话内的所有消息都传送到了客户端
  54. """
  55. assert iscoroutinefunction(target) or isgeneratorfunction(target), ValueError(
  56. "CoroutineBasedSession accept coroutine function or generator function as task function")
  57. CoroutineBasedSession._active_session_cnt += 1
  58. self.info = session_info
  59. self._on_task_command = on_task_command or (lambda _: None)
  60. self._on_session_close = on_session_close or (lambda: None)
  61. # 会话结束时运行的函数
  62. self.deferred_functions = []
  63. # 当前会话未被Backend处理的消息
  64. self.unhandled_task_msgs = []
  65. # 在创建第一个CoroutineBasedSession时 event_loop_thread_id 还未被初始化
  66. # 则当前线程即为运行 event loop 的线程
  67. if CoroutineBasedSession.event_loop_thread_id is None:
  68. CoroutineBasedSession.event_loop_thread_id = threading.current_thread().ident
  69. # 会话内的协程任务
  70. self.coros = {} # coro_task_id -> Task()
  71. self._closed = False
  72. # 当前会话未结束运行(已创建和正在运行的)的协程数量。当 _alive_coro_cnt 变为 0 时,会话结束。
  73. self._alive_coro_cnt = 1
  74. main_task = Task(target(), session=self, on_coro_stop=self._on_task_finish)
  75. self.coros[main_task.coro_id] = main_task
  76. self._step_task(main_task)
  77. def _step_task(self, task, result=None):
  78. asyncio.get_event_loop().call_soon_threadsafe(partial(task.step, result))
  79. def _on_task_finish(self, task: "Task"):
  80. self._alive_coro_cnt -= 1
  81. if task.coro_id in self.coros:
  82. logger.debug('del self.coros[%s]', task.coro_id)
  83. del self.coros[task.coro_id]
  84. if self._alive_coro_cnt <= 0 and not self.closed():
  85. self.send_task_command(dict(command='close_session'))
  86. self._on_session_close()
  87. self.close()
  88. def send_task_command(self, command):
  89. """向会话发送来自协程内的消息
  90. :param dict command: 消息
  91. """
  92. if self.closed():
  93. raise SessionClosedException()
  94. self.unhandled_task_msgs.append(command)
  95. self._on_task_command(self)
  96. async def next_client_event(self):
  97. # 函数开始不需要判断 self.closed()
  98. # 如果会话关闭,对 get_current_session().next_client_event() 的调用会抛出SessionClosedException
  99. return await WebIOFuture()
  100. def send_client_event(self, event):
  101. """向会话发送来自用户浏览器的事件️
  102. :param dict event: 事件️消息
  103. """
  104. coro_id = event['task_id']
  105. coro = self.coros.get(coro_id)
  106. if not coro:
  107. logger.error('coro not found, coro_id:%s', coro_id)
  108. return
  109. self._step_task(coro, event)
  110. def get_task_commands(self):
  111. msgs = self.unhandled_task_msgs
  112. self.unhandled_task_msgs = []
  113. return msgs
  114. def _cleanup(self):
  115. for t in list(self.coros.values()): # t.close() may cause self.coros changed size
  116. t.step(SessionClosedException, throw_exp=True)
  117. t.close()
  118. self.coros = {} # delete session tasks
  119. CoroutineBasedSession._active_session_cnt -= 1
  120. def close(self):
  121. """关闭当前Session。由Backend调用"""
  122. if self._closed:
  123. return
  124. self._closed = True
  125. self._cleanup()
  126. self.deferred_functions.reverse()
  127. while self.deferred_functions:
  128. func = self.deferred_functions.pop()
  129. catch_exp_call(func, logger)
  130. def closed(self):
  131. return self._closed
  132. def on_task_exception(self):
  133. from ..output import put_markdown # todo
  134. logger.exception('Error in coroutine executing')
  135. type, value, tb = sys.exc_info()
  136. tb_len = len(list(traceback.walk_tb(tb)))
  137. lines = traceback.format_exception(type, value, tb, limit=1 - tb_len)
  138. traceback_msg = ''.join(lines)
  139. try:
  140. put_markdown("发生错误:\n```\n%s\n```" % traceback_msg)
  141. except Exception:
  142. pass
  143. def register_callback(self, callback, mutex_mode=False):
  144. """ 向Session注册一个回调函数,返回回调id
  145. :type callback: Callable or Coroutine
  146. :param callback: 回调函数. 可以是普通函数或者协程函数. 函数签名为 ``callback(data)``.
  147. :param bool mutex_mode: 互斥模式。若为 ``True`` ,则在运行回调函数过程中,无法响应同一组件的新点击事件,仅当 ``callback`` 为协程函数时有效
  148. :return str: 回调id.
  149. CoroutineBasedSession 保证当收到前端发送的事件消息 ``{event: "callback",coro_id: 回调id, data:...}`` 时,
  150. ``callback`` 回调函数被执行, 并传入事件消息中的 ``data`` 字段值作为参数
  151. """
  152. async def callback_coro():
  153. while True:
  154. try:
  155. event = await self.next_client_event()
  156. except SessionClosedException:
  157. return
  158. assert event['event'] == 'callback'
  159. coro = None
  160. if iscoroutinefunction(callback):
  161. coro = callback(event['data'])
  162. elif isgeneratorfunction(callback):
  163. coro = asyncio.coroutine(callback)(event['data'])
  164. else:
  165. try:
  166. callback(event['data'])
  167. except Exception:
  168. self.on_task_exception()
  169. if coro is not None:
  170. if mutex_mode:
  171. await coro
  172. else:
  173. self.run_async(coro)
  174. callback_task = Task(callback_coro(), CoroutineBasedSession.get_current_session())
  175. callback_task.coro.send(None) # 激活,Non't callback.step() ,导致嵌套调用step todo 与inactive_coro_instances整合
  176. CoroutineBasedSession.get_current_session().coros[callback_task.coro_id] = callback_task
  177. return callback_task.coro_id
  178. def run_async(self, coro_obj):
  179. """异步运行协程对象。可以在协程内调用 PyWebIO 交互函数
  180. :param coro_obj: 协程对象
  181. :return: An instance of `TaskHandle` is returned, which can be used later to close the task.
  182. """
  183. assert asyncio.iscoroutine(coro_obj), '`run_async()` only accept coroutine object'
  184. self._alive_coro_cnt += 1
  185. task = Task(coro_obj, session=self, on_coro_stop=self._on_task_finish)
  186. self.coros[task.coro_id] = task
  187. asyncio.get_event_loop().call_soon_threadsafe(task.step)
  188. return task.task_handle()
  189. async def run_asyncio_coroutine(self, coro_obj):
  190. """若会话线程和运行事件的线程不是同一个线程,需要用 asyncio_coroutine 来运行asyncio中的协程"""
  191. assert asyncio.iscoroutine(coro_obj), '`run_asyncio_coroutine()` only accept coroutine object'
  192. res = await WebIOFuture(coro=coro_obj)
  193. return res
  194. def defer_call(self, func):
  195. """设置会话结束时调用的函数。可以用于资源清理。"""
  196. self.deferred_functions.append(func)
  197. class TaskHandle:
  198. """协程任务句柄"""
  199. def __init__(self, close, closed):
  200. self._close = close
  201. self._closed = closed
  202. def close(self):
  203. """关闭协程任务"""
  204. return self._close()
  205. def closed(self):
  206. """返回任务是否关闭"""
  207. return self._closed()
  208. class Task:
  209. @contextmanager
  210. def session_context(self):
  211. """
  212. >>> with session_context():
  213. ... res = self.coros[-1].send(data)
  214. """
  215. # todo issue: with 语句可能发生嵌套,导致内层with退出时,将属性置空
  216. _context.current_session = self.session
  217. _context.current_task_id = self.coro_id
  218. try:
  219. yield
  220. finally:
  221. _context.current_session = None
  222. _context.current_task_id = None
  223. @staticmethod
  224. def gen_coro_id(coro=None):
  225. """生成协程id"""
  226. name = 'coro'
  227. if hasattr(coro, '__name__'):
  228. name = coro.__name__
  229. return '%s-%s' % (name, random_str(10))
  230. def __init__(self, coro, session: CoroutineBasedSession, on_coro_stop=None):
  231. """
  232. :param coro: 协程对象
  233. :param session: 创建该Task的会话实例
  234. :param on_coro_stop: 任务结束(正常结束或外部调用Task.close)时运行的回调
  235. """
  236. self.session = session
  237. self.coro = coro
  238. self.coro_id = None
  239. self.result = None
  240. self.task_closed = False # 任务完毕/取消
  241. self.on_coro_stop = on_coro_stop or (lambda _: None)
  242. self.coro_id = self.gen_coro_id(self.coro)
  243. self.pending_futures = {} # id(future) -> future
  244. logger.debug('Task[%s] created ', self.coro_id)
  245. def step(self, result=None, throw_exp=False):
  246. """激活协程
  247. :param any result: 向协程传入的数据
  248. :param bool throw_exp: 是否向协程引发异常,为 True 时, result 参数为相应的异常对象
  249. """
  250. coro_yield = None
  251. with self.session_context():
  252. try:
  253. if throw_exp:
  254. coro_yield = self.coro.throw(result)
  255. else:
  256. coro_yield = self.coro.send(result)
  257. except StopIteration as e:
  258. if len(e.args) == 1:
  259. self.result = e.args[0]
  260. self.task_closed = True
  261. logger.debug('Task[%s] finished', self.coro_id)
  262. self.on_coro_stop(self)
  263. except Exception as e:
  264. if not isinstance(e, SessionException):
  265. self.session.on_task_exception()
  266. self.task_closed = True
  267. self.on_coro_stop(self)
  268. future = None
  269. if isinstance(coro_yield, WebIOFuture):
  270. if coro_yield.coro:
  271. future = asyncio.run_coroutine_threadsafe(coro_yield.coro, asyncio.get_event_loop())
  272. elif coro_yield is not None:
  273. future = coro_yield
  274. if not self.session.closed() and hasattr(future, 'add_done_callback'):
  275. future.add_done_callback(self._tornado_future_callback)
  276. self.pending_futures[id(future)] = future
  277. def _tornado_future_callback(self, future):
  278. if not future.cancelled():
  279. del self.pending_futures[id(future)]
  280. self.step(future.result())
  281. def close(self):
  282. if self.task_closed:
  283. return
  284. logger.debug('Task[%s] closed', self.coro_id)
  285. self.coro.close()
  286. while self.pending_futures:
  287. _, f = self.pending_futures.popitem()
  288. f.cancel()
  289. self.task_closed = True
  290. self.on_coro_stop(self)
  291. def __del__(self):
  292. if not self.task_closed:
  293. logger.warning('Task[%s] was destroyed but it is pending!', self.coro_id)
  294. def task_handle(self):
  295. handle = TaskHandle(close=self.close, closed=lambda: self.task_closed)
  296. return handle