import org.eclipse.jdt.annotation.NonNullByDefault;
import org.eclipse.jdt.annotation.Nullable;
import org.openhab.binding.smartmeter.internal.MeterValue;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
/**
* Handles the Negate Bit property for a specific meter value.
*/
@NonNullByDefault
public class NegateHandler {
+ private static final Logger LOGGER = LoggerFactory.getLogger(NegateHandler.class);
/**
* Gets whether negation should be applied for the given <code>negateProperty</code> and the {@link MeterValue}
* @return Whether the given bit is set or not
*/
public static boolean isNegateSet(String value, int negatePosition) {
- long longValue = Long.parseLong(value);
+ long longValue = 0;
+ try {
+ longValue = (long) Double.parseDouble(value);
+ } catch (NumberFormatException e) {
+ LOGGER.warn("Failed to parse value: {} when determining isNegateSet, assuming false", value);
+ return false;
+ }
return (longValue & (1L << negatePosition)) != 0;
}
}
assertTrue(negateState);
}
+ @Test
+ public void testNegateHandlingDecimalTrue() {
+ String negateProperty = "1-0_16-7-0:31:0";
+
+ boolean negateStateDot = NegateHandler.shouldNegateState(negateProperty,
+ obis -> new MeterValue<>(obis, "49.0", null));
+
+ assertTrue(negateStateDot);
+ }
+
@Test
public void testNegateHandlingFalse() {
String negateProperty = "1-0_1-8-0:5:1";