1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
|
# Subscribing to a topic
To receive messages for a topic, we need to subscribe to it. Incoming messages are queued internally. You can use the `Client.messages` generator to iterate over incoming messages. This is a minimal working example that listens for messages to the `temperature/#` wildcard:
```python
import asyncio
import aiomqtt
async def main():
async with aiomqtt.Client("test.mosquitto.org") as client:
await client.subscribe("temperature/#")
async for message in client.messages:
print(message.payload)
asyncio.run(main())
```
Now you can use the [minimal publisher example](publishing-a-message.md) to publish a message to `temperature/outside` and see it appear in the console.
```{tip}
You can set the [Quality of Service](publishing-a-message.md#quality-of-service-qos) of the subscription by passing the `qos` parameter to `Client.subscribe()`.
```
## Filtering messages
Imagine that we measure temperature and humidity on the outside and inside. We want to receive all types of measurements but handle them differently.
You can filter messages with `Topic.matches()`. Similar to `Client.subscribe()`, `Topic.matches()` also accepts wildcards (e.g. `temperature/#`):
```python
import asyncio
import aiomqtt
async def main():
async with aiomqtt.Client("test.mosquitto.org") as client:
await client.subscribe("temperature/#")
await client.subscribe("humidity/#")
async for message in client.messages:
if message.topic.matches("humidity/inside"):
print("A:", message.payload)
if message.topic.matches("+/outside"):
print("B:", message.payload)
if message.topic.matches("temperature/#"):
print("C:", message.payload)
asyncio.run(main())
```
```{note}
In our example, messages to `temperature/outside` are handled twice!
```
```{tip}
For details on the `+` and `#` wildcards and what topics they match, see the [OASIS specification](https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901241).
```
## The message queue
Messages are queued internally and returned sequentially from `Client.messages`.
The default queue is `asyncio.Queue` which returns messages on a FIFO ("first in first out") basis. You can pass [other types of asyncio queues](https://docs.python.org/3/library/asyncio-queue.html) as `queue_type` to the `Client` to modify the order in which messages are returned, e.g. `asyncio.LifoQueue`.
You can subclass `asyncio.PriorityQueue` to queue based on priority. Messages are returned ascendingly by their priority values. In the case of ties, messages with lower message identifiers are returned first.
Let's say we measure temperature and humidity again, but we want to prioritize humidity:
```python
import asyncio
import aiomqtt
class CustomPriorityQueue(asyncio.PriorityQueue):
def _put(self, item):
priority = 2
if item.topic.matches("humidity/#"): # Assign priority
priority = 1
super()._put((priority, item))
def _get(self):
return super()._get()[1]
async def main():
async with aiomqtt.Client(
"test.mosquitto.org", queue_type=CustomPriorityQueue
) as client:
await client.subscribe("temperature/#")
await client.subscribe("humidity/#")
async for message in client.messages:
print(message.payload)
asyncio.run(main())
```
```{tip}
By default, the size of the queue is unlimited. You can set a limit through the client's `max_queued_incoming_messages` argument. `len(client.messages)` returns the current number of messages in the queue.
```
## Processing concurrently
Messages are queued internally and returned sequentially from `Client.messages`. If a message takes a long time to handle, it blocks the handling of other messages.
You can handle messages concurrently by using multiple worker tasks like so:
```python
import asyncio
import aiomqtt
async def work(client):
async for message in client.messages:
await asyncio.sleep(5) # Simulate some I/O-bound work
print(message.payload)
async def main():
async with aiomqtt.Client("test.mosquitto.org") as client:
await client.subscribe("temperature/#")
# Use a task group to manage and await all worker tasks
async with asyncio.TaskGroup() as tg:
for _ in range(2): # You can use more than two workers here
tg.create_task(work(client))
asyncio.run(main())
```
```{important}
Coroutines only make sense if your message handling is I/O-bound. If it's CPU-bound, you should spawn multiple processes instead.
```
## Listening without blocking
When you run the minimal example for subscribing and listening for messages, you'll notice that the program doesn't finish. Waiting for messages through the `Client.messages()` generator blocks the execution of everything that comes afterward.
In case you want to run other code after starting your listener, this is not very practical.
You can use `asyncio.TaskGroup` (or `asyncio.gather` for Python `<3.11`) to safely run other tasks alongside the MQTT listener:
```python
import asyncio
import aiomqtt
async def sleep(seconds):
# Some other task that needs to run concurrently
await asyncio.sleep(seconds)
print(f"Slept for {seconds} seconds!")
async def listen():
async with aiomqtt.Client("test.mosquitto.org") as client:
await client.subscribe("temperature/#")
async for message in client.messages:
print(message.payload)
async def main():
# Use a task group to manage and await all tasks
async with asyncio.TaskGroup() as tg:
tg.create_task(sleep(2))
tg.create_task(listen()) # Start the listener task
tg.create_task(sleep(3))
tg.create_task(sleep(1))
asyncio.run(main())
```
In case task groups are not an option (e.g. because you run aiomqtt [alongside a web framework](alongside-fastapi-and-co.md)) you can start the listener in a fire-and-forget way. The idea is to use asyncio's `create_task` without awaiting the created task:
```{caution}
You need to be a bit careful with this approach. Exceptions raised in asyncio tasks are propagated only when we `await` the task. In this case, we explicitly don't.
You need to handle all possible exceptions _inside_ the fire-and-forget task. Unhandled exceptions will be silently ignored until the program exits.
```
```python
import asyncio
import aiomqtt
async def listen():
async with aiomqtt.Client("test.mosquitto.org") as client:
await client.subscribe("temperature/#")
async for message in client.messages:
print(message.payload)
background_tasks = set()
async def main():
loop = asyncio.get_event_loop()
# Listen for mqtt messages in an (unawaited) asyncio task
task = loop.create_task(listen())
# Save a reference to the task so it doesn't get garbage collected
background_tasks.add(task)
task.add_done_callback(background_tasks.remove)
# Infinitely do something else (e.g. handling HTTP requests)
while True:
await asyncio.sleep(1)
asyncio.run(main())
```
```{important}
You [need to keep a reference to the task](https://docs.python.org/3/library/asyncio-task.html#creating-tasks) so it doesn't get garbage collected mid-execution. That's what we're using the `background_tasks` set in our example for.
```
## Stop listening
You might want to have a listener task running alongside other code, and then stop it when you're done. You can use [`asyncio.Task.cancel()`](https://docs.python.org/3/library/asyncio-task.html#asyncio.Task.cancel) for this:
```python
import asyncio
import aiomqtt
async def listen():
async with aiomqtt.Client("test.mosquitto.org") as client:
await client.subscribe("temperature/#")
async for message in client.messages:
print(message.payload)
async def main():
loop = asyncio.get_event_loop()
# Listen for MQTT messages in (unawaited) asyncio task
task = loop.create_task(listen())
# Do something else for a while
await asyncio.sleep(5)
# Cancel the task
task.cancel()
# Wait for the task to be cancelled
try:
await task
except asyncio.CancelledError:
pass
asyncio.run(main())
```
## Stop listening after timeout
For use cases where you only want to listen to messages for a certain amount of time, we can use [asyncio's timeouts](https://docs.python.org/3/library/asyncio-task.html#timeouts), which were introduced in Python `3.11`:
```python
import asyncio
import aiomqtt
async def listen():
async with aiomqtt.Client("test.mosquitto.org") as client:
await client.subscribe("temperature/#")
async for message in client.messages:
print(message.payload)
async def main():
try:
# Cancel the listener task after 5 seconds
async with asyncio.timeout(5):
await listen()
# Ignore the resulting TimeoutError
except asyncio.TimeoutError:
pass
asyncio.run(main())
```
|