core/homeassistant/helpers/state.py

59 lines
1.6 KiB
Python
Raw Normal View History

2015-03-16 06:36:42 +00:00
"""
homeassistant.helpers.state
~~~~~~~~~~~~~~~~~~~~~~~~~~~
Helpers that help with state related things.
"""
import logging
from homeassistant import State
import homeassistant.util.dt as dt_util
2015-03-17 06:32:18 +00:00
from homeassistant.const import (
STATE_ON, STATE_OFF, SERVICE_TURN_ON, SERVICE_TURN_OFF, ATTR_ENTITY_ID)
2015-03-16 06:36:42 +00:00
_LOGGER = logging.getLogger(__name__)
# pylint: disable=too-few-public-methods, attribute-defined-outside-init
class TrackStates(object):
"""
Records the time when the with-block is entered. Will add all states
that have changed since the start time to the return list when with-block
is exited.
"""
def __init__(self, hass):
self.hass = hass
self.states = []
def __enter__(self):
self.now = dt_util.utcnow()
2015-03-16 06:36:42 +00:00
return self.states
def __exit__(self, exc_type, exc_value, traceback):
self.states.extend(self.hass.states.get_since(self.now))
2015-03-17 06:32:18 +00:00
def reproduce_state(hass, states, blocking=False):
2015-03-16 06:36:42 +00:00
""" Takes in a state and will try to have the entity reproduce it. """
if isinstance(states, State):
states = [states]
for state in states:
current_state = hass.states.get(state.entity_id)
if current_state is None:
continue
if state.state == STATE_ON:
2015-03-17 06:32:18 +00:00
service = SERVICE_TURN_ON
2015-03-16 06:36:42 +00:00
elif state.state == STATE_OFF:
2015-03-17 06:32:18 +00:00
service = SERVICE_TURN_OFF
2015-03-16 06:36:42 +00:00
else:
_LOGGER.warning("Unable to reproduce state for %s", state)
2015-03-17 06:32:18 +00:00
continue
service_data = dict(state.attributes)
service_data[ATTR_ENTITY_ID] = state.entity_id
hass.services.call(state.domain, service, service_data, blocking)