Search in sources :

Example 6 with HomematicClientException

use of org.eclipse.smarthome.binding.homematic.internal.misc.HomematicClientException 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 7 with HomematicClientException

use of org.eclipse.smarthome.binding.homematic.internal.misc.HomematicClientException in project smarthome by eclipse.

the class AbstractHomematicGateway method disableDatapoint.

@Override
public void disableDatapoint(final HmDatapoint dp, double delay) {
    try {
        sendDelayedExecutor.start(new HmDatapointInfo(dp), delay, new DelayedExecuterCallback() {

            @Override
            public void execute() throws IOException {
                if (MiscUtils.isTrueValue(dp.getValue())) {
                    dp.setValue(Boolean.FALSE);
                    gatewayAdapter.onStateUpdated(dp);
                    handleVirtualDatapointEvent(dp, true);
                } else if (dp.getType() == HmValueType.ENUM && dp.getValue() != null && !dp.getValue().equals(0)) {
                    dp.setValue(dp.getMinValue());
                    gatewayAdapter.onStateUpdated(dp);
                    handleVirtualDatapointEvent(dp, true);
                }
            }
        });
    } catch (IOException | HomematicClientException ex) {
        logger.error("{}", ex.getMessage(), ex);
    }
}
Also used : DelayedExecuterCallback(org.eclipse.smarthome.binding.homematic.internal.misc.DelayedExecuter.DelayedExecuterCallback) HomematicClientException(org.eclipse.smarthome.binding.homematic.internal.misc.HomematicClientException) IOException(java.io.IOException) HmDatapointInfo(org.eclipse.smarthome.binding.homematic.internal.model.HmDatapointInfo)

Example 8 with HomematicClientException

use of org.eclipse.smarthome.binding.homematic.internal.misc.HomematicClientException 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

HomematicClientException (org.eclipse.smarthome.binding.homematic.internal.misc.HomematicClientException)8 HmDatapoint (org.eclipse.smarthome.binding.homematic.internal.model.HmDatapoint)5 HmDatapointInfo (org.eclipse.smarthome.binding.homematic.internal.model.HmDatapointInfo)5 IOException (java.io.IOException)4 HmChannel (org.eclipse.smarthome.binding.homematic.internal.model.HmChannel)4 HmDatapointConfig (org.eclipse.smarthome.binding.homematic.internal.model.HmDatapointConfig)4 HmDevice (org.eclipse.smarthome.binding.homematic.internal.model.HmDevice)4 HomematicGateway (org.eclipse.smarthome.binding.homematic.internal.communicator.HomematicGateway)2 BigDecimal (java.math.BigDecimal)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 ReloadAllFromGatewayVirtualDatapointHandler (org.eclipse.smarthome.binding.homematic.internal.communicator.virtual.ReloadAllFromGatewayVirtualDatapointHandler)1 ReloadFromGatewayVirtualDatapointHandler (org.eclipse.smarthome.binding.homematic.internal.communicator.virtual.ReloadFromGatewayVirtualDatapointHandler)1 ReloadRssiVirtualDatapointHandler (org.eclipse.smarthome.binding.homematic.internal.communicator.virtual.ReloadRssiVirtualDatapointHandler)1