use of org.eclipse.smarthome.binding.homematic.internal.converter.ConverterTypeException 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);
}
}
Aggregations