device.py 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. """Library to handle connection with Switchbot."""
  2. from __future__ import annotations
  3. import asyncio
  4. import binascii
  5. import logging
  6. from typing import Any
  7. from uuid import UUID
  8. import async_timeout
  9. from bleak import BleakError
  10. from bleak.backends.device import BLEDevice
  11. from bleak.backends.service import BleakGATTCharacteristic, BleakGATTServiceCollection
  12. from bleak.exc import BleakDBusError
  13. from bleak_retry_connector import (
  14. BleakClientWithServiceCache,
  15. BleakNotFoundError,
  16. ble_device_has_changed,
  17. establish_connection,
  18. )
  19. from ..const import DEFAULT_RETRY_COUNT, DEFAULT_SCAN_TIMEOUT
  20. from ..discovery import GetSwitchbotDevices
  21. from ..models import SwitchBotAdvertisement
  22. _LOGGER = logging.getLogger(__name__)
  23. # Keys common to all device types
  24. DEVICE_GET_BASIC_SETTINGS_KEY = "5702"
  25. DEVICE_SET_MODE_KEY = "5703"
  26. DEVICE_SET_EXTENDED_KEY = "570f"
  27. # Base key when encryption is set
  28. KEY_PASSWORD_PREFIX = "571"
  29. BLEAK_EXCEPTIONS = (AttributeError, BleakError, asyncio.exceptions.TimeoutError)
  30. # How long to hold the connection
  31. # to wait for additional commands for
  32. # disconnecting the device.
  33. DISCONNECT_DELAY = 49
  34. class CharacteristicMissingError(Exception):
  35. """Raised when a characteristic is missing."""
  36. def _sb_uuid(comms_type: str = "service") -> UUID | str:
  37. """Return Switchbot UUID."""
  38. _uuid = {"tx": "002", "rx": "003", "service": "d00"}
  39. if comms_type in _uuid:
  40. return UUID(f"cba20{_uuid[comms_type]}-224d-11e6-9fb8-0002a5d5c51b")
  41. return "Incorrect type, choose between: tx, rx or service"
  42. READ_CHAR_UUID = _sb_uuid(comms_type="rx")
  43. WRITE_CHAR_UUID = _sb_uuid(comms_type="tx")
  44. class SwitchbotDevice:
  45. """Base Representation of a Switchbot Device."""
  46. def __init__(
  47. self,
  48. device: BLEDevice,
  49. password: str | None = None,
  50. interface: int = 0,
  51. **kwargs: Any,
  52. ) -> None:
  53. """Switchbot base class constructor."""
  54. self._interface = f"hci{interface}"
  55. self._device = device
  56. self._sb_adv_data: SwitchBotAdvertisement | None = None
  57. self._scan_timeout: int = kwargs.pop("scan_timeout", DEFAULT_SCAN_TIMEOUT)
  58. self._retry_count: int = kwargs.pop("retry_count", DEFAULT_RETRY_COUNT)
  59. self._connect_lock = asyncio.Lock()
  60. self._operation_lock = asyncio.Lock()
  61. if password is None or password == "":
  62. self._password_encoded = None
  63. else:
  64. self._password_encoded = "%08x" % (
  65. binascii.crc32(password.encode("ascii")) & 0xFFFFFFFF
  66. )
  67. self._client: BleakClientWithServiceCache | None = None
  68. self._cached_services: BleakGATTServiceCollection | None = None
  69. self._read_char: BleakGATTCharacteristic | None = None
  70. self._write_char: BleakGATTCharacteristic | None = None
  71. self._disconnect_timer: asyncio.TimerHandle | None = None
  72. self._expected_disconnect = False
  73. self.loop = asyncio.get_event_loop()
  74. def _commandkey(self, key: str) -> str:
  75. """Add password to key if set."""
  76. if self._password_encoded is None:
  77. return key
  78. key_action = key[3]
  79. key_suffix = key[4:]
  80. return KEY_PASSWORD_PREFIX + key_action + self._password_encoded + key_suffix
  81. async def _sendcommand(self, key: str, retry: int | None = None) -> bytes:
  82. """Send command to device and read response."""
  83. if retry is None:
  84. retry = self._retry_count
  85. command = bytearray.fromhex(self._commandkey(key))
  86. _LOGGER.debug("%s: Sending command %s", self.name, command)
  87. if self._operation_lock.locked():
  88. _LOGGER.debug(
  89. "%s: Operation already in progress, waiting for it to complete; RSSI: %s",
  90. self.name,
  91. self.rssi,
  92. )
  93. max_attempts = retry + 1
  94. if self._operation_lock.locked():
  95. _LOGGER.debug(
  96. "%s: Operation already in progress, waiting for it to complete; RSSI: %s",
  97. self.name,
  98. self.rssi,
  99. )
  100. async with self._operation_lock:
  101. for attempt in range(max_attempts):
  102. try:
  103. return await self._send_command_locked(key, command)
  104. except BleakNotFoundError:
  105. _LOGGER.error(
  106. "%s: device not found or no longer in range; Try restarting Bluetooth",
  107. self.name,
  108. exc_info=True,
  109. )
  110. return b"\x00"
  111. except CharacteristicMissingError as ex:
  112. if attempt == retry:
  113. _LOGGER.error(
  114. "%s: characteristic missing: %s; Stopping trying; RSSI: %s",
  115. self.name,
  116. ex,
  117. self.rssi,
  118. exc_info=True,
  119. )
  120. return b"\x00"
  121. _LOGGER.debug(
  122. "%s: characteristic missing: %s; RSSI: %s",
  123. self.name,
  124. ex,
  125. self.rssi,
  126. exc_info=True,
  127. )
  128. except BLEAK_EXCEPTIONS:
  129. if attempt == retry:
  130. _LOGGER.error(
  131. "%s: communication failed; Stopping trying; RSSI: %s",
  132. self.name,
  133. self.rssi,
  134. exc_info=True,
  135. )
  136. return b"\x00"
  137. _LOGGER.debug(
  138. "%s: communication failed with:", self.name, exc_info=True
  139. )
  140. raise RuntimeError("Unreachable")
  141. @property
  142. def name(self) -> str:
  143. """Return device name."""
  144. return f"{self._device.name} ({self._device.address})"
  145. @property
  146. def rssi(self) -> int:
  147. """Return RSSI of device."""
  148. return self._get_adv_value("rssi")
  149. async def _ensure_connected(self):
  150. """Ensure connection to device is established."""
  151. if self._connect_lock.locked():
  152. _LOGGER.debug(
  153. "%s: Connection already in progress, waiting for it to complete; RSSI: %s",
  154. self.name,
  155. self.rssi,
  156. )
  157. if self._client and self._client.is_connected:
  158. self._reset_disconnect_timer()
  159. return
  160. async with self._connect_lock:
  161. # Check again while holding the lock
  162. if self._client and self._client.is_connected:
  163. self._reset_disconnect_timer()
  164. return
  165. _LOGGER.debug("%s: Connecting; RSSI: %s", self.name, self.rssi)
  166. client = await establish_connection(
  167. BleakClientWithServiceCache,
  168. self._device,
  169. self.name,
  170. self._disconnected,
  171. cached_services=self._cached_services,
  172. ble_device_callback=lambda: self._device,
  173. )
  174. _LOGGER.debug("%s: Connected; RSSI: %s", self.name, self.rssi)
  175. resolved = self._resolve_characteristics(client.services)
  176. if not resolved:
  177. # Try to handle services failing to load
  178. resolved = self._resolve_characteristics(await client.get_services())
  179. self._cached_services = client.services if resolved else None
  180. self._client = client
  181. self._reset_disconnect_timer()
  182. def _resolve_characteristics(self, services: BleakGATTServiceCollection) -> bool:
  183. """Resolve characteristics."""
  184. self._read_char = services.get_characteristic(READ_CHAR_UUID)
  185. self._write_char = services.get_characteristic(WRITE_CHAR_UUID)
  186. return bool(self._read_char and self._write_char)
  187. def _reset_disconnect_timer(self):
  188. """Reset disconnect timer."""
  189. if self._disconnect_timer:
  190. self._disconnect_timer.cancel()
  191. self._expected_disconnect = False
  192. self._disconnect_timer = self.loop.call_later(
  193. DISCONNECT_DELAY, self._disconnect
  194. )
  195. def _disconnected(self, client: BleakClientWithServiceCache) -> None:
  196. """Disconnected callback."""
  197. if self._expected_disconnect:
  198. _LOGGER.debug(
  199. "%s: Disconnected from device; RSSI: %s", self.name, self.rssi
  200. )
  201. return
  202. _LOGGER.warning(
  203. "%s: Device unexpectedly disconnected; RSSI: %s",
  204. self.name,
  205. self.rssi,
  206. )
  207. def _disconnect(self):
  208. """Disconnect from device."""
  209. self._disconnect_timer = None
  210. asyncio.create_task(self._execute_timed_disconnect())
  211. async def _execute_timed_disconnect(self):
  212. """Execute timed disconnection."""
  213. _LOGGER.debug(
  214. "%s: Disconnecting after timeout of %s",
  215. self.name,
  216. DISCONNECT_DELAY,
  217. )
  218. await self._execute_disconnect()
  219. async def _execute_disconnect(self):
  220. """Execute disconnection."""
  221. async with self._connect_lock:
  222. client = self._client
  223. self._expected_disconnect = True
  224. self._client = None
  225. self._read_char = None
  226. self._write_char = None
  227. if client and client.is_connected:
  228. await client.disconnect()
  229. async def _send_command_locked(self, key: str, command: bytes) -> bytes:
  230. """Send command to device and read response."""
  231. await self._ensure_connected()
  232. try:
  233. return await self._execute_command_locked(key, command)
  234. except BleakDBusError as ex:
  235. # Disconnect so we can reset state and try again
  236. await asyncio.sleep(0.25)
  237. _LOGGER.debug(
  238. "%s: RSSI: %s; Backing off %ss; Disconnecting due to error: %s",
  239. self.name,
  240. self.rssi,
  241. 0.25,
  242. ex,
  243. )
  244. await self._execute_disconnect()
  245. raise
  246. except BleakError as ex:
  247. # Disconnect so we can reset state and try again
  248. _LOGGER.debug(
  249. "%s: RSSI: %s; Disconnecting due to error: %s", self.name, self.rssi, ex
  250. )
  251. await self._execute_disconnect()
  252. raise
  253. async def _execute_command_locked(self, key: str, command: bytes) -> bytes:
  254. """Execute command and read response."""
  255. assert self._client is not None
  256. if not self._read_char:
  257. raise CharacteristicMissingError(READ_CHAR_UUID)
  258. if not self._write_char:
  259. raise CharacteristicMissingError(WRITE_CHAR_UUID)
  260. future: asyncio.Future[bytearray] = asyncio.Future()
  261. client = self._client
  262. def _notification_handler(_sender: int, data: bytearray) -> None:
  263. """Handle notification responses."""
  264. if future.done():
  265. _LOGGER.debug("%s: Notification handler already done", self.name)
  266. return
  267. future.set_result(data)
  268. _LOGGER.debug("%s: Subscribe to notifications; RSSI: %s", self.name, self.rssi)
  269. await client.start_notify(self._read_char, _notification_handler)
  270. _LOGGER.debug("%s: Sending command: %s", self.name, key)
  271. await client.write_gatt_char(self._write_char, command, False)
  272. async with async_timeout.timeout(5):
  273. notify_msg = await future
  274. _LOGGER.debug("%s: Notification received: %s", self.name, notify_msg)
  275. _LOGGER.debug("%s: UnSubscribe to notifications", self.name)
  276. await client.stop_notify(self._read_char)
  277. if notify_msg == b"\x07":
  278. _LOGGER.error("Password required")
  279. elif notify_msg == b"\t":
  280. _LOGGER.error("Password incorrect")
  281. return notify_msg
  282. def get_address(self) -> str:
  283. """Return address of device."""
  284. return self._device.address
  285. def _get_adv_value(self, key: str) -> Any:
  286. """Return value from advertisement data."""
  287. if not self._sb_adv_data:
  288. return None
  289. return self._sb_adv_data.data["data"][key]
  290. def get_battery_percent(self) -> Any:
  291. """Return device battery level in percent."""
  292. return self._get_adv_value("battery")
  293. def update_from_advertisement(self, advertisement: SwitchBotAdvertisement) -> None:
  294. """Update device data from advertisement."""
  295. self._sb_adv_data = advertisement
  296. if self._device and ble_device_has_changed(self._device, advertisement.device):
  297. self._cached_services = None
  298. self._device = advertisement.device
  299. async def get_device_data(
  300. self, retry: int | None = None, interface: int | None = None
  301. ) -> SwitchBotAdvertisement | None:
  302. """Find switchbot devices and their advertisement data."""
  303. if retry is None:
  304. retry = self._retry_count
  305. if interface:
  306. _interface: int = interface
  307. else:
  308. _interface = int(self._interface.replace("hci", ""))
  309. _data = await GetSwitchbotDevices(interface=_interface).discover(
  310. retry=retry, scan_timeout=self._scan_timeout
  311. )
  312. if self._device.address in _data:
  313. self._sb_adv_data = _data[self._device.address]
  314. return self._sb_adv_data
  315. async def _get_basic_info(self) -> bytes | None:
  316. """Return basic info of device."""
  317. _data = await self._sendcommand(
  318. key=DEVICE_GET_BASIC_SETTINGS_KEY, retry=self._retry_count
  319. )
  320. if _data in (b"\x07", b"\x00"):
  321. _LOGGER.error("Unsuccessful, please try again")
  322. return None
  323. return _data