47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
"""Helpers to check recorder."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import asyncio
|
|
from dataclasses import dataclass, field
|
|
from typing import Any
|
|
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.util.hass_dict import HassKey
|
|
|
|
DOMAIN: HassKey[RecorderData] = HassKey("recorder")
|
|
|
|
|
|
@dataclass(slots=True)
|
|
class RecorderData:
|
|
"""Recorder data stored in hass.data."""
|
|
|
|
recorder_platforms: dict[str, Any] = field(default_factory=dict)
|
|
db_connected: asyncio.Future[bool] = field(default_factory=asyncio.Future)
|
|
|
|
|
|
def async_migration_in_progress(hass: HomeAssistant) -> bool:
|
|
"""Check to see if a recorder migration is in progress."""
|
|
if "recorder" not in hass.config.components:
|
|
return False
|
|
# pylint: disable-next=import-outside-toplevel
|
|
from homeassistant.components import recorder
|
|
|
|
return recorder.util.async_migration_in_progress(hass)
|
|
|
|
|
|
@callback
|
|
def async_initialize_recorder(hass: HomeAssistant) -> None:
|
|
"""Initialize recorder data."""
|
|
hass.data[DOMAIN] = RecorderData()
|
|
|
|
|
|
async def async_wait_recorder(hass: HomeAssistant) -> bool:
|
|
"""Wait for recorder to initialize and return connection status.
|
|
|
|
Returns False immediately if the recorder is not enabled.
|
|
"""
|
|
if DOMAIN not in hass.data:
|
|
return False
|
|
return await hass.data[DOMAIN].db_connected
|