mirror of
https://github.com/home-assistant/core.git
synced 2025-05-16 20:09:14 +00:00

* Remove unnecessary exception re-wraps * Preserve exception chains on re-raise We slap "from cause" to almost all possible cases here. In some cases it could conceivably be better to do "from None" if we really want to hide the cause. However those should be in the minority, and "from cause" should be an improvement over the corresponding raise without a "from" in all cases anyway. The only case where we raise from None here is in plex, where the exception for an original invalid SSL cert is not the root cause for failure to validate a newly fetched one. Follow local convention on exception variable names if there is a consistent one, otherwise `err` to match with majority of codebase. * Fix mistaken re-wrap in homematicip_cloud/hap.py Missed the difference between HmipConnectionError and HmipcConnectionError. * Do not hide original error on plex new cert validation error Original is not the cause for the new one, but showing old in the traceback is useful nevertheless.
128 lines
3.8 KiB
Python
128 lines
3.8 KiB
Python
"""Support for Ebusd daemon for communication with eBUS heating systems."""
|
|
from datetime import timedelta
|
|
import logging
|
|
import socket
|
|
|
|
import ebusdpy
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.const import (
|
|
CONF_HOST,
|
|
CONF_MONITORED_CONDITIONS,
|
|
CONF_NAME,
|
|
CONF_PORT,
|
|
)
|
|
import homeassistant.helpers.config_validation as cv
|
|
from homeassistant.helpers.discovery import load_platform
|
|
from homeassistant.util import Throttle
|
|
|
|
from .const import DOMAIN, SENSOR_TYPES
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
DEFAULT_NAME = "ebusd"
|
|
DEFAULT_PORT = 8888
|
|
CONF_CIRCUIT = "circuit"
|
|
CACHE_TTL = 900
|
|
SERVICE_EBUSD_WRITE = "ebusd_write"
|
|
|
|
MIN_TIME_BETWEEN_UPDATES = timedelta(seconds=15)
|
|
|
|
|
|
def verify_ebusd_config(config):
|
|
"""Verify eBusd config."""
|
|
circuit = config[CONF_CIRCUIT]
|
|
for condition in config[CONF_MONITORED_CONDITIONS]:
|
|
if condition not in SENSOR_TYPES[circuit]:
|
|
raise vol.Invalid(f"Condition '{condition}' not in '{circuit}'.")
|
|
return config
|
|
|
|
|
|
CONFIG_SCHEMA = vol.Schema(
|
|
{
|
|
DOMAIN: vol.Schema(
|
|
vol.All(
|
|
{
|
|
vol.Required(CONF_CIRCUIT): cv.string,
|
|
vol.Required(CONF_HOST): cv.string,
|
|
vol.Optional(CONF_PORT, default=DEFAULT_PORT): cv.port,
|
|
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
|
|
vol.Optional(CONF_MONITORED_CONDITIONS, default=[]): cv.ensure_list,
|
|
},
|
|
verify_ebusd_config,
|
|
)
|
|
)
|
|
},
|
|
extra=vol.ALLOW_EXTRA,
|
|
)
|
|
|
|
|
|
def setup(hass, config):
|
|
"""Set up the eBusd component."""
|
|
conf = config[DOMAIN]
|
|
name = conf[CONF_NAME]
|
|
circuit = conf[CONF_CIRCUIT]
|
|
monitored_conditions = conf.get(CONF_MONITORED_CONDITIONS)
|
|
server_address = (conf.get(CONF_HOST), conf.get(CONF_PORT))
|
|
|
|
try:
|
|
_LOGGER.debug("Ebusd integration setup started")
|
|
|
|
ebusdpy.init(server_address)
|
|
hass.data[DOMAIN] = EbusdData(server_address, circuit)
|
|
|
|
sensor_config = {
|
|
CONF_MONITORED_CONDITIONS: monitored_conditions,
|
|
"client_name": name,
|
|
"sensor_types": SENSOR_TYPES[circuit],
|
|
}
|
|
load_platform(hass, "sensor", DOMAIN, sensor_config, config)
|
|
|
|
hass.services.register(DOMAIN, SERVICE_EBUSD_WRITE, hass.data[DOMAIN].write)
|
|
|
|
_LOGGER.debug("Ebusd integration setup completed")
|
|
return True
|
|
except (socket.timeout, OSError):
|
|
return False
|
|
|
|
|
|
class EbusdData:
|
|
"""Get the latest data from Ebusd."""
|
|
|
|
def __init__(self, address, circuit):
|
|
"""Initialize the data object."""
|
|
self._circuit = circuit
|
|
self._address = address
|
|
self.value = {}
|
|
|
|
@Throttle(MIN_TIME_BETWEEN_UPDATES)
|
|
def update(self, name, stype):
|
|
"""Call the Ebusd API to update the data."""
|
|
try:
|
|
_LOGGER.debug("Opening socket to ebusd %s", name)
|
|
command_result = ebusdpy.read(
|
|
self._address, self._circuit, name, stype, CACHE_TTL
|
|
)
|
|
if command_result is not None:
|
|
if "ERR:" in command_result:
|
|
_LOGGER.warning(command_result)
|
|
else:
|
|
self.value[name] = command_result
|
|
except RuntimeError as err:
|
|
_LOGGER.error(err)
|
|
raise RuntimeError(err) from err
|
|
|
|
def write(self, call):
|
|
"""Call write methon on ebusd."""
|
|
name = call.data.get("name")
|
|
value = call.data.get("value")
|
|
|
|
try:
|
|
_LOGGER.debug("Opening socket to ebusd %s", name)
|
|
command_result = ebusdpy.write(self._address, self._circuit, name, value)
|
|
if command_result is not None:
|
|
if "done" not in command_result:
|
|
_LOGGER.warning("Write command failed: %s", name)
|
|
except RuntimeError as err:
|
|
_LOGGER.error(err)
|