* Remove invalidation_version from deprecated. We don't follow up and just hurts releases * Revert change to ZHA
734 lines
24 KiB
Python
734 lines
24 KiB
Python
"""Device for Zigbee Home Automation."""
|
|
import asyncio
|
|
from datetime import timedelta
|
|
from enum import Enum
|
|
import logging
|
|
import random
|
|
import time
|
|
from typing import Any, Dict
|
|
|
|
from zigpy import types
|
|
import zigpy.exceptions
|
|
from zigpy.profiles import PROFILES
|
|
import zigpy.quirks
|
|
from zigpy.zcl.clusters.general import Groups
|
|
import zigpy.zdo.types as zdo_types
|
|
|
|
from homeassistant.core import callback
|
|
from homeassistant.helpers.dispatcher import (
|
|
async_dispatcher_connect,
|
|
async_dispatcher_send,
|
|
)
|
|
from homeassistant.helpers.event import async_track_time_interval
|
|
from homeassistant.helpers.typing import HomeAssistantType
|
|
|
|
from . import channels, typing as zha_typing
|
|
from .const import (
|
|
ATTR_ARGS,
|
|
ATTR_ATTRIBUTE,
|
|
ATTR_AVAILABLE,
|
|
ATTR_CLUSTER_ID,
|
|
ATTR_COMMAND,
|
|
ATTR_COMMAND_TYPE,
|
|
ATTR_DEVICE_TYPE,
|
|
ATTR_ENDPOINT_ID,
|
|
ATTR_ENDPOINT_NAMES,
|
|
ATTR_ENDPOINTS,
|
|
ATTR_IEEE,
|
|
ATTR_LAST_SEEN,
|
|
ATTR_LQI,
|
|
ATTR_MANUFACTURER,
|
|
ATTR_MANUFACTURER_CODE,
|
|
ATTR_MODEL,
|
|
ATTR_NAME,
|
|
ATTR_NEIGHBORS,
|
|
ATTR_NODE_DESCRIPTOR,
|
|
ATTR_NWK,
|
|
ATTR_POWER_SOURCE,
|
|
ATTR_QUIRK_APPLIED,
|
|
ATTR_QUIRK_CLASS,
|
|
ATTR_RSSI,
|
|
ATTR_SIGNATURE,
|
|
ATTR_VALUE,
|
|
CLUSTER_COMMAND_SERVER,
|
|
CLUSTER_COMMANDS_CLIENT,
|
|
CLUSTER_COMMANDS_SERVER,
|
|
CLUSTER_TYPE_IN,
|
|
CLUSTER_TYPE_OUT,
|
|
EFFECT_DEFAULT_VARIANT,
|
|
EFFECT_OKAY,
|
|
POWER_BATTERY_OR_UNKNOWN,
|
|
POWER_MAINS_POWERED,
|
|
SIGNAL_AVAILABLE,
|
|
SIGNAL_UPDATE_DEVICE,
|
|
UNKNOWN,
|
|
UNKNOWN_MANUFACTURER,
|
|
UNKNOWN_MODEL,
|
|
)
|
|
from .helpers import LogMixin
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
CONSIDER_UNAVAILABLE_MAINS = 60 * 60 * 2 # 2 hours
|
|
CONSIDER_UNAVAILABLE_BATTERY = 60 * 60 * 6 # 6 hours
|
|
_UPDATE_ALIVE_INTERVAL = (60, 90)
|
|
_CHECKIN_GRACE_PERIODS = 2
|
|
|
|
|
|
class DeviceStatus(Enum):
|
|
"""Status of a device."""
|
|
|
|
CREATED = 1
|
|
INITIALIZED = 2
|
|
|
|
|
|
class ZHADevice(LogMixin):
|
|
"""ZHA Zigbee device object."""
|
|
|
|
def __init__(
|
|
self,
|
|
hass: HomeAssistantType,
|
|
zigpy_device: zha_typing.ZigpyDeviceType,
|
|
zha_gateway: zha_typing.ZhaGatewayType,
|
|
):
|
|
"""Initialize the gateway."""
|
|
self.hass = hass
|
|
self._zigpy_device = zigpy_device
|
|
self._zha_gateway = zha_gateway
|
|
self._available = False
|
|
self._available_signal = f"{self.name}_{self.ieee}_{SIGNAL_AVAILABLE}"
|
|
self._checkins_missed_count = 0
|
|
self.unsubs = []
|
|
self.quirk_applied = isinstance(self._zigpy_device, zigpy.quirks.CustomDevice)
|
|
self.quirk_class = (
|
|
f"{self._zigpy_device.__class__.__module__}."
|
|
f"{self._zigpy_device.__class__.__name__}"
|
|
)
|
|
|
|
if self.is_mains_powered:
|
|
self._consider_unavailable_time = CONSIDER_UNAVAILABLE_MAINS
|
|
else:
|
|
self._consider_unavailable_time = CONSIDER_UNAVAILABLE_BATTERY
|
|
keep_alive_interval = random.randint(*_UPDATE_ALIVE_INTERVAL)
|
|
self.unsubs.append(
|
|
async_track_time_interval(
|
|
self.hass, self._check_available, timedelta(seconds=keep_alive_interval)
|
|
)
|
|
)
|
|
self._ha_device_id = None
|
|
self.status = DeviceStatus.CREATED
|
|
self._channels = channels.Channels(self)
|
|
|
|
@property
|
|
def device_id(self):
|
|
"""Return the HA device registry device id."""
|
|
return self._ha_device_id
|
|
|
|
def set_device_id(self, device_id):
|
|
"""Set the HA device registry device id."""
|
|
self._ha_device_id = device_id
|
|
|
|
@property
|
|
def device(self) -> zha_typing.ZigpyDeviceType:
|
|
"""Return underlying Zigpy device."""
|
|
return self._zigpy_device
|
|
|
|
@property
|
|
def channels(self) -> zha_typing.ChannelsType:
|
|
"""Return ZHA channels."""
|
|
return self._channels
|
|
|
|
@channels.setter
|
|
def channels(self, value: zha_typing.ChannelsType) -> None:
|
|
"""Channels setter."""
|
|
assert isinstance(value, channels.Channels)
|
|
self._channels = value
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return device name."""
|
|
return f"{self.manufacturer} {self.model}"
|
|
|
|
@property
|
|
def ieee(self):
|
|
"""Return ieee address for device."""
|
|
return self._zigpy_device.ieee
|
|
|
|
@property
|
|
def manufacturer(self):
|
|
"""Return manufacturer for device."""
|
|
if self._zigpy_device.manufacturer is None:
|
|
return UNKNOWN_MANUFACTURER
|
|
return self._zigpy_device.manufacturer
|
|
|
|
@property
|
|
def model(self):
|
|
"""Return model for device."""
|
|
if self._zigpy_device.model is None:
|
|
return UNKNOWN_MODEL
|
|
return self._zigpy_device.model
|
|
|
|
@property
|
|
def manufacturer_code(self):
|
|
"""Return the manufacturer code for the device."""
|
|
if self._zigpy_device.node_desc.is_valid:
|
|
return self._zigpy_device.node_desc.manufacturer_code
|
|
return None
|
|
|
|
@property
|
|
def nwk(self):
|
|
"""Return nwk for device."""
|
|
return self._zigpy_device.nwk
|
|
|
|
@property
|
|
def lqi(self):
|
|
"""Return lqi for device."""
|
|
return self._zigpy_device.lqi
|
|
|
|
@property
|
|
def rssi(self):
|
|
"""Return rssi for device."""
|
|
return self._zigpy_device.rssi
|
|
|
|
@property
|
|
def last_seen(self):
|
|
"""Return last_seen for device."""
|
|
return self._zigpy_device.last_seen
|
|
|
|
@property
|
|
def is_mains_powered(self):
|
|
"""Return true if device is mains powered."""
|
|
return self._zigpy_device.node_desc.is_mains_powered
|
|
|
|
@property
|
|
def device_type(self):
|
|
"""Return the logical device type for the device."""
|
|
node_descriptor = self._zigpy_device.node_desc
|
|
return (
|
|
node_descriptor.logical_type.name if node_descriptor.is_valid else UNKNOWN
|
|
)
|
|
|
|
@property
|
|
def power_source(self):
|
|
"""Return the power source for the device."""
|
|
return (
|
|
POWER_MAINS_POWERED if self.is_mains_powered else POWER_BATTERY_OR_UNKNOWN
|
|
)
|
|
|
|
@property
|
|
def is_router(self):
|
|
"""Return true if this is a routing capable device."""
|
|
return self._zigpy_device.node_desc.is_router
|
|
|
|
@property
|
|
def is_coordinator(self):
|
|
"""Return true if this device represents the coordinator."""
|
|
return self._zigpy_device.node_desc.is_coordinator
|
|
|
|
@property
|
|
def is_end_device(self):
|
|
"""Return true if this device is an end device."""
|
|
return self._zigpy_device.node_desc.is_end_device
|
|
|
|
@property
|
|
def is_groupable(self):
|
|
"""Return true if this device has a group cluster."""
|
|
return self.is_coordinator or (
|
|
self.available and self.async_get_groupable_endpoints()
|
|
)
|
|
|
|
@property
|
|
def skip_configuration(self):
|
|
"""Return true if the device should not issue configuration related commands."""
|
|
return self._zigpy_device.skip_configuration
|
|
|
|
@property
|
|
def gateway(self):
|
|
"""Return the gateway for this device."""
|
|
return self._zha_gateway
|
|
|
|
@property
|
|
def device_automation_triggers(self):
|
|
"""Return the device automation triggers for this device."""
|
|
triggers = {
|
|
("device_offline", "device_offline"): {
|
|
"device_event_type": "device_offline"
|
|
}
|
|
}
|
|
|
|
if hasattr(self._zigpy_device, "device_automation_triggers"):
|
|
triggers.update(self._zigpy_device.device_automation_triggers)
|
|
|
|
return triggers
|
|
|
|
@property
|
|
def available_signal(self):
|
|
"""Signal to use to subscribe to device availability changes."""
|
|
return self._available_signal
|
|
|
|
@property
|
|
def available(self):
|
|
"""Return True if device is available."""
|
|
return self._available
|
|
|
|
@available.setter
|
|
def available(self, new_availability: bool) -> None:
|
|
"""Set device availability."""
|
|
self._available = new_availability
|
|
|
|
@property
|
|
def zigbee_signature(self) -> Dict[str, Any]:
|
|
"""Get zigbee signature for this device."""
|
|
return {
|
|
ATTR_NODE_DESCRIPTOR: str(self._zigpy_device.node_desc),
|
|
ATTR_ENDPOINTS: self._channels.zigbee_signature,
|
|
}
|
|
|
|
@classmethod
|
|
def new(
|
|
cls,
|
|
hass: HomeAssistantType,
|
|
zigpy_dev: zha_typing.ZigpyDeviceType,
|
|
gateway: zha_typing.ZhaGatewayType,
|
|
restored: bool = False,
|
|
):
|
|
"""Create new device."""
|
|
zha_dev = cls(hass, zigpy_dev, gateway)
|
|
zha_dev.channels = channels.Channels.new(zha_dev)
|
|
zha_dev.unsubs.append(
|
|
async_dispatcher_connect(
|
|
hass,
|
|
SIGNAL_UPDATE_DEVICE.format(zha_dev.channels.unique_id),
|
|
zha_dev.async_update_sw_build_id,
|
|
)
|
|
)
|
|
return zha_dev
|
|
|
|
@callback
|
|
def async_update_sw_build_id(self, sw_version: int):
|
|
"""Update device sw version."""
|
|
if self.device_id is None:
|
|
return
|
|
self._zha_gateway.ha_device_registry.async_update_device(
|
|
self.device_id, sw_version=f"0x{sw_version:08x}"
|
|
)
|
|
|
|
async def _check_available(self, *_):
|
|
if self.last_seen is None:
|
|
self.update_available(False)
|
|
return
|
|
|
|
difference = time.time() - self.last_seen
|
|
if difference < self._consider_unavailable_time:
|
|
self.update_available(True)
|
|
self._checkins_missed_count = 0
|
|
return
|
|
|
|
if (
|
|
self._checkins_missed_count >= _CHECKIN_GRACE_PERIODS
|
|
or self.manufacturer == "LUMI"
|
|
or not self._channels.pools
|
|
):
|
|
self.update_available(False)
|
|
return
|
|
|
|
self._checkins_missed_count += 1
|
|
self.debug(
|
|
"Attempting to checkin with device - missed checkins: %s",
|
|
self._checkins_missed_count,
|
|
)
|
|
try:
|
|
pool = self._channels.pools[0]
|
|
basic_ch = pool.all_channels[f"{pool.id}:0x0000"]
|
|
except KeyError:
|
|
self.debug("does not have a mandatory basic cluster")
|
|
self.update_available(False)
|
|
return
|
|
res = await basic_ch.get_attribute_value(ATTR_MANUFACTURER, from_cache=False)
|
|
if res is not None:
|
|
self._checkins_missed_count = 0
|
|
|
|
def update_available(self, available: bool) -> None:
|
|
"""Update device availability and signal entities."""
|
|
availability_changed = self.available ^ available
|
|
self.available = available
|
|
if availability_changed and available:
|
|
# reinit channels then signal entities
|
|
self.hass.async_create_task(self._async_became_available())
|
|
return
|
|
if availability_changed and not available:
|
|
self._channels.zha_send_event(
|
|
{
|
|
"device_event_type": "device_offline",
|
|
},
|
|
)
|
|
async_dispatcher_send(self.hass, f"{self._available_signal}_entity")
|
|
|
|
async def _async_became_available(self) -> None:
|
|
"""Update device availability and signal entities."""
|
|
await self.async_initialize(False)
|
|
async_dispatcher_send(self.hass, f"{self._available_signal}_entity")
|
|
|
|
@property
|
|
def device_info(self):
|
|
"""Return a device description for device."""
|
|
ieee = str(self.ieee)
|
|
time_struct = time.localtime(self.last_seen)
|
|
update_time = time.strftime("%Y-%m-%dT%H:%M:%S", time_struct)
|
|
return {
|
|
ATTR_IEEE: ieee,
|
|
ATTR_NWK: self.nwk,
|
|
ATTR_MANUFACTURER: self.manufacturer,
|
|
ATTR_MODEL: self.model,
|
|
ATTR_NAME: self.name or ieee,
|
|
ATTR_QUIRK_APPLIED: self.quirk_applied,
|
|
ATTR_QUIRK_CLASS: self.quirk_class,
|
|
ATTR_MANUFACTURER_CODE: self.manufacturer_code,
|
|
ATTR_POWER_SOURCE: self.power_source,
|
|
ATTR_LQI: self.lqi,
|
|
ATTR_RSSI: self.rssi,
|
|
ATTR_LAST_SEEN: update_time,
|
|
ATTR_AVAILABLE: self.available,
|
|
ATTR_DEVICE_TYPE: self.device_type,
|
|
ATTR_SIGNATURE: self.zigbee_signature,
|
|
}
|
|
|
|
async def async_configure(self):
|
|
"""Configure the device."""
|
|
self.debug("started configuration")
|
|
await self._channels.async_configure()
|
|
self.debug("completed configuration")
|
|
entry = self.gateway.zha_storage.async_create_or_update_device(self)
|
|
self.debug("stored in registry: %s", entry)
|
|
|
|
if self._channels.identify_ch is not None and not self.skip_configuration:
|
|
await self._channels.identify_ch.trigger_effect(
|
|
EFFECT_OKAY, EFFECT_DEFAULT_VARIANT
|
|
)
|
|
|
|
async def async_initialize(self, from_cache=False):
|
|
"""Initialize channels."""
|
|
self.debug("started initialization")
|
|
await self._channels.async_initialize(from_cache)
|
|
self.debug("power source: %s", self.power_source)
|
|
self.status = DeviceStatus.INITIALIZED
|
|
self.debug("completed initialization")
|
|
|
|
@callback
|
|
def async_cleanup_handles(self) -> None:
|
|
"""Unsubscribe the dispatchers and timers."""
|
|
for unsubscribe in self.unsubs:
|
|
unsubscribe()
|
|
|
|
@callback
|
|
def async_update_last_seen(self, last_seen):
|
|
"""Set last seen on the zigpy device."""
|
|
if self._zigpy_device.last_seen is None and last_seen is not None:
|
|
self._zigpy_device.last_seen = last_seen
|
|
|
|
@property
|
|
def zha_device_info(self):
|
|
"""Get ZHA device information."""
|
|
device_info = {}
|
|
device_info.update(self.device_info)
|
|
device_info["entities"] = [
|
|
{
|
|
"entity_id": entity_ref.reference_id,
|
|
ATTR_NAME: entity_ref.device_info[ATTR_NAME],
|
|
}
|
|
for entity_ref in self.gateway.device_registry[self.ieee]
|
|
]
|
|
|
|
# Return the neighbor information
|
|
device_info[ATTR_NEIGHBORS] = [
|
|
{
|
|
"device_type": neighbor.neighbor.device_type.name,
|
|
"rx_on_when_idle": neighbor.neighbor.rx_on_when_idle.name,
|
|
"relationship": neighbor.neighbor.relationship.name,
|
|
"extended_pan_id": str(neighbor.neighbor.extended_pan_id),
|
|
"ieee": str(neighbor.neighbor.ieee),
|
|
"nwk": str(neighbor.neighbor.nwk),
|
|
"permit_joining": neighbor.neighbor.permit_joining.name,
|
|
"depth": str(neighbor.neighbor.depth),
|
|
"lqi": str(neighbor.neighbor.lqi),
|
|
}
|
|
for neighbor in self._zigpy_device.neighbors
|
|
]
|
|
|
|
# Return endpoint device type Names
|
|
names = []
|
|
for endpoint in (ep for epid, ep in self.device.endpoints.items() if epid):
|
|
profile = PROFILES.get(endpoint.profile_id)
|
|
if profile and endpoint.device_type is not None:
|
|
# DeviceType provides undefined enums
|
|
names.append({ATTR_NAME: profile.DeviceType(endpoint.device_type).name})
|
|
else:
|
|
names.append(
|
|
{
|
|
ATTR_NAME: f"unknown {endpoint.device_type} device_type "
|
|
"of 0x{endpoint.profile_id:04x} profile id"
|
|
}
|
|
)
|
|
device_info[ATTR_ENDPOINT_NAMES] = names
|
|
|
|
reg_device = self.gateway.ha_device_registry.async_get(self.device_id)
|
|
if reg_device is not None:
|
|
device_info["user_given_name"] = reg_device.name_by_user
|
|
device_info["device_reg_id"] = reg_device.id
|
|
device_info["area_id"] = reg_device.area_id
|
|
return device_info
|
|
|
|
@callback
|
|
def async_get_clusters(self):
|
|
"""Get all clusters for this device."""
|
|
return {
|
|
ep_id: {
|
|
CLUSTER_TYPE_IN: endpoint.in_clusters,
|
|
CLUSTER_TYPE_OUT: endpoint.out_clusters,
|
|
}
|
|
for (ep_id, endpoint) in self._zigpy_device.endpoints.items()
|
|
if ep_id != 0
|
|
}
|
|
|
|
@callback
|
|
def async_get_groupable_endpoints(self):
|
|
"""Get device endpoints that have a group 'in' cluster."""
|
|
return [
|
|
ep_id
|
|
for (ep_id, clusters) in self.async_get_clusters().items()
|
|
if Groups.cluster_id in clusters[CLUSTER_TYPE_IN]
|
|
]
|
|
|
|
@callback
|
|
def async_get_std_clusters(self):
|
|
"""Get ZHA and ZLL clusters for this device."""
|
|
|
|
return {
|
|
ep_id: {
|
|
CLUSTER_TYPE_IN: endpoint.in_clusters,
|
|
CLUSTER_TYPE_OUT: endpoint.out_clusters,
|
|
}
|
|
for (ep_id, endpoint) in self._zigpy_device.endpoints.items()
|
|
if ep_id != 0 and endpoint.profile_id in PROFILES
|
|
}
|
|
|
|
@callback
|
|
def async_get_cluster(self, endpoint_id, cluster_id, cluster_type=CLUSTER_TYPE_IN):
|
|
"""Get zigbee cluster from this entity."""
|
|
clusters = self.async_get_clusters()
|
|
return clusters[endpoint_id][cluster_type][cluster_id]
|
|
|
|
@callback
|
|
def async_get_cluster_attributes(
|
|
self, endpoint_id, cluster_id, cluster_type=CLUSTER_TYPE_IN
|
|
):
|
|
"""Get zigbee attributes for specified cluster."""
|
|
cluster = self.async_get_cluster(endpoint_id, cluster_id, cluster_type)
|
|
if cluster is None:
|
|
return None
|
|
return cluster.attributes
|
|
|
|
@callback
|
|
def async_get_cluster_commands(
|
|
self, endpoint_id, cluster_id, cluster_type=CLUSTER_TYPE_IN
|
|
):
|
|
"""Get zigbee commands for specified cluster."""
|
|
cluster = self.async_get_cluster(endpoint_id, cluster_id, cluster_type)
|
|
if cluster is None:
|
|
return None
|
|
return {
|
|
CLUSTER_COMMANDS_CLIENT: cluster.client_commands,
|
|
CLUSTER_COMMANDS_SERVER: cluster.server_commands,
|
|
}
|
|
|
|
async def write_zigbee_attribute(
|
|
self,
|
|
endpoint_id,
|
|
cluster_id,
|
|
attribute,
|
|
value,
|
|
cluster_type=CLUSTER_TYPE_IN,
|
|
manufacturer=None,
|
|
):
|
|
"""Write a value to a zigbee attribute for a cluster in this entity."""
|
|
cluster = self.async_get_cluster(endpoint_id, cluster_id, cluster_type)
|
|
if cluster is None:
|
|
return None
|
|
|
|
try:
|
|
response = await cluster.write_attributes(
|
|
{attribute: value}, manufacturer=manufacturer
|
|
)
|
|
self.debug(
|
|
"set: %s for attr: %s to cluster: %s for ept: %s - res: %s",
|
|
value,
|
|
attribute,
|
|
cluster_id,
|
|
endpoint_id,
|
|
response,
|
|
)
|
|
return response
|
|
except zigpy.exceptions.ZigbeeException as exc:
|
|
self.debug(
|
|
"failed to set attribute: %s %s %s %s %s",
|
|
f"{ATTR_VALUE}: {value}",
|
|
f"{ATTR_ATTRIBUTE}: {attribute}",
|
|
f"{ATTR_CLUSTER_ID}: {cluster_id}",
|
|
f"{ATTR_ENDPOINT_ID}: {endpoint_id}",
|
|
exc,
|
|
)
|
|
return None
|
|
|
|
async def issue_cluster_command(
|
|
self,
|
|
endpoint_id,
|
|
cluster_id,
|
|
command,
|
|
command_type,
|
|
*args,
|
|
cluster_type=CLUSTER_TYPE_IN,
|
|
manufacturer=None,
|
|
):
|
|
"""Issue a command against specified zigbee cluster on this entity."""
|
|
cluster = self.async_get_cluster(endpoint_id, cluster_id, cluster_type)
|
|
if cluster is None:
|
|
return None
|
|
if command_type == CLUSTER_COMMAND_SERVER:
|
|
response = await cluster.command(
|
|
command, *args, manufacturer=manufacturer, expect_reply=True
|
|
)
|
|
else:
|
|
response = await cluster.client_command(command, *args)
|
|
|
|
self.debug(
|
|
"Issued cluster command: %s %s %s %s %s %s %s",
|
|
f"{ATTR_CLUSTER_ID}: {cluster_id}",
|
|
f"{ATTR_COMMAND}: {command}",
|
|
f"{ATTR_COMMAND_TYPE}: {command_type}",
|
|
f"{ATTR_ARGS}: {args}",
|
|
f"{ATTR_CLUSTER_ID}: {cluster_type}",
|
|
f"{ATTR_MANUFACTURER}: {manufacturer}",
|
|
f"{ATTR_ENDPOINT_ID}: {endpoint_id}",
|
|
)
|
|
return response
|
|
|
|
async def async_add_to_group(self, group_id):
|
|
"""Add this device to the provided zigbee group."""
|
|
try:
|
|
await self._zigpy_device.add_to_group(group_id)
|
|
except (zigpy.exceptions.ZigbeeException, asyncio.TimeoutError) as ex:
|
|
self.debug(
|
|
"Failed to add device '%s' to group: 0x%04x ex: %s",
|
|
self._zigpy_device.ieee,
|
|
group_id,
|
|
str(ex),
|
|
)
|
|
|
|
async def async_remove_from_group(self, group_id):
|
|
"""Remove this device from the provided zigbee group."""
|
|
try:
|
|
await self._zigpy_device.remove_from_group(group_id)
|
|
except (zigpy.exceptions.ZigbeeException, asyncio.TimeoutError) as ex:
|
|
self.debug(
|
|
"Failed to remove device '%s' from group: 0x%04x ex: %s",
|
|
self._zigpy_device.ieee,
|
|
group_id,
|
|
str(ex),
|
|
)
|
|
|
|
async def async_add_endpoint_to_group(self, endpoint_id, group_id):
|
|
"""Add the device endpoint to the provided zigbee group."""
|
|
try:
|
|
await self._zigpy_device.endpoints[int(endpoint_id)].add_to_group(group_id)
|
|
except (zigpy.exceptions.ZigbeeException, asyncio.TimeoutError) as ex:
|
|
self.debug(
|
|
"Failed to add endpoint: %s for device: '%s' to group: 0x%04x ex: %s",
|
|
endpoint_id,
|
|
self._zigpy_device.ieee,
|
|
group_id,
|
|
str(ex),
|
|
)
|
|
|
|
async def async_remove_endpoint_from_group(self, endpoint_id, group_id):
|
|
"""Remove the device endpoint from the provided zigbee group."""
|
|
try:
|
|
await self._zigpy_device.endpoints[int(endpoint_id)].remove_from_group(
|
|
group_id
|
|
)
|
|
except (zigpy.exceptions.ZigbeeException, asyncio.TimeoutError) as ex:
|
|
self.debug(
|
|
"Failed to remove endpoint: %s for device '%s' from group: 0x%04x ex: %s",
|
|
endpoint_id,
|
|
self._zigpy_device.ieee,
|
|
group_id,
|
|
str(ex),
|
|
)
|
|
|
|
async def async_bind_to_group(self, group_id, cluster_bindings):
|
|
"""Directly bind this device to a group for the given clusters."""
|
|
await self._async_group_binding_operation(
|
|
group_id, zdo_types.ZDOCmd.Bind_req, cluster_bindings
|
|
)
|
|
|
|
async def async_unbind_from_group(self, group_id, cluster_bindings):
|
|
"""Unbind this device from a group for the given clusters."""
|
|
await self._async_group_binding_operation(
|
|
group_id, zdo_types.ZDOCmd.Unbind_req, cluster_bindings
|
|
)
|
|
|
|
async def _async_group_binding_operation(
|
|
self, group_id, operation, cluster_bindings
|
|
):
|
|
"""Create or remove a direct zigbee binding between a device and a group."""
|
|
|
|
zdo = self._zigpy_device.zdo
|
|
op_msg = "0x%04x: %s %s, ep: %s, cluster: %s to group: 0x%04x"
|
|
destination_address = zdo_types.MultiAddress()
|
|
destination_address.addrmode = types.uint8_t(1)
|
|
destination_address.nwk = types.uint16_t(group_id)
|
|
|
|
tasks = []
|
|
|
|
for cluster_binding in cluster_bindings:
|
|
if cluster_binding.endpoint_id == 0:
|
|
continue
|
|
if (
|
|
cluster_binding.id
|
|
in self._zigpy_device.endpoints[
|
|
cluster_binding.endpoint_id
|
|
].out_clusters
|
|
):
|
|
op_params = (
|
|
self.nwk,
|
|
operation.name,
|
|
str(self.ieee),
|
|
cluster_binding.endpoint_id,
|
|
cluster_binding.id,
|
|
group_id,
|
|
)
|
|
zdo.debug(f"processing {op_msg}", *op_params)
|
|
tasks.append(
|
|
(
|
|
zdo.request(
|
|
operation,
|
|
self.ieee,
|
|
cluster_binding.endpoint_id,
|
|
cluster_binding.id,
|
|
destination_address,
|
|
),
|
|
op_msg,
|
|
op_params,
|
|
)
|
|
)
|
|
res = await asyncio.gather(*(t[0] for t in tasks), return_exceptions=True)
|
|
for outcome, log_msg in zip(res, tasks):
|
|
if isinstance(outcome, Exception):
|
|
fmt = f"{log_msg[1]} failed: %s"
|
|
else:
|
|
fmt = f"{log_msg[1]} completed: %s"
|
|
zdo.debug(fmt, *(log_msg[2] + (outcome,)))
|
|
|
|
def log(self, level, msg, *args):
|
|
"""Log a message."""
|
|
msg = f"[%s](%s): {msg}"
|
|
args = (self.nwk, self.model) + args
|
|
_LOGGER.log(level, msg, *args)
|