core/homeassistant/components/counter/__init__.py

147 lines
4.0 KiB
Python
Raw Normal View History

"""Component to count within automations."""
2017-08-29 13:44:36 +00:00
import logging
import voluptuous as vol
2018-06-01 17:41:20 +00:00
from homeassistant.const import ATTR_ENTITY_ID, CONF_ICON, CONF_NAME
import homeassistant.helpers.config_validation as cv
2017-08-29 13:44:36 +00:00
from homeassistant.helpers.entity_component import EntityComponent
from homeassistant.helpers.restore_state import RestoreEntity
2017-08-29 13:44:36 +00:00
_LOGGER = logging.getLogger(__name__)
ATTR_INITIAL = 'initial'
ATTR_STEP = 'step'
CONF_INITIAL = 'initial'
CONF_RESTORE = 'restore'
2017-08-29 13:44:36 +00:00
CONF_STEP = 'step'
DEFAULT_INITIAL = 0
DEFAULT_STEP = 1
DOMAIN = 'counter'
ENTITY_ID_FORMAT = DOMAIN + '.{}'
SERVICE_DECREMENT = 'decrement'
SERVICE_INCREMENT = 'increment'
SERVICE_RESET = 'reset'
SERVICE_SCHEMA = vol.Schema({
vol.Optional(ATTR_ENTITY_ID): cv.comp_entity_ids,
2017-08-29 13:44:36 +00:00
})
CONFIG_SCHEMA = vol.Schema({
DOMAIN: cv.schema_with_slug_keys(
vol.Any({
2017-08-29 13:44:36 +00:00
vol.Optional(CONF_ICON): cv.icon,
vol.Optional(CONF_INITIAL, default=DEFAULT_INITIAL):
cv.positive_int,
vol.Optional(CONF_NAME): cv.string,
vol.Optional(CONF_RESTORE, default=True): cv.boolean,
2017-08-29 13:44:36 +00:00
vol.Optional(CONF_STEP, default=DEFAULT_STEP): cv.positive_int,
}, None)
)
2017-08-29 13:44:36 +00:00
}, extra=vol.ALLOW_EXTRA)
2018-06-01 17:41:20 +00:00
async def async_setup(hass, config):
"""Set up the counters."""
2017-08-29 13:44:36 +00:00
component = EntityComponent(_LOGGER, DOMAIN, hass)
entities = []
for object_id, cfg in config[DOMAIN].items():
if not cfg:
cfg = {}
name = cfg.get(CONF_NAME)
initial = cfg.get(CONF_INITIAL)
restore = cfg.get(CONF_RESTORE)
2017-08-29 13:44:36 +00:00
step = cfg.get(CONF_STEP)
icon = cfg.get(CONF_ICON)
entities.append(Counter(object_id, name, initial, restore, step, icon))
2017-08-29 13:44:36 +00:00
if not entities:
return False
component.async_register_entity_service(
SERVICE_INCREMENT, SERVICE_SCHEMA,
'async_increment')
component.async_register_entity_service(
SERVICE_DECREMENT, SERVICE_SCHEMA,
'async_decrement')
component.async_register_entity_service(
SERVICE_RESET, SERVICE_SCHEMA,
'async_reset')
2017-08-29 13:44:36 +00:00
2018-06-01 17:41:20 +00:00
await component.async_add_entities(entities)
2017-08-29 13:44:36 +00:00
return True
class Counter(RestoreEntity):
2017-08-29 13:44:36 +00:00
"""Representation of a counter."""
def __init__(self, object_id, name, initial, restore, step, icon):
2017-08-29 13:44:36 +00:00
"""Initialize a counter."""
self.entity_id = ENTITY_ID_FORMAT.format(object_id)
self._name = name
self._restore = restore
2017-08-29 13:44:36 +00:00
self._step = step
self._state = self._initial = initial
self._icon = icon
@property
def should_poll(self):
"""If entity should be polled."""
return False
@property
def name(self):
"""Return name of the counter."""
return self._name
@property
def icon(self):
"""Return the icon to be used for this entity."""
return self._icon
@property
def state(self):
"""Return the current value of the counter."""
return self._state
@property
def state_attributes(self):
"""Return the state attributes."""
return {
ATTR_INITIAL: self._initial,
ATTR_STEP: self._step,
}
2018-06-01 17:41:20 +00:00
async def async_added_to_hass(self):
2017-08-29 13:44:36 +00:00
"""Call when entity about to be added to Home Assistant."""
await super().async_added_to_hass()
# __init__ will set self._state to self._initial, only override
# if needed.
if self._restore:
state = await self.async_get_last_state()
if state is not None:
self._state = int(state.state)
2017-08-29 13:44:36 +00:00
2018-06-01 17:41:20 +00:00
async def async_decrement(self):
2017-08-29 13:44:36 +00:00
"""Decrement the counter."""
self._state -= self._step
2018-06-01 17:41:20 +00:00
await self.async_update_ha_state()
2017-08-29 13:44:36 +00:00
2018-06-01 17:41:20 +00:00
async def async_increment(self):
2017-08-29 13:44:36 +00:00
"""Increment a counter."""
self._state += self._step
2018-06-01 17:41:20 +00:00
await self.async_update_ha_state()
2017-08-29 13:44:36 +00:00
2018-06-01 17:41:20 +00:00
async def async_reset(self):
2017-08-29 13:44:36 +00:00
"""Reset a counter."""
self._state = self._initial
2018-06-01 17:41:20 +00:00
await self.async_update_ha_state()