2022-07-08 23:55:31 +00:00
|
|
|
"""Models for bluetooth."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
2022-08-22 18:02:26 +00:00
|
|
|
from abc import abstractmethod
|
2022-07-08 23:55:31 +00:00
|
|
|
import asyncio
|
2022-08-17 00:52:53 +00:00
|
|
|
from collections.abc import Callable
|
2022-07-08 23:55:31 +00:00
|
|
|
import contextlib
|
2022-08-17 00:52:53 +00:00
|
|
|
from dataclasses import dataclass
|
|
|
|
from enum import Enum
|
2022-07-08 23:55:31 +00:00
|
|
|
import logging
|
2022-08-01 15:54:06 +00:00
|
|
|
from typing import TYPE_CHECKING, Any, Final
|
2022-07-08 23:55:31 +00:00
|
|
|
|
2022-08-17 21:42:12 +00:00
|
|
|
from bleak import BleakClient, BleakError
|
2022-09-24 01:09:28 +00:00
|
|
|
from bleak.backends.client import BaseBleakClient, get_platform_client_backend_type
|
2022-08-17 21:42:12 +00:00
|
|
|
from bleak.backends.device import BLEDevice
|
2022-07-11 15:14:00 +00:00
|
|
|
from bleak.backends.scanner import (
|
|
|
|
AdvertisementData,
|
|
|
|
AdvertisementDataCallback,
|
|
|
|
BaseBleakScanner,
|
|
|
|
)
|
2022-09-24 01:09:28 +00:00
|
|
|
from bleak_retry_connector import freshen_ble_device
|
2022-07-08 23:55:31 +00:00
|
|
|
|
2022-09-24 01:09:28 +00:00
|
|
|
from homeassistant.core import CALLBACK_TYPE, callback as hass_callback
|
2022-08-17 21:42:12 +00:00
|
|
|
from homeassistant.helpers.frame import report
|
2022-08-17 00:52:53 +00:00
|
|
|
from homeassistant.helpers.service_info.bluetooth import BluetoothServiceInfo
|
2022-07-08 23:55:31 +00:00
|
|
|
|
2022-09-24 01:09:28 +00:00
|
|
|
from .const import NO_RSSI_VALUE
|
|
|
|
|
2022-08-01 15:54:06 +00:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
|
2022-08-17 20:51:56 +00:00
|
|
|
from .manager import BluetoothManager
|
|
|
|
|
2022-08-01 15:54:06 +00:00
|
|
|
|
2022-07-08 23:55:31 +00:00
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
FILTER_UUIDS: Final = "UUIDs"
|
|
|
|
|
2022-08-17 20:51:56 +00:00
|
|
|
MANAGER: BluetoothManager | None = None
|
2022-07-08 23:55:31 +00:00
|
|
|
|
|
|
|
|
2022-08-17 00:52:53 +00:00
|
|
|
@dataclass
|
|
|
|
class BluetoothServiceInfoBleak(BluetoothServiceInfo):
|
|
|
|
"""BluetoothServiceInfo with bleak data.
|
|
|
|
|
|
|
|
Integrations may need BLEDevice and AdvertisementData
|
|
|
|
to connect to the device without having bleak trigger
|
|
|
|
another scan to translate the address to the system's
|
|
|
|
internal details.
|
|
|
|
"""
|
|
|
|
|
|
|
|
device: BLEDevice
|
|
|
|
advertisement: AdvertisementData
|
2022-08-22 18:02:26 +00:00
|
|
|
connectable: bool
|
|
|
|
time: float
|
2022-08-17 00:52:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
class BluetoothScanningMode(Enum):
|
|
|
|
"""The mode of scanning for bluetooth devices."""
|
|
|
|
|
|
|
|
PASSIVE = "passive"
|
|
|
|
ACTIVE = "active"
|
|
|
|
|
|
|
|
|
|
|
|
BluetoothChange = Enum("BluetoothChange", "ADVERTISEMENT")
|
|
|
|
BluetoothCallback = Callable[[BluetoothServiceInfoBleak, BluetoothChange], None]
|
|
|
|
ProcessAdvertisementCallback = Callable[[BluetoothServiceInfoBleak], bool]
|
|
|
|
|
|
|
|
|
2022-09-24 01:09:28 +00:00
|
|
|
@dataclass
|
|
|
|
class HaBluetoothConnector:
|
|
|
|
"""Data for how to connect a BLEDevice from a given scanner."""
|
|
|
|
|
|
|
|
client: type[BaseBleakClient]
|
|
|
|
source: str
|
|
|
|
can_connect: Callable[[], bool]
|
|
|
|
|
|
|
|
|
|
|
|
@dataclass
|
|
|
|
class _HaWrappedBleakBackend:
|
|
|
|
"""Wrap bleak backend to make it usable by Home Assistant."""
|
|
|
|
|
|
|
|
device: BLEDevice
|
|
|
|
client: type[BaseBleakClient]
|
|
|
|
|
|
|
|
|
2022-08-22 18:02:26 +00:00
|
|
|
class BaseHaScanner:
|
|
|
|
"""Base class for Ha Scanners."""
|
|
|
|
|
|
|
|
@property
|
|
|
|
@abstractmethod
|
|
|
|
def discovered_devices(self) -> list[BLEDevice]:
|
|
|
|
"""Return a list of discovered devices."""
|
|
|
|
|
2022-09-26 13:12:08 +00:00
|
|
|
@abstractmethod
|
|
|
|
async def async_get_device_by_address(self, address: str) -> BLEDevice | None:
|
|
|
|
"""Get a device by address."""
|
|
|
|
|
2022-08-27 21:41:49 +00:00
|
|
|
async def async_diagnostics(self) -> dict[str, Any]:
|
|
|
|
"""Return diagnostic information about the scanner."""
|
|
|
|
return {
|
|
|
|
"type": self.__class__.__name__,
|
|
|
|
"discovered_devices": [
|
|
|
|
{
|
|
|
|
"name": device.name,
|
|
|
|
"address": device.address,
|
|
|
|
"rssi": device.rssi,
|
|
|
|
}
|
|
|
|
for device in self.discovered_devices
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
2022-08-22 18:02:26 +00:00
|
|
|
|
2022-07-30 00:53:33 +00:00
|
|
|
class HaBleakScannerWrapper(BaseBleakScanner):
|
2022-07-08 23:55:31 +00:00
|
|
|
"""A wrapper that uses the single instance."""
|
|
|
|
|
2022-07-30 00:53:33 +00:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
*args: Any,
|
|
|
|
detection_callback: AdvertisementDataCallback | None = None,
|
|
|
|
service_uuids: list[str] | None = None,
|
|
|
|
**kwargs: Any,
|
|
|
|
) -> None:
|
2022-07-08 23:55:31 +00:00
|
|
|
"""Initialize the BleakScanner."""
|
|
|
|
self._detection_cancel: CALLBACK_TYPE | None = None
|
|
|
|
self._mapped_filters: dict[str, set[str]] = {}
|
2022-08-22 18:02:26 +00:00
|
|
|
self._advertisement_data_callback: AdvertisementDataCallback | None = None
|
2022-07-30 00:53:33 +00:00
|
|
|
remapped_kwargs = {
|
|
|
|
"detection_callback": detection_callback,
|
|
|
|
"service_uuids": service_uuids or [],
|
|
|
|
**kwargs,
|
|
|
|
}
|
|
|
|
self._map_filters(*args, **remapped_kwargs)
|
|
|
|
super().__init__(
|
|
|
|
detection_callback=detection_callback, service_uuids=service_uuids or []
|
|
|
|
)
|
2022-07-08 23:55:31 +00:00
|
|
|
|
2022-09-24 01:09:28 +00:00
|
|
|
@classmethod
|
|
|
|
async def discover(cls, timeout: float = 5.0, **kwargs: Any) -> list[BLEDevice]:
|
|
|
|
"""Discover devices."""
|
|
|
|
assert MANAGER is not None
|
|
|
|
return list(MANAGER.async_discovered_devices(True))
|
|
|
|
|
2022-07-08 23:55:31 +00:00
|
|
|
async def stop(self, *args: Any, **kwargs: Any) -> None:
|
|
|
|
"""Stop scanning for devices."""
|
|
|
|
|
|
|
|
async def start(self, *args: Any, **kwargs: Any) -> None:
|
|
|
|
"""Start scanning for devices."""
|
2022-07-11 15:14:00 +00:00
|
|
|
|
|
|
|
def _map_filters(self, *args: Any, **kwargs: Any) -> bool:
|
|
|
|
"""Map the filters."""
|
|
|
|
mapped_filters = {}
|
|
|
|
if filters := kwargs.get("filters"):
|
2022-07-17 21:13:12 +00:00
|
|
|
if filter_uuids := filters.get(FILTER_UUIDS):
|
|
|
|
mapped_filters[FILTER_UUIDS] = set(filter_uuids)
|
|
|
|
else:
|
2022-07-11 15:14:00 +00:00
|
|
|
_LOGGER.warning("Only %s filters are supported", FILTER_UUIDS)
|
|
|
|
if service_uuids := kwargs.get("service_uuids"):
|
|
|
|
mapped_filters[FILTER_UUIDS] = set(service_uuids)
|
|
|
|
if mapped_filters == self._mapped_filters:
|
|
|
|
return False
|
|
|
|
self._mapped_filters = mapped_filters
|
|
|
|
return True
|
|
|
|
|
|
|
|
def set_scanning_filter(self, *args: Any, **kwargs: Any) -> None:
|
|
|
|
"""Set the filters to use."""
|
|
|
|
if self._map_filters(*args, **kwargs):
|
|
|
|
self._setup_detection_callback()
|
2022-07-08 23:55:31 +00:00
|
|
|
|
|
|
|
def _cancel_callback(self) -> None:
|
|
|
|
"""Cancel callback."""
|
|
|
|
if self._detection_cancel:
|
|
|
|
self._detection_cancel()
|
|
|
|
self._detection_cancel = None
|
|
|
|
|
|
|
|
@property
|
|
|
|
def discovered_devices(self) -> list[BLEDevice]:
|
|
|
|
"""Return a list of discovered devices."""
|
2022-08-17 20:51:56 +00:00
|
|
|
assert MANAGER is not None
|
2022-08-22 18:02:26 +00:00
|
|
|
return list(MANAGER.async_discovered_devices(True))
|
2022-07-08 23:55:31 +00:00
|
|
|
|
2022-07-30 00:53:33 +00:00
|
|
|
def register_detection_callback(
|
|
|
|
self, callback: AdvertisementDataCallback | None
|
|
|
|
) -> None:
|
2022-07-08 23:55:31 +00:00
|
|
|
"""Register a callback that is called when a device is discovered or has a property changed.
|
|
|
|
|
|
|
|
This method takes the callback and registers it with the long running
|
|
|
|
scanner.
|
|
|
|
"""
|
2022-08-22 18:02:26 +00:00
|
|
|
self._advertisement_data_callback = callback
|
2022-07-11 15:14:00 +00:00
|
|
|
self._setup_detection_callback()
|
|
|
|
|
|
|
|
def _setup_detection_callback(self) -> None:
|
|
|
|
"""Set up the detection callback."""
|
2022-08-22 18:02:26 +00:00
|
|
|
if self._advertisement_data_callback is None:
|
2022-07-11 15:14:00 +00:00
|
|
|
return
|
2022-07-08 23:55:31 +00:00
|
|
|
self._cancel_callback()
|
2022-08-22 18:02:26 +00:00
|
|
|
super().register_detection_callback(self._advertisement_data_callback)
|
2022-08-17 20:51:56 +00:00
|
|
|
assert MANAGER is not None
|
2022-07-30 00:53:33 +00:00
|
|
|
assert self._callback is not None
|
2022-08-17 20:51:56 +00:00
|
|
|
self._detection_cancel = MANAGER.async_register_bleak_callback(
|
2022-07-08 23:55:31 +00:00
|
|
|
self._callback, self._mapped_filters
|
|
|
|
)
|
|
|
|
|
|
|
|
def __del__(self) -> None:
|
|
|
|
"""Delete the BleakScanner."""
|
|
|
|
if self._detection_cancel:
|
|
|
|
# Nothing to do if event loop is already closed
|
|
|
|
with contextlib.suppress(RuntimeError):
|
|
|
|
asyncio.get_running_loop().call_soon_threadsafe(self._detection_cancel)
|
2022-08-17 21:42:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
class HaBleakClientWrapper(BleakClient):
|
|
|
|
"""Wrap the BleakClient to ensure it does not shutdown our scanner.
|
|
|
|
|
|
|
|
If an address is passed into BleakClient instead of a BLEDevice,
|
|
|
|
bleak will quietly start a new scanner under the hood to resolve
|
|
|
|
the address. This can cause a conflict with our scanner. We need
|
|
|
|
to handle translating the address to the BLEDevice in this case
|
|
|
|
to avoid the whole stack from getting stuck in an in progress state
|
|
|
|
when an integration does this.
|
|
|
|
"""
|
|
|
|
|
2022-09-24 01:09:28 +00:00
|
|
|
def __init__( # pylint: disable=super-init-not-called, keyword-arg-before-vararg
|
|
|
|
self,
|
|
|
|
address_or_ble_device: str | BLEDevice,
|
|
|
|
disconnected_callback: Callable[[BleakClient], None] | None = None,
|
|
|
|
*args: Any,
|
|
|
|
timeout: float = 10.0,
|
|
|
|
**kwargs: Any,
|
2022-08-17 21:42:12 +00:00
|
|
|
) -> None:
|
|
|
|
"""Initialize the BleakClient."""
|
|
|
|
if isinstance(address_or_ble_device, BLEDevice):
|
2022-09-24 01:09:28 +00:00
|
|
|
self.__address = address_or_ble_device.address
|
|
|
|
else:
|
|
|
|
report(
|
|
|
|
"attempted to call BleakClient with an address instead of a BLEDevice",
|
|
|
|
exclude_integrations={"bluetooth"},
|
|
|
|
error_if_core=False,
|
|
|
|
)
|
|
|
|
self.__address = address_or_ble_device
|
|
|
|
self.__disconnected_callback = disconnected_callback
|
|
|
|
self.__timeout = timeout
|
|
|
|
self._backend: BaseBleakClient | None = None # type: ignore[assignment]
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_connected(self) -> bool:
|
|
|
|
"""Return True if the client is connected to a device."""
|
|
|
|
return self._backend is not None and self._backend.is_connected
|
|
|
|
|
|
|
|
def set_disconnected_callback(
|
|
|
|
self,
|
|
|
|
callback: Callable[[BleakClient], None] | None,
|
|
|
|
**kwargs: Any,
|
|
|
|
) -> None:
|
|
|
|
"""Set the disconnect callback."""
|
|
|
|
self.__disconnected_callback = callback
|
|
|
|
if self._backend:
|
|
|
|
self._backend.set_disconnected_callback(callback, **kwargs) # type: ignore[arg-type]
|
|
|
|
|
|
|
|
async def connect(self, **kwargs: Any) -> bool:
|
|
|
|
"""Connect to the specified GATT server."""
|
|
|
|
if not self._backend:
|
2022-09-26 13:12:08 +00:00
|
|
|
wrapped_backend = (
|
|
|
|
self._async_get_backend() or await self._async_get_fallback_backend()
|
|
|
|
)
|
2022-09-24 01:09:28 +00:00
|
|
|
self._backend = wrapped_backend.client(
|
|
|
|
await freshen_ble_device(wrapped_backend.device)
|
|
|
|
or wrapped_backend.device,
|
|
|
|
disconnected_callback=self.__disconnected_callback,
|
|
|
|
timeout=self.__timeout,
|
|
|
|
)
|
|
|
|
return await super().connect(**kwargs)
|
|
|
|
|
|
|
|
@hass_callback
|
|
|
|
def _async_get_backend_for_ble_device(
|
|
|
|
self, ble_device: BLEDevice
|
|
|
|
) -> _HaWrappedBleakBackend | None:
|
|
|
|
"""Get the backend for a BLEDevice."""
|
|
|
|
details = ble_device.details
|
|
|
|
if not isinstance(details, dict) or "connector" not in details:
|
|
|
|
# If client is not defined in details
|
|
|
|
# its the client for this platform
|
|
|
|
cls = get_platform_client_backend_type()
|
|
|
|
return _HaWrappedBleakBackend(ble_device, cls)
|
|
|
|
|
|
|
|
connector: HaBluetoothConnector = details["connector"]
|
|
|
|
# Make sure the backend can connect to the device
|
|
|
|
# as some backends have connection limits
|
|
|
|
if not connector.can_connect():
|
|
|
|
return None
|
|
|
|
|
|
|
|
return _HaWrappedBleakBackend(ble_device, connector.client)
|
|
|
|
|
|
|
|
@hass_callback
|
2022-09-26 13:12:08 +00:00
|
|
|
def _async_get_backend(self) -> _HaWrappedBleakBackend | None:
|
2022-09-24 01:09:28 +00:00
|
|
|
"""Get the bleak backend for the given address."""
|
2022-08-17 21:42:12 +00:00
|
|
|
assert MANAGER is not None
|
2022-09-24 01:09:28 +00:00
|
|
|
address = self.__address
|
|
|
|
ble_device = MANAGER.async_ble_device_from_address(address, True)
|
2022-08-17 21:42:12 +00:00
|
|
|
if ble_device is None:
|
2022-09-24 01:09:28 +00:00
|
|
|
raise BleakError(f"No device found for address {address}")
|
|
|
|
|
|
|
|
if backend := self._async_get_backend_for_ble_device(ble_device):
|
|
|
|
return backend
|
|
|
|
|
2022-09-26 13:12:08 +00:00
|
|
|
return None
|
|
|
|
|
|
|
|
async def _async_get_fallback_backend(self) -> _HaWrappedBleakBackend:
|
|
|
|
"""Get a fallback backend for the given address."""
|
2022-09-24 01:09:28 +00:00
|
|
|
#
|
|
|
|
# The preferred backend cannot currently connect the device
|
|
|
|
# because it is likely out of connection slots.
|
|
|
|
#
|
|
|
|
# We need to try all backends to find one that can
|
|
|
|
# connect to the device.
|
|
|
|
#
|
2022-09-26 13:12:08 +00:00
|
|
|
assert MANAGER is not None
|
|
|
|
address = self.__address
|
|
|
|
devices = await MANAGER.async_get_devices_by_address(address, True)
|
2022-09-24 01:09:28 +00:00
|
|
|
for ble_device in sorted(
|
2022-09-26 13:12:08 +00:00
|
|
|
devices,
|
2022-09-24 01:09:28 +00:00
|
|
|
key=lambda ble_device: ble_device.rssi or NO_RSSI_VALUE,
|
|
|
|
reverse=True,
|
|
|
|
):
|
|
|
|
if backend := self._async_get_backend_for_ble_device(ble_device):
|
|
|
|
return backend
|
|
|
|
|
|
|
|
raise BleakError(
|
|
|
|
f"No backend with an available connection slot that can reach address {address} was found"
|
|
|
|
)
|
|
|
|
|
|
|
|
async def disconnect(self) -> bool:
|
|
|
|
"""Disconnect from the device."""
|
|
|
|
if self._backend is None:
|
|
|
|
return True
|
|
|
|
return await self._backend.disconnect()
|