python-3.x - 如何使用超时停止阻塞函数 subscribe.simple

我想用timeout来停止mqtt的阻塞功能,我用了一个timeout_decorator模块,它可以停止command函数但不能停止阻塞函数,subscribe.simple

以下代码运行成功

import time
import timeout_decorator

@timeout_decorator.timeout(5, timeout_exception=StopIteration)
def mytest():
    print("Start")
    for i in range(1,10):
        time.sleep(1)
        print("{} seconds have passed".format(i))

if __name__ == '__main__':
    mytest()

结果如下:

Start
1 seconds have passed
2 seconds have passed
3 seconds have passed
4 seconds have passed
Traceback (most recent call last):
  File "timeutTest.py", line 12, in <module>
    mytest()
  File "/home/gyf/.local/lib/python3.5/site-packages/timeout_decorator/timeout_decorator.py", line 81, in new_function
    return function(*args, **kwargs)
  File "timeutTest.py", line 8, in mytest
    time.sleep(1)
  File "/home/gyf/.local/lib/python3.5/site-packages/timeout_decorator/timeout_decorator.py", line 72, in handler
    _raise_exception(timeout_exception, exception_message)
  File "/home/gyf/.local/lib/python3.5/site-packages/timeout_decorator/timeout_decorator.py", line 45, in _raise_exception
    raise exception()
timeout_decorator.timeout_decorator.TimeoutError: 'Timed Out'

但我使用 subscribe.simple API 失败了

import timeout_decorator

@timeout_decorator.timeout(5)
def sub():
    # print(type(msg))
    print("----before simple")
    # threading.Timer(5,operateFail,args=)
    msg = subscribe.simple("paho/test/simple", hostname=MQTT_IP,port=MQTT_PORT,)
    print("----after simple")
    return msg


publish.single("paho/test/single", "cloud to device", qos=2, hostname=MQTT_IP,port=MQTT_PORT)
try:
    print("pub")
    msg = sub()
    print(msg)
except StopIteration as identifier:
    print("error")

结果无限等待

pub
----before simple

我想要包含 subscribe.simple API 的函数可以在 5 秒后停止。

最佳答案

Asyncio 将无法在同一个线程中处理阻塞函数。因此使用 asyncio.wait_for 失败。然而,灵感来自 this blog post我使用 loop.run_in_executor 来控制阻塞线程。

from paho.mqtt import subscribe
import asyncio

MQTT_IP = "localhost"
MQTT_PORT = 1883
msg = None


def possibly_blocking_function():
    global msg
    print("listenning for message")
    msg = subscribe.simple(
        "paho/test/simple",
        hostname=MQTT_IP,
        port=MQTT_PORT,
    )
    print("message received!")


async def main():
    print("----before simple")
    try:
        await asyncio.wait_for(
            loop.run_in_executor(None, possibly_blocking_function), timeout=5
        )
    except asyncio.TimeoutError:
        pass
    print("----after simple")

loop = asyncio.get_event_loop()
loop.run_until_complete(main())

输出:

----before simple
listenning for message
----after simple

请注意这并不完美,程序不会结束,因为有正在运行的任务。您可以使用各种解决方案退出它,但这超出了范围,因为我仍在寻找一种干净的方法来关闭那个卡住的线程。

https://stackoverflow.com/questions/57377490/

相关文章:

wordpress - 在 Yoast 生成的 JSON-LD 模式中更改作者 @id

leaflet - 如果单个标记不在或靠近集群,则无法呈现

reactjs - 从 create-react-app 生成生产构建时缺少 index.html

python - Tweepy Cursor.items() 无法按预期使用 api.retweet

java - Spring WebFlux : How to access Request Body

android-mediacodec - 如何找到 Google Pixel 2 手机的硬件解码器实

vhdl - 什么是{globally|locally} static {primary|expre

swiftui - 如何从 Viewcontroller 中关闭 swiftUI?

swift - Swift 中 MSAL 和 AD B2C 的登录问题

python - Jupyter 实验室中的后台线程时钟