2017-06-02 10:25:49 +02:00
|
|
|
package info.nightscout.androidaps.data;
|
|
|
|
|
2019-05-16 13:57:37 +02:00
|
|
|
import androidx.collection.LongSparseArray;
|
2017-06-13 15:06:41 +02:00
|
|
|
|
2017-06-02 10:25:49 +02:00
|
|
|
import org.json.JSONArray;
|
|
|
|
import org.json.JSONException;
|
|
|
|
import org.json.JSONObject;
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
|
|
|
import java.text.DecimalFormat;
|
|
|
|
import java.util.TimeZone;
|
|
|
|
|
2019-09-06 13:36:26 +02:00
|
|
|
import info.nightscout.androidaps.Config;
|
2017-06-02 10:25:49 +02:00
|
|
|
import info.nightscout.androidaps.Constants;
|
|
|
|
import info.nightscout.androidaps.MainApp;
|
|
|
|
import info.nightscout.androidaps.R;
|
2017-12-22 20:17:31 +01:00
|
|
|
import info.nightscout.androidaps.interfaces.PumpDescription;
|
|
|
|
import info.nightscout.androidaps.interfaces.PumpInterface;
|
2019-10-01 00:00:22 +02:00
|
|
|
import info.nightscout.androidaps.plugins.bus.RxBus;
|
2019-02-28 23:16:50 +01:00
|
|
|
import info.nightscout.androidaps.plugins.configBuilder.ConfigBuilderPlugin;
|
2019-11-27 23:26:29 +01:00
|
|
|
import info.nightscout.androidaps.plugins.configBuilder.ProfileFunctions;
|
2019-02-28 23:16:50 +01:00
|
|
|
import info.nightscout.androidaps.plugins.general.overview.events.EventNewNotification;
|
|
|
|
import info.nightscout.androidaps.plugins.general.overview.notifications.Notification;
|
2019-02-26 20:38:27 +01:00
|
|
|
import info.nightscout.androidaps.utils.DateUtil;
|
|
|
|
import info.nightscout.androidaps.utils.DecimalFormatter;
|
|
|
|
import info.nightscout.androidaps.utils.FabricPrivacy;
|
|
|
|
import info.nightscout.androidaps.utils.MidnightTime;
|
2017-06-02 10:25:49 +02:00
|
|
|
|
|
|
|
public class Profile {
|
|
|
|
private static Logger log = LoggerFactory.getLogger(Profile.class);
|
|
|
|
|
|
|
|
private JSONObject json;
|
2018-03-18 15:02:21 +01:00
|
|
|
private String units;
|
|
|
|
private double dia;
|
|
|
|
private TimeZone timeZone;
|
2017-11-15 11:23:20 +01:00
|
|
|
private JSONArray isf;
|
2018-03-18 15:02:21 +01:00
|
|
|
private LongSparseArray<Double> isf_v; // oldest at index 0
|
2017-11-15 11:23:20 +01:00
|
|
|
private JSONArray ic;
|
2018-03-18 15:02:21 +01:00
|
|
|
private LongSparseArray<Double> ic_v; // oldest at index 0
|
2017-11-15 11:23:20 +01:00
|
|
|
private JSONArray basal;
|
2018-03-18 15:02:21 +01:00
|
|
|
private LongSparseArray<Double> basal_v; // oldest at index 0
|
2017-11-15 11:23:20 +01:00
|
|
|
private JSONArray targetLow;
|
2018-03-18 15:02:21 +01:00
|
|
|
private LongSparseArray<Double> targetLow_v; // oldest at index 0
|
2017-11-15 11:23:20 +01:00
|
|
|
private JSONArray targetHigh;
|
2018-03-18 15:02:21 +01:00
|
|
|
private LongSparseArray<Double> targetHigh_v; // oldest at index 0
|
2017-06-02 10:25:49 +02:00
|
|
|
|
2018-03-18 15:02:21 +01:00
|
|
|
private int percentage;
|
|
|
|
private int timeshift;
|
2017-09-23 23:12:08 +02:00
|
|
|
|
2018-03-18 15:02:21 +01:00
|
|
|
protected boolean isValid;
|
|
|
|
protected boolean isValidated;
|
|
|
|
|
|
|
|
// Default constructor for tests
|
|
|
|
protected Profile() {
|
|
|
|
}
|
2018-01-21 13:37:38 +01:00
|
|
|
|
2018-07-27 12:17:29 +02:00
|
|
|
@Override
|
|
|
|
public String toString() {
|
|
|
|
if (json != null)
|
|
|
|
return json.toString();
|
|
|
|
else
|
|
|
|
return "Profile has no JSON";
|
|
|
|
}
|
|
|
|
|
2018-03-18 15:02:21 +01:00
|
|
|
// Constructor from profileStore JSON
|
2017-06-02 10:25:49 +02:00
|
|
|
public Profile(JSONObject json, String units) {
|
2018-03-18 15:02:21 +01:00
|
|
|
init(json, 100, 0);
|
2017-06-02 10:25:49 +02:00
|
|
|
if (this.units == null) {
|
|
|
|
if (units != null)
|
|
|
|
this.units = units;
|
|
|
|
else {
|
2018-02-22 13:30:36 +01:00
|
|
|
FabricPrivacy.log("Profile failover failed too");
|
2017-06-02 10:25:49 +02:00
|
|
|
this.units = Constants.MGDL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-01 20:42:23 +01:00
|
|
|
// Constructor from profileStore JSON
|
|
|
|
public Profile(JSONObject json) {
|
|
|
|
init(json, 100, 0);
|
|
|
|
}
|
|
|
|
|
2017-09-23 23:12:08 +02:00
|
|
|
public Profile(JSONObject json, int percentage, int timeshift) {
|
2018-03-18 15:02:21 +01:00
|
|
|
init(json, percentage, timeshift);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void init(JSONObject json, int percentage, int timeshift) {
|
|
|
|
units = null;
|
|
|
|
dia = Constants.defaultDIA;
|
|
|
|
timeZone = TimeZone.getDefault();
|
|
|
|
isf_v = null;
|
|
|
|
ic_v = null;
|
|
|
|
basal_v = null;
|
|
|
|
targetLow_v = null;
|
|
|
|
targetHigh_v = null;
|
|
|
|
|
|
|
|
isValid = true;
|
|
|
|
isValidated = false;
|
|
|
|
|
2017-09-23 23:12:08 +02:00
|
|
|
this.percentage = percentage;
|
|
|
|
this.timeshift = timeshift;
|
2017-06-02 10:25:49 +02:00
|
|
|
this.json = json;
|
|
|
|
try {
|
|
|
|
if (json.has("units"))
|
|
|
|
units = json.getString("units").toLowerCase();
|
|
|
|
if (json.has("dia"))
|
|
|
|
dia = json.getDouble("dia");
|
|
|
|
if (json.has("timezone"))
|
|
|
|
timeZone = TimeZone.getTimeZone(json.getString("timezone"));
|
|
|
|
isf = json.getJSONArray("sens");
|
|
|
|
ic = json.getJSONArray("carbratio");
|
|
|
|
basal = json.getJSONArray("basal");
|
|
|
|
targetLow = json.getJSONArray("target_low");
|
|
|
|
targetHigh = json.getJSONArray("target_high");
|
|
|
|
} catch (JSONException e) {
|
2017-08-20 11:17:05 +02:00
|
|
|
log.error("Unhandled exception", e);
|
2018-01-21 13:37:38 +01:00
|
|
|
isValid = false;
|
|
|
|
isValidated = true;
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public String log() {
|
|
|
|
String ret = "\n";
|
|
|
|
for (Integer hour = 0; hour < 24; hour++) {
|
2018-03-18 15:02:21 +01:00
|
|
|
double value = getBasalTimeFromMidnight((Integer) (hour * 60 * 60));
|
2017-06-02 10:25:49 +02:00
|
|
|
ret += "NS basal value for " + hour + ":00 is " + value + "\n";
|
|
|
|
}
|
|
|
|
ret += "NS units: " + getUnits();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
public JSONObject getData() {
|
2017-07-03 11:14:30 +02:00
|
|
|
if (!json.has("units"))
|
|
|
|
try {
|
|
|
|
json.put("units", units);
|
|
|
|
} catch (JSONException e) {
|
2017-08-20 11:17:05 +02:00
|
|
|
log.error("Unhandled exception", e);
|
2017-07-03 11:14:30 +02:00
|
|
|
}
|
2017-06-02 10:25:49 +02:00
|
|
|
return json;
|
|
|
|
}
|
|
|
|
|
2017-06-16 09:14:57 +02:00
|
|
|
public double getDia() {
|
2017-06-02 10:25:49 +02:00
|
|
|
return dia;
|
|
|
|
}
|
|
|
|
|
|
|
|
// mmol or mg/dl
|
2018-03-18 15:02:21 +01:00
|
|
|
public void setUnits(String units) {
|
|
|
|
this.units = units;
|
|
|
|
}
|
|
|
|
|
2017-06-02 10:25:49 +02:00
|
|
|
public String getUnits() {
|
|
|
|
return units;
|
|
|
|
}
|
|
|
|
|
2019-11-12 00:01:58 +01:00
|
|
|
TimeZone getTimeZone() {
|
2017-06-02 10:25:49 +02:00
|
|
|
return timeZone;
|
|
|
|
}
|
|
|
|
|
2017-06-13 15:06:41 +02:00
|
|
|
private LongSparseArray<Double> convertToSparseArray(JSONArray array) {
|
2018-03-17 23:18:34 +01:00
|
|
|
if (array == null) {
|
|
|
|
isValid = false;
|
|
|
|
return new LongSparseArray<>();
|
|
|
|
}
|
|
|
|
|
2017-10-05 00:54:35 +02:00
|
|
|
double multiplier = getMultiplier(array);
|
|
|
|
|
2017-06-13 15:06:41 +02:00
|
|
|
LongSparseArray<Double> sparse = new LongSparseArray<>();
|
2019-11-12 00:01:58 +01:00
|
|
|
for (int index = 0; index < array.length(); index++) {
|
2017-06-13 15:06:41 +02:00
|
|
|
try {
|
2017-12-14 21:49:11 +01:00
|
|
|
final JSONObject o = array.getJSONObject(index);
|
2017-12-30 19:56:37 +01:00
|
|
|
long tas = 0;
|
2019-08-26 20:21:07 +02:00
|
|
|
try {
|
2017-12-30 19:56:37 +01:00
|
|
|
String time = o.getString("time");
|
|
|
|
tas = getShitfTimeSecs(DateUtil.toSeconds(time));
|
2019-08-26 20:21:07 +02:00
|
|
|
} catch (JSONException e) {
|
2017-12-30 19:56:37 +01:00
|
|
|
//log.debug(">>>>>>>>>>>> Used recalculated timeAsSecons: " + time + " " + tas);
|
2019-08-26 20:21:07 +02:00
|
|
|
tas = getShitfTimeSecs((int) o.getLong("timeAsSeconds"));
|
|
|
|
}
|
2018-01-04 11:06:57 +01:00
|
|
|
double value = o.getDouble("value") * multiplier;
|
2017-06-13 15:06:41 +02:00
|
|
|
sparse.put(tas, value);
|
2019-08-26 20:21:07 +02:00
|
|
|
} catch (Exception e) {
|
2017-08-20 11:17:05 +02:00
|
|
|
log.error("Unhandled exception", e);
|
2017-12-30 19:56:37 +01:00
|
|
|
log.error(json.toString());
|
2019-08-26 20:21:07 +02:00
|
|
|
FabricPrivacy.logException(e);
|
2017-06-13 15:06:41 +02:00
|
|
|
}
|
|
|
|
}
|
2017-10-05 00:54:35 +02:00
|
|
|
|
|
|
|
// check if start is at 0 (midnight)
|
|
|
|
// and add last value before midnight if not
|
|
|
|
if (sparse.keyAt(0) != 0) {
|
|
|
|
sparse.put(0, sparse.valueAt(sparse.size() - 1));
|
|
|
|
}
|
2017-06-13 15:06:41 +02:00
|
|
|
return sparse;
|
|
|
|
}
|
|
|
|
|
2018-01-21 15:56:07 +01:00
|
|
|
public synchronized boolean isValid(String from) {
|
2018-05-07 01:33:16 +02:00
|
|
|
return isValid(from, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
public synchronized boolean isValid(String from, boolean notify) {
|
2018-01-21 13:37:38 +01:00
|
|
|
if (!isValid)
|
|
|
|
return false;
|
|
|
|
if (!isValidated) {
|
|
|
|
if (basal_v == null)
|
|
|
|
basal_v = convertToSparseArray(basal);
|
|
|
|
validate(basal_v);
|
|
|
|
if (isf_v == null)
|
|
|
|
isf_v = convertToSparseArray(isf);
|
|
|
|
validate(isf_v);
|
|
|
|
if (ic_v == null)
|
|
|
|
ic_v = convertToSparseArray(ic);
|
|
|
|
validate(ic_v);
|
|
|
|
if (targetLow_v == null)
|
|
|
|
targetLow_v = convertToSparseArray(targetLow);
|
|
|
|
validate(targetLow_v);
|
|
|
|
if (targetHigh_v == null)
|
|
|
|
targetHigh_v = convertToSparseArray(targetHigh);
|
|
|
|
validate(targetHigh_v);
|
2018-06-23 16:02:10 +02:00
|
|
|
|
|
|
|
if (targetHigh_v.size() != targetLow_v.size()) isValid = false;
|
|
|
|
else for (int i = 0; i < targetHigh_v.size(); i++)
|
2018-06-23 18:52:58 +02:00
|
|
|
if (targetHigh_v.valueAt(i) < targetLow_v.valueAt(i))
|
2018-06-23 16:02:10 +02:00
|
|
|
isValid = false;
|
|
|
|
|
2018-01-21 13:37:38 +01:00
|
|
|
isValidated = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isValid) {
|
|
|
|
// Check for hours alignment
|
2018-09-17 17:43:42 +02:00
|
|
|
PumpInterface pump = ConfigBuilderPlugin.getPlugin().getActivePump();
|
2018-03-11 16:38:30 +01:00
|
|
|
if (pump != null && !pump.getPumpDescription().is30minBasalRatesCapable) {
|
2018-03-11 16:03:21 +01:00
|
|
|
for (int index = 0; index < basal_v.size(); index++) {
|
|
|
|
long secondsFromMidnight = basal_v.keyAt(index);
|
2018-05-07 01:33:16 +02:00
|
|
|
if (notify && secondsFromMidnight % 3600 != 0) {
|
2019-09-06 13:36:26 +02:00
|
|
|
if (Config.APS) {
|
|
|
|
Notification notification = new Notification(Notification.BASAL_PROFILE_NOT_ALIGNED_TO_HOURS, String.format(MainApp.gs(R.string.basalprofilenotaligned), from), Notification.NORMAL);
|
2019-12-30 00:53:44 +01:00
|
|
|
RxBus.Companion.getINSTANCE().send(new EventNewNotification(notification));
|
2019-09-06 13:36:26 +02:00
|
|
|
}
|
2018-03-11 16:03:21 +01:00
|
|
|
}
|
2018-01-21 13:37:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for minimal basal value
|
|
|
|
if (pump != null) {
|
|
|
|
PumpDescription description = pump.getPumpDescription();
|
|
|
|
for (int i = 0; i < basal_v.size(); i++) {
|
|
|
|
if (basal_v.valueAt(i) < description.basalMinimumRate) {
|
|
|
|
basal_v.setValueAt(i, description.basalMinimumRate);
|
2018-05-07 01:33:16 +02:00
|
|
|
if (notify)
|
|
|
|
sendBelowMinimumNotification(from);
|
2018-06-02 16:37:53 +02:00
|
|
|
} else if (basal_v.valueAt(i) > description.basalMaximumRate) {
|
|
|
|
basal_v.setValueAt(i, description.basalMaximumRate);
|
|
|
|
if (notify)
|
|
|
|
sendAboveMaximumNotification(from);
|
2018-01-21 13:37:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// if pump not available (at start)
|
|
|
|
// do not store converted array
|
|
|
|
basal_v = null;
|
2018-01-22 21:49:01 +01:00
|
|
|
isValidated = false;
|
2018-01-21 13:37:38 +01:00
|
|
|
}
|
|
|
|
|
2018-06-23 18:52:58 +02:00
|
|
|
}
|
2018-01-21 13:37:38 +01:00
|
|
|
return isValid;
|
|
|
|
}
|
|
|
|
|
2018-03-18 15:02:21 +01:00
|
|
|
protected void sendBelowMinimumNotification(String from) {
|
2019-12-30 00:53:44 +01:00
|
|
|
RxBus.Companion.getINSTANCE().send(new EventNewNotification(new Notification(Notification.MINIMAL_BASAL_VALUE_REPLACED, String.format(MainApp.gs(R.string.minimalbasalvaluereplaced), from), Notification.NORMAL)));
|
2018-06-02 16:37:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected void sendAboveMaximumNotification(String from) {
|
2019-12-30 00:53:44 +01:00
|
|
|
RxBus.Companion.getINSTANCE().send(new EventNewNotification(new Notification(Notification.MAXIMUM_BASAL_VALUE_REPLACED, String.format(MainApp.gs(R.string.maximumbasalvaluereplaced), from), Notification.NORMAL)));
|
2018-03-18 15:02:21 +01:00
|
|
|
}
|
|
|
|
|
2018-01-21 13:37:38 +01:00
|
|
|
private void validate(LongSparseArray array) {
|
|
|
|
if (array.size() == 0) {
|
|
|
|
isValid = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (int index = 0; index < array.size(); index++) {
|
|
|
|
if (array.valueAt(index).equals(0d)) {
|
|
|
|
isValid = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-18 15:02:21 +01:00
|
|
|
/*
|
2017-06-02 10:25:49 +02:00
|
|
|
private Double getValueToTime(JSONArray array, Integer timeAsSeconds) {
|
|
|
|
Double lastValue = null;
|
|
|
|
|
|
|
|
for (Integer index = 0; index < array.length(); index++) {
|
|
|
|
try {
|
|
|
|
JSONObject o = array.getJSONObject(index);
|
|
|
|
Integer tas = o.getInt("timeAsSeconds");
|
|
|
|
Double value = o.getDouble("value");
|
|
|
|
if (lastValue == null) lastValue = value;
|
|
|
|
if (timeAsSeconds < tas) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
lastValue = value;
|
|
|
|
} catch (JSONException e) {
|
2017-08-20 11:17:05 +02:00
|
|
|
log.error("Unhandled exception", e);
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return lastValue;
|
|
|
|
}
|
2018-03-18 15:02:21 +01:00
|
|
|
*/
|
2017-06-02 10:25:49 +02:00
|
|
|
|
2017-09-23 23:12:08 +02:00
|
|
|
Integer getShitfTimeSecs(Integer originalTime) {
|
2017-10-05 00:54:35 +02:00
|
|
|
Integer shiftedTime = originalTime + timeshift * 60 * 60;
|
2017-10-07 20:42:56 +02:00
|
|
|
shiftedTime = (shiftedTime + 24 * 60 * 60) % (24 * 60 * 60);
|
2017-09-23 23:12:08 +02:00
|
|
|
return shiftedTime;
|
|
|
|
}
|
|
|
|
|
2017-11-15 11:23:20 +01:00
|
|
|
private double getMultiplier(LongSparseArray<Double> array) {
|
2017-09-23 23:12:08 +02:00
|
|
|
double multiplier = 1d;
|
|
|
|
|
|
|
|
if (array == isf_v)
|
|
|
|
multiplier = 100d / percentage;
|
|
|
|
else if (array == ic_v)
|
|
|
|
multiplier = 100d / percentage;
|
|
|
|
else if (array == basal_v)
|
|
|
|
multiplier = percentage / 100d;
|
|
|
|
else
|
|
|
|
log.error("Unknown array type");
|
|
|
|
return multiplier;
|
|
|
|
}
|
|
|
|
|
2017-11-15 11:23:20 +01:00
|
|
|
private double getMultiplier(JSONArray array) {
|
2017-09-23 23:12:08 +02:00
|
|
|
double multiplier = 1d;
|
|
|
|
|
|
|
|
if (array == isf)
|
|
|
|
multiplier = 100d / percentage;
|
|
|
|
else if (array == ic)
|
|
|
|
multiplier = 100d / percentage;
|
|
|
|
else if (array == basal)
|
|
|
|
multiplier = percentage / 100d;
|
|
|
|
else if (array == targetLow)
|
|
|
|
multiplier = 1d;
|
|
|
|
else if (array == targetHigh)
|
|
|
|
multiplier = 1d;
|
|
|
|
else
|
|
|
|
log.error("Unknown array type");
|
|
|
|
return multiplier;
|
|
|
|
}
|
|
|
|
|
2018-03-18 15:02:21 +01:00
|
|
|
private double getValueToTime(LongSparseArray<Double> array, Integer timeAsSeconds) {
|
2017-06-13 15:06:41 +02:00
|
|
|
Double lastValue = null;
|
|
|
|
|
|
|
|
for (Integer index = 0; index < array.size(); index++) {
|
|
|
|
long tas = array.keyAt(index);
|
|
|
|
double value = array.valueAt(index);
|
|
|
|
if (lastValue == null) lastValue = value;
|
2017-10-05 00:54:35 +02:00
|
|
|
if (timeAsSeconds < tas) {
|
2017-06-13 15:06:41 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
lastValue = value;
|
|
|
|
}
|
2017-10-05 00:54:35 +02:00
|
|
|
return lastValue;
|
2017-09-23 23:12:08 +02:00
|
|
|
}
|
|
|
|
|
2018-03-18 15:02:21 +01:00
|
|
|
protected String format_HH_MM(Integer timeAsSeconds) {
|
2017-09-23 23:12:08 +02:00
|
|
|
String time;
|
|
|
|
int hour = timeAsSeconds / 60 / 60;
|
2017-10-20 11:34:33 +02:00
|
|
|
int minutes = (timeAsSeconds - hour * 60 * 60) / 60;
|
2017-09-23 23:12:08 +02:00
|
|
|
DecimalFormat df = new DecimalFormat("00");
|
|
|
|
time = df.format(hour) + ":" + df.format(minutes);
|
|
|
|
return time;
|
2017-06-13 15:06:41 +02:00
|
|
|
}
|
|
|
|
|
2017-10-05 00:54:35 +02:00
|
|
|
private String getValuesList(LongSparseArray<Double> array, LongSparseArray<Double> array2, DecimalFormat format, String units) {
|
2017-06-02 10:25:49 +02:00
|
|
|
String retValue = "";
|
|
|
|
|
2017-10-05 00:54:35 +02:00
|
|
|
for (Integer index = 0; index < array.size(); index++) {
|
|
|
|
retValue += format_HH_MM((int) array.keyAt(index));
|
|
|
|
retValue += " ";
|
|
|
|
retValue += format.format(array.valueAt(index));
|
|
|
|
if (array2 != null) {
|
|
|
|
retValue += " - ";
|
|
|
|
retValue += format.format(array2.valueAt(index));
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
2017-10-05 00:54:35 +02:00
|
|
|
retValue += " " + units;
|
|
|
|
if (index + 1 < array.size())
|
|
|
|
retValue += "\n";
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
return retValue;
|
|
|
|
}
|
|
|
|
|
2019-11-12 00:01:58 +01:00
|
|
|
public double getIsfMgdl() {
|
|
|
|
return toMgdl(getIsfTimeFromMidnight(secondsFromMidnight()), units);
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
2019-11-12 00:01:58 +01:00
|
|
|
public double getIsfMgdl(long time) {
|
|
|
|
return toMgdl(getIsfTimeFromMidnight(secondsFromMidnight(time)), units);
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
2019-10-08 21:20:04 +02:00
|
|
|
public double getIsfTimeFromMidnight(int timeAsSeconds) {
|
2017-06-13 15:06:41 +02:00
|
|
|
if (isf_v == null)
|
|
|
|
isf_v = convertToSparseArray(isf);
|
|
|
|
return getValueToTime(isf_v, timeAsSeconds);
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getIsfList() {
|
2018-03-17 23:18:34 +01:00
|
|
|
if (isf_v == null)
|
|
|
|
isf_v = convertToSparseArray(isf);
|
2018-11-08 21:14:44 +01:00
|
|
|
return getValuesList(isf_v, null, new DecimalFormat("0.0"), getUnits() + MainApp.gs(R.string.profile_per_unit));
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
2019-11-12 00:01:58 +01:00
|
|
|
public ProfileValue[] getIsfsMgdl() {
|
2019-06-06 22:15:57 +02:00
|
|
|
if (isf_v == null)
|
|
|
|
isf_v = convertToSparseArray(ic);
|
|
|
|
ProfileValue[] ret = new ProfileValue[isf_v.size()];
|
|
|
|
|
2019-11-12 00:01:58 +01:00
|
|
|
for (int index = 0; index < isf_v.size(); index++) {
|
|
|
|
int tas = (int) isf_v.keyAt(index);
|
2019-06-06 22:15:57 +02:00
|
|
|
double value = isf_v.valueAt(index);
|
2019-11-12 00:01:58 +01:00
|
|
|
ret[index] = new ProfileValue(tas, toMgdl(value, units));
|
2019-06-06 22:15:57 +02:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-03-18 15:02:21 +01:00
|
|
|
public double getIc() {
|
2018-10-28 12:21:35 +01:00
|
|
|
return getIcTimeFromMidnight(secondsFromMidnight());
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
2018-03-18 15:02:21 +01:00
|
|
|
public double getIc(long time) {
|
|
|
|
return getIcTimeFromMidnight(secondsFromMidnight(time));
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
2018-03-18 15:02:21 +01:00
|
|
|
public double getIcTimeFromMidnight(int timeAsSeconds) {
|
2017-06-13 15:06:41 +02:00
|
|
|
if (ic_v == null)
|
|
|
|
ic_v = convertToSparseArray(ic);
|
|
|
|
return getValueToTime(ic_v, timeAsSeconds);
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getIcList() {
|
2018-03-17 23:18:34 +01:00
|
|
|
if (ic_v == null)
|
|
|
|
ic_v = convertToSparseArray(ic);
|
2018-11-08 21:14:44 +01:00
|
|
|
return getValuesList(ic_v, null, new DecimalFormat("0.0"), MainApp.gs(R.string.profile_carbs_per_unit));
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
2019-06-06 22:15:57 +02:00
|
|
|
public ProfileValue[] getIcs() {
|
|
|
|
if (ic_v == null)
|
|
|
|
ic_v = convertToSparseArray(ic);
|
|
|
|
ProfileValue[] ret = new ProfileValue[ic_v.size()];
|
|
|
|
|
|
|
|
for (Integer index = 0; index < ic_v.size(); index++) {
|
|
|
|
Integer tas = (int) ic_v.keyAt(index);
|
|
|
|
double value = ic_v.valueAt(index);
|
|
|
|
ret[index] = new ProfileValue(tas, value);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-03-18 15:02:21 +01:00
|
|
|
public double getBasal() {
|
2018-10-28 12:21:35 +01:00
|
|
|
return getBasalTimeFromMidnight(secondsFromMidnight());
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
2018-03-18 15:02:21 +01:00
|
|
|
public double getBasal(long time) {
|
|
|
|
return getBasalTimeFromMidnight(secondsFromMidnight(time));
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
2018-03-18 15:02:21 +01:00
|
|
|
public synchronized double getBasalTimeFromMidnight(int timeAsSeconds) {
|
2017-12-22 20:17:31 +01:00
|
|
|
if (basal_v == null) {
|
2017-06-13 15:06:41 +02:00
|
|
|
basal_v = convertToSparseArray(basal);
|
2017-12-22 20:17:31 +01:00
|
|
|
}
|
2017-06-13 15:06:41 +02:00
|
|
|
return getValueToTime(basal_v, timeAsSeconds);
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getBasalList() {
|
2018-02-11 14:40:07 +01:00
|
|
|
if (basal_v == null)
|
|
|
|
basal_v = convertToSparseArray(basal);
|
2019-08-07 15:50:37 +02:00
|
|
|
return getValuesList(basal_v, null, new DecimalFormat("0.00"), MainApp.gs(R.string.profile_ins_units_per_hour));
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
2019-06-06 22:15:57 +02:00
|
|
|
public class ProfileValue {
|
|
|
|
public ProfileValue(int timeAsSeconds, double value) {
|
2017-06-02 10:25:49 +02:00
|
|
|
this.timeAsSeconds = timeAsSeconds;
|
|
|
|
this.value = value;
|
|
|
|
}
|
|
|
|
|
2018-03-18 15:02:21 +01:00
|
|
|
public int timeAsSeconds;
|
|
|
|
public double value;
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
2019-06-06 22:15:57 +02:00
|
|
|
public synchronized ProfileValue[] getBasalValues() {
|
2018-01-14 21:42:36 +01:00
|
|
|
if (basal_v == null)
|
|
|
|
basal_v = convertToSparseArray(basal);
|
2019-06-06 22:15:57 +02:00
|
|
|
ProfileValue[] ret = new ProfileValue[basal_v.size()];
|
2017-06-02 10:25:49 +02:00
|
|
|
|
2017-10-05 00:54:35 +02:00
|
|
|
for (Integer index = 0; index < basal_v.size(); index++) {
|
|
|
|
Integer tas = (int) basal_v.keyAt(index);
|
2018-03-18 15:02:21 +01:00
|
|
|
double value = basal_v.valueAt(index);
|
2019-06-06 22:15:57 +02:00
|
|
|
ret[index] = new ProfileValue(tas, value);
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
2017-10-05 00:54:35 +02:00
|
|
|
return ret;
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
2019-11-12 00:01:58 +01:00
|
|
|
public double getTargetMgdl() {
|
|
|
|
return getTargetMgdl(secondsFromMidnight());
|
2018-03-08 14:59:18 +01:00
|
|
|
}
|
|
|
|
|
2019-11-12 00:01:58 +01:00
|
|
|
public double getTargetMgdl(int timeAsSeconds) {
|
|
|
|
return toMgdl((getTargetLowTimeFromMidnight(timeAsSeconds) + getTargetHighTimeFromMidnight(timeAsSeconds)) / 2, units);
|
2018-03-08 14:59:18 +01:00
|
|
|
}
|
|
|
|
|
2019-11-12 00:01:58 +01:00
|
|
|
public double getTargetLowMgdl() {
|
|
|
|
return toMgdl(getTargetLowTimeFromMidnight(secondsFromMidnight()), units);
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
2019-11-12 00:01:58 +01:00
|
|
|
public double getTargetLowMgdl(long time) {
|
|
|
|
return toMgdl(getTargetLowTimeFromMidnight(secondsFromMidnight(time)), units);
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
2019-11-12 00:01:58 +01:00
|
|
|
double getTargetLowTimeFromMidnight(int timeAsSeconds) {
|
2017-10-05 00:54:35 +02:00
|
|
|
if (targetLow_v == null)
|
|
|
|
targetLow_v = convertToSparseArray(targetLow);
|
|
|
|
return getValueToTime(targetLow_v, timeAsSeconds);
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
2019-11-12 00:01:58 +01:00
|
|
|
public double getTargetHighMgdl() {
|
|
|
|
return toMgdl(getTargetHighTimeFromMidnight(secondsFromMidnight()), units);
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
2019-11-12 00:01:58 +01:00
|
|
|
public double getTargetHighMgdl(long time) {
|
|
|
|
return toMgdl(getTargetHighTimeFromMidnight(secondsFromMidnight(time)), units);
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
2019-11-12 00:01:58 +01:00
|
|
|
double getTargetHighTimeFromMidnight(int timeAsSeconds) {
|
2017-10-05 00:54:35 +02:00
|
|
|
if (targetHigh_v == null)
|
|
|
|
targetHigh_v = convertToSparseArray(targetHigh);
|
|
|
|
return getValueToTime(targetHigh_v, timeAsSeconds);
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
2019-06-06 22:15:57 +02:00
|
|
|
public class TargetValue {
|
2019-11-12 00:01:58 +01:00
|
|
|
TargetValue(int timeAsSeconds, double low, double high) {
|
2019-06-06 22:15:57 +02:00
|
|
|
this.timeAsSeconds = timeAsSeconds;
|
|
|
|
this.low = low;
|
|
|
|
this.high = high;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int timeAsSeconds;
|
|
|
|
public double low;
|
|
|
|
public double high;
|
|
|
|
}
|
|
|
|
|
|
|
|
public TargetValue[] getTargets() {
|
|
|
|
if (targetLow_v == null)
|
|
|
|
targetLow_v = convertToSparseArray(targetLow);
|
|
|
|
if (targetHigh_v == null)
|
|
|
|
targetHigh_v = convertToSparseArray(targetHigh);
|
|
|
|
TargetValue[] ret = new TargetValue[targetLow_v.size()];
|
|
|
|
|
|
|
|
for (Integer index = 0; index < targetLow_v.size(); index++) {
|
|
|
|
Integer tas = (int) targetLow_v.keyAt(index);
|
|
|
|
double low = targetLow_v.valueAt(index);
|
|
|
|
double high = targetHigh_v.valueAt(index);
|
|
|
|
ret[index] = new TargetValue(tas, low, high);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-11-12 00:01:58 +01:00
|
|
|
public ProfileValue[] getSingleTargetsMgdl() {
|
2019-06-08 23:39:14 +02:00
|
|
|
if (targetLow_v == null)
|
|
|
|
targetLow_v = convertToSparseArray(targetLow);
|
|
|
|
if (targetHigh_v == null)
|
|
|
|
targetHigh_v = convertToSparseArray(targetHigh);
|
|
|
|
ProfileValue[] ret = new ProfileValue[targetLow_v.size()];
|
|
|
|
|
2019-11-12 00:01:58 +01:00
|
|
|
for (int index = 0; index < targetLow_v.size(); index++) {
|
|
|
|
int tas = (int) targetLow_v.keyAt(index);
|
2019-06-08 23:39:14 +02:00
|
|
|
double target = (targetLow_v.valueAt(index) + targetHigh_v.valueAt(index)) / 2;
|
2019-11-12 00:01:58 +01:00
|
|
|
ret[index] = new ProfileValue(tas, toMgdl(target, units));
|
2019-06-08 23:39:14 +02:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-06-02 10:25:49 +02:00
|
|
|
public String getTargetList() {
|
2018-03-17 23:18:34 +01:00
|
|
|
if (targetLow_v == null)
|
|
|
|
targetLow_v = convertToSparseArray(targetLow);
|
|
|
|
if (targetHigh_v == null)
|
|
|
|
targetHigh_v = convertToSparseArray(targetHigh);
|
2017-10-05 00:54:35 +02:00
|
|
|
return getValuesList(targetLow_v, targetHigh_v, new DecimalFormat("0.0"), getUnits());
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public double getMaxDailyBasal() {
|
2018-03-18 15:02:21 +01:00
|
|
|
double max = 0d;
|
|
|
|
for (int hour = 0; hour < 24; hour++) {
|
2019-12-14 21:20:01 +01:00
|
|
|
double value = getBasalTimeFromMidnight(hour * 60 * 60);
|
2017-06-02 10:25:49 +02:00
|
|
|
if (value > max) max = value;
|
|
|
|
}
|
|
|
|
return max;
|
|
|
|
}
|
|
|
|
|
2018-03-18 15:02:21 +01:00
|
|
|
public static int secondsFromMidnight() {
|
2018-10-28 12:21:35 +01:00
|
|
|
long passed = DateUtil.now() - MidnightTime.calc();
|
2017-06-02 10:25:49 +02:00
|
|
|
return (int) (passed / 1000);
|
|
|
|
}
|
|
|
|
|
2018-03-18 15:02:21 +01:00
|
|
|
public static int secondsFromMidnight(long date) {
|
2018-10-28 12:21:35 +01:00
|
|
|
long midnight = MidnightTime.calc(date);
|
|
|
|
long passed = date - midnight;
|
2017-06-02 10:25:49 +02:00
|
|
|
return (int) (passed / 1000);
|
|
|
|
}
|
|
|
|
|
2018-03-18 15:02:21 +01:00
|
|
|
public static double toMgdl(double value, String units) {
|
2017-06-02 10:25:49 +02:00
|
|
|
if (units.equals(Constants.MGDL)) return value;
|
|
|
|
else return value * Constants.MMOLL_TO_MGDL;
|
|
|
|
}
|
|
|
|
|
2018-03-18 15:02:21 +01:00
|
|
|
public static double toMmol(double value, String units) {
|
2017-08-20 19:42:41 +02:00
|
|
|
if (units.equals(Constants.MGDL)) return value * Constants.MGDL_TO_MMOLL;
|
|
|
|
else return value;
|
|
|
|
}
|
|
|
|
|
2018-03-18 15:02:21 +01:00
|
|
|
public static double fromMgdlToUnits(double value, String units) {
|
2017-06-02 10:25:49 +02:00
|
|
|
if (units.equals(Constants.MGDL)) return value;
|
|
|
|
else return value * Constants.MGDL_TO_MMOLL;
|
|
|
|
}
|
|
|
|
|
2019-11-27 23:26:29 +01:00
|
|
|
public static double fromMmolToUnits(double value, String units) {
|
|
|
|
if (units.equals(Constants.MMOL)) return value;
|
|
|
|
else return value * Constants.MMOLL_TO_MGDL;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static double toUnits(double valueInMgdl, double valueInMmol, String units) {
|
2017-06-02 10:25:49 +02:00
|
|
|
if (units.equals(Constants.MGDL)) return valueInMgdl;
|
|
|
|
else return valueInMmol;
|
|
|
|
}
|
|
|
|
|
2019-11-27 23:26:29 +01:00
|
|
|
public static String toUnitsString(double valueInMgdl, double valueInMmol, String units) {
|
2017-06-02 10:25:49 +02:00
|
|
|
if (units.equals(Constants.MGDL)) return DecimalFormatter.to0Decimal(valueInMgdl);
|
|
|
|
else return DecimalFormatter.to1Decimal(valueInMmol);
|
|
|
|
}
|
2017-08-15 16:04:46 +02:00
|
|
|
|
2019-11-27 23:26:29 +01:00
|
|
|
public static String toSignedUnitsString(double valueInMgdl, double valueInMmol, String units) {
|
2018-06-23 18:52:58 +02:00
|
|
|
if (units.equals(Constants.MGDL))
|
|
|
|
return (valueInMgdl > 0 ? "+" : "") + DecimalFormatter.to0Decimal(valueInMgdl);
|
2018-06-23 18:24:04 +02:00
|
|
|
else return (valueInMmol > 0 ? "+" : "") + DecimalFormatter.to1Decimal(valueInMmol);
|
|
|
|
}
|
|
|
|
|
2019-11-27 23:26:29 +01:00
|
|
|
public static double toCurrentUnits(double anyBg) {
|
|
|
|
if (anyBg < 32) return fromMmolToUnits(anyBg, ProfileFunctions.getSystemUnits());
|
|
|
|
else return fromMgdlToUnits(anyBg, ProfileFunctions.getSystemUnits());
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String toCurrentUnitsString(double anyBg) {
|
|
|
|
if (anyBg < 32)
|
|
|
|
return toUnitsString(anyBg * Constants.MMOLL_TO_MGDL, anyBg, ProfileFunctions.getSystemUnits());
|
|
|
|
else
|
|
|
|
return toUnitsString(anyBg, anyBg * Constants.MGDL_TO_MMOLL, ProfileFunctions.getSystemUnits());
|
|
|
|
}
|
|
|
|
|
2017-08-20 19:42:41 +02:00
|
|
|
// targets are stored in mg/dl but profile vary
|
|
|
|
public static String toTargetRangeString(double low, double high, String sourceUnits, String units) {
|
|
|
|
double lowMgdl = toMgdl(low, sourceUnits);
|
|
|
|
double highMgdl = toMgdl(high, sourceUnits);
|
|
|
|
double lowMmol = toMmol(low, sourceUnits);
|
|
|
|
double highMmol = toMmol(high, sourceUnits);
|
|
|
|
if (low == high)
|
|
|
|
return toUnitsString(lowMgdl, lowMmol, units);
|
|
|
|
else
|
|
|
|
return toUnitsString(lowMgdl, lowMmol, units) + " - " + toUnitsString(highMgdl, highMmol, units);
|
|
|
|
|
2017-08-15 16:04:46 +02:00
|
|
|
}
|
2017-10-08 14:41:51 +02:00
|
|
|
|
|
|
|
public double percentageBasalSum() {
|
|
|
|
double result = 0d;
|
|
|
|
for (int i = 0; i < 24; i++) {
|
2018-03-18 15:02:21 +01:00
|
|
|
result += getBasalTimeFromMidnight(i * 60 * 60);
|
2017-10-08 14:41:51 +02:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double baseBasalSum() {
|
|
|
|
double result = 0d;
|
|
|
|
for (int i = 0; i < 24; i++) {
|
2018-03-18 15:02:21 +01:00
|
|
|
result += getBasalTimeFromMidnight(i * 60 * 60) / getMultiplier(basal_v);
|
2017-10-08 14:41:51 +02:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getPercentage() {
|
|
|
|
return percentage;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getTimeshift() {
|
|
|
|
return timeshift;
|
|
|
|
}
|
2019-12-01 20:42:23 +01:00
|
|
|
|
|
|
|
public Profile convertToNonCustomizedProfile() {
|
|
|
|
JSONObject o = new JSONObject();
|
|
|
|
try {
|
|
|
|
o.put("units", units);
|
|
|
|
o.put("dia", dia);
|
|
|
|
o.put("timezone", timeZone.getID());
|
|
|
|
// SENS
|
|
|
|
JSONArray sens = new JSONArray();
|
|
|
|
double lastValue = -1d;
|
|
|
|
for (int i = 0; i < 24; i++) {
|
|
|
|
int timeAsSeconds = i * 60 * 60;
|
|
|
|
double value = getIsfTimeFromMidnight(timeAsSeconds);
|
|
|
|
if (value != lastValue) {
|
|
|
|
JSONObject item = new JSONObject();
|
|
|
|
String time;
|
|
|
|
DecimalFormat df = new DecimalFormat("00");
|
|
|
|
time = df.format(i) + ":00";
|
|
|
|
item.put("time", time);
|
|
|
|
item.put("timeAsSeconds", timeAsSeconds);
|
|
|
|
item.put("value", value);
|
|
|
|
lastValue = value;
|
|
|
|
sens.put(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
o.put("sens", sens);
|
|
|
|
// CARBRATIO
|
|
|
|
JSONArray carbratio = new JSONArray();
|
|
|
|
lastValue = -1d;
|
|
|
|
for (int i = 0; i < 24; i++) {
|
|
|
|
int timeAsSeconds = i * 60 * 60;
|
|
|
|
double value = getIcTimeFromMidnight(timeAsSeconds);
|
|
|
|
if (value != lastValue) {
|
|
|
|
JSONObject item = new JSONObject();
|
|
|
|
String time;
|
|
|
|
DecimalFormat df = new DecimalFormat("00");
|
|
|
|
time = df.format(i) + ":00";
|
|
|
|
item.put("time", time);
|
|
|
|
item.put("timeAsSeconds", timeAsSeconds);
|
|
|
|
item.put("value", value);
|
|
|
|
lastValue = value;
|
|
|
|
carbratio.put(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
o.put("carbratio", carbratio);
|
|
|
|
// BASAL
|
|
|
|
JSONArray basal = new JSONArray();
|
|
|
|
lastValue = -1d;
|
|
|
|
for (int i = 0; i < 24; i++) {
|
|
|
|
int timeAsSeconds = i * 60 * 60;
|
|
|
|
double value = getBasalTimeFromMidnight(timeAsSeconds);
|
|
|
|
if (value != lastValue) {
|
|
|
|
JSONObject item = new JSONObject();
|
|
|
|
String time;
|
|
|
|
DecimalFormat df = new DecimalFormat("00");
|
|
|
|
time = df.format(i) + ":00";
|
|
|
|
item.put("time", time);
|
|
|
|
item.put("timeAsSeconds", timeAsSeconds);
|
|
|
|
item.put("value", value);
|
|
|
|
lastValue = value;
|
|
|
|
basal.put(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
o.put("basal", basal);
|
|
|
|
// TARGET_LOW
|
|
|
|
JSONArray target_low = new JSONArray();
|
|
|
|
lastValue = -1d;
|
|
|
|
for (int i = 0; i < 24; i++) {
|
|
|
|
int timeAsSeconds = i * 60 * 60;
|
|
|
|
double value = getTargetLowTimeFromMidnight(timeAsSeconds);
|
|
|
|
if (value != lastValue) {
|
|
|
|
JSONObject item = new JSONObject();
|
|
|
|
String time;
|
|
|
|
DecimalFormat df = new DecimalFormat("00");
|
|
|
|
time = df.format(i) + ":00";
|
|
|
|
item.put("time", time);
|
|
|
|
item.put("timeAsSeconds", timeAsSeconds);
|
|
|
|
item.put("value", value);
|
|
|
|
lastValue = value;
|
|
|
|
target_low.put(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
o.put("target_low", target_low);
|
|
|
|
// TARGET_HIGH
|
|
|
|
JSONArray target_high = new JSONArray();
|
|
|
|
lastValue = -1d;
|
|
|
|
for (int i = 0; i < 24; i++) {
|
|
|
|
int timeAsSeconds = i * 60 * 60;
|
|
|
|
double value = getTargetHighTimeFromMidnight(timeAsSeconds);
|
|
|
|
if (value != lastValue) {
|
|
|
|
JSONObject item = new JSONObject();
|
|
|
|
String time;
|
|
|
|
DecimalFormat df = new DecimalFormat("00");
|
|
|
|
time = df.format(i) + ":00";
|
|
|
|
item.put("time", time);
|
|
|
|
item.put("timeAsSeconds", timeAsSeconds);
|
|
|
|
item.put("value", value);
|
|
|
|
lastValue = value;
|
|
|
|
target_high.put(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
o.put("target_high", target_high);
|
|
|
|
|
|
|
|
} catch (JSONException e) {
|
|
|
|
log.error("Unhandled exception" + e);
|
|
|
|
}
|
|
|
|
return new Profile(o);
|
|
|
|
}
|
2017-06-02 10:25:49 +02:00
|
|
|
}
|