package info.nightscout.androidaps.db; import android.content.res.Resources; import com.j256.ormlite.field.DatabaseField; import com.j256.ormlite.table.DatabaseTable; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.Date; import java.util.Objects; import info.nightscout.androidaps.Constants; import info.nightscout.androidaps.MainApp; import info.nightscout.androidaps.R; import info.nightscout.androidaps.data.Profile; import info.nightscout.androidaps.plugins.NSClientInternal.data.NSSgv; import info.nightscout.androidaps.plugins.Overview.OverviewPlugin; import info.nightscout.androidaps.plugins.Overview.graphExtensions.DataPointWithLabelInterface; import info.nightscout.androidaps.plugins.Overview.graphExtensions.PointsWithLabelGraphSeries; import info.nightscout.utils.DecimalFormatter; import info.nightscout.utils.SP; @DatabaseTable(tableName = DatabaseHelper.DATABASE_BGREADINGS) public class BgReading implements DataPointWithLabelInterface { private static Logger log = LoggerFactory.getLogger(BgReading.class); @DatabaseField(id = true) public long date; @DatabaseField public boolean isValid = true; @DatabaseField public double value; @DatabaseField public String direction; @DatabaseField public double raw; @DatabaseField public int source = Source.NONE; @DatabaseField public String _id = null; // NS _id public boolean isCOBPrediction = false; // true when drawing predictions as bg points (COB) public boolean isaCOBPrediction = false; // true when drawing predictions as bg points (aCOB) public boolean isIOBPrediction = false; // true when drawing predictions as bg points (IOB) public boolean isUAMPrediction = false; // true when drawing predictions as bg points (UAM) public boolean isZTPrediction = false; // true when drawing predictions as bg points (ZT) public BgReading() { } public BgReading(NSSgv sgv) { date = sgv.getMills(); value = sgv.getMgdl(); raw = sgv.getFiltered() != null ? sgv.getFiltered() : value; direction = sgv.getDirection(); _id = sgv.getId(); } public Double valueToUnits(String units) { if (units.equals(Constants.MGDL)) return value; else return value * Constants.MGDL_TO_MMOLL; } public String valueToUnitsToString(String units) { if (units.equals(Constants.MGDL)) return DecimalFormatter.to0Decimal(value); else return DecimalFormatter.to1Decimal(value * Constants.MGDL_TO_MMOLL); } public String directionToSymbol() { String symbol = ""; if (direction == null) { symbol = "??"; } else if (direction.compareTo("DoubleDown") == 0) { symbol = "\u21ca"; } else if (direction.compareTo("SingleDown") == 0) { symbol = "\u2193"; } else if (direction.compareTo("FortyFiveDown") == 0) { symbol = "\u2198"; } else if (direction.compareTo("Flat") == 0) { symbol = "\u2192"; } else if (direction.compareTo("FortyFiveUp") == 0) { symbol = "\u2197"; } else if (direction.compareTo("SingleUp") == 0) { symbol = "\u2191"; } else if (direction.compareTo("DoubleUp") == 0) { symbol = "\u21c8"; } else if (isSlopeNameInvalid(direction)) { symbol = "??"; } return symbol; } public static boolean isSlopeNameInvalid(String direction) { if (direction.compareTo("NOT_COMPUTABLE") == 0 || direction.compareTo("NOT COMPUTABLE") == 0 || direction.compareTo("OUT_OF_RANGE") == 0 || direction.compareTo("OUT OF RANGE") == 0 || direction.compareTo("NONE") == 0 || direction.compareTo("NotComputable") == 0 ) { return true; } else { return false; } } @Override public String toString() { return "BgReading{" + "date=" + date + ", date=" + new Date(date).toLocaleString() + ", value=" + value + ", direction=" + direction + ", raw=" + raw + '}'; } public boolean isDataChanging(BgReading other) { if (date != other.date) { log.error("Comparing different"); return false; } if (value != other.value) return true; return false; } public boolean isEqual(BgReading other) { if (date != other.date) { log.error("Comparing different"); return false; } if (value != other.value) return false; if (raw != other.raw) return false; if (!direction.equals(other.direction)) return false; if (!Objects.equals(_id, other._id)) return false; return true; } public void copyFrom(BgReading other) { if (date != other.date) { log.error("Copying different"); return; } value = other.value; raw = other.raw; direction = other.direction; _id = other._id; } // ------------------ DataPointWithLabelInterface ------------------ @Override public double getX() { return date; } @Override public double getY() { String units = MainApp.getConfigBuilder().getProfileUnits(); return valueToUnits(units); } @Override public void setY(double y) { } @Override public String getLabel() { return null; } @Override public long getDuration() { return 0; } @Override public PointsWithLabelGraphSeries.Shape getShape() { if (isPrediction()) return PointsWithLabelGraphSeries.Shape.PREDICTION; else return PointsWithLabelGraphSeries.Shape.BG; } @Override public float getSize() { return 1; } @Override public int getColor() { String units = MainApp.getConfigBuilder().getProfileUnits(); Double lowLine = SP.getDouble("low_mark", 0d); Double highLine = SP.getDouble("high_mark", 0d); if (lowLine < 1) { lowLine = Profile.fromMgdlToUnits(OverviewPlugin.bgTargetLow, units); } if (highLine < 1) { highLine = Profile.fromMgdlToUnits(OverviewPlugin.bgTargetHigh, units); } int color = MainApp.sResources.getColor(R.color.inrange); if (isPrediction()) return getPredectionColor(); else if (valueToUnits(units) < lowLine) color = MainApp.sResources.getColor(R.color.low); else if (valueToUnits(units) > highLine) color = MainApp.sResources.getColor(R.color.high); return color; } public int getPredectionColor() { if (isIOBPrediction) return MainApp.sResources.getColor(R.color.iob); if (isCOBPrediction) return MainApp.sResources.getColor(R.color.cob); if (isaCOBPrediction) return 0x80FFFFFF & MainApp.sResources.getColor(R.color.cob); if (isUAMPrediction) return MainApp.sResources.getColor(R.color.uam); if (isZTPrediction) return MainApp.sResources.getColor(R.color.zt); return R.color.mdtp_white; } private boolean isPrediction() { return isaCOBPrediction || isCOBPrediction || isIOBPrediction || isUAMPrediction || isZTPrediction; } }