Search in sources :

Example 6 with HmDatapointConfig

use of org.eclipse.smarthome.binding.homematic.internal.model.HmDatapointConfig in project smarthome by eclipse.

the class OnTimeAutomaticVirtualDatapointHandler method handleCommand.

@Override
public void handleCommand(VirtualGateway gateway, HmDatapoint dp, HmDatapointConfig dpConfig, Object value) throws IOException, HomematicClientException {
    if (!getName().equals(dp.getName())) {
        HmChannel channel = dp.getChannel();
        HmDatapoint dpOnTime = channel.getDatapoint(HmDatapointInfo.createValuesInfo(channel, DATAPOINT_NAME_ON_TIME));
        if (dpOnTime != null) {
            gateway.sendDatapoint(dpOnTime, new HmDatapointConfig(), getVirtualDatapointValue(channel), null);
        } else {
            logger.warn("Can't find ON_TIME datapoint in channel '{}' in device '{}', ignoring virtual datapoint '{}'", channel.getNumber(), channel.getDevice().getAddress(), getName());
        }
        gateway.sendDatapointIgnoreVirtual(dp, dpConfig, value);
    } else {
        dp.setValue(value);
    }
}
Also used : HmDatapointConfig(org.eclipse.smarthome.binding.homematic.internal.model.HmDatapointConfig) HmChannel(org.eclipse.smarthome.binding.homematic.internal.model.HmChannel) HmDatapoint(org.eclipse.smarthome.binding.homematic.internal.model.HmDatapoint)

Example 7 with HmDatapointConfig

use of org.eclipse.smarthome.binding.homematic.internal.model.HmDatapointConfig in project smarthome by eclipse.

the class HomematicThingHandler method handleCommand.

@Override
public void handleCommand(ChannelUID channelUID, Command command) {
    logger.debug("Received command '{}' for channel '{}'", command, channelUID);
    HmDatapoint dp = null;
    try {
        HomematicGateway gateway = getHomematicGateway();
        HmDatapointInfo dpInfo = UidUtils.createHmDatapointInfo(channelUID);
        if (RefreshType.REFRESH == command) {
            logger.debug("Refreshing {}", dpInfo);
            dpInfo = new HmDatapointInfo(dpInfo.getAddress(), HmParamsetType.VALUES, 0, VIRTUAL_DATAPOINT_NAME_RELOAD_FROM_GATEWAY);
            dp = gateway.getDatapoint(dpInfo);
            sendDatapoint(dp, new HmDatapointConfig(), Boolean.TRUE);
        } else {
            Channel channel = getThing().getChannel(channelUID.getId());
            if (channel == null) {
                logger.warn("Channel '{}' not found in thing '{}' on gateway '{}'", channelUID, getThing().getUID(), gateway.getId());
            } else {
                if (StopMoveType.STOP == command && DATAPOINT_NAME_LEVEL.equals(dpInfo.getName())) {
                    // special case with stop type (rollershutter)
                    dpInfo.setName(DATAPOINT_NAME_STOP);
                    HmDatapoint stopDp = gateway.getDatapoint(dpInfo);
                    ChannelUID stopChannelUID = UidUtils.generateChannelUID(stopDp, getThing().getUID());
                    handleCommand(stopChannelUID, OnOffType.ON);
                } else {
                    dp = gateway.getDatapoint(dpInfo);
                    TypeConverter<?> converter = ConverterFactory.createConverter(channel.getAcceptedItemType());
                    Object newValue = converter.convertToBinding(command, dp);
                    HmDatapointConfig config = getChannelConfig(channel, dp);
                    sendDatapoint(dp, config, newValue);
                }
            }
        }
    } catch (HomematicClientException | GatewayNotAvailableException ex) {
        logger.warn("{}", ex.getMessage());
    } catch (IOException ex) {
        if (dp != null && dp.getChannel().getDevice().isOffline()) {
            logger.warn("Device '{}' is OFFLINE, can't send command '{}' for channel '{}'", dp.getChannel().getDevice().getAddress(), command, channelUID);
            logger.trace("{}", ex.getMessage(), ex);
        } else {
            logger.error("{}", ex.getMessage(), ex);
        }
    } catch (ConverterTypeException ex) {
        logger.warn("{}, please check the item type and the commands in your scripts", ex.getMessage());
    } catch (Exception ex) {
        logger.error("{}", ex.getMessage(), ex);
    }
}
Also used : Channel(org.eclipse.smarthome.core.thing.Channel) HmChannel(org.eclipse.smarthome.binding.homematic.internal.model.HmChannel) HomematicClientException(org.eclipse.smarthome.binding.homematic.internal.misc.HomematicClientException) IOException(java.io.IOException) ConverterException(org.eclipse.smarthome.binding.homematic.internal.converter.ConverterException) ConverterTypeException(org.eclipse.smarthome.binding.homematic.internal.converter.ConverterTypeException) ConfigValidationException(org.eclipse.smarthome.config.core.validation.ConfigValidationException) HomematicClientException(org.eclipse.smarthome.binding.homematic.internal.misc.HomematicClientException) IOException(java.io.IOException) HmDatapoint(org.eclipse.smarthome.binding.homematic.internal.model.HmDatapoint) HmDatapointConfig(org.eclipse.smarthome.binding.homematic.internal.model.HmDatapointConfig) ConverterTypeException(org.eclipse.smarthome.binding.homematic.internal.converter.ConverterTypeException) ChannelUID(org.eclipse.smarthome.core.thing.ChannelUID) HomematicGateway(org.eclipse.smarthome.binding.homematic.internal.communicator.HomematicGateway) HmDatapointInfo(org.eclipse.smarthome.binding.homematic.internal.model.HmDatapointInfo)

