mirror of
https://github.com/home-assistant/core.git
synced 2025-07-13 16:27:08 +00:00
Support config entry unload in arcam_fmj (#35656)
* Support entry unload * Switch to create_task and skip checking for available task
This commit is contained in:
parent
df830a50e7
commit
62aa16e6e3
@ -27,6 +27,7 @@ from .const import (
|
|||||||
DOMAIN,
|
DOMAIN,
|
||||||
DOMAIN_DATA_CONFIG,
|
DOMAIN_DATA_CONFIG,
|
||||||
DOMAIN_DATA_ENTRIES,
|
DOMAIN_DATA_ENTRIES,
|
||||||
|
DOMAIN_DATA_TASKS,
|
||||||
SIGNAL_CLIENT_DATA,
|
SIGNAL_CLIENT_DATA,
|
||||||
SIGNAL_CLIENT_STARTED,
|
SIGNAL_CLIENT_STARTED,
|
||||||
SIGNAL_CLIENT_STOPPED,
|
SIGNAL_CLIENT_STOPPED,
|
||||||
@ -73,6 +74,15 @@ DEVICE_SCHEMA = vol.Schema(
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
async def _await_cancel(task):
|
||||||
|
task.cancel()
|
||||||
|
try:
|
||||||
|
await task
|
||||||
|
except asyncio.CancelledError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
CONFIG_SCHEMA = vol.Schema(
|
CONFIG_SCHEMA = vol.Schema(
|
||||||
{DOMAIN: vol.All(cv.ensure_list, [DEVICE_SCHEMA])}, extra=vol.ALLOW_EXTRA
|
{DOMAIN: vol.All(cv.ensure_list, [DEVICE_SCHEMA])}, extra=vol.ALLOW_EXTRA
|
||||||
)
|
)
|
||||||
@ -81,6 +91,7 @@ CONFIG_SCHEMA = vol.Schema(
|
|||||||
async def async_setup(hass: HomeAssistantType, config: ConfigType):
|
async def async_setup(hass: HomeAssistantType, config: ConfigType):
|
||||||
"""Set up the component."""
|
"""Set up the component."""
|
||||||
hass.data[DOMAIN_DATA_ENTRIES] = {}
|
hass.data[DOMAIN_DATA_ENTRIES] = {}
|
||||||
|
hass.data[DOMAIN_DATA_TASKS] = {}
|
||||||
hass.data[DOMAIN_DATA_CONFIG] = {}
|
hass.data[DOMAIN_DATA_CONFIG] = {}
|
||||||
|
|
||||||
for device in config[DOMAIN]:
|
for device in config[DOMAIN]:
|
||||||
@ -94,6 +105,13 @@ async def async_setup(hass: HomeAssistantType, config: ConfigType):
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
async def _stop(_):
|
||||||
|
asyncio.gather(
|
||||||
|
*[_await_cancel(task) for task in hass.data[DOMAIN_DATA_TASKS].values()]
|
||||||
|
)
|
||||||
|
|
||||||
|
hass.bus.async_listen_once(EVENT_HOMEASSISTANT_STOP, _stop)
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
@ -107,13 +125,15 @@ async def async_setup_entry(hass: HomeAssistantType, entry: config_entries.Confi
|
|||||||
{CONF_HOST: entry.data[CONF_HOST], CONF_PORT: entry.data[CONF_PORT]}
|
{CONF_HOST: entry.data[CONF_HOST], CONF_PORT: entry.data[CONF_PORT]}
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
tasks = hass.data.setdefault(DOMAIN_DATA_TASKS, {})
|
||||||
|
|
||||||
hass.data[DOMAIN_DATA_ENTRIES][entry.entry_id] = {
|
hass.data[DOMAIN_DATA_ENTRIES][entry.entry_id] = {
|
||||||
"client": client,
|
"client": client,
|
||||||
"config": config,
|
"config": config,
|
||||||
}
|
}
|
||||||
|
|
||||||
asyncio.ensure_future(_run_client(hass, client, config[CONF_SCAN_INTERVAL]))
|
task = asyncio.create_task(_run_client(hass, client, DEFAULT_SCAN_INTERVAL))
|
||||||
|
tasks[entry.entry_id] = task
|
||||||
|
|
||||||
hass.async_create_task(
|
hass.async_create_task(
|
||||||
hass.config_entries.async_forward_entry_setup(entry, "media_player")
|
hass.config_entries.async_forward_entry_setup(entry, "media_player")
|
||||||
@ -122,22 +142,23 @@ async def async_setup_entry(hass: HomeAssistantType, entry: config_entries.Confi
|
|||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
async def async_unload_entry(hass, entry):
|
||||||
|
"""Cleanup before removing config entry."""
|
||||||
|
await hass.config_entries.async_forward_entry_unload(entry, "media_player")
|
||||||
|
|
||||||
|
task = hass.data[DOMAIN_DATA_TASKS].pop(entry.entry_id)
|
||||||
|
await _await_cancel(task)
|
||||||
|
|
||||||
|
hass.data[DOMAIN_DATA_ENTRIES].pop(entry.entry_id)
|
||||||
|
|
||||||
|
return True
|
||||||
|
|
||||||
|
|
||||||
async def _run_client(hass, client, interval):
|
async def _run_client(hass, client, interval):
|
||||||
task = asyncio.Task.current_task()
|
|
||||||
run = True
|
|
||||||
|
|
||||||
async def _stop(_):
|
|
||||||
nonlocal run
|
|
||||||
run = False
|
|
||||||
task.cancel()
|
|
||||||
await task
|
|
||||||
|
|
||||||
hass.bus.async_listen_once(EVENT_HOMEASSISTANT_STOP, _stop)
|
|
||||||
|
|
||||||
def _listen(_):
|
def _listen(_):
|
||||||
hass.helpers.dispatcher.async_dispatcher_send(SIGNAL_CLIENT_DATA, client.host)
|
hass.helpers.dispatcher.async_dispatcher_send(SIGNAL_CLIENT_DATA, client.host)
|
||||||
|
|
||||||
while run:
|
while True:
|
||||||
try:
|
try:
|
||||||
with async_timeout.timeout(interval):
|
with async_timeout.timeout(interval):
|
||||||
await client.start()
|
await client.start()
|
||||||
@ -163,7 +184,7 @@ async def _run_client(hass, client, interval):
|
|||||||
except asyncio.TimeoutError:
|
except asyncio.TimeoutError:
|
||||||
continue
|
continue
|
||||||
except asyncio.CancelledError:
|
except asyncio.CancelledError:
|
||||||
return
|
raise
|
||||||
except Exception: # pylint: disable=broad-except
|
except Exception: # pylint: disable=broad-except
|
||||||
_LOGGER.exception("Unexpected exception, aborting arcam client")
|
_LOGGER.exception("Unexpected exception, aborting arcam client")
|
||||||
return
|
return
|
||||||
|
@ -12,4 +12,5 @@ DEFAULT_NAME = "Arcam FMJ"
|
|||||||
DEFAULT_SCAN_INTERVAL = 5
|
DEFAULT_SCAN_INTERVAL = 5
|
||||||
|
|
||||||
DOMAIN_DATA_ENTRIES = f"{DOMAIN}.entries"
|
DOMAIN_DATA_ENTRIES = f"{DOMAIN}.entries"
|
||||||
|
DOMAIN_DATA_TASKS = f"{DOMAIN}.tasks"
|
||||||
DOMAIN_DATA_CONFIG = f"{DOMAIN}.config"
|
DOMAIN_DATA_CONFIG = f"{DOMAIN}.config"
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
"name": "Arcam FMJ Receivers",
|
"name": "Arcam FMJ Receivers",
|
||||||
"config_flow": false,
|
"config_flow": false,
|
||||||
"documentation": "https://www.home-assistant.io/integrations/arcam_fmj",
|
"documentation": "https://www.home-assistant.io/integrations/arcam_fmj",
|
||||||
"requirements": ["arcam-fmj==0.4.4"],
|
"requirements": ["arcam-fmj==0.4.6"],
|
||||||
"codeowners": ["@elupus"]
|
"codeowners": ["@elupus"]
|
||||||
}
|
}
|
||||||
|
@ -266,7 +266,7 @@ aprslib==0.6.46
|
|||||||
aqualogic==1.0
|
aqualogic==1.0
|
||||||
|
|
||||||
# homeassistant.components.arcam_fmj
|
# homeassistant.components.arcam_fmj
|
||||||
arcam-fmj==0.4.4
|
arcam-fmj==0.4.6
|
||||||
|
|
||||||
# homeassistant.components.arris_tg2492lg
|
# homeassistant.components.arris_tg2492lg
|
||||||
arris-tg2492lg==1.0.0
|
arris-tg2492lg==1.0.0
|
||||||
|
@ -131,7 +131,7 @@ apprise==0.8.5
|
|||||||
aprslib==0.6.46
|
aprslib==0.6.46
|
||||||
|
|
||||||
# homeassistant.components.arcam_fmj
|
# homeassistant.components.arcam_fmj
|
||||||
arcam-fmj==0.4.4
|
arcam-fmj==0.4.6
|
||||||
|
|
||||||
# homeassistant.components.dlna_dmr
|
# homeassistant.components.dlna_dmr
|
||||||
# homeassistant.components.upnp
|
# homeassistant.components.upnp
|
||||||
|
Loading…
x
Reference in New Issue
Block a user