我正在实现一个web套接字服务器与龙卷风(目前版本3.1)。
在open()
函数中,我检查GET参数,然后基于它-我想引发一个错误。
像这样:
def open(self):
token = self.get_argument('token')
if ...:
??? # raise an error
如何在open函数内部引发错误?我没有找到做这件事的方法。
谢谢
你可以像平常那样抛出一个异常:
class EchoWebSocket(websocket.WebSocketHandler):
def open(self):
if some_error:
raise Exception("Some error occurred")
Tornado将在open
中发生未处理的异常时中止连接。以下是open
计划在龙卷风源中运行的方式:
self._run_callback(self.handler.open, *self.handler.open_args,
**self.handler.open_kwargs)
_run_callback
:
def _run_callback(self, callback, *args, **kwargs):
"""Runs the given callback with exception handling.
On error, aborts the websocket connection and returns False.
"""
try:
callback(*args, **kwargs)
except Exception:
app_log.error("Uncaught exception in %s",
self.request.path, exc_info=True)
self._abort()
def _abort(self):
"""Instantly aborts the WebSocket connection by closing the socket"""
self.client_terminated = True
self.server_terminated = True
self.stream.close() # forcibly tear down the connection
self.close() # let the subclass cleanup
如您所见,当出现异常时,它会中止连接。