2018-04-07 01:23:03 +02:00
|
|
|
from __future__ import print_function
|
|
|
|
|
|
|
|
import logging
|
|
|
|
import re
|
|
|
|
from collections import OrderedDict, deque
|
|
|
|
|
2018-04-18 18:43:13 +02:00
|
|
|
from esphomeyaml import core
|
2018-04-07 01:23:03 +02:00
|
|
|
from esphomeyaml.const import CONF_AVAILABILITY, CONF_COMMAND_TOPIC, CONF_DISCOVERY, \
|
|
|
|
CONF_INVERTED, \
|
2018-05-15 11:09:27 +02:00
|
|
|
CONF_MODE, CONF_NUMBER, CONF_PAYLOAD_AVAILABLE, CONF_PAYLOAD_NOT_AVAILABLE, CONF_PCF8574, \
|
|
|
|
CONF_RETAIN, CONF_STATE_TOPIC, CONF_TOPIC
|
2018-05-14 11:50:56 +02:00
|
|
|
from esphomeyaml.core import ESPHomeYAMLError, HexInt, TimePeriodMicroseconds, \
|
|
|
|
TimePeriodMilliseconds, TimePeriodSeconds
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
def ensure_unique_string(preferred_string, current_strings):
|
|
|
|
test_string = preferred_string
|
|
|
|
current_strings_set = set(current_strings)
|
|
|
|
|
|
|
|
tries = 1
|
|
|
|
|
|
|
|
while test_string in current_strings_set:
|
|
|
|
tries += 1
|
|
|
|
test_string = u"{}_{}".format(preferred_string, tries)
|
|
|
|
|
|
|
|
return test_string
|
|
|
|
|
|
|
|
|
|
|
|
def indent_all_but_first_and_last(text, padding=u' '):
|
|
|
|
lines = text.splitlines(True)
|
|
|
|
if len(lines) <= 2:
|
|
|
|
return text
|
|
|
|
return lines[0] + u''.join(padding + line for line in lines[1:-1]) + lines[-1]
|
|
|
|
|
|
|
|
|
|
|
|
def indent_list(text, padding=u' '):
|
|
|
|
return [padding + line for line in text.splitlines()]
|
|
|
|
|
|
|
|
|
|
|
|
def indent(text, padding=u' '):
|
|
|
|
return u'\n'.join(indent_list(text, padding))
|
|
|
|
|
|
|
|
|
|
|
|
class Expression(object):
|
|
|
|
def __init__(self):
|
2018-04-18 18:43:13 +02:00
|
|
|
self.requires = []
|
|
|
|
self.required = False
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
def __str__(self):
|
2018-04-10 17:17:46 +02:00
|
|
|
raise NotImplementedError
|
2018-04-07 01:23:03 +02:00
|
|
|
|
2018-04-18 18:43:13 +02:00
|
|
|
def require(self):
|
|
|
|
self.required = True
|
|
|
|
for require in self.requires:
|
|
|
|
if require.required:
|
|
|
|
continue
|
|
|
|
require.require()
|
|
|
|
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
class RawExpression(Expression):
|
|
|
|
def __init__(self, text):
|
|
|
|
super(RawExpression, self).__init__()
|
|
|
|
self.text = text
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.text
|
|
|
|
|
|
|
|
|
2018-04-18 18:43:13 +02:00
|
|
|
# pylint: disable=redefined-builtin
|
2018-04-07 01:23:03 +02:00
|
|
|
class AssignmentExpression(Expression):
|
2018-04-18 18:43:13 +02:00
|
|
|
def __init__(self, type, modifier, name, rhs, obj):
|
2018-04-07 01:23:03 +02:00
|
|
|
super(AssignmentExpression, self).__init__()
|
2018-04-18 18:43:13 +02:00
|
|
|
self.type = type
|
|
|
|
self.modifier = modifier
|
|
|
|
self.name = name
|
2018-04-07 01:23:03 +02:00
|
|
|
self.rhs = safe_exp(rhs)
|
2018-04-18 18:43:13 +02:00
|
|
|
self.requires.append(self.rhs)
|
|
|
|
self.obj = obj
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
def __str__(self):
|
2018-04-18 18:43:13 +02:00
|
|
|
type_ = self.type
|
|
|
|
if core.SIMPLIFY:
|
|
|
|
type_ = u'auto'
|
|
|
|
return u"{} {}{} = {}".format(type_, self.modifier, self.name, self.rhs)
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
class ExpressionList(Expression):
|
|
|
|
def __init__(self, *args):
|
|
|
|
super(ExpressionList, self).__init__()
|
|
|
|
# Remove every None on end
|
|
|
|
args = list(args)
|
|
|
|
while args and args[-1] is None:
|
|
|
|
args.pop()
|
2018-04-18 18:43:13 +02:00
|
|
|
self.args = []
|
|
|
|
for arg in args:
|
|
|
|
exp = safe_exp(arg)
|
|
|
|
self.requires.append(exp)
|
|
|
|
self.args.append(exp)
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
text = u", ".join(unicode(x) for x in self.args)
|
|
|
|
return indent_all_but_first_and_last(text)
|
|
|
|
|
|
|
|
|
2018-05-14 11:50:56 +02:00
|
|
|
class TemplateArguments(Expression):
|
|
|
|
def __init__(self, *args):
|
|
|
|
super(TemplateArguments, self).__init__()
|
|
|
|
self.args = ExpressionList(*args)
|
|
|
|
self.requires.append(self.args)
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return u'<{}>'.format(self.args)
|
|
|
|
|
|
|
|
|
2018-04-07 01:23:03 +02:00
|
|
|
class CallExpression(Expression):
|
|
|
|
def __init__(self, base, *args):
|
|
|
|
super(CallExpression, self).__init__()
|
|
|
|
self.base = base
|
2018-05-14 11:50:56 +02:00
|
|
|
if args and isinstance(args[0], TemplateArguments):
|
|
|
|
self.template_args = args[0]
|
|
|
|
self.requires.append(self.template_args)
|
|
|
|
args = args[1:]
|
|
|
|
else:
|
|
|
|
self.template_args = None
|
2018-04-07 01:23:03 +02:00
|
|
|
self.args = ExpressionList(*args)
|
2018-04-18 18:43:13 +02:00
|
|
|
self.requires.append(self.args)
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
def __str__(self):
|
2018-05-14 11:50:56 +02:00
|
|
|
if self.template_args is not None:
|
|
|
|
return u'{}{}({})'.format(self.base, self.template_args, self.args)
|
2018-04-07 01:23:03 +02:00
|
|
|
return u'{}({})'.format(self.base, self.args)
|
|
|
|
|
|
|
|
|
|
|
|
class StructInitializer(Expression):
|
|
|
|
def __init__(self, base, *args):
|
|
|
|
super(StructInitializer, self).__init__()
|
|
|
|
self.base = base
|
|
|
|
if not isinstance(args, OrderedDict):
|
|
|
|
args = OrderedDict(args)
|
|
|
|
self.args = OrderedDict()
|
|
|
|
for key, value in args.iteritems():
|
2018-04-18 18:43:13 +02:00
|
|
|
if value is None:
|
|
|
|
continue
|
|
|
|
exp = safe_exp(value)
|
|
|
|
self.args[key] = exp
|
|
|
|
self.requires.append(exp)
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
def __str__(self):
|
2018-04-10 17:17:46 +02:00
|
|
|
cpp = u'{}{{\n'.format(self.base)
|
2018-04-07 01:23:03 +02:00
|
|
|
for key, value in self.args.iteritems():
|
2018-04-10 17:17:46 +02:00
|
|
|
cpp += u' .{} = {},\n'.format(key, value)
|
|
|
|
cpp += u'}'
|
|
|
|
return cpp
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
class ArrayInitializer(Expression):
|
2018-04-18 18:43:13 +02:00
|
|
|
def __init__(self, *args, **kwargs):
|
2018-04-07 01:23:03 +02:00
|
|
|
super(ArrayInitializer, self).__init__()
|
2018-04-18 18:43:13 +02:00
|
|
|
self.multiline = kwargs.get('multiline', True)
|
|
|
|
self.args = []
|
|
|
|
for arg in args:
|
|
|
|
if arg is None:
|
|
|
|
continue
|
|
|
|
exp = safe_exp(arg)
|
|
|
|
self.args.append(exp)
|
|
|
|
self.requires.append(exp)
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
if not self.args:
|
|
|
|
return u'{}'
|
2018-04-18 18:43:13 +02:00
|
|
|
if self.multiline:
|
|
|
|
cpp = u'{\n'
|
|
|
|
for arg in self.args:
|
|
|
|
cpp += u' {},\n'.format(arg)
|
|
|
|
cpp += u'}'
|
|
|
|
else:
|
|
|
|
cpp = u'{' + u', '.join(str(arg) for arg in self.args) + u'}'
|
2018-04-10 17:17:46 +02:00
|
|
|
return cpp
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Literal(Expression):
|
2018-04-10 17:17:46 +02:00
|
|
|
def __str__(self):
|
|
|
|
raise NotImplementedError
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
|
2018-05-15 11:09:27 +02:00
|
|
|
# From https://stackoverflow.com/a/14945195/8924614
|
|
|
|
def cpp_string_escape(s, encoding='utf-8'):
|
|
|
|
if isinstance(s, unicode):
|
|
|
|
s = s.encode(encoding)
|
|
|
|
result = ''
|
|
|
|
for c in s:
|
|
|
|
if not (32 <= ord(c) < 127) or c in ('\\', '"'):
|
|
|
|
result += '\\%03o' % ord(c)
|
|
|
|
else:
|
|
|
|
result += c
|
|
|
|
return '"' + result + '"'
|
|
|
|
|
|
|
|
|
2018-04-07 01:23:03 +02:00
|
|
|
class StringLiteral(Literal):
|
2018-04-10 17:17:46 +02:00
|
|
|
def __init__(self, string):
|
2018-04-07 01:23:03 +02:00
|
|
|
super(StringLiteral, self).__init__()
|
2018-04-10 17:17:46 +02:00
|
|
|
self.string = string
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
def __str__(self):
|
2018-05-15 11:09:27 +02:00
|
|
|
return u'{}'.format(cpp_string_escape(self.string))
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
class IntLiteral(Literal):
|
|
|
|
def __init__(self, i):
|
|
|
|
super(IntLiteral, self).__init__()
|
|
|
|
self.i = i
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return unicode(self.i)
|
|
|
|
|
|
|
|
|
|
|
|
class BoolLiteral(Literal):
|
2018-04-10 17:17:46 +02:00
|
|
|
def __init__(self, binary):
|
2018-04-07 01:23:03 +02:00
|
|
|
super(BoolLiteral, self).__init__()
|
2018-04-10 17:17:46 +02:00
|
|
|
self.binary = binary
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
def __str__(self):
|
2018-04-10 17:17:46 +02:00
|
|
|
return u"true" if self.binary else u"false"
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
class HexIntLiteral(Literal):
|
|
|
|
def __init__(self, i):
|
|
|
|
super(HexIntLiteral, self).__init__()
|
|
|
|
self.i = HexInt(i)
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return str(self.i)
|
|
|
|
|
|
|
|
|
|
|
|
class FloatLiteral(Literal):
|
2018-04-10 17:17:46 +02:00
|
|
|
def __init__(self, float_):
|
2018-04-07 01:23:03 +02:00
|
|
|
super(FloatLiteral, self).__init__()
|
2018-04-10 17:17:46 +02:00
|
|
|
self.float_ = float_
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
def __str__(self):
|
2018-04-10 17:17:46 +02:00
|
|
|
return u"{:f}f".format(self.float_)
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
def safe_exp(obj):
|
|
|
|
if isinstance(obj, Expression):
|
|
|
|
return obj
|
|
|
|
elif isinstance(obj, bool):
|
|
|
|
return BoolLiteral(obj)
|
2018-04-10 17:17:46 +02:00
|
|
|
elif isinstance(obj, (str, unicode)):
|
2018-04-07 01:23:03 +02:00
|
|
|
return StringLiteral(obj)
|
2018-05-14 11:50:56 +02:00
|
|
|
elif isinstance(obj, HexInt):
|
|
|
|
return HexIntLiteral(obj)
|
2018-04-07 01:23:03 +02:00
|
|
|
elif isinstance(obj, (int, long)):
|
|
|
|
return IntLiteral(obj)
|
|
|
|
elif isinstance(obj, float):
|
|
|
|
return FloatLiteral(obj)
|
2018-05-14 11:50:56 +02:00
|
|
|
elif isinstance(obj, TimePeriodMicroseconds):
|
|
|
|
return IntLiteral(int(obj.total_microseconds))
|
|
|
|
elif isinstance(obj, TimePeriodMilliseconds):
|
|
|
|
return IntLiteral(int(obj.total_milliseconds))
|
|
|
|
elif isinstance(obj, TimePeriodSeconds):
|
|
|
|
return IntLiteral(int(obj.total_seconds))
|
2018-04-07 01:23:03 +02:00
|
|
|
raise ValueError(u"Object is not an expression", obj)
|
|
|
|
|
|
|
|
|
|
|
|
class Statement(object):
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def __str__(self):
|
2018-04-10 17:17:46 +02:00
|
|
|
raise NotImplementedError
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
class RawStatement(Statement):
|
|
|
|
def __init__(self, text):
|
|
|
|
super(RawStatement, self).__init__()
|
|
|
|
self.text = text
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.text
|
|
|
|
|
|
|
|
|
|
|
|
class ExpressionStatement(Statement):
|
|
|
|
def __init__(self, expression):
|
|
|
|
super(ExpressionStatement, self).__init__()
|
|
|
|
self.expression = safe_exp(expression)
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return u"{};".format(self.expression)
|
|
|
|
|
|
|
|
|
|
|
|
def statement(expression):
|
|
|
|
if isinstance(expression, Statement):
|
|
|
|
return expression
|
|
|
|
return ExpressionStatement(expression)
|
|
|
|
|
|
|
|
|
2018-04-10 17:17:46 +02:00
|
|
|
# pylint: disable=redefined-builtin, invalid-name
|
2018-04-07 01:23:03 +02:00
|
|
|
def variable(type, id, rhs):
|
|
|
|
rhs = safe_exp(rhs)
|
|
|
|
obj = MockObj(id, u'.')
|
2018-04-18 18:43:13 +02:00
|
|
|
assignment = AssignmentExpression(type, '', id, rhs, obj)
|
|
|
|
add(assignment)
|
2018-04-07 01:23:03 +02:00
|
|
|
_VARIABLES[id] = obj, type
|
2018-04-18 18:43:13 +02:00
|
|
|
obj.requires.append(assignment)
|
2018-04-07 01:23:03 +02:00
|
|
|
return obj
|
|
|
|
|
|
|
|
|
|
|
|
def Pvariable(type, id, rhs):
|
|
|
|
rhs = safe_exp(rhs)
|
|
|
|
obj = MockObj(id, u'->')
|
2018-04-18 18:43:13 +02:00
|
|
|
assignment = AssignmentExpression(type, '*', id, rhs, obj)
|
|
|
|
add(assignment)
|
2018-04-07 01:23:03 +02:00
|
|
|
_VARIABLES[id] = obj, type
|
2018-04-18 18:43:13 +02:00
|
|
|
obj.requires.append(assignment)
|
2018-04-07 01:23:03 +02:00
|
|
|
return obj
|
|
|
|
|
|
|
|
|
|
|
|
_QUEUE = deque()
|
|
|
|
_VARIABLES = {}
|
|
|
|
_EXPRESSIONS = []
|
|
|
|
|
|
|
|
|
|
|
|
def get_variable(id, type=None):
|
|
|
|
result = None
|
|
|
|
while _QUEUE:
|
|
|
|
if id is not None:
|
|
|
|
if id in _VARIABLES:
|
|
|
|
result = _VARIABLES[id][0]
|
|
|
|
break
|
|
|
|
elif type is not None:
|
|
|
|
result = next((x[0] for x in _VARIABLES.itervalues() if x[1] == type), None)
|
|
|
|
if result is not None:
|
|
|
|
break
|
|
|
|
func, config = _QUEUE.popleft()
|
|
|
|
func(config)
|
|
|
|
if id is None and type is None:
|
|
|
|
return None
|
|
|
|
if result is None:
|
|
|
|
if id is not None:
|
2018-05-14 11:50:56 +02:00
|
|
|
if id in _VARIABLES:
|
|
|
|
result = _VARIABLES[id][0]
|
2018-04-07 01:23:03 +02:00
|
|
|
elif type is not None:
|
|
|
|
result = next((x[0] for x in _VARIABLES.itervalues() if x[1] == type), None)
|
|
|
|
|
|
|
|
if result is None:
|
|
|
|
raise ESPHomeYAMLError(u"Couldn't find ID '{}' with type {}".format(id, type))
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
def add_task(func, config):
|
|
|
|
_QUEUE.append((func, config))
|
|
|
|
|
|
|
|
|
2018-04-18 18:43:13 +02:00
|
|
|
def add(expression, require=True):
|
|
|
|
if require and isinstance(expression, Expression):
|
|
|
|
expression.require()
|
2018-04-07 01:23:03 +02:00
|
|
|
_EXPRESSIONS.append(expression)
|
|
|
|
return expression
|
|
|
|
|
|
|
|
|
|
|
|
class MockObj(Expression):
|
2018-04-18 18:43:13 +02:00
|
|
|
def __init__(self, base, op=u'.'):
|
2018-04-07 01:23:03 +02:00
|
|
|
self.base = base
|
|
|
|
self.op = op
|
|
|
|
super(MockObj, self).__init__()
|
|
|
|
|
|
|
|
def __getattr__(self, attr):
|
|
|
|
next_op = u'.'
|
|
|
|
if attr.startswith(u'P'):
|
|
|
|
attr = attr[1:]
|
|
|
|
next_op = u'->'
|
|
|
|
op = self.op
|
2018-04-18 18:43:13 +02:00
|
|
|
obj = MockObj(u'{}{}{}'.format(self.base, op, attr), next_op)
|
|
|
|
obj.requires.append(self)
|
|
|
|
return obj
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
def __call__(self, *args, **kwargs):
|
2018-04-18 18:43:13 +02:00
|
|
|
call = CallExpression(self.base, *args)
|
|
|
|
obj = MockObj(call, self.op)
|
|
|
|
obj.requires.append(self)
|
|
|
|
obj.requires.append(call)
|
|
|
|
return obj
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
def __str__(self):
|
2018-04-18 18:43:13 +02:00
|
|
|
return unicode(self.base)
|
|
|
|
|
|
|
|
def require(self):
|
|
|
|
self.required = True
|
|
|
|
for require in self.requires:
|
|
|
|
if require.required:
|
|
|
|
continue
|
|
|
|
require.require()
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
App = MockObj(u'App')
|
|
|
|
|
|
|
|
GPIOPin = MockObj(u'GPIOPin')
|
|
|
|
GPIOOutputPin = MockObj(u'GPIOOutputPin')
|
|
|
|
GPIOInputPin = MockObj(u'GPIOInputPin')
|
|
|
|
|
|
|
|
|
|
|
|
def get_gpio_pin_number(conf):
|
|
|
|
if isinstance(conf, int):
|
|
|
|
return conf
|
|
|
|
return conf[CONF_NUMBER]
|
|
|
|
|
|
|
|
|
|
|
|
def exp_gpio_pin_(obj, conf, default_mode):
|
|
|
|
if isinstance(conf, int):
|
|
|
|
return conf
|
2018-05-06 15:56:12 +02:00
|
|
|
|
2018-05-14 11:50:56 +02:00
|
|
|
if CONF_PCF8574 in conf:
|
|
|
|
hub = get_variable(conf[CONF_PCF8574], 'io::PCF8574Component')
|
2018-05-06 15:56:12 +02:00
|
|
|
if default_mode == u'INPUT':
|
|
|
|
return hub.make_input_pin(conf[CONF_NUMBER],
|
|
|
|
RawExpression('PCF8574_' + conf[CONF_MODE]),
|
|
|
|
conf[CONF_INVERTED])
|
|
|
|
elif default_mode == u'OUTPUT':
|
|
|
|
return hub.make_output_pin(conf[CONF_NUMBER], conf[CONF_INVERTED])
|
|
|
|
else:
|
|
|
|
raise ESPHomeYAMLError(u"Unknown default mode {}".format(default_mode))
|
|
|
|
|
2018-04-07 01:23:03 +02:00
|
|
|
if conf.get(CONF_INVERTED) is None:
|
|
|
|
return obj(conf[CONF_NUMBER], conf.get(CONF_MODE))
|
|
|
|
return obj(conf[CONF_NUMBER], RawExpression(conf.get(CONF_MODE, default_mode)),
|
|
|
|
conf[CONF_INVERTED])
|
|
|
|
|
|
|
|
|
|
|
|
def exp_gpio_pin(conf):
|
|
|
|
return GPIOPin(conf[CONF_NUMBER], conf[CONF_MODE], conf.get(CONF_INVERTED))
|
|
|
|
|
|
|
|
|
|
|
|
def exp_gpio_output_pin(conf):
|
|
|
|
return exp_gpio_pin_(GPIOOutputPin, conf, u'OUTPUT')
|
|
|
|
|
|
|
|
|
|
|
|
def exp_gpio_input_pin(conf):
|
|
|
|
return exp_gpio_pin_(GPIOInputPin, conf, u'INPUT')
|
|
|
|
|
|
|
|
|
|
|
|
def setup_mqtt_component(obj, config):
|
|
|
|
if CONF_RETAIN in config:
|
|
|
|
add(obj.set_retain(config[CONF_RETAIN]))
|
|
|
|
if not config.get(CONF_DISCOVERY, True):
|
|
|
|
add(obj.disable_discovery())
|
|
|
|
if CONF_STATE_TOPIC in config:
|
|
|
|
add(obj.set_custom_state_topic(config[CONF_STATE_TOPIC]))
|
|
|
|
if CONF_COMMAND_TOPIC in config:
|
|
|
|
add(obj.set_custom_command_topic(config[CONF_COMMAND_TOPIC]))
|
|
|
|
if CONF_AVAILABILITY in config:
|
|
|
|
availability = config[CONF_AVAILABILITY]
|
2018-04-18 18:43:13 +02:00
|
|
|
add(obj.set_availability(availability[CONF_TOPIC], availability[CONF_PAYLOAD_AVAILABLE],
|
|
|
|
availability[CONF_PAYLOAD_NOT_AVAILABLE]))
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
def exp_empty_optional(type):
|
|
|
|
return RawExpression(u'Optional<{}>()'.format(type))
|
|
|
|
|
|
|
|
|
|
|
|
def exp_optional(type, value):
|
|
|
|
if value is None:
|
|
|
|
return exp_empty_optional(type)
|
|
|
|
return value
|
|
|
|
|
|
|
|
|
|
|
|
# shlex's quote for Python 2.7
|
|
|
|
_find_unsafe = re.compile(r'[^\w@%+=:,./-]').search
|
|
|
|
|
|
|
|
|
|
|
|
def quote(s):
|
|
|
|
"""Return a shell-escaped version of the string *s*."""
|
|
|
|
if not s:
|
|
|
|
return u"''"
|
|
|
|
if _find_unsafe(s) is None:
|
|
|
|
return s
|
|
|
|
|
|
|
|
# use single quotes, and put single quotes into double quotes
|
|
|
|
# the string $'b is then quoted as '$'"'"'b'
|
|
|
|
return u"'" + s.replace(u"'", u"'\"'\"'") + u"'"
|
|
|
|
|
|
|
|
|
2018-04-10 16:21:32 +02:00
|
|
|
def color(the_color, message='', reset=None):
|
2018-04-07 01:23:03 +02:00
|
|
|
"""Color helper."""
|
|
|
|
from colorlog.escape_codes import escape_codes, parse_colors
|
|
|
|
if not message:
|
|
|
|
return parse_colors(the_color)
|
|
|
|
return parse_colors(the_color) + message + escape_codes[reset or 'reset']
|