mirror of
https://github.com/esphome/esphome.git
synced 2024-11-22 23:18:10 +01:00
vscode support check file exists (#763)
* vscode support check file exists * ups. formatter got disabled
This commit is contained in:
parent
ea762b7295
commit
84cfcf2b4a
1 changed files with 37 additions and 0 deletions
|
@ -80,6 +80,7 @@ class Optional(vol.Optional):
|
||||||
during config validation - specifically *not* in the C++ code or the code generation
|
during config validation - specifically *not* in the C++ code or the code generation
|
||||||
phase.
|
phase.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, key, default=UNDEFINED):
|
def __init__(self, key, default=UNDEFINED):
|
||||||
super(Optional, self).__init__(key, default=default)
|
super(Optional, self).__init__(key, default=default)
|
||||||
|
|
||||||
|
@ -91,6 +92,7 @@ class Required(vol.Required):
|
||||||
All required values should be acceessed with the `config[CONF_<KEY>]` syntax in code
|
All required values should be acceessed with the `config[CONF_<KEY>]` syntax in code
|
||||||
- *not* the `config.get(CONF_<KEY>)` syntax.
|
- *not* the `config.get(CONF_<KEY>)` syntax.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, key):
|
def __init__(self, key):
|
||||||
super(Required, self).__init__(key)
|
super(Required, self).__init__(key)
|
||||||
|
|
||||||
|
@ -1021,8 +1023,24 @@ def dimensions(value):
|
||||||
|
|
||||||
|
|
||||||
def directory(value):
|
def directory(value):
|
||||||
|
import json
|
||||||
|
from esphome.py_compat import safe_input
|
||||||
value = string(value)
|
value = string(value)
|
||||||
path = CORE.relative_config_path(value)
|
path = CORE.relative_config_path(value)
|
||||||
|
|
||||||
|
if CORE.vscode and (not CORE.ace or
|
||||||
|
os.path.abspath(path) == os.path.abspath(CORE.config_path)):
|
||||||
|
print(json.dumps({
|
||||||
|
'type': 'check_directory_exists',
|
||||||
|
'path': path,
|
||||||
|
}))
|
||||||
|
data = json.loads(safe_input())
|
||||||
|
assert data['type'] == 'directory_exists_response'
|
||||||
|
if data['content']:
|
||||||
|
return value
|
||||||
|
raise Invalid(u"Could not find directory '{}'. Please make sure it exists (full path: {})."
|
||||||
|
u"".format(path, os.path.abspath(path)))
|
||||||
|
|
||||||
if not os.path.exists(path):
|
if not os.path.exists(path):
|
||||||
raise Invalid(u"Could not find directory '{}'. Please make sure it exists (full path: {})."
|
raise Invalid(u"Could not find directory '{}'. Please make sure it exists (full path: {})."
|
||||||
u"".format(path, os.path.abspath(path)))
|
u"".format(path, os.path.abspath(path)))
|
||||||
|
@ -1033,8 +1051,24 @@ def directory(value):
|
||||||
|
|
||||||
|
|
||||||
def file_(value):
|
def file_(value):
|
||||||
|
import json
|
||||||
|
from esphome.py_compat import safe_input
|
||||||
value = string(value)
|
value = string(value)
|
||||||
path = CORE.relative_config_path(value)
|
path = CORE.relative_config_path(value)
|
||||||
|
|
||||||
|
if CORE.vscode and (not CORE.ace or
|
||||||
|
os.path.abspath(path) == os.path.abspath(CORE.config_path)):
|
||||||
|
print(json.dumps({
|
||||||
|
'type': 'check_file_exists',
|
||||||
|
'path': path,
|
||||||
|
}))
|
||||||
|
data = json.loads(safe_input())
|
||||||
|
assert data['type'] == 'file_exists_response'
|
||||||
|
if data['content']:
|
||||||
|
return value
|
||||||
|
raise Invalid(u"Could not find file '{}'. Please make sure it exists (full path: {})."
|
||||||
|
u"".format(path, os.path.abspath(path)))
|
||||||
|
|
||||||
if not os.path.exists(path):
|
if not os.path.exists(path):
|
||||||
raise Invalid(u"Could not find file '{}'. Please make sure it exists (full path: {})."
|
raise Invalid(u"Could not find file '{}'. Please make sure it exists (full path: {})."
|
||||||
u"".format(path, os.path.abspath(path)))
|
u"".format(path, os.path.abspath(path)))
|
||||||
|
@ -1100,12 +1134,14 @@ def typed_schema(schemas, **kwargs):
|
||||||
|
|
||||||
class GenerateID(Optional):
|
class GenerateID(Optional):
|
||||||
"""Mark this key as being an auto-generated ID key."""
|
"""Mark this key as being an auto-generated ID key."""
|
||||||
|
|
||||||
def __init__(self, key=CONF_ID):
|
def __init__(self, key=CONF_ID):
|
||||||
super(GenerateID, self).__init__(key, default=lambda: None)
|
super(GenerateID, self).__init__(key, default=lambda: None)
|
||||||
|
|
||||||
|
|
||||||
class SplitDefault(Optional):
|
class SplitDefault(Optional):
|
||||||
"""Mark this key to have a split default for ESP8266/ESP32."""
|
"""Mark this key to have a split default for ESP8266/ESP32."""
|
||||||
|
|
||||||
def __init__(self, key, esp8266=vol.UNDEFINED, esp32=vol.UNDEFINED):
|
def __init__(self, key, esp8266=vol.UNDEFINED, esp32=vol.UNDEFINED):
|
||||||
super(SplitDefault, self).__init__(key)
|
super(SplitDefault, self).__init__(key)
|
||||||
self._esp8266_default = vol.default_factory(esp8266)
|
self._esp8266_default = vol.default_factory(esp8266)
|
||||||
|
@ -1127,6 +1163,7 @@ class SplitDefault(Optional):
|
||||||
|
|
||||||
class OnlyWith(Optional):
|
class OnlyWith(Optional):
|
||||||
"""Set the default value only if the given component is loaded."""
|
"""Set the default value only if the given component is loaded."""
|
||||||
|
|
||||||
def __init__(self, key, component, default=None):
|
def __init__(self, key, component, default=None):
|
||||||
super(OnlyWith, self).__init__(key)
|
super(OnlyWith, self).__init__(key)
|
||||||
self._component = component
|
self._component = component
|
||||||
|
|
Loading…
Reference in a new issue