mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 21:27:38 +00:00
introduce gateway (#20460)
This commit is contained in:
parent
f3285f96bb
commit
05d41bc0ee
@ -453,6 +453,7 @@ omit =
|
|||||||
homeassistant/components/zha/core/helpers.py
|
homeassistant/components/zha/core/helpers.py
|
||||||
homeassistant/components/zha/core/const.py
|
homeassistant/components/zha/core/const.py
|
||||||
homeassistant/components/zha/core/listeners.py
|
homeassistant/components/zha/core/listeners.py
|
||||||
|
homeassistant/components/zha/core/gateway.py
|
||||||
homeassistant/components/*/zha.py
|
homeassistant/components/*/zha.py
|
||||||
|
|
||||||
homeassistant/components/zigbee.py
|
homeassistant/components/zigbee.py
|
||||||
|
@ -4,7 +4,6 @@ Support for Zigbee Home Automation devices.
|
|||||||
For more details about this component, please refer to the documentation at
|
For more details about this component, please refer to the documentation at
|
||||||
https://home-assistant.io/components/zha/
|
https://home-assistant.io/components/zha/
|
||||||
"""
|
"""
|
||||||
import collections
|
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
import types
|
import types
|
||||||
@ -14,26 +13,18 @@ import voluptuous as vol
|
|||||||
from homeassistant import config_entries, const as ha_const
|
from homeassistant import config_entries, const as ha_const
|
||||||
import homeassistant.helpers.config_validation as cv
|
import homeassistant.helpers.config_validation as cv
|
||||||
from homeassistant.helpers.device_registry import CONNECTION_ZIGBEE
|
from homeassistant.helpers.device_registry import CONNECTION_ZIGBEE
|
||||||
from homeassistant.helpers.dispatcher import async_dispatcher_send
|
|
||||||
from homeassistant.helpers.entity_component import EntityComponent
|
|
||||||
|
|
||||||
# Loading the config flow file will register the flow
|
# Loading the config flow file will register the flow
|
||||||
from . import config_flow # noqa # pylint: disable=unused-import
|
from . import config_flow # noqa # pylint: disable=unused-import
|
||||||
from . import const as zha_const
|
|
||||||
from .event import ZhaEvent, ZhaRelayEvent
|
|
||||||
from . import api
|
from . import api
|
||||||
from .core.helpers import convert_ieee
|
from .core.gateway import ZHAGateway
|
||||||
from .device_entity import ZhaDeviceEntity
|
|
||||||
from .const import (
|
from .const import (
|
||||||
COMPONENTS, CONF_BAUDRATE, CONF_DATABASE, CONF_DEVICE_CONFIG,
|
COMPONENTS, CONF_BAUDRATE, CONF_DATABASE, CONF_DEVICE_CONFIG,
|
||||||
CONF_RADIO_TYPE, CONF_USB_PATH, DATA_ZHA, DATA_ZHA_BRIDGE_ID,
|
CONF_RADIO_TYPE, CONF_USB_PATH, DATA_ZHA, DATA_ZHA_BRIDGE_ID,
|
||||||
DATA_ZHA_CONFIG, DATA_ZHA_CORE_COMPONENT, DATA_ZHA_DISPATCHERS,
|
DATA_ZHA_CONFIG, DATA_ZHA_CORE_COMPONENT, DATA_ZHA_DISPATCHERS,
|
||||||
DATA_ZHA_RADIO, DEFAULT_BAUDRATE, DEFAULT_DATABASE_NAME,
|
DATA_ZHA_RADIO, DEFAULT_BAUDRATE, DEFAULT_DATABASE_NAME,
|
||||||
DEFAULT_RADIO_TYPE, DOMAIN, ZHA_DISCOVERY_NEW, RadioType,
|
DEFAULT_RADIO_TYPE, DOMAIN, RadioType, DATA_ZHA_CORE_EVENTS,
|
||||||
EVENTABLE_CLUSTERS, DATA_ZHA_CORE_EVENTS, ENABLE_QUIRKS,
|
ENABLE_QUIRKS)
|
||||||
DEVICE_CLASS, SINGLE_INPUT_CLUSTER_DEVICE_CLASS,
|
|
||||||
SINGLE_OUTPUT_CLUSTER_DEVICE_CLASS, CUSTOM_CLUSTER_MAPPINGS,
|
|
||||||
COMPONENT_CLUSTERS)
|
|
||||||
|
|
||||||
REQUIREMENTS = [
|
REQUIREMENTS = [
|
||||||
'bellows==0.7.0',
|
'bellows==0.7.0',
|
||||||
@ -96,7 +87,6 @@ async def async_setup_entry(hass, config_entry):
|
|||||||
|
|
||||||
Will automatically load components to support devices found on the network.
|
Will automatically load components to support devices found on the network.
|
||||||
"""
|
"""
|
||||||
establish_device_mappings()
|
|
||||||
hass.data[DATA_ZHA] = hass.data.get(DATA_ZHA, {})
|
hass.data[DATA_ZHA] = hass.data.get(DATA_ZHA, {})
|
||||||
hass.data[DATA_ZHA][DATA_ZHA_DISPATCHERS] = []
|
hass.data[DATA_ZHA][DATA_ZHA_DISPATCHERS] = []
|
||||||
|
|
||||||
@ -148,13 +138,13 @@ async def async_setup_entry(hass, config_entry):
|
|||||||
)
|
)
|
||||||
|
|
||||||
application_controller = ControllerApplication(radio, database)
|
application_controller = ControllerApplication(radio, database)
|
||||||
listener = ApplicationListener(hass, config)
|
zha_gateway = ZHAGateway(hass, config)
|
||||||
application_controller.add_listener(listener)
|
application_controller.add_listener(zha_gateway)
|
||||||
await application_controller.startup(auto_form=True)
|
await application_controller.startup(auto_form=True)
|
||||||
|
|
||||||
for device in application_controller.devices.values():
|
for device in application_controller.devices.values():
|
||||||
hass.async_create_task(
|
hass.async_create_task(
|
||||||
listener.async_device_initialized(device, False))
|
zha_gateway.async_device_initialized(device, False))
|
||||||
|
|
||||||
device_registry = await \
|
device_registry = await \
|
||||||
hass.helpers.device_registry.async_get_registry()
|
hass.helpers.device_registry.async_get_registry()
|
||||||
@ -175,7 +165,7 @@ async def async_setup_entry(hass, config_entry):
|
|||||||
config_entry, component)
|
config_entry, component)
|
||||||
)
|
)
|
||||||
|
|
||||||
api.async_load_api(hass, application_controller, listener)
|
api.async_load_api(hass, application_controller, zha_gateway)
|
||||||
|
|
||||||
def zha_shutdown(event):
|
def zha_shutdown(event):
|
||||||
"""Close radio."""
|
"""Close radio."""
|
||||||
@ -211,321 +201,3 @@ async def async_unload_entry(hass, config_entry):
|
|||||||
|
|
||||||
del hass.data[DATA_ZHA]
|
del hass.data[DATA_ZHA]
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def establish_device_mappings():
|
|
||||||
"""Establish mappings between ZCL objects and HA ZHA objects.
|
|
||||||
|
|
||||||
These cannot be module level, as importing bellows must be done in a
|
|
||||||
in a function.
|
|
||||||
"""
|
|
||||||
from zigpy import zcl, quirks
|
|
||||||
from zigpy.profiles import PROFILES, zha, zll
|
|
||||||
from .sensor import RelativeHumiditySensor
|
|
||||||
|
|
||||||
if zha.PROFILE_ID not in DEVICE_CLASS:
|
|
||||||
DEVICE_CLASS[zha.PROFILE_ID] = {}
|
|
||||||
if zll.PROFILE_ID not in DEVICE_CLASS:
|
|
||||||
DEVICE_CLASS[zll.PROFILE_ID] = {}
|
|
||||||
|
|
||||||
EVENTABLE_CLUSTERS.append(zcl.clusters.general.AnalogInput.cluster_id)
|
|
||||||
EVENTABLE_CLUSTERS.append(zcl.clusters.general.LevelControl.cluster_id)
|
|
||||||
EVENTABLE_CLUSTERS.append(zcl.clusters.general.MultistateInput.cluster_id)
|
|
||||||
EVENTABLE_CLUSTERS.append(zcl.clusters.general.OnOff.cluster_id)
|
|
||||||
|
|
||||||
DEVICE_CLASS[zha.PROFILE_ID].update({
|
|
||||||
zha.DeviceType.ON_OFF_SWITCH: 'binary_sensor',
|
|
||||||
zha.DeviceType.LEVEL_CONTROL_SWITCH: 'binary_sensor',
|
|
||||||
zha.DeviceType.REMOTE_CONTROL: 'binary_sensor',
|
|
||||||
zha.DeviceType.SMART_PLUG: 'switch',
|
|
||||||
zha.DeviceType.LEVEL_CONTROLLABLE_OUTPUT: 'light',
|
|
||||||
zha.DeviceType.ON_OFF_LIGHT: 'light',
|
|
||||||
zha.DeviceType.DIMMABLE_LIGHT: 'light',
|
|
||||||
zha.DeviceType.COLOR_DIMMABLE_LIGHT: 'light',
|
|
||||||
zha.DeviceType.ON_OFF_LIGHT_SWITCH: 'binary_sensor',
|
|
||||||
zha.DeviceType.DIMMER_SWITCH: 'binary_sensor',
|
|
||||||
zha.DeviceType.COLOR_DIMMER_SWITCH: 'binary_sensor',
|
|
||||||
})
|
|
||||||
DEVICE_CLASS[zll.PROFILE_ID].update({
|
|
||||||
zll.DeviceType.ON_OFF_LIGHT: 'light',
|
|
||||||
zll.DeviceType.ON_OFF_PLUGIN_UNIT: 'switch',
|
|
||||||
zll.DeviceType.DIMMABLE_LIGHT: 'light',
|
|
||||||
zll.DeviceType.DIMMABLE_PLUGIN_UNIT: 'light',
|
|
||||||
zll.DeviceType.COLOR_LIGHT: 'light',
|
|
||||||
zll.DeviceType.EXTENDED_COLOR_LIGHT: 'light',
|
|
||||||
zll.DeviceType.COLOR_TEMPERATURE_LIGHT: 'light',
|
|
||||||
zll.DeviceType.COLOR_CONTROLLER: 'binary_sensor',
|
|
||||||
zll.DeviceType.COLOR_SCENE_CONTROLLER: 'binary_sensor',
|
|
||||||
zll.DeviceType.CONTROLLER: 'binary_sensor',
|
|
||||||
zll.DeviceType.SCENE_CONTROLLER: 'binary_sensor',
|
|
||||||
zll.DeviceType.ON_OFF_SENSOR: 'binary_sensor',
|
|
||||||
})
|
|
||||||
|
|
||||||
SINGLE_INPUT_CLUSTER_DEVICE_CLASS.update({
|
|
||||||
zcl.clusters.general.OnOff: 'switch',
|
|
||||||
zcl.clusters.measurement.RelativeHumidity: 'sensor',
|
|
||||||
zcl.clusters.measurement.TemperatureMeasurement: 'sensor',
|
|
||||||
zcl.clusters.measurement.PressureMeasurement: 'sensor',
|
|
||||||
zcl.clusters.measurement.IlluminanceMeasurement: 'sensor',
|
|
||||||
zcl.clusters.smartenergy.Metering: 'sensor',
|
|
||||||
zcl.clusters.homeautomation.ElectricalMeasurement: 'sensor',
|
|
||||||
zcl.clusters.general.PowerConfiguration: 'sensor',
|
|
||||||
zcl.clusters.security.IasZone: 'binary_sensor',
|
|
||||||
zcl.clusters.measurement.OccupancySensing: 'binary_sensor',
|
|
||||||
zcl.clusters.hvac.Fan: 'fan',
|
|
||||||
})
|
|
||||||
SINGLE_OUTPUT_CLUSTER_DEVICE_CLASS.update({
|
|
||||||
zcl.clusters.general.OnOff: 'binary_sensor',
|
|
||||||
})
|
|
||||||
|
|
||||||
# A map of device/cluster to component/sub-component
|
|
||||||
CUSTOM_CLUSTER_MAPPINGS.update({
|
|
||||||
(quirks.smartthings.SmartthingsTemperatureHumiditySensor, 64581):
|
|
||||||
('sensor', RelativeHumiditySensor)
|
|
||||||
})
|
|
||||||
|
|
||||||
# A map of hass components to all Zigbee clusters it could use
|
|
||||||
for profile_id, classes in DEVICE_CLASS.items():
|
|
||||||
profile = PROFILES[profile_id]
|
|
||||||
for device_type, component in classes.items():
|
|
||||||
if component not in COMPONENT_CLUSTERS:
|
|
||||||
COMPONENT_CLUSTERS[component] = (set(), set())
|
|
||||||
clusters = profile.CLUSTERS[device_type]
|
|
||||||
COMPONENT_CLUSTERS[component][0].update(clusters[0])
|
|
||||||
COMPONENT_CLUSTERS[component][1].update(clusters[1])
|
|
||||||
|
|
||||||
|
|
||||||
class ApplicationListener:
|
|
||||||
"""All handlers for events that happen on the ZigBee application."""
|
|
||||||
|
|
||||||
def __init__(self, hass, config):
|
|
||||||
"""Initialize the listener."""
|
|
||||||
self._hass = hass
|
|
||||||
self._config = config
|
|
||||||
self._component = EntityComponent(_LOGGER, DOMAIN, hass)
|
|
||||||
self._device_registry = collections.defaultdict(list)
|
|
||||||
self._events = {}
|
|
||||||
|
|
||||||
for component in COMPONENTS:
|
|
||||||
hass.data[DATA_ZHA][component] = (
|
|
||||||
hass.data[DATA_ZHA].get(component, {})
|
|
||||||
)
|
|
||||||
hass.data[DATA_ZHA][DATA_ZHA_CORE_COMPONENT] = self._component
|
|
||||||
hass.data[DATA_ZHA][DATA_ZHA_CORE_EVENTS] = self._events
|
|
||||||
|
|
||||||
def device_joined(self, device):
|
|
||||||
"""Handle device joined.
|
|
||||||
|
|
||||||
At this point, no information about the device is known other than its
|
|
||||||
address
|
|
||||||
"""
|
|
||||||
# Wait for device_initialized, instead
|
|
||||||
pass
|
|
||||||
|
|
||||||
def raw_device_initialized(self, device):
|
|
||||||
"""Handle a device initialization without quirks loaded."""
|
|
||||||
# Wait for device_initialized, instead
|
|
||||||
pass
|
|
||||||
|
|
||||||
def device_initialized(self, device):
|
|
||||||
"""Handle device joined and basic information discovered."""
|
|
||||||
self._hass.async_create_task(
|
|
||||||
self.async_device_initialized(device, True))
|
|
||||||
|
|
||||||
def device_left(self, device):
|
|
||||||
"""Handle device leaving the network."""
|
|
||||||
pass
|
|
||||||
|
|
||||||
def device_removed(self, device):
|
|
||||||
"""Handle device being removed from the network."""
|
|
||||||
for device_entity in self._device_registry[device.ieee]:
|
|
||||||
self._hass.async_create_task(device_entity.async_remove())
|
|
||||||
if device.ieee in self._events:
|
|
||||||
self._events.pop(device.ieee)
|
|
||||||
|
|
||||||
def get_device_entity(self, ieee_str):
|
|
||||||
"""Return ZHADeviceEntity for given ieee."""
|
|
||||||
ieee = convert_ieee(ieee_str)
|
|
||||||
if ieee in self._device_registry:
|
|
||||||
entities = self._device_registry[ieee]
|
|
||||||
entity = next(
|
|
||||||
ent for ent in entities if isinstance(ent, ZhaDeviceEntity))
|
|
||||||
return entity
|
|
||||||
return None
|
|
||||||
|
|
||||||
def get_entities_for_ieee(self, ieee_str):
|
|
||||||
"""Return list of entities for given ieee."""
|
|
||||||
ieee = convert_ieee(ieee_str)
|
|
||||||
if ieee in self._device_registry:
|
|
||||||
return self._device_registry[ieee]
|
|
||||||
return []
|
|
||||||
|
|
||||||
@property
|
|
||||||
def device_registry(self) -> str:
|
|
||||||
"""Return devices."""
|
|
||||||
return self._device_registry
|
|
||||||
|
|
||||||
async def async_device_initialized(self, device, join):
|
|
||||||
"""Handle device joined and basic information discovered (async)."""
|
|
||||||
import zigpy.profiles
|
|
||||||
|
|
||||||
device_manufacturer = device_model = None
|
|
||||||
|
|
||||||
for endpoint_id, endpoint in device.endpoints.items():
|
|
||||||
if endpoint_id == 0: # ZDO
|
|
||||||
continue
|
|
||||||
|
|
||||||
if endpoint.manufacturer is not None:
|
|
||||||
device_manufacturer = endpoint.manufacturer
|
|
||||||
if endpoint.model is not None:
|
|
||||||
device_model = endpoint.model
|
|
||||||
|
|
||||||
component = None
|
|
||||||
profile_clusters = ([], [])
|
|
||||||
device_key = "{}-{}".format(device.ieee, endpoint_id)
|
|
||||||
node_config = {}
|
|
||||||
if CONF_DEVICE_CONFIG in self._config:
|
|
||||||
node_config = self._config[CONF_DEVICE_CONFIG].get(
|
|
||||||
device_key, {}
|
|
||||||
)
|
|
||||||
|
|
||||||
if endpoint.profile_id in zigpy.profiles.PROFILES:
|
|
||||||
profile = zigpy.profiles.PROFILES[endpoint.profile_id]
|
|
||||||
if zha_const.DEVICE_CLASS.get(endpoint.profile_id,
|
|
||||||
{}).get(endpoint.device_type,
|
|
||||||
None):
|
|
||||||
profile_clusters = profile.CLUSTERS[endpoint.device_type]
|
|
||||||
profile_info = zha_const.DEVICE_CLASS[endpoint.profile_id]
|
|
||||||
component = profile_info[endpoint.device_type]
|
|
||||||
|
|
||||||
if ha_const.CONF_TYPE in node_config:
|
|
||||||
component = node_config[ha_const.CONF_TYPE]
|
|
||||||
profile_clusters = zha_const.COMPONENT_CLUSTERS[component]
|
|
||||||
|
|
||||||
if component:
|
|
||||||
in_clusters = [endpoint.in_clusters[c]
|
|
||||||
for c in profile_clusters[0]
|
|
||||||
if c in endpoint.in_clusters]
|
|
||||||
out_clusters = [endpoint.out_clusters[c]
|
|
||||||
for c in profile_clusters[1]
|
|
||||||
if c in endpoint.out_clusters]
|
|
||||||
discovery_info = {
|
|
||||||
'application_listener': self,
|
|
||||||
'endpoint': endpoint,
|
|
||||||
'in_clusters': {c.cluster_id: c for c in in_clusters},
|
|
||||||
'out_clusters': {c.cluster_id: c for c in out_clusters},
|
|
||||||
'manufacturer': endpoint.manufacturer,
|
|
||||||
'model': endpoint.model,
|
|
||||||
'new_join': join,
|
|
||||||
'unique_id': device_key,
|
|
||||||
}
|
|
||||||
|
|
||||||
if join:
|
|
||||||
async_dispatcher_send(
|
|
||||||
self._hass,
|
|
||||||
ZHA_DISCOVERY_NEW.format(component),
|
|
||||||
discovery_info
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
self._hass.data[DATA_ZHA][component][device_key] = (
|
|
||||||
discovery_info
|
|
||||||
)
|
|
||||||
|
|
||||||
for cluster in endpoint.in_clusters.values():
|
|
||||||
await self._attempt_single_cluster_device(
|
|
||||||
endpoint,
|
|
||||||
cluster,
|
|
||||||
profile_clusters[0],
|
|
||||||
device_key,
|
|
||||||
zha_const.SINGLE_INPUT_CLUSTER_DEVICE_CLASS,
|
|
||||||
'in_clusters',
|
|
||||||
join,
|
|
||||||
)
|
|
||||||
|
|
||||||
for cluster in endpoint.out_clusters.values():
|
|
||||||
await self._attempt_single_cluster_device(
|
|
||||||
endpoint,
|
|
||||||
cluster,
|
|
||||||
profile_clusters[1],
|
|
||||||
device_key,
|
|
||||||
zha_const.SINGLE_OUTPUT_CLUSTER_DEVICE_CLASS,
|
|
||||||
'out_clusters',
|
|
||||||
join,
|
|
||||||
)
|
|
||||||
|
|
||||||
endpoint_entity = ZhaDeviceEntity(
|
|
||||||
device,
|
|
||||||
device_manufacturer,
|
|
||||||
device_model,
|
|
||||||
self,
|
|
||||||
)
|
|
||||||
await self._component.async_add_entities([endpoint_entity])
|
|
||||||
|
|
||||||
def register_entity(self, ieee, entity_obj):
|
|
||||||
"""Record the creation of a hass entity associated with ieee."""
|
|
||||||
self._device_registry[ieee].append(entity_obj)
|
|
||||||
|
|
||||||
async def _attempt_single_cluster_device(self, endpoint, cluster,
|
|
||||||
profile_clusters, device_key,
|
|
||||||
device_classes, discovery_attr,
|
|
||||||
is_new_join):
|
|
||||||
"""Try to set up an entity from a "bare" cluster."""
|
|
||||||
if cluster.cluster_id in EVENTABLE_CLUSTERS:
|
|
||||||
if cluster.endpoint.device.ieee not in self._events:
|
|
||||||
self._events.update({cluster.endpoint.device.ieee: []})
|
|
||||||
from zigpy.zcl.clusters.general import OnOff, LevelControl
|
|
||||||
if discovery_attr == 'out_clusters' and \
|
|
||||||
(cluster.cluster_id == OnOff.cluster_id or
|
|
||||||
cluster.cluster_id == LevelControl.cluster_id):
|
|
||||||
self._events[cluster.endpoint.device.ieee].append(
|
|
||||||
ZhaRelayEvent(self._hass, cluster)
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
self._events[cluster.endpoint.device.ieee].append(ZhaEvent(
|
|
||||||
self._hass,
|
|
||||||
cluster
|
|
||||||
))
|
|
||||||
|
|
||||||
if cluster.cluster_id in profile_clusters:
|
|
||||||
return
|
|
||||||
|
|
||||||
component = sub_component = None
|
|
||||||
for cluster_type, candidate_component in device_classes.items():
|
|
||||||
if isinstance(cluster, cluster_type):
|
|
||||||
component = candidate_component
|
|
||||||
break
|
|
||||||
|
|
||||||
for signature, comp in zha_const.CUSTOM_CLUSTER_MAPPINGS.items():
|
|
||||||
if (isinstance(endpoint.device, signature[0]) and
|
|
||||||
cluster.cluster_id == signature[1]):
|
|
||||||
component = comp[0]
|
|
||||||
sub_component = comp[1]
|
|
||||||
break
|
|
||||||
|
|
||||||
if component is None:
|
|
||||||
return
|
|
||||||
|
|
||||||
cluster_key = "{}-{}".format(device_key, cluster.cluster_id)
|
|
||||||
discovery_info = {
|
|
||||||
'application_listener': self,
|
|
||||||
'endpoint': endpoint,
|
|
||||||
'in_clusters': {},
|
|
||||||
'out_clusters': {},
|
|
||||||
'manufacturer': endpoint.manufacturer,
|
|
||||||
'model': endpoint.model,
|
|
||||||
'new_join': is_new_join,
|
|
||||||
'unique_id': cluster_key,
|
|
||||||
'entity_suffix': '_{}'.format(cluster.cluster_id),
|
|
||||||
}
|
|
||||||
discovery_info[discovery_attr] = {cluster.cluster_id: cluster}
|
|
||||||
if sub_component:
|
|
||||||
discovery_info.update({'sub_component': sub_component})
|
|
||||||
|
|
||||||
if is_new_join:
|
|
||||||
async_dispatcher_send(
|
|
||||||
self._hass,
|
|
||||||
ZHA_DISCOVERY_NEW.format(component),
|
|
||||||
discovery_info
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
self._hass.data[DATA_ZHA][component][cluster_key] = discovery_info
|
|
||||||
|
342
homeassistant/components/zha/core/gateway.py
Normal file
342
homeassistant/components/zha/core/gateway.py
Normal file
@ -0,0 +1,342 @@
|
|||||||
|
"""
|
||||||
|
Virtual gateway for Zigbee Home Automation.
|
||||||
|
|
||||||
|
For more details about this component, please refer to the documentation at
|
||||||
|
https://home-assistant.io/components/zha/
|
||||||
|
"""
|
||||||
|
|
||||||
|
import collections
|
||||||
|
import logging
|
||||||
|
from homeassistant import const as ha_const
|
||||||
|
from homeassistant.helpers.dispatcher import async_dispatcher_send
|
||||||
|
from homeassistant.helpers.entity_component import EntityComponent
|
||||||
|
from . import const as zha_const
|
||||||
|
from .const import (
|
||||||
|
COMPONENTS, CONF_DEVICE_CONFIG, DATA_ZHA, DATA_ZHA_CORE_COMPONENT, DOMAIN,
|
||||||
|
ZHA_DISCOVERY_NEW, EVENTABLE_CLUSTERS, DATA_ZHA_CORE_EVENTS, DEVICE_CLASS,
|
||||||
|
SINGLE_INPUT_CLUSTER_DEVICE_CLASS, SINGLE_OUTPUT_CLUSTER_DEVICE_CLASS,
|
||||||
|
CUSTOM_CLUSTER_MAPPINGS, COMPONENT_CLUSTERS)
|
||||||
|
from ..device_entity import ZhaDeviceEntity
|
||||||
|
from ..event import ZhaEvent, ZhaRelayEvent
|
||||||
|
from .helpers import convert_ieee
|
||||||
|
|
||||||
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
class ZHAGateway:
|
||||||
|
"""Gateway that handles events that happen on the ZHA Zigbee network."""
|
||||||
|
|
||||||
|
def __init__(self, hass, config):
|
||||||
|
"""Initialize the gateway."""
|
||||||
|
self._hass = hass
|
||||||
|
self._config = config
|
||||||
|
self._component = EntityComponent(_LOGGER, DOMAIN, hass)
|
||||||
|
self._device_registry = collections.defaultdict(list)
|
||||||
|
self._events = {}
|
||||||
|
establish_device_mappings()
|
||||||
|
|
||||||
|
for component in COMPONENTS:
|
||||||
|
hass.data[DATA_ZHA][component] = (
|
||||||
|
hass.data[DATA_ZHA].get(component, {})
|
||||||
|
)
|
||||||
|
hass.data[DATA_ZHA][DATA_ZHA_CORE_COMPONENT] = self._component
|
||||||
|
hass.data[DATA_ZHA][DATA_ZHA_CORE_EVENTS] = self._events
|
||||||
|
|
||||||
|
def device_joined(self, device):
|
||||||
|
"""Handle device joined.
|
||||||
|
|
||||||
|
At this point, no information about the device is known other than its
|
||||||
|
address
|
||||||
|
"""
|
||||||
|
# Wait for device_initialized, instead
|
||||||
|
pass
|
||||||
|
|
||||||
|
def raw_device_initialized(self, device):
|
||||||
|
"""Handle a device initialization without quirks loaded."""
|
||||||
|
# Wait for device_initialized, instead
|
||||||
|
pass
|
||||||
|
|
||||||
|
def device_initialized(self, device):
|
||||||
|
"""Handle device joined and basic information discovered."""
|
||||||
|
self._hass.async_create_task(
|
||||||
|
self.async_device_initialized(device, True))
|
||||||
|
|
||||||
|
def device_left(self, device):
|
||||||
|
"""Handle device leaving the network."""
|
||||||
|
pass
|
||||||
|
|
||||||
|
def device_removed(self, device):
|
||||||
|
"""Handle device being removed from the network."""
|
||||||
|
for device_entity in self._device_registry[device.ieee]:
|
||||||
|
self._hass.async_create_task(device_entity.async_remove())
|
||||||
|
if device.ieee in self._events:
|
||||||
|
self._events.pop(device.ieee)
|
||||||
|
|
||||||
|
def get_device_entity(self, ieee_str):
|
||||||
|
"""Return ZHADeviceEntity for given ieee."""
|
||||||
|
ieee = convert_ieee(ieee_str)
|
||||||
|
if ieee in self._device_registry:
|
||||||
|
entities = self._device_registry[ieee]
|
||||||
|
entity = next(
|
||||||
|
ent for ent in entities if isinstance(ent, ZhaDeviceEntity))
|
||||||
|
return entity
|
||||||
|
return None
|
||||||
|
|
||||||
|
def get_entities_for_ieee(self, ieee_str):
|
||||||
|
"""Return list of entities for given ieee."""
|
||||||
|
ieee = convert_ieee(ieee_str)
|
||||||
|
if ieee in self._device_registry:
|
||||||
|
return self._device_registry[ieee]
|
||||||
|
return []
|
||||||
|
|
||||||
|
@property
|
||||||
|
def device_registry(self) -> str:
|
||||||
|
"""Return devices."""
|
||||||
|
return self._device_registry
|
||||||
|
|
||||||
|
async def async_device_initialized(self, device, join):
|
||||||
|
"""Handle device joined and basic information discovered (async)."""
|
||||||
|
import zigpy.profiles
|
||||||
|
|
||||||
|
device_manufacturer = device_model = None
|
||||||
|
|
||||||
|
for endpoint_id, endpoint in device.endpoints.items():
|
||||||
|
if endpoint_id == 0: # ZDO
|
||||||
|
continue
|
||||||
|
|
||||||
|
if endpoint.manufacturer is not None:
|
||||||
|
device_manufacturer = endpoint.manufacturer
|
||||||
|
if endpoint.model is not None:
|
||||||
|
device_model = endpoint.model
|
||||||
|
|
||||||
|
component = None
|
||||||
|
profile_clusters = ([], [])
|
||||||
|
device_key = "{}-{}".format(device.ieee, endpoint_id)
|
||||||
|
node_config = {}
|
||||||
|
if CONF_DEVICE_CONFIG in self._config:
|
||||||
|
node_config = self._config[CONF_DEVICE_CONFIG].get(
|
||||||
|
device_key, {}
|
||||||
|
)
|
||||||
|
|
||||||
|
if endpoint.profile_id in zigpy.profiles.PROFILES:
|
||||||
|
profile = zigpy.profiles.PROFILES[endpoint.profile_id]
|
||||||
|
if zha_const.DEVICE_CLASS.get(endpoint.profile_id,
|
||||||
|
{}).get(endpoint.device_type,
|
||||||
|
None):
|
||||||
|
profile_clusters = profile.CLUSTERS[endpoint.device_type]
|
||||||
|
profile_info = zha_const.DEVICE_CLASS[endpoint.profile_id]
|
||||||
|
component = profile_info[endpoint.device_type]
|
||||||
|
|
||||||
|
if ha_const.CONF_TYPE in node_config:
|
||||||
|
component = node_config[ha_const.CONF_TYPE]
|
||||||
|
profile_clusters = zha_const.COMPONENT_CLUSTERS[component]
|
||||||
|
|
||||||
|
if component:
|
||||||
|
in_clusters = [endpoint.in_clusters[c]
|
||||||
|
for c in profile_clusters[0]
|
||||||
|
if c in endpoint.in_clusters]
|
||||||
|
out_clusters = [endpoint.out_clusters[c]
|
||||||
|
for c in profile_clusters[1]
|
||||||
|
if c in endpoint.out_clusters]
|
||||||
|
discovery_info = {
|
||||||
|
'application_listener': self,
|
||||||
|
'endpoint': endpoint,
|
||||||
|
'in_clusters': {c.cluster_id: c for c in in_clusters},
|
||||||
|
'out_clusters': {c.cluster_id: c for c in out_clusters},
|
||||||
|
'manufacturer': endpoint.manufacturer,
|
||||||
|
'model': endpoint.model,
|
||||||
|
'new_join': join,
|
||||||
|
'unique_id': device_key,
|
||||||
|
}
|
||||||
|
|
||||||
|
if join:
|
||||||
|
async_dispatcher_send(
|
||||||
|
self._hass,
|
||||||
|
ZHA_DISCOVERY_NEW.format(component),
|
||||||
|
discovery_info
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
self._hass.data[DATA_ZHA][component][device_key] = (
|
||||||
|
discovery_info
|
||||||
|
)
|
||||||
|
|
||||||
|
for cluster in endpoint.in_clusters.values():
|
||||||
|
await self._attempt_single_cluster_device(
|
||||||
|
endpoint,
|
||||||
|
cluster,
|
||||||
|
profile_clusters[0],
|
||||||
|
device_key,
|
||||||
|
zha_const.SINGLE_INPUT_CLUSTER_DEVICE_CLASS,
|
||||||
|
'in_clusters',
|
||||||
|
join,
|
||||||
|
)
|
||||||
|
|
||||||
|
for cluster in endpoint.out_clusters.values():
|
||||||
|
await self._attempt_single_cluster_device(
|
||||||
|
endpoint,
|
||||||
|
cluster,
|
||||||
|
profile_clusters[1],
|
||||||
|
device_key,
|
||||||
|
zha_const.SINGLE_OUTPUT_CLUSTER_DEVICE_CLASS,
|
||||||
|
'out_clusters',
|
||||||
|
join,
|
||||||
|
)
|
||||||
|
|
||||||
|
endpoint_entity = ZhaDeviceEntity(
|
||||||
|
device,
|
||||||
|
device_manufacturer,
|
||||||
|
device_model,
|
||||||
|
self,
|
||||||
|
)
|
||||||
|
await self._component.async_add_entities([endpoint_entity])
|
||||||
|
|
||||||
|
def register_entity(self, ieee, entity_obj):
|
||||||
|
"""Record the creation of a hass entity associated with ieee."""
|
||||||
|
self._device_registry[ieee].append(entity_obj)
|
||||||
|
|
||||||
|
async def _attempt_single_cluster_device(self, endpoint, cluster,
|
||||||
|
profile_clusters, device_key,
|
||||||
|
device_classes, discovery_attr,
|
||||||
|
is_new_join):
|
||||||
|
"""Try to set up an entity from a "bare" cluster."""
|
||||||
|
if cluster.cluster_id in EVENTABLE_CLUSTERS:
|
||||||
|
if cluster.endpoint.device.ieee not in self._events:
|
||||||
|
self._events.update({cluster.endpoint.device.ieee: []})
|
||||||
|
from zigpy.zcl.clusters.general import OnOff, LevelControl
|
||||||
|
if discovery_attr == 'out_clusters' and \
|
||||||
|
(cluster.cluster_id == OnOff.cluster_id or
|
||||||
|
cluster.cluster_id == LevelControl.cluster_id):
|
||||||
|
self._events[cluster.endpoint.device.ieee].append(
|
||||||
|
ZhaRelayEvent(self._hass, cluster)
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
self._events[cluster.endpoint.device.ieee].append(ZhaEvent(
|
||||||
|
self._hass,
|
||||||
|
cluster
|
||||||
|
))
|
||||||
|
|
||||||
|
if cluster.cluster_id in profile_clusters:
|
||||||
|
return
|
||||||
|
|
||||||
|
component = sub_component = None
|
||||||
|
for cluster_type, candidate_component in device_classes.items():
|
||||||
|
if isinstance(cluster, cluster_type):
|
||||||
|
component = candidate_component
|
||||||
|
break
|
||||||
|
|
||||||
|
for signature, comp in zha_const.CUSTOM_CLUSTER_MAPPINGS.items():
|
||||||
|
if (isinstance(endpoint.device, signature[0]) and
|
||||||
|
cluster.cluster_id == signature[1]):
|
||||||
|
component = comp[0]
|
||||||
|
sub_component = comp[1]
|
||||||
|
break
|
||||||
|
|
||||||
|
if component is None:
|
||||||
|
return
|
||||||
|
|
||||||
|
cluster_key = "{}-{}".format(device_key, cluster.cluster_id)
|
||||||
|
discovery_info = {
|
||||||
|
'application_listener': self,
|
||||||
|
'endpoint': endpoint,
|
||||||
|
'in_clusters': {},
|
||||||
|
'out_clusters': {},
|
||||||
|
'manufacturer': endpoint.manufacturer,
|
||||||
|
'model': endpoint.model,
|
||||||
|
'new_join': is_new_join,
|
||||||
|
'unique_id': cluster_key,
|
||||||
|
'entity_suffix': '_{}'.format(cluster.cluster_id),
|
||||||
|
}
|
||||||
|
discovery_info[discovery_attr] = {cluster.cluster_id: cluster}
|
||||||
|
if sub_component:
|
||||||
|
discovery_info.update({'sub_component': sub_component})
|
||||||
|
|
||||||
|
if is_new_join:
|
||||||
|
async_dispatcher_send(
|
||||||
|
self._hass,
|
||||||
|
ZHA_DISCOVERY_NEW.format(component),
|
||||||
|
discovery_info
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
self._hass.data[DATA_ZHA][component][cluster_key] = discovery_info
|
||||||
|
|
||||||
|
|
||||||
|
def establish_device_mappings():
|
||||||
|
"""Establish mappings between ZCL objects and HA ZHA objects.
|
||||||
|
|
||||||
|
These cannot be module level, as importing bellows must be done in a
|
||||||
|
in a function.
|
||||||
|
"""
|
||||||
|
from zigpy import zcl, quirks
|
||||||
|
from zigpy.profiles import PROFILES, zha, zll
|
||||||
|
from ..sensor import RelativeHumiditySensor
|
||||||
|
|
||||||
|
if zha.PROFILE_ID not in DEVICE_CLASS:
|
||||||
|
DEVICE_CLASS[zha.PROFILE_ID] = {}
|
||||||
|
if zll.PROFILE_ID not in DEVICE_CLASS:
|
||||||
|
DEVICE_CLASS[zll.PROFILE_ID] = {}
|
||||||
|
|
||||||
|
EVENTABLE_CLUSTERS.append(zcl.clusters.general.AnalogInput.cluster_id)
|
||||||
|
EVENTABLE_CLUSTERS.append(zcl.clusters.general.LevelControl.cluster_id)
|
||||||
|
EVENTABLE_CLUSTERS.append(zcl.clusters.general.MultistateInput.cluster_id)
|
||||||
|
EVENTABLE_CLUSTERS.append(zcl.clusters.general.OnOff.cluster_id)
|
||||||
|
|
||||||
|
DEVICE_CLASS[zha.PROFILE_ID].update({
|
||||||
|
zha.DeviceType.ON_OFF_SWITCH: 'binary_sensor',
|
||||||
|
zha.DeviceType.LEVEL_CONTROL_SWITCH: 'binary_sensor',
|
||||||
|
zha.DeviceType.REMOTE_CONTROL: 'binary_sensor',
|
||||||
|
zha.DeviceType.SMART_PLUG: 'switch',
|
||||||
|
zha.DeviceType.LEVEL_CONTROLLABLE_OUTPUT: 'light',
|
||||||
|
zha.DeviceType.ON_OFF_LIGHT: 'light',
|
||||||
|
zha.DeviceType.DIMMABLE_LIGHT: 'light',
|
||||||
|
zha.DeviceType.COLOR_DIMMABLE_LIGHT: 'light',
|
||||||
|
zha.DeviceType.ON_OFF_LIGHT_SWITCH: 'binary_sensor',
|
||||||
|
zha.DeviceType.DIMMER_SWITCH: 'binary_sensor',
|
||||||
|
zha.DeviceType.COLOR_DIMMER_SWITCH: 'binary_sensor',
|
||||||
|
})
|
||||||
|
DEVICE_CLASS[zll.PROFILE_ID].update({
|
||||||
|
zll.DeviceType.ON_OFF_LIGHT: 'light',
|
||||||
|
zll.DeviceType.ON_OFF_PLUGIN_UNIT: 'switch',
|
||||||
|
zll.DeviceType.DIMMABLE_LIGHT: 'light',
|
||||||
|
zll.DeviceType.DIMMABLE_PLUGIN_UNIT: 'light',
|
||||||
|
zll.DeviceType.COLOR_LIGHT: 'light',
|
||||||
|
zll.DeviceType.EXTENDED_COLOR_LIGHT: 'light',
|
||||||
|
zll.DeviceType.COLOR_TEMPERATURE_LIGHT: 'light',
|
||||||
|
zll.DeviceType.COLOR_CONTROLLER: 'binary_sensor',
|
||||||
|
zll.DeviceType.COLOR_SCENE_CONTROLLER: 'binary_sensor',
|
||||||
|
zll.DeviceType.CONTROLLER: 'binary_sensor',
|
||||||
|
zll.DeviceType.SCENE_CONTROLLER: 'binary_sensor',
|
||||||
|
zll.DeviceType.ON_OFF_SENSOR: 'binary_sensor',
|
||||||
|
})
|
||||||
|
|
||||||
|
SINGLE_INPUT_CLUSTER_DEVICE_CLASS.update({
|
||||||
|
zcl.clusters.general.OnOff: 'switch',
|
||||||
|
zcl.clusters.measurement.RelativeHumidity: 'sensor',
|
||||||
|
zcl.clusters.measurement.TemperatureMeasurement: 'sensor',
|
||||||
|
zcl.clusters.measurement.PressureMeasurement: 'sensor',
|
||||||
|
zcl.clusters.measurement.IlluminanceMeasurement: 'sensor',
|
||||||
|
zcl.clusters.smartenergy.Metering: 'sensor',
|
||||||
|
zcl.clusters.homeautomation.ElectricalMeasurement: 'sensor',
|
||||||
|
zcl.clusters.general.PowerConfiguration: 'sensor',
|
||||||
|
zcl.clusters.security.IasZone: 'binary_sensor',
|
||||||
|
zcl.clusters.measurement.OccupancySensing: 'binary_sensor',
|
||||||
|
zcl.clusters.hvac.Fan: 'fan',
|
||||||
|
})
|
||||||
|
SINGLE_OUTPUT_CLUSTER_DEVICE_CLASS.update({
|
||||||
|
zcl.clusters.general.OnOff: 'binary_sensor',
|
||||||
|
})
|
||||||
|
|
||||||
|
# A map of device/cluster to component/sub-component
|
||||||
|
CUSTOM_CLUSTER_MAPPINGS.update({
|
||||||
|
(quirks.smartthings.SmartthingsTemperatureHumiditySensor, 64581):
|
||||||
|
('sensor', RelativeHumiditySensor)
|
||||||
|
})
|
||||||
|
|
||||||
|
# A map of hass components to all Zigbee clusters it could use
|
||||||
|
for profile_id, classes in DEVICE_CLASS.items():
|
||||||
|
profile = PROFILES[profile_id]
|
||||||
|
for device_type, component in classes.items():
|
||||||
|
if component not in COMPONENT_CLUSTERS:
|
||||||
|
COMPONENT_CLUSTERS[component] = (set(), set())
|
||||||
|
clusters = profile.CLUSTERS[device_type]
|
||||||
|
COMPONENT_CLUSTERS[component][0].update(clusters[0])
|
||||||
|
COMPONENT_CLUSTERS[component][1].update(clusters[1])
|
Loading…
x
Reference in New Issue
Block a user