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);
}
}
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);
}
}
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
}
}
}
Aggregations