mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
ac0d921413
* Socket refactor and SSL * esp-idf temp * Fixes * Echo component and noise * Add noise API transport support * Updates * ESP-IDF * Complete * Fixes * Fixes * Versions update * New i2c APIs * Complete i2c refactor * SPI migration * Revert ESP Preferences migration, too complex for now * OTA support * Remove echo again * Remove ssl again * GPIOFlags updates * Rename esphal and ICACHE_RAM_ATTR * Make ESP32 arduino compilable again * Fix GPIO flags * Complete pin registry refactor and fixes * Fixes to make test1 compile * Remove sdkconfig file * Ignore sdkconfig file * Fixes in reviewing * Make test2 compile * Make test4 compile * Make test5 compile * Run clang-format * Fix lint errors * Use esp-idf APIs instead of btStart * Another round of fixes * Start implementing ESP8266 * Make test3 compile * Guard esp8266 code * Lint * Reformat * Fixes * Fixes v2 * more fixes * ESP-IDF tidy target * Convert ARDUINO_ARCH_ESPxx * Update WiFiSignalSensor * Update time ifdefs * OTA needs millis from hal * RestartSwitch needs delay from hal * ESP-IDF Uart * Fix OTA blank password * Allow setting sdkconfig * Fix idf partitions and allow setting sdkconfig from yaml * Re-add read/write compat APIs and fix esp8266 uart * Fix esp8266 store log strings in flash * Fix ESP32 arduino preferences not initialized * Update ifdefs * Change how sdkconfig change is detected * Add checks to ci-custom and fix them * Run clang-format * Add esp-idf clang-tidy target and fix errors * Fixes from clang-tidy idf round 2 * Fixes from compiling tests with esp-idf * Run clang-format * Switch test5.yaml to esp-idf * Implement ESP8266 Preferences * Lint * Re-do PIO package version selection a bit * Fix arduinoespressif32 package version * Fix unit tests * Lint * Lint fixes * Fix readv/writev not defined * Fix graphing component * Re-add all old options from core/config.py Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
188 lines
5.9 KiB
Python
188 lines
5.9 KiB
Python
import logging
|
|
from typing import Callable, List, Optional, Any, ContextManager
|
|
from types import ModuleType
|
|
import importlib
|
|
import importlib.util
|
|
import importlib.resources
|
|
import importlib.abc
|
|
import sys
|
|
from pathlib import Path
|
|
from dataclasses import dataclass
|
|
|
|
from esphome.const import SOURCE_FILE_EXTENSIONS
|
|
import esphome.core.config
|
|
from esphome.core import CORE
|
|
from esphome.types import ConfigType
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
@dataclass(frozen=True, order=True)
|
|
class FileResource:
|
|
package: str
|
|
resource: str
|
|
|
|
def path(self) -> ContextManager[Path]:
|
|
return importlib.resources.path(self.package, self.resource)
|
|
|
|
|
|
class ComponentManifest:
|
|
def __init__(self, module: ModuleType):
|
|
self.module = module
|
|
|
|
@property
|
|
def package(self) -> str:
|
|
"""Return the package name the module is contained in.
|
|
|
|
Examples:
|
|
- esphome/components/gpio/__init__.py -> esphome.components.gpio
|
|
- esphome/components/gpio/switch/__init__.py -> esphome.components.gpio.switch
|
|
- esphome/components/a4988/stepper.py -> esphome.components.a4988
|
|
"""
|
|
return self.module.__package__
|
|
|
|
@property
|
|
def is_platform(self) -> bool:
|
|
return len(self.module.__name__.split(".")) == 4
|
|
|
|
@property
|
|
def is_platform_component(self) -> bool:
|
|
return getattr(self.module, "IS_PLATFORM_COMPONENT", False)
|
|
|
|
@property
|
|
def config_schema(self) -> Optional[Any]:
|
|
return getattr(self.module, "CONFIG_SCHEMA", None)
|
|
|
|
@property
|
|
def multi_conf(self) -> bool:
|
|
return getattr(self.module, "MULTI_CONF", False)
|
|
|
|
@property
|
|
def to_code(self) -> Optional[Callable[[Any], None]]:
|
|
return getattr(self.module, "to_code", None)
|
|
|
|
@property
|
|
def dependencies(self) -> List[str]:
|
|
return getattr(self.module, "DEPENDENCIES", [])
|
|
|
|
@property
|
|
def conflicts_with(self) -> List[str]:
|
|
return getattr(self.module, "CONFLICTS_WITH", [])
|
|
|
|
@property
|
|
def auto_load(self) -> List[str]:
|
|
return getattr(self.module, "AUTO_LOAD", [])
|
|
|
|
@property
|
|
def codeowners(self) -> List[str]:
|
|
return getattr(self.module, "CODEOWNERS", [])
|
|
|
|
@property
|
|
def final_validate_schema(self) -> Optional[Callable[[ConfigType], None]]:
|
|
"""Components can declare a `FINAL_VALIDATE_SCHEMA` cv.Schema that gets called
|
|
after the main validation. In that function checks across components can be made.
|
|
|
|
Note that the function can't mutate the configuration - no changes are saved
|
|
"""
|
|
return getattr(self.module, "FINAL_VALIDATE_SCHEMA", None)
|
|
|
|
@property
|
|
def resources(self) -> List[FileResource]:
|
|
"""Return a list of all file resources defined in the package of this component.
|
|
|
|
This will return all cpp source files that are located in the same folder as the
|
|
loaded .py file (does not look through subdirectories)
|
|
"""
|
|
ret = []
|
|
for resource in importlib.resources.contents(self.package):
|
|
if Path(resource).suffix not in SOURCE_FILE_EXTENSIONS:
|
|
continue
|
|
if not importlib.resources.is_resource(self.package, resource):
|
|
# Not a resource = this is a directory (yeah this is confusing)
|
|
continue
|
|
ret.append(FileResource(self.package, resource))
|
|
return ret
|
|
|
|
|
|
class ComponentMetaFinder(importlib.abc.MetaPathFinder):
|
|
def __init__(
|
|
self, components_path: Path, allowed_components: Optional[List[str]] = None
|
|
) -> None:
|
|
self._allowed_components = allowed_components
|
|
self._finders = []
|
|
for hook in sys.path_hooks:
|
|
try:
|
|
finder = hook(str(components_path))
|
|
except ImportError:
|
|
continue
|
|
self._finders.append(finder)
|
|
|
|
def find_spec(self, fullname: str, path: Optional[List[str]], target=None):
|
|
if not fullname.startswith("esphome.components."):
|
|
return None
|
|
parts = fullname.split(".")
|
|
if len(parts) != 3:
|
|
# only handle direct components, not platforms
|
|
# platforms are handled automatically when parent is imported
|
|
return None
|
|
component = parts[2]
|
|
if (
|
|
self._allowed_components is not None
|
|
and component not in self._allowed_components
|
|
):
|
|
return None
|
|
|
|
for finder in self._finders:
|
|
spec = finder.find_spec(fullname, target=target)
|
|
if spec is not None:
|
|
return spec
|
|
return None
|
|
|
|
|
|
def clear_component_meta_finders():
|
|
sys.meta_path = [x for x in sys.meta_path if not isinstance(x, ComponentMetaFinder)]
|
|
|
|
|
|
def install_meta_finder(
|
|
components_path: Path, allowed_components: Optional[List[str]] = None
|
|
):
|
|
sys.meta_path.insert(0, ComponentMetaFinder(components_path, allowed_components))
|
|
|
|
|
|
def install_custom_components_meta_finder():
|
|
custom_components_dir = (Path(CORE.config_dir) / "custom_components").resolve()
|
|
install_meta_finder(custom_components_dir)
|
|
|
|
|
|
def _lookup_module(domain):
|
|
if domain in _COMPONENT_CACHE:
|
|
return _COMPONENT_CACHE[domain]
|
|
|
|
try:
|
|
module = importlib.import_module(f"esphome.components.{domain}")
|
|
except ImportError as e:
|
|
if "No module named" not in str(e):
|
|
_LOGGER.error("Unable to import component %s:", domain, exc_info=True)
|
|
return None
|
|
except Exception: # pylint: disable=broad-except
|
|
_LOGGER.error("Unable to load component %s:", domain, exc_info=True)
|
|
return None
|
|
else:
|
|
manif = ComponentManifest(module)
|
|
_COMPONENT_CACHE[domain] = manif
|
|
return manif
|
|
|
|
|
|
def get_component(domain):
|
|
assert "." not in domain
|
|
return _lookup_module(domain)
|
|
|
|
|
|
def get_platform(domain, platform):
|
|
full = f"{platform}.{domain}"
|
|
return _lookup_module(full)
|
|
|
|
|
|
_COMPONENT_CACHE = {}
|
|
CORE_COMPONENTS_PATH = (Path(__file__).parent / "components").resolve()
|
|
_COMPONENT_CACHE["esphome"] = ComponentManifest(esphome.core.config)
|