device.py 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  1. """Library to handle connection with Switchbot."""
  2. from __future__ import annotations
  3. import asyncio
  4. import binascii
  5. import logging
  6. from enum import Enum
  7. from typing import Any, Callable
  8. from uuid import UUID
  9. import async_timeout
  10. from bleak import BleakError
  11. from bleak.backends.device import BLEDevice
  12. from bleak.backends.service import BleakGATTCharacteristic, BleakGATTServiceCollection
  13. from bleak.exc import BleakDBusError
  14. from bleak_retry_connector import (
  15. BLEAK_RETRY_EXCEPTIONS,
  16. BleakClientWithServiceCache,
  17. BleakNotFoundError,
  18. ble_device_has_changed,
  19. establish_connection,
  20. )
  21. from ..const import DEFAULT_RETRY_COUNT, DEFAULT_SCAN_TIMEOUT
  22. from ..discovery import GetSwitchbotDevices
  23. from ..models import SwitchBotAdvertisement
  24. _LOGGER = logging.getLogger(__name__)
  25. REQ_HEADER = "570f"
  26. # Keys common to all device types
  27. DEVICE_GET_BASIC_SETTINGS_KEY = "5702"
  28. DEVICE_SET_MODE_KEY = "5703"
  29. DEVICE_SET_EXTENDED_KEY = REQ_HEADER
  30. # Base key when encryption is set
  31. KEY_PASSWORD_PREFIX = "571"
  32. # How long to hold the connection
  33. # to wait for additional commands for
  34. # disconnecting the device.
  35. DISCONNECT_DELAY = 20
  36. class ColorMode(Enum):
  37. OFF = 0
  38. COLOR_TEMP = 1
  39. RGB = 2
  40. EFFECT = 3
  41. class CharacteristicMissingError(Exception):
  42. """Raised when a characteristic is missing."""
  43. class SwitchbotOperationError(Exception):
  44. """Raised when an operation fails."""
  45. def _sb_uuid(comms_type: str = "service") -> UUID | str:
  46. """Return Switchbot UUID."""
  47. _uuid = {"tx": "002", "rx": "003", "service": "d00"}
  48. if comms_type in _uuid:
  49. return UUID(f"cba20{_uuid[comms_type]}-224d-11e6-9fb8-0002a5d5c51b")
  50. return "Incorrect type, choose between: tx, rx or service"
  51. READ_CHAR_UUID = _sb_uuid(comms_type="rx")
  52. WRITE_CHAR_UUID = _sb_uuid(comms_type="tx")
  53. class SwitchbotBaseDevice:
  54. """Base Representation of a Switchbot Device."""
  55. def __init__(
  56. self,
  57. device: BLEDevice,
  58. password: str | None = None,
  59. interface: int = 0,
  60. **kwargs: Any,
  61. ) -> None:
  62. """Switchbot base class constructor."""
  63. self._interface = f"hci{interface}"
  64. self._device = device
  65. self._sb_adv_data: SwitchBotAdvertisement | None = None
  66. self._override_adv_data: dict[str, Any] | None = None
  67. self._scan_timeout: int = kwargs.pop("scan_timeout", DEFAULT_SCAN_TIMEOUT)
  68. self._retry_count: int = kwargs.pop("retry_count", DEFAULT_RETRY_COUNT)
  69. self._connect_lock = asyncio.Lock()
  70. self._operation_lock = asyncio.Lock()
  71. if password is None or password == "":
  72. self._password_encoded = None
  73. else:
  74. self._password_encoded = "%08x" % (
  75. binascii.crc32(password.encode("ascii")) & 0xFFFFFFFF
  76. )
  77. self._client: BleakClientWithServiceCache | None = None
  78. self._read_char: BleakGATTCharacteristic | None = None
  79. self._write_char: BleakGATTCharacteristic | None = None
  80. self._disconnect_timer: asyncio.TimerHandle | None = None
  81. self._expected_disconnect = False
  82. self.loop = asyncio.get_event_loop()
  83. self._callbacks: list[Callable[[], None]] = []
  84. self._notify_future: asyncio.Future[bytearray] | None = None
  85. def advertisement_changed(self, advertisement: SwitchBotAdvertisement) -> bool:
  86. """Check if the advertisement has changed."""
  87. return bool(
  88. not self._sb_adv_data
  89. or ble_device_has_changed(self._sb_adv_data.device, advertisement.device)
  90. or advertisement.data != self._sb_adv_data.data
  91. )
  92. def _commandkey(self, key: str) -> str:
  93. """Add password to key if set."""
  94. if self._password_encoded is None:
  95. return key
  96. key_action = key[3]
  97. key_suffix = key[4:]
  98. return KEY_PASSWORD_PREFIX + key_action + self._password_encoded + key_suffix
  99. async def _send_command(self, key: str, retry: int | None = None) -> bytes | None:
  100. """Send command to device and read response."""
  101. if retry is None:
  102. retry = self._retry_count
  103. command = bytearray.fromhex(self._commandkey(key))
  104. _LOGGER.debug("%s: Sending command %s", self.name, command)
  105. if self._operation_lock.locked():
  106. _LOGGER.debug(
  107. "%s: Operation already in progress, waiting for it to complete; RSSI: %s",
  108. self.name,
  109. self.rssi,
  110. )
  111. max_attempts = retry + 1
  112. if self._operation_lock.locked():
  113. _LOGGER.debug(
  114. "%s: Operation already in progress, waiting for it to complete; RSSI: %s",
  115. self.name,
  116. self.rssi,
  117. )
  118. async with self._operation_lock:
  119. for attempt in range(max_attempts):
  120. try:
  121. return await self._send_command_locked(key, command)
  122. except BleakNotFoundError:
  123. _LOGGER.error(
  124. "%s: device not found, no longer in range, or poor RSSI: %s",
  125. self.name,
  126. self.rssi,
  127. exc_info=True,
  128. )
  129. raise
  130. except CharacteristicMissingError as ex:
  131. if attempt == retry:
  132. _LOGGER.error(
  133. "%s: characteristic missing: %s; Stopping trying; RSSI: %s",
  134. self.name,
  135. ex,
  136. self.rssi,
  137. exc_info=True,
  138. )
  139. raise
  140. _LOGGER.debug(
  141. "%s: characteristic missing: %s; RSSI: %s",
  142. self.name,
  143. ex,
  144. self.rssi,
  145. exc_info=True,
  146. )
  147. except BLEAK_RETRY_EXCEPTIONS:
  148. if attempt == retry:
  149. _LOGGER.error(
  150. "%s: communication failed; Stopping trying; RSSI: %s",
  151. self.name,
  152. self.rssi,
  153. exc_info=True,
  154. )
  155. raise
  156. _LOGGER.debug(
  157. "%s: communication failed with:", self.name, exc_info=True
  158. )
  159. raise RuntimeError("Unreachable")
  160. @property
  161. def name(self) -> str:
  162. """Return device name."""
  163. return f"{self._device.name} ({self._device.address})"
  164. @property
  165. def rssi(self) -> int:
  166. """Return RSSI of device."""
  167. return self._get_adv_value("rssi") or self._device.rssi
  168. async def _ensure_connected(self):
  169. """Ensure connection to device is established."""
  170. if self._connect_lock.locked():
  171. _LOGGER.debug(
  172. "%s: Connection already in progress, waiting for it to complete; RSSI: %s",
  173. self.name,
  174. self.rssi,
  175. )
  176. if self._client and self._client.is_connected:
  177. self._reset_disconnect_timer()
  178. return
  179. async with self._connect_lock:
  180. # Check again while holding the lock
  181. if self._client and self._client.is_connected:
  182. self._reset_disconnect_timer()
  183. return
  184. _LOGGER.debug("%s: Connecting; RSSI: %s", self.name, self.rssi)
  185. client = await establish_connection(
  186. BleakClientWithServiceCache,
  187. self._device,
  188. self.name,
  189. self._disconnected,
  190. use_services_cache=True,
  191. ble_device_callback=lambda: self._device,
  192. )
  193. _LOGGER.debug("%s: Connected; RSSI: %s", self.name, self.rssi)
  194. resolved = self._resolve_characteristics(client.services)
  195. if not resolved:
  196. # Try to handle services failing to load
  197. resolved = self._resolve_characteristics(await client.get_services())
  198. self._client = client
  199. self._reset_disconnect_timer()
  200. await self._start_notify()
  201. def _resolve_characteristics(self, services: BleakGATTServiceCollection) -> bool:
  202. """Resolve characteristics."""
  203. self._read_char = services.get_characteristic(READ_CHAR_UUID)
  204. self._write_char = services.get_characteristic(WRITE_CHAR_UUID)
  205. return bool(self._read_char and self._write_char)
  206. def _reset_disconnect_timer(self):
  207. """Reset disconnect timer."""
  208. self._cancel_disconnect_timer()
  209. self._expected_disconnect = False
  210. self._disconnect_timer = self.loop.call_later(
  211. DISCONNECT_DELAY, self._disconnect
  212. )
  213. def _disconnected(self, client: BleakClientWithServiceCache) -> None:
  214. """Disconnected callback."""
  215. if self._expected_disconnect:
  216. _LOGGER.debug(
  217. "%s: Disconnected from device; RSSI: %s", self.name, self.rssi
  218. )
  219. return
  220. _LOGGER.warning(
  221. "%s: Device unexpectedly disconnected; RSSI: %s",
  222. self.name,
  223. self.rssi,
  224. )
  225. def _disconnect(self):
  226. """Disconnect from device."""
  227. self._cancel_disconnect_timer()
  228. asyncio.create_task(self._execute_timed_disconnect())
  229. def _cancel_disconnect_timer(self):
  230. """Cancel disconnect timer."""
  231. if self._disconnect_timer:
  232. self._disconnect_timer.cancel()
  233. self._disconnect_timer = None
  234. async def _execute_forced_disconnect(self) -> None:
  235. """Execute forced disconnection."""
  236. self._cancel_disconnect_timer()
  237. _LOGGER.debug(
  238. "%s: Executing forced disconnect",
  239. self.name,
  240. )
  241. await self._execute_disconnect()
  242. async def _execute_timed_disconnect(self) -> None:
  243. """Execute timed disconnection."""
  244. _LOGGER.debug(
  245. "%s: Executing timed disconnect after timeout of %s",
  246. self.name,
  247. DISCONNECT_DELAY,
  248. )
  249. await self._execute_disconnect()
  250. async def _execute_disconnect(self) -> None:
  251. """Execute disconnection."""
  252. async with self._connect_lock:
  253. if self._disconnect_timer: # If the timer was reset, don't disconnect
  254. return
  255. client = self._client
  256. self._expected_disconnect = True
  257. self._client = None
  258. self._read_char = None
  259. self._write_char = None
  260. if client and client.is_connected:
  261. _LOGGER.debug("%s: Disconnecting", self.name)
  262. await client.disconnect()
  263. _LOGGER.debug("%s: Disconnect completed", self.name)
  264. async def _send_command_locked(self, key: str, command: bytes) -> bytes:
  265. """Send command to device and read response."""
  266. await self._ensure_connected()
  267. try:
  268. return await self._execute_command_locked(key, command)
  269. except BleakDBusError as ex:
  270. # Disconnect so we can reset state and try again
  271. await asyncio.sleep(0.25)
  272. _LOGGER.debug(
  273. "%s: RSSI: %s; Backing off %ss; Disconnecting due to error: %s",
  274. self.name,
  275. self.rssi,
  276. 0.25,
  277. ex,
  278. )
  279. await self._execute_forced_disconnect()
  280. raise
  281. except BleakError as ex:
  282. # Disconnect so we can reset state and try again
  283. _LOGGER.debug(
  284. "%s: RSSI: %s; Disconnecting due to error: %s", self.name, self.rssi, ex
  285. )
  286. await self._execute_forced_disconnect()
  287. raise
  288. def _notification_handler(self, _sender: int, data: bytearray) -> None:
  289. """Handle notification responses."""
  290. if self._notify_future and not self._notify_future.done():
  291. self._notify_future.set_result(data)
  292. return
  293. _LOGGER.debug("%s: Received unsolicited notification: %s", self.name, data)
  294. async def _start_notify(self) -> None:
  295. """Start notification."""
  296. _LOGGER.debug("%s: Subscribe to notifications; RSSI: %s", self.name, self.rssi)
  297. await self._client.start_notify(self._read_char, self._notification_handler)
  298. async def _execute_command_locked(self, key: str, command: bytes) -> bytes:
  299. """Execute command and read response."""
  300. assert self._client is not None
  301. if not self._read_char:
  302. raise CharacteristicMissingError(READ_CHAR_UUID)
  303. if not self._write_char:
  304. raise CharacteristicMissingError(WRITE_CHAR_UUID)
  305. self._notify_future = asyncio.Future()
  306. client = self._client
  307. _LOGGER.debug("%s: Sending command: %s", self.name, key)
  308. await client.write_gatt_char(self._write_char, command, False)
  309. async with async_timeout.timeout(5):
  310. notify_msg = await self._notify_future
  311. _LOGGER.debug("%s: Notification received: %s", self.name, notify_msg)
  312. self._notify_future = None
  313. if notify_msg == b"\x07":
  314. _LOGGER.error("Password required")
  315. elif notify_msg == b"\t":
  316. _LOGGER.error("Password incorrect")
  317. return notify_msg
  318. def get_address(self) -> str:
  319. """Return address of device."""
  320. return self._device.address
  321. def _get_adv_value(self, key: str) -> Any:
  322. """Return value from advertisement data."""
  323. if self._override_adv_data and key in self._override_adv_data:
  324. _LOGGER.debug(
  325. "%s: Using override value for %s: %s",
  326. self.name,
  327. key,
  328. self._override_adv_data[key],
  329. )
  330. return self._override_adv_data[key]
  331. if not self._sb_adv_data:
  332. return None
  333. return self._sb_adv_data.data["data"].get(key)
  334. def get_battery_percent(self) -> Any:
  335. """Return device battery level in percent."""
  336. return self._get_adv_value("battery")
  337. def update_from_advertisement(self, advertisement: SwitchBotAdvertisement) -> None:
  338. """Update device data from advertisement."""
  339. # Only accept advertisements if the data is not missing
  340. # if we already have an advertisement with data
  341. self._device = advertisement.device
  342. async def get_device_data(
  343. self, retry: int | None = None, interface: int | None = None
  344. ) -> SwitchBotAdvertisement | None:
  345. """Find switchbot devices and their advertisement data."""
  346. if retry is None:
  347. retry = self._retry_count
  348. if interface:
  349. _interface: int = interface
  350. else:
  351. _interface = int(self._interface.replace("hci", ""))
  352. _data = await GetSwitchbotDevices(interface=_interface).discover(
  353. retry=retry, scan_timeout=self._scan_timeout
  354. )
  355. if self._device.address in _data:
  356. self._sb_adv_data = _data[self._device.address]
  357. return self._sb_adv_data
  358. async def _get_basic_info(self) -> bytes | None:
  359. """Return basic info of device."""
  360. _data = await self._send_command(
  361. key=DEVICE_GET_BASIC_SETTINGS_KEY, retry=self._retry_count
  362. )
  363. if _data in (b"\x07", b"\x00"):
  364. _LOGGER.error("Unsuccessful, please try again")
  365. return None
  366. return _data
  367. def _fire_callbacks(self) -> None:
  368. """Fire callbacks."""
  369. _LOGGER.debug("%s: Fire callbacks", self.name)
  370. for callback in self._callbacks:
  371. callback()
  372. def subscribe(self, callback: Callable[[], None]) -> Callable[[], None]:
  373. """Subscribe to device notifications."""
  374. self._callbacks.append(callback)
  375. def _unsub() -> None:
  376. """Unsubscribe from device notifications."""
  377. self._callbacks.remove(callback)
  378. return _unsub
  379. async def update(self) -> None:
  380. """Update state of device."""
  381. def _check_command_result(
  382. self, result: bytes | None, index: int, values: set[int]
  383. ) -> bool:
  384. """Check command result."""
  385. if not result or len(result) - 1 < index:
  386. result_hex = result.hex() if result else "None"
  387. raise SwitchbotOperationError(
  388. f"{self.name}: Sending command failed (result={result_hex} index={index} expected={values} rssi={self.rssi})"
  389. )
  390. return result[index] in values
  391. def _set_advertisement_data(self, advertisement: SwitchBotAdvertisement) -> None:
  392. """Set advertisement data."""
  393. if advertisement.data.get("data") or not self._sb_adv_data.data.get("data"):
  394. self._sb_adv_data = advertisement
  395. self._override_adv_data = None
  396. def switch_mode(self) -> bool | None:
  397. """Return true or false from cache."""
  398. # To get actual position call update() first.
  399. return self._get_adv_value("switchMode")
  400. class SwitchbotDevice(SwitchbotBaseDevice):
  401. """Base Representation of a Switchbot Device.
  402. This base class consumes the advertisement data during connection. If the device
  403. sends stale advertisement data while connected, use
  404. SwitchbotDeviceOverrideStateDuringConnection instead.
  405. """
  406. def update_from_advertisement(self, advertisement: SwitchBotAdvertisement) -> None:
  407. """Update device data from advertisement."""
  408. super().update_from_advertisement(advertisement)
  409. self._set_advertisement_data(advertisement)
  410. class SwitchbotDeviceOverrideStateDuringConnection(SwitchbotBaseDevice):
  411. """Base Representation of a Switchbot Device.
  412. This base class ignores the advertisement data during connection and uses the
  413. data from the device instead.
  414. """
  415. def update_from_advertisement(self, advertisement: SwitchBotAdvertisement) -> None:
  416. super().update_from_advertisement(advertisement)
  417. if self._client and self._client.is_connected:
  418. # We do not consume the advertisement data if we are connected
  419. # to the device. This is because the advertisement data is not
  420. # updated when the device is connected for some devices.
  421. _LOGGER.debug("%s: Ignore advertisement data during connection", self.name)
  422. return
  423. self._set_advertisement_data(advertisement)
  424. class SwitchbotSequenceDevice(SwitchbotDevice):
  425. """A Switchbot sequence device.
  426. This class must not use SwitchbotDeviceOverrideStateDuringConnection because
  427. it needs to know when the sequence_number has changed.
  428. """
  429. def update_from_advertisement(self, advertisement: SwitchBotAdvertisement) -> None:
  430. """Update device data from advertisement."""
  431. current_state = self._get_adv_value("sequence_number")
  432. super().update_from_advertisement(advertisement)
  433. new_state = self._get_adv_value("sequence_number")
  434. _LOGGER.debug(
  435. "%s: update advertisement: %s (seq before: %s) (seq after: %s)",
  436. self.name,
  437. advertisement,
  438. current_state,
  439. new_state,
  440. )
  441. if current_state != new_state:
  442. asyncio.ensure_future(self.update())