2013-10-13 17:42:22 +00:00
|
|
|
"""
|
2014-11-05 07:34:19 +00:00
|
|
|
homeassistant.bootstrap
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~
|
2013-10-13 17:42:22 +00:00
|
|
|
Provides methods to bootstrap a home assistant instance.
|
2014-04-24 07:40:45 +00:00
|
|
|
|
|
|
|
Each method will return a tuple (bus, statemachine).
|
|
|
|
|
|
|
|
After bootstrapping you can add your own components or
|
|
|
|
start by calling homeassistant.start_home_assistant(bus)
|
2013-10-13 17:42:22 +00:00
|
|
|
"""
|
|
|
|
|
2014-09-21 02:19:39 +00:00
|
|
|
import os
|
2015-08-30 02:34:35 +00:00
|
|
|
import sys
|
2013-10-22 05:06:22 +00:00
|
|
|
import logging
|
2014-08-13 12:28:45 +00:00
|
|
|
from collections import defaultdict
|
2013-10-13 17:42:22 +00:00
|
|
|
|
2015-08-17 03:44:46 +00:00
|
|
|
import homeassistant.core as core
|
2015-04-29 02:12:05 +00:00
|
|
|
import homeassistant.util.dt as date_util
|
2015-07-07 07:00:21 +00:00
|
|
|
import homeassistant.util.package as pkg_util
|
|
|
|
import homeassistant.util.location as loc_util
|
2015-04-26 17:05:01 +00:00
|
|
|
import homeassistant.config as config_util
|
2014-11-05 07:34:19 +00:00
|
|
|
import homeassistant.loader as loader
|
2014-08-13 12:28:45 +00:00
|
|
|
import homeassistant.components as core_components
|
2015-01-15 07:18:44 +00:00
|
|
|
import homeassistant.components.group as group
|
2015-04-23 13:41:41 +00:00
|
|
|
from homeassistant.helpers.entity import Entity
|
2015-03-19 06:02:58 +00:00
|
|
|
from homeassistant.const import (
|
|
|
|
EVENT_COMPONENT_LOADED, CONF_LATITUDE, CONF_LONGITUDE,
|
2015-04-25 18:47:15 +00:00
|
|
|
CONF_TEMPERATURE_UNIT, CONF_NAME, CONF_TIME_ZONE, CONF_CUSTOMIZE,
|
|
|
|
TEMP_CELCIUS, TEMP_FAHRENHEIT)
|
2014-01-24 05:34:08 +00:00
|
|
|
|
2015-01-09 08:07:58 +00:00
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
2015-05-12 05:23:38 +00:00
|
|
|
ATTR_COMPONENT = 'component'
|
2015-02-14 06:49:56 +00:00
|
|
|
|
2015-05-12 05:23:20 +00:00
|
|
|
PLATFORM_FORMAT = '{}.{}'
|
|
|
|
|
2015-01-09 08:07:58 +00:00
|
|
|
|
|
|
|
def setup_component(hass, domain, config=None):
|
2015-03-22 05:02:47 +00:00
|
|
|
""" Setup a component and all its dependencies. """
|
|
|
|
|
2015-03-22 04:10:46 +00:00
|
|
|
if domain in hass.config.components:
|
2015-03-22 05:02:47 +00:00
|
|
|
return True
|
2015-01-30 07:56:04 +00:00
|
|
|
|
|
|
|
_ensure_loader_prepared(hass)
|
|
|
|
|
2015-01-09 08:07:58 +00:00
|
|
|
if config is None:
|
|
|
|
config = defaultdict(dict)
|
|
|
|
|
2015-03-22 05:02:47 +00:00
|
|
|
components = loader.load_order_component(domain)
|
|
|
|
|
|
|
|
# OrderedSet is empty if component or dependencies could not be resolved
|
|
|
|
if not components:
|
|
|
|
return False
|
|
|
|
|
|
|
|
for component in components:
|
|
|
|
if component in hass.config.components:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if not _setup_component(hass, component, config):
|
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2015-08-30 01:11:24 +00:00
|
|
|
def _handle_requirements(hass, component, name):
|
2015-07-07 07:00:21 +00:00
|
|
|
""" Installs requirements for component. """
|
2015-08-04 20:21:09 +00:00
|
|
|
if not hasattr(component, 'REQUIREMENTS'):
|
|
|
|
return True
|
|
|
|
|
|
|
|
for req in component.REQUIREMENTS:
|
2015-08-30 01:11:24 +00:00
|
|
|
if not pkg_util.install_package(req, target=hass.config.path('lib')):
|
2015-08-04 20:21:09 +00:00
|
|
|
_LOGGER.error('Not initializing %s because could not install '
|
|
|
|
'dependency %s', name, req)
|
|
|
|
return False
|
|
|
|
|
2015-07-07 07:00:21 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
2015-03-22 05:02:47 +00:00
|
|
|
def _setup_component(hass, domain, config):
|
|
|
|
""" Setup a component for Home Assistant. """
|
2015-01-09 08:07:58 +00:00
|
|
|
component = loader.get_component(domain)
|
|
|
|
|
2015-03-22 05:02:47 +00:00
|
|
|
missing_deps = [dep for dep in component.DEPENDENCIES
|
|
|
|
if dep not in hass.config.components]
|
|
|
|
|
|
|
|
if missing_deps:
|
|
|
|
_LOGGER.error(
|
2015-05-12 05:23:38 +00:00
|
|
|
'Not initializing %s because not all dependencies loaded: %s',
|
2015-03-22 05:02:47 +00:00
|
|
|
domain, ", ".join(missing_deps))
|
|
|
|
return False
|
|
|
|
|
2015-08-30 01:11:24 +00:00
|
|
|
if not _handle_requirements(hass, component, domain):
|
2015-07-07 07:00:21 +00:00
|
|
|
return False
|
|
|
|
|
2015-01-09 08:07:58 +00:00
|
|
|
try:
|
2015-08-03 15:05:33 +00:00
|
|
|
if not component.setup(hass, config):
|
2015-05-12 05:23:38 +00:00
|
|
|
_LOGGER.error('component %s failed to initialize', domain)
|
2015-08-03 15:05:33 +00:00
|
|
|
return False
|
2015-01-09 08:07:58 +00:00
|
|
|
except Exception: # pylint: disable=broad-except
|
2015-05-12 05:23:38 +00:00
|
|
|
_LOGGER.exception('Error during setup of component %s', domain)
|
2015-08-03 15:05:33 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
hass.config.components.append(component.DOMAIN)
|
2015-01-09 08:07:58 +00:00
|
|
|
|
2015-08-03 15:05:33 +00:00
|
|
|
# Assumption: if a component does not depend on groups
|
|
|
|
# it communicates with devices
|
|
|
|
if group.DOMAIN not in component.DEPENDENCIES:
|
|
|
|
hass.pool.add_worker()
|
|
|
|
|
|
|
|
hass.bus.fire(
|
|
|
|
EVENT_COMPONENT_LOADED, {ATTR_COMPONENT: component.DOMAIN})
|
|
|
|
|
|
|
|
return True
|
2015-01-09 08:07:58 +00:00
|
|
|
|
|
|
|
|
2015-05-12 05:23:20 +00:00
|
|
|
def prepare_setup_platform(hass, config, domain, platform_name):
|
|
|
|
""" Loads a platform and makes sure dependencies are setup. """
|
|
|
|
_ensure_loader_prepared(hass)
|
|
|
|
|
|
|
|
platform_path = PLATFORM_FORMAT.format(domain, platform_name)
|
|
|
|
|
|
|
|
platform = loader.get_component(platform_path)
|
|
|
|
|
|
|
|
# Not found
|
|
|
|
if platform is None:
|
|
|
|
return None
|
|
|
|
|
2015-07-07 07:00:21 +00:00
|
|
|
# Already loaded
|
|
|
|
elif platform_path in hass.config.components:
|
2015-05-12 05:23:20 +00:00
|
|
|
return platform
|
|
|
|
|
|
|
|
# Load dependencies
|
2015-07-07 07:00:21 +00:00
|
|
|
if hasattr(platform, 'DEPENDENCIES'):
|
|
|
|
for component in platform.DEPENDENCIES:
|
|
|
|
if not setup_component(hass, component, config):
|
|
|
|
_LOGGER.error(
|
|
|
|
'Unable to prepare setup for platform %s because '
|
|
|
|
'dependency %s could not be initialized', platform_path,
|
|
|
|
component)
|
|
|
|
return None
|
|
|
|
|
2015-08-30 01:11:24 +00:00
|
|
|
if not _handle_requirements(hass, platform, platform_path):
|
2015-07-07 07:00:21 +00:00
|
|
|
return None
|
2015-05-12 05:23:20 +00:00
|
|
|
|
|
|
|
return platform
|
|
|
|
|
|
|
|
|
2015-08-30 02:19:52 +00:00
|
|
|
def mount_local_lib_path(config_dir):
|
|
|
|
""" Add local library to Python Path """
|
|
|
|
sys.path.insert(0, os.path.join(config_dir, 'lib'))
|
|
|
|
|
|
|
|
|
2014-10-25 06:44:00 +00:00
|
|
|
# pylint: disable=too-many-branches, too-many-statements
|
2015-08-30 01:11:24 +00:00
|
|
|
def from_config_dict(config, hass=None, config_dir=None):
|
2014-08-13 12:28:45 +00:00
|
|
|
"""
|
|
|
|
Tries to configure Home Assistant from a config dict.
|
2014-04-24 07:40:45 +00:00
|
|
|
|
2014-08-13 12:28:45 +00:00
|
|
|
Dynamically loads required components and its dependencies.
|
|
|
|
"""
|
|
|
|
if hass is None:
|
2015-08-17 03:44:46 +00:00
|
|
|
hass = core.HomeAssistant()
|
2015-08-30 01:11:24 +00:00
|
|
|
if config_dir is not None:
|
2015-08-30 02:19:52 +00:00
|
|
|
config_dir = os.path.abspath(config_dir)
|
|
|
|
hass.config.config_dir = config_dir
|
|
|
|
mount_local_lib_path(config_dir)
|
2014-04-24 07:40:45 +00:00
|
|
|
|
2015-08-17 03:44:46 +00:00
|
|
|
process_ha_core_config(hass, config.get(core.DOMAIN, {}))
|
2015-03-19 06:02:58 +00:00
|
|
|
|
2015-01-18 06:23:07 +00:00
|
|
|
enable_logging(hass)
|
|
|
|
|
2015-01-30 07:56:04 +00:00
|
|
|
_ensure_loader_prepared(hass)
|
2014-11-28 23:34:42 +00:00
|
|
|
|
2014-08-13 12:28:45 +00:00
|
|
|
# Make a copy because we are mutating it.
|
|
|
|
# Convert it to defaultdict so components can always have config dict
|
2015-02-28 19:17:50 +00:00
|
|
|
# Convert values to dictionaries if they are None
|
2015-02-28 19:31:26 +00:00
|
|
|
config = defaultdict(
|
|
|
|
dict, {key: value or {} for key, value in config.items()})
|
2013-10-22 05:06:22 +00:00
|
|
|
|
2014-12-07 07:57:02 +00:00
|
|
|
# Filter out the repeating and common config section [homeassistant]
|
|
|
|
components = (key for key in config.keys()
|
2015-08-17 03:44:46 +00:00
|
|
|
if ' ' not in key and key != core.DOMAIN)
|
2014-10-22 15:12:32 +00:00
|
|
|
|
2014-12-17 05:46:02 +00:00
|
|
|
if not core_components.setup(hass, config):
|
2015-05-12 05:23:38 +00:00
|
|
|
_LOGGER.error('Home Assistant core failed to initialize. '
|
|
|
|
'Further initialization aborted.')
|
2014-12-17 05:46:02 +00:00
|
|
|
|
|
|
|
return hass
|
|
|
|
|
2015-05-12 05:23:38 +00:00
|
|
|
_LOGGER.info('Home Assistant core initialized')
|
2014-12-17 05:46:02 +00:00
|
|
|
|
2014-08-13 12:28:45 +00:00
|
|
|
# Setup the components
|
2014-12-17 05:46:02 +00:00
|
|
|
for domain in loader.load_order_components(components):
|
2015-03-22 05:02:47 +00:00
|
|
|
_setup_component(hass, domain, config)
|
2013-10-13 17:42:22 +00:00
|
|
|
|
2014-08-13 12:28:45 +00:00
|
|
|
return hass
|
2013-10-22 05:06:22 +00:00
|
|
|
|
2014-01-24 01:46:29 +00:00
|
|
|
|
2015-01-18 06:23:07 +00:00
|
|
|
def from_config_file(config_path, hass=None):
|
2014-08-13 12:28:45 +00:00
|
|
|
"""
|
|
|
|
Reads the configuration file and tries to start all the required
|
|
|
|
functionality. Will add functionality to 'hass' parameter if given,
|
|
|
|
instantiates a new Home Assistant object if 'hass' is not given.
|
|
|
|
"""
|
2014-09-21 02:19:39 +00:00
|
|
|
if hass is None:
|
2015-08-17 03:44:46 +00:00
|
|
|
hass = core.HomeAssistant()
|
2014-09-21 02:19:39 +00:00
|
|
|
|
2015-03-19 06:02:58 +00:00
|
|
|
# Set config dir to directory holding config file
|
2015-08-30 02:19:52 +00:00
|
|
|
config_dir = os.path.abspath(os.path.dirname(config_path))
|
|
|
|
hass.config.config_dir = config_dir
|
|
|
|
mount_local_lib_path(config_dir)
|
2014-09-21 02:19:39 +00:00
|
|
|
|
2015-04-26 17:05:01 +00:00
|
|
|
config_dict = config_util.load_config_file(config_path)
|
2013-10-13 17:42:22 +00:00
|
|
|
|
2014-08-13 12:28:45 +00:00
|
|
|
return from_config_dict(config_dict, hass)
|
2015-01-18 06:23:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
def enable_logging(hass):
|
|
|
|
""" Setup the logging for home assistant. """
|
|
|
|
logging.basicConfig(level=logging.INFO)
|
2015-06-11 13:01:11 +00:00
|
|
|
fmt = ("%(log_color)s%(asctime)s %(levelname)s (%(threadName)s) "
|
|
|
|
"[%(name)s] %(message)s%(reset)s")
|
|
|
|
try:
|
|
|
|
from colorlog import ColoredFormatter
|
|
|
|
logging.getLogger().handlers[0].setFormatter(ColoredFormatter(
|
|
|
|
fmt,
|
|
|
|
datefmt='%y-%m-%d %H:%M:%S',
|
|
|
|
reset=True,
|
|
|
|
log_colors={
|
|
|
|
'DEBUG': 'cyan',
|
|
|
|
'INFO': 'green',
|
|
|
|
'WARNING': 'yellow',
|
|
|
|
'ERROR': 'red',
|
|
|
|
'CRITICAL': 'red',
|
|
|
|
}
|
|
|
|
))
|
|
|
|
except ImportError:
|
2015-08-17 03:44:46 +00:00
|
|
|
_LOGGER.warning(
|
|
|
|
"Colorlog package not found, console coloring disabled")
|
2015-01-18 06:23:07 +00:00
|
|
|
|
|
|
|
# Log errors to a file if we have write access to file or config dir
|
2015-05-12 05:23:38 +00:00
|
|
|
err_log_path = hass.config.path('home-assistant.log')
|
2015-01-18 06:23:07 +00:00
|
|
|
err_path_exists = os.path.isfile(err_log_path)
|
|
|
|
|
|
|
|
# Check if we can write to the error log if it exists or that
|
|
|
|
# we can create files in the containing directory if not.
|
|
|
|
if (err_path_exists and os.access(err_log_path, os.W_OK)) or \
|
2015-03-19 06:02:58 +00:00
|
|
|
(not err_path_exists and os.access(hass.config.config_dir, os.W_OK)):
|
2015-01-18 06:23:07 +00:00
|
|
|
|
|
|
|
err_handler = logging.FileHandler(
|
|
|
|
err_log_path, mode='w', delay=True)
|
|
|
|
|
|
|
|
err_handler.setLevel(logging.WARNING)
|
|
|
|
err_handler.setFormatter(
|
|
|
|
logging.Formatter('%(asctime)s %(name)s: %(message)s',
|
2015-06-11 13:01:11 +00:00
|
|
|
datefmt='%y-%m-%d %H:%M:%S'))
|
2015-01-18 06:23:07 +00:00
|
|
|
logging.getLogger('').addHandler(err_handler)
|
|
|
|
|
|
|
|
else:
|
|
|
|
_LOGGER.error(
|
2015-05-12 05:23:38 +00:00
|
|
|
'Unable to setup error log %s (access denied)', err_log_path)
|
2015-01-30 07:56:04 +00:00
|
|
|
|
2015-01-30 16:26:06 +00:00
|
|
|
|
2015-03-19 06:02:58 +00:00
|
|
|
def process_ha_core_config(hass, config):
|
|
|
|
""" Processes the [homeassistant] section from the config. """
|
2015-04-26 17:05:01 +00:00
|
|
|
hac = hass.config
|
|
|
|
|
2015-04-29 02:12:05 +00:00
|
|
|
def set_time_zone(time_zone_str):
|
|
|
|
""" Helper method to set time zone in HA. """
|
|
|
|
if time_zone_str is None:
|
|
|
|
return
|
|
|
|
|
|
|
|
time_zone = date_util.get_time_zone(time_zone_str)
|
|
|
|
|
|
|
|
if time_zone:
|
|
|
|
hac.time_zone = time_zone
|
|
|
|
date_util.set_default_time_zone(time_zone)
|
|
|
|
else:
|
2015-05-12 05:23:38 +00:00
|
|
|
_LOGGER.error('Received invalid time zone %s', time_zone_str)
|
2015-04-29 02:12:05 +00:00
|
|
|
|
2015-03-19 06:02:58 +00:00
|
|
|
for key, attr in ((CONF_LATITUDE, 'latitude'),
|
|
|
|
(CONF_LONGITUDE, 'longitude'),
|
2015-04-29 02:12:05 +00:00
|
|
|
(CONF_NAME, 'location_name')):
|
2015-03-19 06:02:58 +00:00
|
|
|
if key in config:
|
2015-04-26 17:05:01 +00:00
|
|
|
setattr(hac, attr, config[key])
|
2015-03-19 06:02:58 +00:00
|
|
|
|
2015-04-29 02:12:05 +00:00
|
|
|
set_time_zone(config.get(CONF_TIME_ZONE))
|
|
|
|
|
2015-06-03 04:31:50 +00:00
|
|
|
customize = config.get(CONF_CUSTOMIZE)
|
|
|
|
|
|
|
|
if isinstance(customize, dict):
|
|
|
|
for entity_id, attrs in config.get(CONF_CUSTOMIZE, {}).items():
|
|
|
|
if not isinstance(attrs, dict):
|
|
|
|
continue
|
|
|
|
Entity.overwrite_attribute(entity_id, attrs.keys(), attrs.values())
|
2015-04-15 02:57:32 +00:00
|
|
|
|
2015-03-19 06:02:58 +00:00
|
|
|
if CONF_TEMPERATURE_UNIT in config:
|
|
|
|
unit = config[CONF_TEMPERATURE_UNIT]
|
|
|
|
|
|
|
|
if unit == 'C':
|
2015-04-26 17:05:01 +00:00
|
|
|
hac.temperature_unit = TEMP_CELCIUS
|
2015-03-19 06:02:58 +00:00
|
|
|
elif unit == 'F':
|
2015-04-26 17:05:01 +00:00
|
|
|
hac.temperature_unit = TEMP_FAHRENHEIT
|
|
|
|
|
|
|
|
# If we miss some of the needed values, auto detect them
|
2015-04-29 02:12:05 +00:00
|
|
|
if None not in (
|
|
|
|
hac.latitude, hac.longitude, hac.temperature_unit, hac.time_zone):
|
2015-04-26 17:05:01 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
_LOGGER.info('Auto detecting location and temperature unit')
|
|
|
|
|
2015-07-07 07:00:21 +00:00
|
|
|
info = loc_util.detect_location_info()
|
2015-04-26 17:05:01 +00:00
|
|
|
|
|
|
|
if info is None:
|
|
|
|
_LOGGER.error('Could not detect location information')
|
|
|
|
return
|
|
|
|
|
|
|
|
if hac.latitude is None and hac.longitude is None:
|
|
|
|
hac.latitude = info.latitude
|
|
|
|
hac.longitude = info.longitude
|
|
|
|
|
|
|
|
if hac.temperature_unit is None:
|
|
|
|
if info.use_fahrenheit:
|
|
|
|
hac.temperature_unit = TEMP_FAHRENHEIT
|
|
|
|
else:
|
|
|
|
hac.temperature_unit = TEMP_CELCIUS
|
|
|
|
|
|
|
|
if hac.location_name is None:
|
|
|
|
hac.location_name = info.city
|
2015-03-19 06:02:58 +00:00
|
|
|
|
2015-04-26 17:05:01 +00:00
|
|
|
if hac.time_zone is None:
|
2015-04-29 02:12:05 +00:00
|
|
|
set_time_zone(info.time_zone)
|
2015-03-19 06:02:58 +00:00
|
|
|
|
|
|
|
|
2015-01-30 07:56:04 +00:00
|
|
|
def _ensure_loader_prepared(hass):
|
|
|
|
""" Ensure Home Assistant loader is prepared. """
|
|
|
|
if not loader.PREPARED:
|
|
|
|
loader.prepare(hass)
|