2018-10-27 14:10:37 +02:00
|
|
|
import copy
|
|
|
|
|
2018-05-20 12:41:52 +02:00
|
|
|
import voluptuous as vol
|
|
|
|
|
2018-10-16 23:16:06 +02:00
|
|
|
import esphomeyaml.config_validation as cv
|
2018-06-02 22:22:20 +02:00
|
|
|
from esphomeyaml.const import CONF_ABOVE, CONF_ACTION_ID, CONF_AND, CONF_AUTOMATION_ID, \
|
2018-12-05 21:22:06 +01:00
|
|
|
CONF_BELOW, CONF_CONDITION, CONF_CONDITION_ID, CONF_DELAY, CONF_ELSE, CONF_ID, CONF_IF, \
|
|
|
|
CONF_LAMBDA, CONF_OR, CONF_RANGE, CONF_THEN, CONF_TRIGGER_ID, CONF_WHILE
|
|
|
|
from esphomeyaml.core import CORE
|
|
|
|
from esphomeyaml.cpp_generator import ArrayInitializer, Pvariable, TemplateArguments, add, \
|
|
|
|
get_variable, process_lambda, templatable
|
|
|
|
from esphomeyaml.cpp_types import Action, App, Component, PollingComponent, Trigger, \
|
|
|
|
esphomelib_ns, float_, uint32
|
2018-10-16 23:16:06 +02:00
|
|
|
from esphomeyaml.util import ServiceRegistry
|
2018-08-13 19:11:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
def maybe_simple_id(*validators):
|
|
|
|
validator = vol.All(*validators)
|
|
|
|
|
|
|
|
def validate(value):
|
|
|
|
if isinstance(value, dict):
|
|
|
|
return validator(value)
|
|
|
|
return validator({CONF_ID: value})
|
|
|
|
|
|
|
|
return validate
|
|
|
|
|
|
|
|
|
|
|
|
def validate_recursive_condition(value):
|
2018-12-05 21:22:06 +01:00
|
|
|
is_list = isinstance(value, list)
|
|
|
|
value = cv.ensure_list(value)[:]
|
|
|
|
for i, item in enumerate(value):
|
|
|
|
path = [i] if is_list else []
|
|
|
|
item = copy.deepcopy(item)
|
|
|
|
if not isinstance(item, dict):
|
|
|
|
raise vol.Invalid(u"Condition must consist of key-value mapping! Got {}".format(item),
|
|
|
|
path)
|
|
|
|
key = next((x for x in item if x != CONF_CONDITION_ID), None)
|
|
|
|
if key is None:
|
|
|
|
raise vol.Invalid(u"Key missing from action! Got {}".format(item), path)
|
|
|
|
if key not in CONDITION_REGISTRY:
|
|
|
|
raise vol.Invalid(u"Unable to find condition with the name '{}', is the "
|
|
|
|
u"component loaded?".format(key), path + [key])
|
|
|
|
item.setdefault(CONF_CONDITION_ID, None)
|
|
|
|
key2 = next((x for x in item if x != CONF_CONDITION_ID and x != key), None)
|
|
|
|
if key2 is not None:
|
|
|
|
raise vol.Invalid(u"Cannot have two conditions in one item. Key '{}' overrides '{}'! "
|
|
|
|
u"Did you forget to indent the block inside the condition?"
|
|
|
|
u"".format(key, key2), path)
|
|
|
|
validator = CONDITION_REGISTRY[key][0]
|
|
|
|
try:
|
|
|
|
condition = validator(item[key])
|
|
|
|
except vol.Invalid as err:
|
|
|
|
err.prepend(path)
|
|
|
|
raise err
|
|
|
|
value[i] = {
|
|
|
|
CONF_CONDITION_ID: cv.declare_variable_id(Condition)(item[CONF_CONDITION_ID]),
|
|
|
|
key: condition,
|
|
|
|
}
|
|
|
|
return value
|
2018-08-13 19:11:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
def validate_recursive_action(value):
|
2018-12-05 21:22:06 +01:00
|
|
|
is_list = isinstance(value, list)
|
2018-10-27 14:10:37 +02:00
|
|
|
value = cv.ensure_list(value)[:]
|
2018-10-16 23:16:06 +02:00
|
|
|
for i, item in enumerate(value):
|
2018-12-05 21:22:06 +01:00
|
|
|
path = [i] if is_list else []
|
2018-10-27 14:10:37 +02:00
|
|
|
item = copy.deepcopy(item)
|
2018-10-16 23:16:06 +02:00
|
|
|
if not isinstance(item, dict):
|
2018-12-05 21:22:06 +01:00
|
|
|
raise vol.Invalid(u"Action must consist of key-value mapping! Got {}".format(item),
|
|
|
|
path)
|
2018-10-16 23:16:06 +02:00
|
|
|
key = next((x for x in item if x != CONF_ACTION_ID), None)
|
|
|
|
if key is None:
|
2018-12-05 21:22:06 +01:00
|
|
|
raise vol.Invalid(u"Key missing from action! Got {}".format(item), path)
|
2018-10-16 23:16:06 +02:00
|
|
|
if key not in ACTION_REGISTRY:
|
|
|
|
raise vol.Invalid(u"Unable to find action with the name '{}', is the component loaded?"
|
2018-12-05 21:22:06 +01:00
|
|
|
u"".format(key), path + [key])
|
2018-10-16 23:16:06 +02:00
|
|
|
item.setdefault(CONF_ACTION_ID, None)
|
|
|
|
key2 = next((x for x in item if x != CONF_ACTION_ID and x != key), None)
|
|
|
|
if key2 is not None:
|
2018-11-12 21:00:17 +01:00
|
|
|
raise vol.Invalid(u"Cannot have two actions in one item. Key '{}' overrides '{}'! "
|
2018-12-05 21:22:06 +01:00
|
|
|
u"Did you forget to indent the block inside the action?"
|
|
|
|
u"".format(key, key2), path)
|
2018-10-16 23:16:06 +02:00
|
|
|
validator = ACTION_REGISTRY[key][0]
|
2018-12-05 21:22:06 +01:00
|
|
|
try:
|
|
|
|
action = validator(item[key])
|
|
|
|
except vol.Invalid as err:
|
|
|
|
err.prepend(path)
|
|
|
|
raise err
|
2018-10-16 23:16:06 +02:00
|
|
|
value[i] = {
|
2018-11-12 23:30:31 +01:00
|
|
|
CONF_ACTION_ID: cv.declare_variable_id(Action)(item[CONF_ACTION_ID]),
|
2018-12-05 21:22:06 +01:00
|
|
|
key: action,
|
2018-10-16 23:16:06 +02:00
|
|
|
}
|
|
|
|
return value
|
|
|
|
|
|
|
|
|
|
|
|
ACTION_REGISTRY = ServiceRegistry()
|
2018-12-05 21:22:06 +01:00
|
|
|
CONDITION_REGISTRY = ServiceRegistry()
|
2018-05-20 12:41:52 +02:00
|
|
|
|
|
|
|
# pylint: disable=invalid-name
|
2018-11-12 23:30:31 +01:00
|
|
|
DelayAction = esphomelib_ns.class_('DelayAction', Action, Component)
|
|
|
|
LambdaAction = esphomelib_ns.class_('LambdaAction', Action)
|
|
|
|
IfAction = esphomelib_ns.class_('IfAction', Action)
|
2018-12-05 21:22:06 +01:00
|
|
|
WhileAction = esphomelib_ns.class_('WhileAction', Action)
|
2018-11-12 23:30:31 +01:00
|
|
|
UpdateComponentAction = esphomelib_ns.class_('UpdateComponentAction', Action)
|
|
|
|
Automation = esphomelib_ns.class_('Automation')
|
|
|
|
|
|
|
|
Condition = esphomelib_ns.class_('Condition')
|
|
|
|
AndCondition = esphomelib_ns.class_('AndCondition', Condition)
|
|
|
|
OrCondition = esphomelib_ns.class_('OrCondition', Condition)
|
|
|
|
RangeCondition = esphomelib_ns.class_('RangeCondition', Condition)
|
|
|
|
LambdaCondition = esphomelib_ns.class_('LambdaCondition', Condition)
|
2018-05-20 12:41:52 +02:00
|
|
|
|
2018-06-13 21:27:58 +02:00
|
|
|
|
2018-10-20 13:15:09 +02:00
|
|
|
def validate_automation(extra_schema=None, extra_validators=None, single=False):
|
2018-06-13 21:27:58 +02:00
|
|
|
schema = AUTOMATION_SCHEMA.extend(extra_schema or {})
|
|
|
|
|
2018-10-20 13:15:09 +02:00
|
|
|
def validator_(value):
|
2018-06-13 21:27:58 +02:00
|
|
|
if isinstance(value, list):
|
2018-10-20 13:15:09 +02:00
|
|
|
try:
|
|
|
|
# First try as a sequence of actions
|
|
|
|
return [schema({CONF_THEN: value})]
|
2018-10-20 15:19:59 +02:00
|
|
|
except vol.Invalid as err:
|
2018-10-20 13:15:09 +02:00
|
|
|
# Next try as a sequence of automations
|
2018-10-20 15:19:59 +02:00
|
|
|
try:
|
|
|
|
return vol.Schema([schema])(value)
|
|
|
|
except vol.Invalid as err2:
|
2018-11-12 21:00:17 +01:00
|
|
|
if 'Unable to find action' in str(err):
|
|
|
|
raise err2
|
2018-10-20 15:19:59 +02:00
|
|
|
raise vol.MultipleInvalid([err, err2])
|
2018-06-13 21:27:58 +02:00
|
|
|
elif isinstance(value, dict):
|
|
|
|
if CONF_THEN in value:
|
2018-10-20 13:15:09 +02:00
|
|
|
return [schema(value)]
|
|
|
|
return [schema({CONF_THEN: value})]
|
|
|
|
# This should only happen with invalid configs, but let's have a nice error message.
|
|
|
|
return [schema(value)]
|
|
|
|
|
|
|
|
def validator(value):
|
|
|
|
value = validator_(value)
|
|
|
|
if extra_validators is not None:
|
|
|
|
value = vol.Schema([extra_validators])(value)
|
|
|
|
if single:
|
|
|
|
if len(value) != 1:
|
|
|
|
raise vol.Invalid("Cannot have more than 1 automation for templates")
|
|
|
|
return value[0]
|
|
|
|
return value
|
2018-06-13 21:27:58 +02:00
|
|
|
|
|
|
|
return validator
|
|
|
|
|
|
|
|
|
2018-05-20 12:41:52 +02:00
|
|
|
AUTOMATION_SCHEMA = vol.Schema({
|
2018-11-12 23:30:31 +01:00
|
|
|
cv.GenerateID(CONF_TRIGGER_ID): cv.declare_variable_id(Trigger),
|
|
|
|
cv.GenerateID(CONF_AUTOMATION_ID): cv.declare_variable_id(Automation),
|
2018-12-05 21:22:06 +01:00
|
|
|
vol.Optional(CONF_IF): validate_recursive_condition,
|
2018-10-16 23:16:06 +02:00
|
|
|
vol.Required(CONF_THEN): validate_recursive_action,
|
2018-05-20 12:41:52 +02:00
|
|
|
})
|
|
|
|
|
2018-12-05 21:22:06 +01:00
|
|
|
AND_CONDITION_SCHEMA = validate_recursive_condition
|
2018-05-20 12:41:52 +02:00
|
|
|
|
|
|
|
|
2018-12-05 21:22:06 +01:00
|
|
|
@CONDITION_REGISTRY.register(CONF_AND, AND_CONDITION_SCHEMA)
|
|
|
|
def and_condition_to_code(config, condition_id, arg_type, template_arg):
|
|
|
|
for conditions in build_conditions(config, arg_type):
|
|
|
|
yield
|
|
|
|
rhs = AndCondition.new(template_arg, conditions)
|
|
|
|
type = AndCondition.template(template_arg)
|
|
|
|
yield Pvariable(condition_id, rhs, type=type)
|
2018-05-20 12:41:52 +02:00
|
|
|
|
2018-12-05 21:22:06 +01:00
|
|
|
|
|
|
|
OR_CONDITION_SCHEMA = validate_recursive_condition
|
|
|
|
|
|
|
|
|
|
|
|
@CONDITION_REGISTRY.register(CONF_OR, OR_CONDITION_SCHEMA)
|
|
|
|
def or_condition_to_code(config, condition_id, arg_type, template_arg):
|
|
|
|
for conditions in build_conditions(config, arg_type):
|
|
|
|
yield
|
|
|
|
rhs = OrCondition.new(template_arg, conditions)
|
|
|
|
type = OrCondition.template(template_arg)
|
|
|
|
yield Pvariable(condition_id, rhs, type=type)
|
|
|
|
|
|
|
|
|
|
|
|
RANGE_CONDITION_SCHEMA = vol.All(vol.Schema({
|
|
|
|
vol.Optional(CONF_ABOVE): cv.templatable(cv.float_),
|
|
|
|
vol.Optional(CONF_BELOW): cv.templatable(cv.float_),
|
|
|
|
}), cv.has_at_least_one_key(CONF_ABOVE, CONF_BELOW))
|
|
|
|
|
|
|
|
|
|
|
|
@CONDITION_REGISTRY.register(CONF_RANGE, RANGE_CONDITION_SCHEMA)
|
|
|
|
def range_condition_to_code(config, condition_id, arg_type, template_arg):
|
|
|
|
for conditions in build_conditions(config, arg_type):
|
|
|
|
yield
|
|
|
|
rhs = RangeCondition.new(template_arg, conditions)
|
|
|
|
type = RangeCondition.template(template_arg)
|
|
|
|
condition = Pvariable(condition_id, rhs, type=type)
|
|
|
|
if CONF_ABOVE in config:
|
|
|
|
for template_ in templatable(config[CONF_ABOVE], arg_type, float_):
|
|
|
|
yield
|
|
|
|
condition.set_min(template_)
|
|
|
|
if CONF_BELOW in config:
|
|
|
|
for template_ in templatable(config[CONF_BELOW], arg_type, float_):
|
|
|
|
yield
|
|
|
|
condition.set_max(template_)
|
|
|
|
yield condition
|
2018-05-20 12:41:52 +02:00
|
|
|
|
|
|
|
|
2018-10-16 23:16:06 +02:00
|
|
|
DELAY_ACTION_SCHEMA = cv.templatable(cv.positive_time_period_milliseconds)
|
|
|
|
|
2018-05-20 12:41:52 +02:00
|
|
|
|
2018-10-16 23:16:06 +02:00
|
|
|
@ACTION_REGISTRY.register(CONF_DELAY, DELAY_ACTION_SCHEMA)
|
2018-12-05 21:22:06 +01:00
|
|
|
def delay_action_to_code(config, action_id, arg_type, template_arg):
|
2018-10-16 23:16:06 +02:00
|
|
|
rhs = App.register_component(DelayAction.new(template_arg))
|
|
|
|
type = DelayAction.template(template_arg)
|
|
|
|
action = Pvariable(action_id, rhs, type=type)
|
|
|
|
for template_ in templatable(config, arg_type, uint32):
|
|
|
|
yield
|
|
|
|
add(action.set_delay(template_))
|
|
|
|
yield action
|
2018-06-02 22:22:20 +02:00
|
|
|
|
2018-10-16 23:16:06 +02:00
|
|
|
|
|
|
|
IF_ACTION_SCHEMA = vol.All({
|
|
|
|
vol.Required(CONF_CONDITION): validate_recursive_condition,
|
|
|
|
vol.Optional(CONF_THEN): validate_recursive_action,
|
|
|
|
vol.Optional(CONF_ELSE): validate_recursive_action,
|
|
|
|
}, cv.has_at_least_one_key(CONF_THEN, CONF_ELSE))
|
|
|
|
|
|
|
|
|
|
|
|
@ACTION_REGISTRY.register(CONF_IF, IF_ACTION_SCHEMA)
|
2018-12-05 21:22:06 +01:00
|
|
|
def if_action_to_code(config, action_id, arg_type, template_arg):
|
2018-10-16 23:16:06 +02:00
|
|
|
for conditions in build_conditions(config[CONF_CONDITION], arg_type):
|
|
|
|
yield None
|
|
|
|
rhs = IfAction.new(template_arg, conditions)
|
|
|
|
type = IfAction.template(template_arg)
|
|
|
|
action = Pvariable(action_id, rhs, type=type)
|
|
|
|
if CONF_THEN in config:
|
|
|
|
for actions in build_actions(config[CONF_THEN], arg_type):
|
2018-08-13 19:11:33 +02:00
|
|
|
yield None
|
2018-10-16 23:16:06 +02:00
|
|
|
add(action.add_then(actions))
|
|
|
|
if CONF_ELSE in config:
|
|
|
|
for actions in build_actions(config[CONF_ELSE], arg_type):
|
2018-08-13 19:11:33 +02:00
|
|
|
yield None
|
2018-10-16 23:16:06 +02:00
|
|
|
add(action.add_else(actions))
|
|
|
|
yield action
|
|
|
|
|
|
|
|
|
2018-12-05 21:22:06 +01:00
|
|
|
WHILE_ACTION_SCHEMA = vol.Schema({
|
|
|
|
vol.Required(CONF_CONDITION): validate_recursive_condition,
|
|
|
|
vol.Required(CONF_THEN): validate_recursive_action,
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
@ACTION_REGISTRY.register(CONF_WHILE, WHILE_ACTION_SCHEMA)
|
|
|
|
def while_action_to_code(config, action_id, arg_type, template_arg):
|
|
|
|
for conditions in build_conditions(config[CONF_CONDITION], arg_type):
|
|
|
|
yield None
|
|
|
|
rhs = WhileAction.new(template_arg, conditions)
|
|
|
|
type = WhileAction.template(template_arg)
|
|
|
|
action = Pvariable(action_id, rhs, type=type)
|
|
|
|
for actions in build_actions(config[CONF_THEN], arg_type):
|
|
|
|
yield None
|
|
|
|
add(action.add_then(actions))
|
|
|
|
yield action
|
|
|
|
|
|
|
|
|
2018-10-16 23:16:06 +02:00
|
|
|
LAMBDA_ACTION_SCHEMA = cv.lambda_
|
|
|
|
|
|
|
|
|
|
|
|
@ACTION_REGISTRY.register(CONF_LAMBDA, LAMBDA_ACTION_SCHEMA)
|
2018-12-05 21:22:06 +01:00
|
|
|
def lambda_action_to_code(config, action_id, arg_type, template_arg):
|
2018-10-16 23:16:06 +02:00
|
|
|
for lambda_ in process_lambda(config, [(arg_type, 'x')]):
|
|
|
|
yield None
|
|
|
|
rhs = LambdaAction.new(template_arg, lambda_)
|
|
|
|
type = LambdaAction.template(template_arg)
|
|
|
|
yield Pvariable(action_id, rhs, type=type)
|
|
|
|
|
|
|
|
|
2018-12-05 21:22:06 +01:00
|
|
|
LAMBDA_CONDITION_SCHEMA = cv.lambda_
|
|
|
|
|
|
|
|
|
|
|
|
@CONDITION_REGISTRY.register(CONF_LAMBDA, LAMBDA_CONDITION_SCHEMA)
|
|
|
|
def lambda_condition_to_code(config, condition_id, arg_type, template_arg):
|
|
|
|
for lambda_ in process_lambda(config, [(arg_type, 'x')]):
|
|
|
|
yield
|
|
|
|
rhs = LambdaCondition.new(template_arg, lambda_)
|
|
|
|
type = LambdaCondition.template(template_arg)
|
|
|
|
yield Pvariable(condition_id, rhs, type=type)
|
|
|
|
|
|
|
|
|
2018-10-20 12:58:02 +02:00
|
|
|
CONF_COMPONENT_UPDATE = 'component.update'
|
|
|
|
COMPONENT_UPDATE_ACTION_SCHEMA = maybe_simple_id({
|
2018-11-12 23:30:31 +01:00
|
|
|
vol.Required(CONF_ID): cv.use_variable_id(PollingComponent),
|
2018-10-20 12:58:02 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
@ACTION_REGISTRY.register(CONF_COMPONENT_UPDATE, COMPONENT_UPDATE_ACTION_SCHEMA)
|
2018-12-05 21:22:06 +01:00
|
|
|
def component_update_action_to_code(config, action_id, arg_type, template_arg):
|
2018-10-20 12:58:02 +02:00
|
|
|
for var in get_variable(config[CONF_ID]):
|
|
|
|
yield None
|
|
|
|
rhs = UpdateComponentAction.new(var)
|
|
|
|
type = UpdateComponentAction.template(template_arg)
|
|
|
|
yield Pvariable(action_id, rhs, type=type)
|
|
|
|
|
|
|
|
|
2018-10-16 23:16:06 +02:00
|
|
|
def build_action(full_config, arg_type):
|
|
|
|
action_id = full_config[CONF_ACTION_ID]
|
|
|
|
key, config = next((k, v) for k, v in full_config.items() if k in ACTION_REGISTRY)
|
|
|
|
|
|
|
|
builder = ACTION_REGISTRY[key][1]
|
2018-12-05 21:22:06 +01:00
|
|
|
template_arg = TemplateArguments(arg_type)
|
|
|
|
for result in builder(config, action_id, arg_type, template_arg):
|
2018-10-16 23:16:06 +02:00
|
|
|
yield None
|
|
|
|
yield result
|
2018-05-20 12:41:52 +02:00
|
|
|
|
|
|
|
|
|
|
|
def build_actions(config, arg_type):
|
2018-06-02 22:22:20 +02:00
|
|
|
actions = []
|
|
|
|
for conf in config:
|
|
|
|
action = None
|
|
|
|
for action in build_action(conf, arg_type):
|
|
|
|
yield None
|
|
|
|
actions.append(action)
|
2018-06-06 09:18:39 +02:00
|
|
|
yield ArrayInitializer(*actions, multiline=False)
|
2018-05-20 12:41:52 +02:00
|
|
|
|
|
|
|
|
2018-12-05 21:22:06 +01:00
|
|
|
def build_condition(full_config, arg_type):
|
|
|
|
action_id = full_config[CONF_CONDITION_ID]
|
|
|
|
key, config = next((k, v) for k, v in full_config.items() if k in CONDITION_REGISTRY)
|
|
|
|
|
|
|
|
builder = CONDITION_REGISTRY[key][1]
|
|
|
|
template_arg = TemplateArguments(arg_type)
|
|
|
|
for result in builder(config, action_id, arg_type, template_arg):
|
|
|
|
yield None
|
|
|
|
yield result
|
|
|
|
|
|
|
|
|
|
|
|
def build_conditions(config, arg_type):
|
|
|
|
conditions = []
|
|
|
|
for conf in config:
|
|
|
|
for condition in build_condition(conf, arg_type):
|
|
|
|
yield None
|
|
|
|
conditions.append(condition)
|
|
|
|
yield ArrayInitializer(*conditions, multiline=False)
|
|
|
|
|
|
|
|
|
2018-06-03 07:11:11 +02:00
|
|
|
def build_automation_(trigger, arg_type, config):
|
2018-06-13 21:27:58 +02:00
|
|
|
rhs = App.make_automation(TemplateArguments(arg_type), trigger)
|
2018-06-02 22:22:20 +02:00
|
|
|
type = Automation.template(arg_type)
|
|
|
|
obj = Pvariable(config[CONF_AUTOMATION_ID], rhs, type=type)
|
2018-05-20 12:41:52 +02:00
|
|
|
if CONF_IF in config:
|
2018-06-02 22:22:20 +02:00
|
|
|
conditions = None
|
|
|
|
for conditions in build_conditions(config[CONF_IF], arg_type):
|
2018-06-13 21:27:58 +02:00
|
|
|
yield None
|
2018-06-02 22:22:20 +02:00
|
|
|
add(obj.add_conditions(conditions))
|
|
|
|
actions = None
|
|
|
|
for actions in build_actions(config[CONF_THEN], arg_type):
|
2018-06-13 21:27:58 +02:00
|
|
|
yield None
|
2018-06-02 22:22:20 +02:00
|
|
|
add(obj.add_actions(actions))
|
2018-06-13 21:27:58 +02:00
|
|
|
yield obj
|
2018-06-03 07:11:11 +02:00
|
|
|
|
|
|
|
|
|
|
|
def build_automation(trigger, arg_type, config):
|
2018-12-05 21:22:06 +01:00
|
|
|
CORE.add_job(build_automation_, trigger, arg_type, config)
|