Example 8 with HmDatapointConfig

use of org.eclipse.smarthome.binding.homematic.internal.model.HmDatapointConfig in project smarthome by eclipse.

the class AbstractHomematicGateway method eventReceived.

@Override
public void eventReceived(HmDatapointInfo dpInfo, Object newValue) {
    String className = newValue == null ? "Unknown" : newValue.getClass().getSimpleName();
    logger.debug("Received new ({}) value '{}' for '{}' from gateway with id '{}'", className, newValue, dpInfo, id);
    if (echoEvents.remove(dpInfo)) {
        logger.debug("Echo event detected, ignoring '{}'", dpInfo);
    } else {
        try {
            if (connectionTrackerThread != null && dpInfo.isPong() && id.equals(newValue)) {
                connectionTrackerThread.pongReceived();
            }
            if (initialized) {
                final HmDatapoint dp = getDatapoint(dpInfo);
                HmDatapointConfig config = gatewayAdapter.getDatapointConfig(dp);
                receiveDelayedExecutor.start(dpInfo, config.getReceiveDelay(), () -> {
                    dp.setValue(newValue);
                    gatewayAdapter.onStateUpdated(dp);
                    handleVirtualDatapointEvent(dp, true);
                    if (dp.isPressDatapoint() && MiscUtils.isTrueValue(dp.getValue())) {
                        disableDatapoint(dp, DEFAULT_DISABLE_DELAY);
                    }
                });
            }
        } catch (HomematicClientException | IOException ex) {
        // ignore
        }
    }
}
Also used : HmDatapointConfig(org.eclipse.smarthome.binding.homematic.internal.model.HmDatapointConfig) HomematicClientException(org.eclipse.smarthome.binding.homematic.internal.misc.HomematicClientException) IOException(java.io.IOException) HmDatapoint(org.eclipse.smarthome.binding.homematic.internal.model.HmDatapoint)

Aggregations

HmDatapointConfig (org.eclipse.smarthome.binding.homematic.internal.model.HmDatapointConfig)8 HmDatapoint (org.eclipse.smarthome.binding.homematic.internal.model.HmDatapoint)7 HmChannel (org.eclipse.smarthome.binding.homematic.internal.model.HmChannel)5 HomematicClientException (org.eclipse.smarthome.binding.homematic.internal.misc.HomematicClientException)4 HmDatapointInfo (org.eclipse.smarthome.binding.homematic.internal.model.HmDatapointInfo)4 IOException (java.io.IOException)3 HomematicGateway (org.eclipse.smarthome.binding.homematic.internal.communicator.HomematicGateway)2 HmDevice (org.eclipse.smarthome.binding.homematic.internal.model.HmDevice)2 Channel (org.eclipse.smarthome.core.thing.Channel)2 ChannelUID (org.eclipse.smarthome.core.thing.ChannelUID)2 BigDecimal (java.math.BigDecimal)1 ArrayList (java.util.ArrayList)1 BatteryTypeVirtualDatapointHandler (org.eclipse.smarthome.binding.homematic.internal.communicator.virtual.BatteryTypeVirtualDatapointHandler)1 ButtonVirtualDatapointHandler (org.eclipse.smarthome.binding.homematic.internal.communicator.virtual.ButtonVirtualDatapointHandler)1 DeleteDeviceModeVirtualDatapointHandler (org.eclipse.smarthome.binding.homematic.internal.communicator.virtual.DeleteDeviceModeVirtualDatapointHandler)1 DeleteDeviceVirtualDatapointHandler (org.eclipse.smarthome.binding.homematic.internal.communicator.virtual.DeleteDeviceVirtualDatapointHandler)1 DisplayOptionsVirtualDatapointHandler (org.eclipse.smarthome.binding.homematic.internal.communicator.virtual.DisplayOptionsVirtualDatapointHandler)1 FirmwareVirtualDatapointHandler (org.eclipse.smarthome.binding.homematic.internal.communicator.virtual.FirmwareVirtualDatapointHandler)1 HmwIoModuleVirtualDatapointHandler (org.eclipse.smarthome.binding.homematic.internal.communicator.virtual.HmwIoModuleVirtualDatapointHandler)1 OnTimeAutomaticVirtualDatapointHandler (org.eclipse.smarthome.binding.homematic.internal.communicator.virtual.OnTimeAutomaticVirtualDatapointHandler)1