2013-09-24 18:39:58 -07:00
|
|
|
"""
|
|
|
|
homeassistant
|
|
|
|
~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Module to control the lights based on devices at home and the state of the sun.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
import time
|
2013-09-30 00:20:27 -07:00
|
|
|
import logging
|
|
|
|
import threading
|
|
|
|
from collections import defaultdict, namedtuple
|
|
|
|
from datetime import datetime
|
|
|
|
|
2013-10-08 18:50:30 -07:00
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
|
2013-09-30 00:20:27 -07:00
|
|
|
ALL_EVENTS = '*'
|
2013-11-11 14:58:57 -08:00
|
|
|
EVENT_HOMEASSISTANT_START = "homeassistant.start"
|
|
|
|
EVENT_HOMEASSISTANT_STOP = "homeassistant.stop"
|
2013-09-30 00:20:27 -07:00
|
|
|
EVENT_STATE_CHANGED = "state_changed"
|
|
|
|
EVENT_TIME_CHANGED = "time_changed"
|
|
|
|
|
2013-11-10 16:46:48 -08:00
|
|
|
TIMER_INTERVAL = 10 # seconds
|
2013-09-30 00:20:27 -07:00
|
|
|
|
|
|
|
# We want to be able to fire every time a minute starts (seconds=0).
|
|
|
|
# We want this so other modules can use that to make sure they fire
|
|
|
|
# every minute.
|
|
|
|
assert 60 % TIMER_INTERVAL == 0, "60 % TIMER_INTERVAL should be 0!"
|
|
|
|
|
2013-10-27 17:39:54 -07:00
|
|
|
DATE_STR_FORMAT = "%H:%M:%S %d-%m-%Y"
|
2013-09-30 00:20:27 -07:00
|
|
|
|
2013-11-10 16:46:48 -08:00
|
|
|
|
2013-09-30 00:20:27 -07:00
|
|
|
def start_home_assistant(eventbus):
|
|
|
|
""" Start home assistant. """
|
2013-11-11 14:58:57 -08:00
|
|
|
request_shutdown = threading.Event()
|
|
|
|
|
|
|
|
eventbus.listen_once(EVENT_HOMEASSISTANT_STOP,
|
2013-11-11 17:46:08 -08:00
|
|
|
lambda event: request_shutdown.set())
|
2013-11-11 14:58:57 -08:00
|
|
|
|
2013-09-30 00:20:27 -07:00
|
|
|
Timer(eventbus)
|
|
|
|
|
2013-11-11 14:58:57 -08:00
|
|
|
eventbus.fire(EVENT_HOMEASSISTANT_START)
|
2013-09-30 00:20:27 -07:00
|
|
|
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
time.sleep(1)
|
|
|
|
|
2013-11-11 14:58:57 -08:00
|
|
|
if request_shutdown.isSet():
|
|
|
|
break
|
|
|
|
|
2013-09-30 00:20:27 -07:00
|
|
|
except KeyboardInterrupt:
|
|
|
|
break
|
|
|
|
|
2013-11-10 16:46:48 -08:00
|
|
|
|
2013-10-27 17:39:54 -07:00
|
|
|
def datetime_to_str(dattim):
|
2013-11-10 09:31:34 -08:00
|
|
|
""" Converts datetime to a string format.
|
|
|
|
|
|
|
|
@rtype : str
|
|
|
|
"""
|
2013-10-27 17:39:54 -07:00
|
|
|
return dattim.strftime(DATE_STR_FORMAT)
|
|
|
|
|
2013-11-10 16:46:48 -08:00
|
|
|
|
2013-10-27 17:39:54 -07:00
|
|
|
def str_to_datetime(dt_str):
|
2013-11-10 09:31:34 -08:00
|
|
|
""" Converts a string to a datetime object.
|
|
|
|
|
|
|
|
@rtype: datetime
|
|
|
|
"""
|
2013-10-27 17:39:54 -07:00
|
|
|
return datetime.strptime(dt_str, DATE_STR_FORMAT)
|
|
|
|
|
2013-11-10 16:46:48 -08:00
|
|
|
|
2013-09-30 00:20:27 -07:00
|
|
|
def ensure_list(parameter):
|
2013-11-10 09:31:34 -08:00
|
|
|
""" Wraps parameter in a list if it is not one and returns it.
|
|
|
|
|
|
|
|
@rtype : list
|
|
|
|
"""
|
2013-09-30 00:20:27 -07:00
|
|
|
return parameter if isinstance(parameter, list) else [parameter]
|
|
|
|
|
2013-11-10 16:46:48 -08:00
|
|
|
|
2013-09-30 00:20:27 -07:00
|
|
|
def matcher(subject, pattern):
|
|
|
|
""" Returns True if subject matches the pattern.
|
2013-10-07 23:55:19 -07:00
|
|
|
|
|
|
|
Pattern is either a list of allowed subjects or a '*'.
|
2013-11-10 09:31:34 -08:00
|
|
|
@rtype : bool
|
2013-10-07 23:55:19 -07:00
|
|
|
"""
|
2013-09-30 00:20:27 -07:00
|
|
|
return '*' in pattern or subject in pattern
|
2013-09-24 18:39:58 -07:00
|
|
|
|
2013-11-10 16:46:48 -08:00
|
|
|
|
2013-10-27 17:39:54 -07:00
|
|
|
def create_state(state, attributes=None, last_changed=None):
|
|
|
|
""" Creates a new state and initializes defaults where necessary. """
|
|
|
|
attributes = attributes or {}
|
|
|
|
last_changed = last_changed or datetime.now()
|
|
|
|
|
|
|
|
return {'state': state,
|
|
|
|
'attributes': attributes,
|
2013-10-28 18:45:35 -07:00
|
|
|
'last_changed': datetime_to_str(last_changed)}
|
2013-10-27 17:39:54 -07:00
|
|
|
|
2013-11-10 16:46:48 -08:00
|
|
|
|
2013-09-30 00:20:27 -07:00
|
|
|
def track_state_change(eventbus, category, from_state, to_state, action):
|
|
|
|
""" Helper method to track specific state changes. """
|
|
|
|
from_state = ensure_list(from_state)
|
|
|
|
to_state = ensure_list(to_state)
|
2013-09-24 18:39:58 -07:00
|
|
|
|
2013-09-30 00:20:27 -07:00
|
|
|
def listener(event):
|
|
|
|
""" State change listener that listens for specific state changes. """
|
|
|
|
if category == event.data['category'] and \
|
2013-10-27 17:39:54 -07:00
|
|
|
matcher(event.data['old_state']['state'], from_state) and \
|
|
|
|
matcher(event.data['new_state']['state'], to_state):
|
2013-09-24 18:39:58 -07:00
|
|
|
|
2013-10-07 23:55:19 -07:00
|
|
|
action(event.data['category'],
|
|
|
|
event.data['old_state'],
|
|
|
|
event.data['new_state'])
|
2013-09-24 18:39:58 -07:00
|
|
|
|
2013-09-30 00:20:27 -07:00
|
|
|
eventbus.listen(EVENT_STATE_CHANGED, listener)
|
2013-09-24 18:39:58 -07:00
|
|
|
|
2013-11-10 16:46:48 -08:00
|
|
|
|
2013-10-07 23:55:19 -07:00
|
|
|
# pylint: disable=too-many-arguments
|
|
|
|
def track_time_change(eventbus, action,
|
|
|
|
year='*', month='*', day='*',
|
|
|
|
hour='*', minute='*', second='*',
|
|
|
|
point_in_time=None, listen_once=False):
|
2013-09-30 00:20:27 -07:00
|
|
|
""" Adds a listener that will listen for a specified or matching time. """
|
|
|
|
year, month, day = ensure_list(year), ensure_list(month), ensure_list(day)
|
2013-10-07 23:55:19 -07:00
|
|
|
hour, minute = ensure_list(hour), ensure_list(minute)
|
|
|
|
second = ensure_list(second)
|
2013-09-30 00:20:27 -07:00
|
|
|
|
|
|
|
def listener(event):
|
|
|
|
""" Listens for matching time_changed events. """
|
2013-10-27 17:39:54 -07:00
|
|
|
now = str_to_datetime(event.data['now'])
|
|
|
|
|
2013-11-10 09:31:34 -08:00
|
|
|
if (point_in_time and now > point_in_time) or \
|
2013-11-10 16:46:48 -08:00
|
|
|
(not point_in_time and
|
|
|
|
matcher(now.year, year) and
|
|
|
|
matcher(now.month, month) and
|
|
|
|
matcher(now.day, day) and
|
|
|
|
matcher(now.hour, hour) and
|
|
|
|
matcher(now.minute, minute) and
|
2013-10-27 17:39:54 -07:00
|
|
|
matcher(now.second, second)):
|
2013-09-30 00:20:27 -07:00
|
|
|
|
2013-10-07 23:55:19 -07:00
|
|
|
# point_in_time are exact points in time
|
|
|
|
# so we always remove it after fire
|
2013-10-08 18:50:30 -07:00
|
|
|
if listen_once or point_in_time:
|
|
|
|
event.eventbus.remove_listener(EVENT_TIME_CHANGED, listener)
|
2013-09-30 00:20:27 -07:00
|
|
|
|
2013-10-27 17:39:54 -07:00
|
|
|
action(now)
|
2013-09-30 00:20:27 -07:00
|
|
|
|
|
|
|
eventbus.listen(EVENT_TIME_CHANGED, listener)
|
|
|
|
|
2013-11-10 16:46:48 -08:00
|
|
|
|
2013-10-08 18:50:30 -07:00
|
|
|
Event = namedtuple("Event", ["eventbus", "event_type", "data"])
|
|
|
|
|
2013-11-10 16:46:48 -08:00
|
|
|
|
2013-09-30 00:20:27 -07:00
|
|
|
class EventBus(object):
|
2013-10-07 23:55:19 -07:00
|
|
|
""" Class that allows code to listen for- and fire events. """
|
2013-09-30 00:20:27 -07:00
|
|
|
|
|
|
|
def __init__(self):
|
2013-11-01 12:28:18 -07:00
|
|
|
self._listeners = defaultdict(list)
|
2013-09-24 18:39:58 -07:00
|
|
|
self.logger = logging.getLogger(__name__)
|
|
|
|
|
2013-11-01 12:28:18 -07:00
|
|
|
@property
|
|
|
|
def listeners(self):
|
|
|
|
""" List of events that is being listened for. """
|
2013-11-10 16:46:48 -08:00
|
|
|
return {key: len(self._listeners[key])
|
|
|
|
for key in self._listeners.keys()
|
|
|
|
if len(self._listeners[key]) > 0}
|
2013-11-01 12:28:18 -07:00
|
|
|
|
2013-10-08 18:50:30 -07:00
|
|
|
def fire(self, event_type, event_data=None):
|
2013-09-30 00:20:27 -07:00
|
|
|
""" Fire an event. """
|
|
|
|
|
2013-10-08 18:50:30 -07:00
|
|
|
if not event_data:
|
|
|
|
event_data = {}
|
2013-09-30 00:20:27 -07:00
|
|
|
|
2013-10-08 18:50:30 -07:00
|
|
|
self.logger.info("EventBus:Event {}: {}".format(
|
2013-11-10 16:46:48 -08:00
|
|
|
event_type, event_data))
|
2013-09-30 00:20:27 -07:00
|
|
|
|
2013-10-08 18:50:30 -07:00
|
|
|
def run():
|
|
|
|
""" Fire listeners for event. """
|
|
|
|
event = Event(self, event_type, event_data)
|
|
|
|
|
2013-10-24 00:29:33 +01:00
|
|
|
# We do not use itertools.chain() because some listeners might
|
|
|
|
# choose to remove themselves as a listener while being executed
|
2013-11-01 12:28:18 -07:00
|
|
|
for listener in self._listeners[ALL_EVENTS] + \
|
2013-11-10 16:46:48 -08:00
|
|
|
self._listeners[event.event_type]:
|
2013-10-06 23:06:59 -07:00
|
|
|
try:
|
2013-10-08 18:50:30 -07:00
|
|
|
listener(event)
|
2013-10-06 23:06:59 -07:00
|
|
|
|
2013-11-10 16:46:48 -08:00
|
|
|
except Exception: # pylint: disable=broad-except
|
2013-10-06 23:06:59 -07:00
|
|
|
self.logger.exception("EventBus:Exception in listener")
|
2013-09-30 00:20:27 -07:00
|
|
|
|
2013-10-08 18:50:30 -07:00
|
|
|
# We dont want the eventbus to be blocking - run in a thread.
|
2013-09-30 00:20:27 -07:00
|
|
|
threading.Thread(target=run).start()
|
2013-09-24 18:39:58 -07:00
|
|
|
|
2013-10-08 18:50:30 -07:00
|
|
|
def listen(self, event_type, listener):
|
2013-09-30 00:20:27 -07:00
|
|
|
""" Listen for all events or events of a specific type.
|
2013-09-24 18:39:58 -07:00
|
|
|
|
2013-10-07 23:55:19 -07:00
|
|
|
To listen to all events specify the constant ``ALL_EVENTS``
|
|
|
|
as event_type.
|
|
|
|
"""
|
2013-11-01 12:28:18 -07:00
|
|
|
self._listeners[event_type].append(listener)
|
2013-09-24 18:39:58 -07:00
|
|
|
|
2013-10-24 00:29:33 +01:00
|
|
|
def listen_once(self, event_type, listener):
|
|
|
|
""" Listen once for event of a specific type.
|
|
|
|
|
|
|
|
To listen to all events specify the constant ``ALL_EVENTS``
|
|
|
|
as event_type.
|
2013-10-25 11:05:34 +01:00
|
|
|
|
|
|
|
Note: at the moment it is impossible to remove a one time listener.
|
2013-10-24 00:29:33 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
def onetime_listener(event):
|
|
|
|
""" Removes listener from eventbus and then fires listener. """
|
|
|
|
self.remove_listener(event_type, onetime_listener)
|
|
|
|
|
|
|
|
listener(event)
|
|
|
|
|
|
|
|
self.listen(event_type, onetime_listener)
|
|
|
|
|
2013-10-08 18:50:30 -07:00
|
|
|
def remove_listener(self, event_type, listener):
|
|
|
|
""" Removes a listener of a specific event_type. """
|
|
|
|
try:
|
2013-11-01 12:28:18 -07:00
|
|
|
self._listeners[event_type].remove(listener)
|
2013-10-24 00:29:33 +01:00
|
|
|
|
2013-11-01 12:28:18 -07:00
|
|
|
if len(self._listeners[event_type]) == 0:
|
|
|
|
del self._listeners[event_type]
|
2013-10-24 00:29:33 +01:00
|
|
|
|
2013-10-08 18:50:30 -07:00
|
|
|
except ValueError:
|
|
|
|
pass
|
2013-09-30 00:20:27 -07:00
|
|
|
|
2013-11-10 16:46:48 -08:00
|
|
|
|
2013-09-30 00:20:27 -07:00
|
|
|
class StateMachine(object):
|
2013-10-24 00:08:28 +01:00
|
|
|
""" Helper class that tracks the state of different categories. """
|
2013-09-30 00:20:27 -07:00
|
|
|
|
|
|
|
def __init__(self, eventbus):
|
|
|
|
self.states = dict()
|
|
|
|
self.eventbus = eventbus
|
2013-10-08 18:50:30 -07:00
|
|
|
self.lock = threading.Lock()
|
2013-09-30 00:20:27 -07:00
|
|
|
|
2013-10-24 00:08:28 +01:00
|
|
|
@property
|
|
|
|
def categories(self):
|
|
|
|
""" List of categories which states are being tracked. """
|
|
|
|
return self.states.keys()
|
|
|
|
|
2013-11-18 22:45:19 -08:00
|
|
|
def remove_category(self, category):
|
|
|
|
""" Removes a category from the state machine.
|
|
|
|
|
|
|
|
Returns boolean to indicate if a category was removed. """
|
|
|
|
try:
|
|
|
|
del self.states[category]
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
except KeyError:
|
|
|
|
# if category does not exist
|
|
|
|
return False
|
|
|
|
|
2013-10-24 07:57:08 +01:00
|
|
|
def set_state(self, category, new_state, attributes=None):
|
|
|
|
""" Set the state of a category, add category if it does not exist.
|
|
|
|
|
|
|
|
Attributes is an optional dict to specify attributes of this state. """
|
|
|
|
|
|
|
|
attributes = attributes or {}
|
2013-09-30 00:20:27 -07:00
|
|
|
|
|
|
|
self.lock.acquire()
|
|
|
|
|
2013-10-24 00:08:28 +01:00
|
|
|
# Add category if it does not exist
|
2013-09-30 00:20:27 -07:00
|
|
|
if category not in self.states:
|
2013-10-27 17:39:54 -07:00
|
|
|
self.states[category] = create_state(new_state, attributes)
|
2013-09-30 00:20:27 -07:00
|
|
|
|
|
|
|
# Change state and fire listeners
|
|
|
|
else:
|
|
|
|
old_state = self.states[category]
|
|
|
|
|
2013-10-27 17:39:54 -07:00
|
|
|
if old_state['state'] != new_state or \
|
2013-11-10 16:46:48 -08:00
|
|
|
old_state['attributes'] != attributes:
|
2013-10-24 07:57:08 +01:00
|
|
|
|
2013-10-27 17:39:54 -07:00
|
|
|
self.states[category] = create_state(new_state, attributes)
|
2013-09-30 00:20:27 -07:00
|
|
|
|
2013-10-08 18:50:30 -07:00
|
|
|
self.eventbus.fire(EVENT_STATE_CHANGED,
|
2013-11-10 16:46:48 -08:00
|
|
|
{'category': category,
|
|
|
|
'old_state': old_state,
|
|
|
|
'new_state': self.states[category]})
|
2013-09-30 00:20:27 -07:00
|
|
|
|
|
|
|
self.lock.release()
|
|
|
|
|
|
|
|
def get_state(self, category):
|
2013-10-27 17:39:54 -07:00
|
|
|
""" Returns a dict (state,last_changed, attributes) describing
|
2013-10-07 23:55:19 -07:00
|
|
|
the state of the specified category. """
|
2013-11-18 22:45:19 -08:00
|
|
|
try:
|
2013-11-01 11:25:06 -07:00
|
|
|
# Make a copy so people won't accidently mutate the state
|
|
|
|
return dict(self.states[category])
|
2013-09-30 00:20:27 -07:00
|
|
|
|
2013-11-18 22:45:19 -08:00
|
|
|
except KeyError:
|
|
|
|
# If category does not exist
|
|
|
|
return None
|
|
|
|
|
2013-11-01 11:25:06 -07:00
|
|
|
def is_state(self, category, state):
|
|
|
|
""" Returns True if category exists and is specified state. """
|
|
|
|
cur_state = self.get_state(category)
|
2013-10-26 22:26:58 +01:00
|
|
|
|
2013-11-01 11:25:06 -07:00
|
|
|
return cur_state and cur_state['state'] == state
|
2013-10-26 22:26:58 +01:00
|
|
|
|
2013-11-10 16:46:48 -08:00
|
|
|
|
2013-09-30 00:20:27 -07:00
|
|
|
class Timer(threading.Thread):
|
|
|
|
""" Timer will sent out an event every TIMER_INTERVAL seconds. """
|
|
|
|
|
|
|
|
def __init__(self, eventbus):
|
|
|
|
threading.Thread.__init__(self)
|
|
|
|
|
2013-10-08 19:00:10 -07:00
|
|
|
self.daemon = True
|
2013-09-30 00:20:27 -07:00
|
|
|
self.eventbus = eventbus
|
|
|
|
|
2013-11-11 14:58:57 -08:00
|
|
|
eventbus.listen_once(EVENT_HOMEASSISTANT_START,
|
|
|
|
lambda event: self.start())
|
2013-09-30 00:20:27 -07:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
""" Start the timer. """
|
|
|
|
|
|
|
|
logging.getLogger(__name__).info("Timer:starting")
|
|
|
|
|
2013-10-24 01:42:16 +01:00
|
|
|
last_fired_on_second = -1
|
|
|
|
|
2013-09-24 18:39:58 -07:00
|
|
|
while True:
|
2013-10-24 01:42:16 +01:00
|
|
|
# Sleep till it is the next time that we have to fire an event.
|
|
|
|
# Aim for halfway through the second that matches TIMER_INTERVAL.
|
|
|
|
# So if TIMER_INTERVAL is 10 fire at .5, 10.5, 20.5, etc seconds.
|
|
|
|
# This will yield the best results because time.sleep() is not
|
|
|
|
# 100% accurate because of non-realtime OS's
|
|
|
|
now = datetime.now()
|
|
|
|
|
|
|
|
if now.second % TIMER_INTERVAL > 0 or \
|
2013-11-10 16:46:48 -08:00
|
|
|
now.second == last_fired_on_second:
|
2013-10-24 01:42:16 +01:00
|
|
|
|
|
|
|
slp_seconds = TIMER_INTERVAL - now.second % TIMER_INTERVAL + \
|
2013-11-10 16:46:48 -08:00
|
|
|
.5 - now.microsecond/1000000.0
|
2013-10-24 01:42:16 +01:00
|
|
|
|
|
|
|
time.sleep(slp_seconds)
|
2013-09-24 18:39:58 -07:00
|
|
|
|
2013-09-30 00:20:27 -07:00
|
|
|
now = datetime.now()
|
|
|
|
|
2013-10-24 01:42:16 +01:00
|
|
|
last_fired_on_second = now.second
|
2013-09-24 18:39:58 -07:00
|
|
|
|
2013-10-27 17:39:54 -07:00
|
|
|
self.eventbus.fire(EVENT_TIME_CHANGED,
|
2013-11-10 16:46:48 -08:00
|
|
|
{'now': datetime_to_str(now)})
|
|
|
|
|
2013-09-30 00:20:27 -07:00
|
|
|
|
|
|
|
class HomeAssistantException(Exception):
|
|
|
|
""" General Home Assistant exception occured. """
|