Make sure that any existing device monitor is terminated upon disconnection

This commit is contained in:
Fabio Manganiello 2023-01-07 23:48:02 +01:00
parent 40bdc3b7f3
commit 7d90b274ae
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 4 additions and 2 deletions

View File

@ -213,7 +213,6 @@ class HidPlugin(RunnablePlugin):
for path in new_device_paths:
device = scanned_devices[path]
get_bus().post(HidDeviceConnectedEvent(**device))
monitor_rule = self._get_monitor_rule(device)
if monitor_rule:
self._register_device_monitor(device, monitor_rule)
@ -227,7 +226,10 @@ class HidPlugin(RunnablePlugin):
lost_device_paths = available_device_paths.difference(scanned_device_paths)
for path in lost_device_paths:
get_bus().post(HidDeviceDisconnectedEvent(**self._available_devices[path]))
device = self._available_devices.get(path)
if device:
get_bus().post(HidDeviceDisconnectedEvent(**device))
self._unregister_device_monitor(device['path'])
def _handle_device_events(self, scanned_devices: dict):
"""