178 lines
4.8 KiB
Python
178 lines
4.8 KiB
Python
"""Helper methods to help with platform discovery.
|
|
|
|
There are two different types of discoveries that can be fired/listened for.
|
|
- listen/discover is for services. These are targeted at a component.
|
|
- listen_platform/discover_platform is for platforms. These are used by
|
|
components to allow discovery of their platforms.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
from typing import Any, Callable, TypedDict
|
|
|
|
from homeassistant import core, setup
|
|
from homeassistant.core import CALLBACK_TYPE
|
|
from homeassistant.loader import bind_hass
|
|
|
|
from .dispatcher import async_dispatcher_connect, async_dispatcher_send
|
|
from .typing import ConfigType, DiscoveryInfoType
|
|
|
|
SIGNAL_PLATFORM_DISCOVERED = "discovery.platform_discovered_{}"
|
|
EVENT_LOAD_PLATFORM = "load_platform.{}"
|
|
ATTR_PLATFORM = "platform"
|
|
ATTR_DISCOVERED = "discovered"
|
|
|
|
# mypy: disallow-any-generics
|
|
|
|
|
|
class DiscoveryDict(TypedDict):
|
|
"""Discovery data."""
|
|
|
|
service: str
|
|
platform: str | None
|
|
discovered: DiscoveryInfoType | None
|
|
|
|
|
|
@core.callback
|
|
@bind_hass
|
|
def async_listen(
|
|
hass: core.HomeAssistant,
|
|
service: str,
|
|
callback: CALLBACK_TYPE,
|
|
) -> None:
|
|
"""Set up listener for discovery of specific service.
|
|
|
|
Service can be a string or a list/tuple.
|
|
"""
|
|
job = core.HassJob(callback)
|
|
|
|
async def discovery_event_listener(discovered: DiscoveryDict) -> None:
|
|
"""Listen for discovery events."""
|
|
task = hass.async_run_hass_job(
|
|
job, discovered["service"], discovered["discovered"]
|
|
)
|
|
if task:
|
|
await task
|
|
|
|
async_dispatcher_connect(
|
|
hass, SIGNAL_PLATFORM_DISCOVERED.format(service), discovery_event_listener
|
|
)
|
|
|
|
|
|
@bind_hass
|
|
def discover(
|
|
hass: core.HomeAssistant,
|
|
service: str,
|
|
discovered: DiscoveryInfoType,
|
|
component: str,
|
|
hass_config: ConfigType,
|
|
) -> None:
|
|
"""Fire discovery event. Can ensure a component is loaded."""
|
|
hass.add_job(
|
|
async_discover( # type: ignore
|
|
hass, service, discovered, component, hass_config
|
|
)
|
|
)
|
|
|
|
|
|
@bind_hass
|
|
async def async_discover(
|
|
hass: core.HomeAssistant,
|
|
service: str,
|
|
discovered: DiscoveryInfoType | None,
|
|
component: str | None,
|
|
hass_config: ConfigType,
|
|
) -> None:
|
|
"""Fire discovery event. Can ensure a component is loaded."""
|
|
if component is not None and component not in hass.config.components:
|
|
await setup.async_setup_component(hass, component, hass_config)
|
|
|
|
data: DiscoveryDict = {
|
|
"service": service,
|
|
"platform": None,
|
|
"discovered": discovered,
|
|
}
|
|
|
|
async_dispatcher_send(hass, SIGNAL_PLATFORM_DISCOVERED.format(service), data)
|
|
|
|
|
|
@bind_hass
|
|
def async_listen_platform(
|
|
hass: core.HomeAssistant,
|
|
component: str,
|
|
callback: Callable[[str, dict[str, Any] | None], Any],
|
|
) -> None:
|
|
"""Register a platform loader listener.
|
|
|
|
This method must be run in the event loop.
|
|
"""
|
|
service = EVENT_LOAD_PLATFORM.format(component)
|
|
job = core.HassJob(callback)
|
|
|
|
async def discovery_platform_listener(discovered: DiscoveryDict) -> None:
|
|
"""Listen for platform discovery events."""
|
|
platform = discovered["platform"]
|
|
|
|
if not platform:
|
|
return
|
|
|
|
task = hass.async_run_hass_job(job, platform, discovered.get("discovered"))
|
|
if task:
|
|
await task
|
|
|
|
async_dispatcher_connect(
|
|
hass, SIGNAL_PLATFORM_DISCOVERED.format(service), discovery_platform_listener
|
|
)
|
|
|
|
|
|
@bind_hass
|
|
def load_platform(
|
|
hass: core.HomeAssistant,
|
|
component: str,
|
|
platform: str,
|
|
discovered: DiscoveryInfoType,
|
|
hass_config: ConfigType,
|
|
) -> None:
|
|
"""Load a component and platform dynamically."""
|
|
hass.add_job(
|
|
async_load_platform( # type: ignore
|
|
hass, component, platform, discovered, hass_config
|
|
)
|
|
)
|
|
|
|
|
|
@bind_hass
|
|
async def async_load_platform(
|
|
hass: core.HomeAssistant,
|
|
component: str,
|
|
platform: str,
|
|
discovered: DiscoveryInfoType,
|
|
hass_config: ConfigType,
|
|
) -> None:
|
|
"""Load a component and platform dynamically.
|
|
|
|
Use `async_listen_platform` to register a callback for these events.
|
|
|
|
Warning: Do not await this inside a setup method to avoid a dead lock.
|
|
Use `hass.async_create_task(async_load_platform(..))` instead.
|
|
"""
|
|
assert hass_config, "You need to pass in the real hass config"
|
|
|
|
setup_success = True
|
|
|
|
if component not in hass.config.components:
|
|
setup_success = await setup.async_setup_component(hass, component, hass_config)
|
|
|
|
# No need to send signal if we could not set up component
|
|
if not setup_success:
|
|
return
|
|
|
|
service = EVENT_LOAD_PLATFORM.format(component)
|
|
|
|
data: DiscoveryDict = {
|
|
"service": service,
|
|
"platform": platform,
|
|
"discovered": discovered,
|
|
}
|
|
|
|
async_dispatcher_send(hass, SIGNAL_PLATFORM_DISCOVERED.format(service), data)
|