core/homeassistant/helpers/restore_state.py

257 lines
9.1 KiB
Python
Raw Normal View History

"""Support for restoring entity states on startup."""
import asyncio
from datetime import datetime, timedelta
import logging
from typing import Any, Dict, List, Optional, Set
from homeassistant.const import EVENT_HOMEASSISTANT_START, EVENT_HOMEASSISTANT_STOP
from homeassistant.core import (
CoreState,
2019-07-31 19:25:30 +00:00
HomeAssistant,
State,
callback,
2019-07-31 19:25:30 +00:00
valid_entity_id,
)
from homeassistant.exceptions import HomeAssistantError
from homeassistant.helpers.entity import Entity
from homeassistant.helpers.event import async_track_time_interval
from homeassistant.helpers.json import JSONEncoder
from homeassistant.helpers.storage import Store
import homeassistant.util.dt as dt_util
# mypy: allow-untyped-calls, allow-untyped-defs, no-check-untyped-defs
# mypy: no-warn-return-any
2019-07-31 19:25:30 +00:00
DATA_RESTORE_STATE_TASK = "restore_state_task"
_LOGGER = logging.getLogger(__name__)
2019-07-31 19:25:30 +00:00
STORAGE_KEY = "core.restore_state"
STORAGE_VERSION = 1
# How long between periodically saving the current states to disk
STATE_DUMP_INTERVAL = timedelta(minutes=15)
# How long should a saved state be preserved if the entity no longer exists
STATE_EXPIRATION = timedelta(days=7)
class StoredState:
"""Object to represent a stored state."""
def __init__(self, state: State, last_seen: datetime) -> None:
"""Initialize a new stored state."""
self.state = state
self.last_seen = last_seen
def as_dict(self) -> Dict:
"""Return a dict representation of the stored state."""
2019-07-31 19:25:30 +00:00
return {"state": self.state.as_dict(), "last_seen": self.last_seen}
@classmethod
2019-07-31 19:25:30 +00:00
def from_dict(cls, json_dict: Dict) -> "StoredState":
"""Initialize a stored state from a dict."""
2019-07-31 19:25:30 +00:00
last_seen = json_dict["last_seen"]
if isinstance(last_seen, str):
last_seen = dt_util.parse_datetime(last_seen)
2019-07-31 19:25:30 +00:00
return cls(State.from_dict(json_dict["state"]), last_seen)
2019-07-31 19:25:30 +00:00
class RestoreStateData:
"""Helper class for managing the helper saved data."""
@classmethod
2019-07-31 19:25:30 +00:00
async def async_get_instance(cls, hass: HomeAssistant) -> "RestoreStateData":
"""Get the singleton instance of this data helper."""
task = hass.data.get(DATA_RESTORE_STATE_TASK)
if task is None:
2019-07-31 19:25:30 +00:00
async def load_instance(hass: HomeAssistant) -> "RestoreStateData":
"""Set up the restore state helper."""
data = cls(hass)
try:
stored_states = await data.store.async_load()
except HomeAssistantError as exc:
_LOGGER.error("Error loading last states", exc_info=exc)
stored_states = None
if stored_states is None:
2019-07-31 19:25:30 +00:00
_LOGGER.debug("Not creating cache - no saved states found")
data.last_states = {}
else:
data.last_states = {
2019-07-31 19:25:30 +00:00
item["state"]["entity_id"]: StoredState.from_dict(item)
for item in stored_states
2019-07-31 19:25:30 +00:00
if valid_entity_id(item["state"]["entity_id"])
}
_LOGGER.debug("Created cache with %s", list(data.last_states))
if hass.state == CoreState.running:
data.async_setup_dump()
else:
hass.bus.async_listen_once(
2019-07-31 19:25:30 +00:00
EVENT_HOMEASSISTANT_START, data.async_setup_dump
)
return data
task = hass.data[DATA_RESTORE_STATE_TASK] = hass.async_create_task(
2019-07-31 19:25:30 +00:00
load_instance(hass)
)
return await task
def __init__(self, hass: HomeAssistant) -> None:
"""Initialize the restore state data class."""
self.hass: HomeAssistant = hass
self.store: Store = Store(
2019-07-31 19:25:30 +00:00
hass, STORAGE_VERSION, STORAGE_KEY, encoder=JSONEncoder
)
self.last_states: Dict[str, StoredState] = {}
self.entity_ids: Set[str] = set()
def async_get_stored_states(self) -> List[StoredState]:
"""Get the set of states which should be stored.
This includes the states of all registered entities, as well as the
stored states from the previous run, which have not been created as
entities on this run, and have not expired.
"""
now = dt_util.utcnow()
all_states = self.hass.states.async_all()
current_entity_ids = set(state.entity_id for state in all_states)
# Start with the currently registered states
2019-07-31 19:25:30 +00:00
stored_states = [
StoredState(state, now)
for state in all_states
if state.entity_id in self.entity_ids
]
expiration_time = now - STATE_EXPIRATION
for entity_id, stored_state in self.last_states.items():
# Don't save old states that have entities in the current run
if entity_id in current_entity_ids:
continue
# Don't save old states that have expired
if stored_state.last_seen < expiration_time:
continue
stored_states.append(stored_state)
return stored_states
async def async_dump_states(self) -> None:
"""Save the current state machine to storage."""
_LOGGER.debug("Dumping states")
try:
2019-07-31 19:25:30 +00:00
await self.store.async_save(
[
stored_state.as_dict()
for stored_state in self.async_get_stored_states()
]
)
except HomeAssistantError as exc:
_LOGGER.error("Error saving current states", exc_info=exc)
@callback
def async_setup_dump(self, *args: Any) -> None:
"""Set up the restore state listeners."""
def _async_dump_states(*_: Any) -> None:
self.hass.async_create_task(self.async_dump_states())
# Dump the initial states now. This helps minimize the risk of having
# old states loaded by overwritting the last states once home assistant
# has started and the old states have been read.
_async_dump_states()
# Dump states periodically
async_track_time_interval(self.hass, _async_dump_states, STATE_DUMP_INTERVAL)
# Dump states when stopping hass
self.hass.bus.async_listen_once(EVENT_HOMEASSISTANT_STOP, _async_dump_states)
2017-03-05 09:54:49 +00:00
@callback
def async_restore_entity_added(self, entity_id: str) -> None:
"""Store this entity's state when hass is shutdown."""
self.entity_ids.add(entity_id)
@callback
def async_restore_entity_removed(self, entity_id: str) -> None:
"""Unregister this entity from saving state."""
# When an entity is being removed from hass, store its last state. This
# allows us to support state restoration if the entity is removed, then
# re-added while hass is still running.
state = self.hass.states.get(entity_id)
# To fully mimic all the attribute data types when loaded from storage,
# we're going to serialize it to JSON and then re-load it.
if state is not None:
state = State.from_dict(_encode_complex(state.as_dict()))
if state is not None:
self.last_states[entity_id] = StoredState(state, dt_util.utcnow())
self.entity_ids.remove(entity_id)
def _encode(value):
"""Little helper to JSON encode a value."""
try:
return JSONEncoder.default(None, value)
except TypeError:
return value
def _encode_complex(value):
"""Recursively encode all values with the JSONEncoder."""
if isinstance(value, dict):
2019-07-31 19:25:30 +00:00
return {_encode(key): _encode_complex(value) for key, value in value.items()}
2019-07-11 03:40:44 +00:00
if isinstance(value, list):
return [_encode_complex(val) for val in value]
new_value = _encode(value)
if isinstance(new_value, type(value)):
return new_value
return _encode_complex(new_value)
class RestoreEntity(Entity):
"""Mixin class for restoring previous entity state."""
async def async_internal_added_to_hass(self) -> None:
"""Register this entity as a restorable entity."""
assert self.hass is not None
_, data = await asyncio.gather(
super().async_internal_added_to_hass(),
RestoreStateData.async_get_instance(self.hass),
)
data.async_restore_entity_added(self.entity_id)
async def async_internal_will_remove_from_hass(self) -> None:
"""Run when entity will be removed from hass."""
assert self.hass is not None
_, data = await asyncio.gather(
super().async_internal_will_remove_from_hass(),
RestoreStateData.async_get_instance(self.hass),
)
data.async_restore_entity_removed(self.entity_id)
async def async_get_last_state(self) -> Optional[State]:
"""Get the entity state from the previous run."""
if self.hass is None or self.entity_id is None:
# Return None if this entity isn't added to hass yet
_LOGGER.warning("Cannot get last state. Entity not added to hass")
return None
data = await RestoreStateData.async_get_instance(self.hass)
if self.entity_id not in data.last_states:
return None
return data.last_states[self.entity_id].state