89 lines
2.9 KiB
Python
89 lines
2.9 KiB
Python
"""Support for Iperf3 sensors."""
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.components.sensor import SensorEntity, SensorEntityDescription
|
|
from homeassistant.const import ATTR_ATTRIBUTION, CONF_MONITORED_CONDITIONS
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.restore_state import RestoreEntity
|
|
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
|
|
|
|
from . import ATTR_VERSION, DATA_UPDATED, DOMAIN as IPERF3_DOMAIN, SENSOR_TYPES
|
|
|
|
ATTRIBUTION = "Data retrieved using Iperf3"
|
|
|
|
ICON = "mdi:speedometer"
|
|
|
|
ATTR_PROTOCOL = "Protocol"
|
|
ATTR_REMOTE_HOST = "Remote Server"
|
|
ATTR_REMOTE_PORT = "Remote Port"
|
|
|
|
|
|
async def async_setup_platform(
|
|
hass: HomeAssistant,
|
|
config: ConfigType,
|
|
async_add_entities: AddEntitiesCallback,
|
|
discovery_info: DiscoveryInfoType | None = None,
|
|
) -> None:
|
|
"""Set up the Iperf3 sensor."""
|
|
if not discovery_info:
|
|
return
|
|
|
|
entities = [
|
|
Iperf3Sensor(iperf3_host, description)
|
|
for iperf3_host in hass.data[IPERF3_DOMAIN].values()
|
|
for description in SENSOR_TYPES
|
|
if description.key in discovery_info[CONF_MONITORED_CONDITIONS]
|
|
]
|
|
async_add_entities(entities, True)
|
|
|
|
|
|
class Iperf3Sensor(RestoreEntity, SensorEntity):
|
|
"""A Iperf3 sensor implementation."""
|
|
|
|
_attr_icon = ICON
|
|
_attr_should_poll = False
|
|
|
|
def __init__(self, iperf3_data, description: SensorEntityDescription):
|
|
"""Initialize the sensor."""
|
|
self.entity_description = description
|
|
self._iperf3_data = iperf3_data
|
|
self._attr_name = f"{description.name} {iperf3_data.host}"
|
|
|
|
@property
|
|
def extra_state_attributes(self):
|
|
"""Return the state attributes."""
|
|
return {
|
|
ATTR_ATTRIBUTION: ATTRIBUTION,
|
|
ATTR_PROTOCOL: self._iperf3_data.protocol,
|
|
ATTR_REMOTE_HOST: self._iperf3_data.host,
|
|
ATTR_REMOTE_PORT: self._iperf3_data.port,
|
|
ATTR_VERSION: self._iperf3_data.data[ATTR_VERSION],
|
|
}
|
|
|
|
async def async_added_to_hass(self):
|
|
"""Handle entity which will be added."""
|
|
await super().async_added_to_hass()
|
|
|
|
self.async_on_remove(
|
|
async_dispatcher_connect(
|
|
self.hass, DATA_UPDATED, self._schedule_immediate_update
|
|
)
|
|
)
|
|
|
|
if not (state := await self.async_get_last_state()):
|
|
return
|
|
self._attr_native_value = state.state
|
|
|
|
def update(self):
|
|
"""Get the latest data and update the states."""
|
|
data = self._iperf3_data.data.get(self.entity_description.key)
|
|
if data is not None:
|
|
self._attr_native_value = round(data, 2)
|
|
|
|
@callback
|
|
def _schedule_immediate_update(self, host):
|
|
if host == self._iperf3_data.host:
|
|
self.async_schedule_update_ha_state(True)
|