2017-07-13 19:50:11 +02:00
|
|
|
package de.jotomo.ruffyscripter.commands;
|
|
|
|
|
2017-08-05 15:33:28 +02:00
|
|
|
import android.util.Log;
|
2017-07-13 19:50:11 +02:00
|
|
|
|
|
|
|
import org.monkey.d.ruffy.ruffy.driver.display.MenuAttribute;
|
|
|
|
import org.monkey.d.ruffy.ruffy.driver.display.MenuType;
|
|
|
|
import org.monkey.d.ruffy.ruffy.driver.display.menu.MenuTime;
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
2017-07-17 10:27:39 +02:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
2017-07-13 19:50:11 +02:00
|
|
|
import java.util.Locale;
|
|
|
|
|
2017-07-19 12:52:19 +02:00
|
|
|
import de.jotomo.ruffyscripter.PumpState;
|
2017-07-13 19:50:11 +02:00
|
|
|
import de.jotomo.ruffyscripter.RuffyScripter;
|
|
|
|
|
2017-08-12 00:12:11 +02:00
|
|
|
import static org.monkey.d.ruffy.ruffy.driver.display.MenuType.MAIN_MENU;
|
|
|
|
import static org.monkey.d.ruffy.ruffy.driver.display.MenuType.TBR_DURATION;
|
|
|
|
import static org.monkey.d.ruffy.ruffy.driver.display.MenuType.TBR_MENU;
|
|
|
|
import static org.monkey.d.ruffy.ruffy.driver.display.MenuType.TBR_SET;
|
|
|
|
import static org.monkey.d.ruffy.ruffy.driver.display.MenuType.WARNING_OR_ERROR;
|
2017-08-11 14:19:16 +02:00
|
|
|
|
2017-07-13 19:50:11 +02:00
|
|
|
public class SetTbrCommand implements Command {
|
|
|
|
private static final Logger log = LoggerFactory.getLogger(SetTbrCommand.class);
|
|
|
|
|
|
|
|
private final long percentage;
|
|
|
|
private final long duration;
|
|
|
|
|
|
|
|
public SetTbrCommand(long percentage, long duration) {
|
|
|
|
this.percentage = percentage;
|
|
|
|
this.duration = duration;
|
2017-07-17 10:27:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public List<String> validateArguments() {
|
|
|
|
List<String> violations = new ArrayList<>();
|
2017-07-13 19:50:11 +02:00
|
|
|
|
|
|
|
if (percentage % 10 != 0) {
|
2017-07-17 10:27:39 +02:00
|
|
|
violations.add("TBR percentage must be set in 10% steps");
|
2017-07-13 19:50:11 +02:00
|
|
|
}
|
|
|
|
if (percentage < 0 || percentage > 500) {
|
2017-07-17 10:27:39 +02:00
|
|
|
violations.add("TBR percentage must be within 0-500%");
|
2017-07-13 19:50:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (percentage != 100) {
|
|
|
|
if (duration % 15 != 0) {
|
2017-07-17 10:27:39 +02:00
|
|
|
violations.add("TBR duration can only be set in 15 minute steps");
|
2017-07-13 19:50:11 +02:00
|
|
|
}
|
|
|
|
if (duration > 60 * 24) {
|
2017-07-17 10:27:39 +02:00
|
|
|
violations.add("Maximum TBR duration is 24 hours");
|
2017-07-13 19:50:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (percentage == 0 && duration > 120) {
|
2017-07-17 10:27:39 +02:00
|
|
|
violations.add("Max allowed zero-temp duration is 2h");
|
2017-07-13 19:50:11 +02:00
|
|
|
}
|
2017-07-17 10:27:39 +02:00
|
|
|
|
2017-07-18 01:24:13 +02:00
|
|
|
return violations;
|
2017-07-13 19:50:11 +02:00
|
|
|
}
|
|
|
|
|
2017-08-12 00:12:11 +02:00
|
|
|
@Override
|
|
|
|
public CommandResult execute(RuffyScripter scripter, PumpState initialPumpState) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
Log.v("SetTbrCommand","1. going from "+scripter.currentMenu+" to TBR_MENU");
|
|
|
|
int retries = 5;
|
|
|
|
while(!scripter.goToMainMenuScreen(TBR_MENU,3000))
|
|
|
|
{
|
|
|
|
retries--;
|
|
|
|
if(retries==0)
|
|
|
|
throw new Exception("not able to find TBR_MENU: stuck in "+scripter.currentMenu);
|
|
|
|
Thread.sleep(500);
|
|
|
|
if(scripter.currentMenu.getType()== TBR_MENU)
|
|
|
|
break;
|
2017-07-13 19:50:11 +02:00
|
|
|
}
|
2017-08-12 00:12:11 +02:00
|
|
|
|
|
|
|
if(scripter.currentMenu.getType()!=TBR_MENU)
|
|
|
|
throw new Exception("not able to find TBR_MENU: stuck in "+scripter.currentMenu);
|
|
|
|
|
|
|
|
Log.v("SetTbrCommand","2. entering "+scripter.currentMenu);
|
|
|
|
retries = 5;
|
|
|
|
while(!scripter.enterMenu(TBR_MENU,MenuType.TBR_SET, RuffyScripter.Key.CHECK,2000))
|
|
|
|
{
|
|
|
|
retries--;
|
|
|
|
if(retries==0)
|
|
|
|
throw new Exception("not able to find TBR_SET: stuck in "+scripter.currentMenu);
|
|
|
|
Thread.sleep(500);
|
|
|
|
if(scripter.currentMenu.getType()== TBR_SET)
|
|
|
|
break;
|
|
|
|
if(scripter.currentMenu.getType()== TBR_DURATION)
|
2017-08-11 14:19:16 +02:00
|
|
|
{
|
2017-08-12 00:12:11 +02:00
|
|
|
scripter.pressMenuKey();
|
|
|
|
scripter.waitScreen(1000);
|
2017-08-11 14:19:16 +02:00
|
|
|
}
|
2017-08-12 00:12:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Log.v("SetTbrCommand","3. getting/setting basal in "+scripter.currentMenu);
|
|
|
|
retries = 30;
|
|
|
|
|
|
|
|
double currentPercentage = -100;
|
|
|
|
while(currentPercentage!=percentage && retries>=0) {
|
|
|
|
retries--;
|
|
|
|
Object percentageObj = scripter.currentMenu.getAttribute(MenuAttribute.BASAL_RATE);
|
|
|
|
|
|
|
|
if (percentageObj != null && (percentageObj instanceof Double)) {
|
|
|
|
currentPercentage = ((Double) percentageObj).doubleValue();
|
|
|
|
|
|
|
|
if (currentPercentage != percentage) {
|
|
|
|
int requestedPercentage = (int) percentage;
|
|
|
|
int actualPercentage = (int) currentPercentage;
|
|
|
|
int steps = (requestedPercentage - actualPercentage) / 10;
|
|
|
|
Log.v("SetTbrCommand", "Adjusting basal(" + requestedPercentage + "/" + actualPercentage + ") with " + steps + " steps and " + retries + " retries left");
|
|
|
|
scripter.step(steps, (steps < 0 ? RuffyScripter.Key.DOWN : RuffyScripter.Key.UP), 500);
|
|
|
|
scripter.waitScreen(1000);
|
2017-08-05 15:33:28 +02:00
|
|
|
}
|
2017-08-12 00:12:11 +02:00
|
|
|
|
2017-08-05 15:33:28 +02:00
|
|
|
}
|
|
|
|
else
|
2017-08-12 00:12:11 +02:00
|
|
|
currentPercentage=-100;
|
|
|
|
scripter.waitScreen(1000);
|
|
|
|
}
|
|
|
|
if(currentPercentage<0 ||retries < 0)
|
|
|
|
throw new Exception("unable to set basalrate");
|
|
|
|
|
|
|
|
Log.v("SetTbrCommand","4. checking basal in "+scripter.currentMenu);
|
|
|
|
scripter.waitScreen(1000);
|
|
|
|
currentPercentage= -1000;
|
|
|
|
retries=10;
|
|
|
|
while(currentPercentage<0 && retries>=0) {
|
|
|
|
retries--;
|
|
|
|
Object percentageObj = scripter.currentMenu.getAttribute(MenuAttribute.BASAL_RATE);
|
|
|
|
|
|
|
|
if (percentageObj != null && (percentageObj instanceof Double)) {
|
|
|
|
currentPercentage = ((Double) percentageObj).doubleValue();
|
2017-08-05 15:33:28 +02:00
|
|
|
}
|
|
|
|
else
|
2017-08-12 00:12:11 +02:00
|
|
|
scripter.waitScreen(1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(retries<0 ||currentPercentage!=percentage)
|
|
|
|
throw new Exception("wrong rate!");
|
|
|
|
|
|
|
|
if(currentPercentage!=100) {
|
|
|
|
Log.v("SetTbrCommand", "5. change to TBR_DURATION from " + scripter.currentMenu);
|
|
|
|
retries = 5;
|
|
|
|
while (retries >=0 && !scripter.enterMenu(TBR_SET, MenuType.TBR_DURATION, RuffyScripter.Key.MENU, 2000)) {
|
2017-08-05 15:33:28 +02:00
|
|
|
retries--;
|
2017-08-12 00:12:11 +02:00
|
|
|
if (retries == 0)
|
|
|
|
throw new Exception("not able to find TBR_SET: stuck in " + scripter.currentMenu);
|
|
|
|
Thread.sleep(500);
|
|
|
|
if (scripter.currentMenu.getType() == TBR_DURATION)
|
|
|
|
break;
|
|
|
|
if (scripter.currentMenu.getType() == TBR_SET) {
|
|
|
|
scripter.pressMenuKey();
|
|
|
|
scripter.waitScreen(1000);
|
|
|
|
}
|
2017-08-05 15:33:28 +02:00
|
|
|
}
|
2017-08-12 00:12:11 +02:00
|
|
|
|
|
|
|
Log.v("SetTbrCommand", "6. getting/setting duration in " + scripter.currentMenu);
|
|
|
|
retries = 30;
|
|
|
|
|
|
|
|
double currentDuration = -100;
|
|
|
|
while (currentDuration != duration && retries >= 0) {
|
|
|
|
retries--;
|
2017-08-05 15:33:28 +02:00
|
|
|
Object durationObj = scripter.currentMenu.getAttribute(MenuAttribute.RUNTIME);
|
2017-08-12 00:12:11 +02:00
|
|
|
Log.v("SetTbrCommand", "Requested time: " + duration + " actual time: " + durationObj);
|
|
|
|
if (durationObj != null && durationObj instanceof MenuTime) {
|
2017-08-05 15:33:28 +02:00
|
|
|
MenuTime time = (MenuTime) durationObj;
|
2017-08-12 00:12:11 +02:00
|
|
|
currentDuration = (time.getHour() * 60) + time.getMinute();
|
|
|
|
if (currentDuration != duration) {
|
|
|
|
int requestedDuration = (int) duration;
|
|
|
|
int actualDuration = (int) currentDuration;
|
|
|
|
int steps = (requestedDuration - actualDuration) / 15;
|
|
|
|
if (currentDuration + (steps * 15) < requestedDuration)
|
|
|
|
steps++;
|
|
|
|
else if (currentDuration + (steps * 15) > requestedDuration)
|
|
|
|
steps--;
|
|
|
|
Log.v("SetTbrCommand", "Adjusting duration(" + requestedDuration + "/" + actualDuration + ") with " + steps + " steps and " + retries + " retries left");
|
|
|
|
scripter.step(steps, (steps > 0 ? RuffyScripter.Key.UP : RuffyScripter.Key.DOWN), 500);
|
|
|
|
scripter.waitScreen(1000);
|
|
|
|
} else {
|
|
|
|
break;
|
2017-08-05 15:33:28 +02:00
|
|
|
}
|
|
|
|
}
|
2017-08-12 00:12:11 +02:00
|
|
|
else
|
|
|
|
scripter.waitScreen(1000);
|
2017-08-05 15:33:28 +02:00
|
|
|
}
|
2017-08-12 00:12:11 +02:00
|
|
|
if (currentDuration < 0 || retries < 0)
|
|
|
|
throw new Exception("unable to set duration");
|
|
|
|
|
|
|
|
Log.v("SetTbrCommand", "7. checking time in " + scripter.currentMenu);
|
|
|
|
scripter.waitScreen(1000);
|
|
|
|
currentDuration = -1000;
|
|
|
|
retries = 10;
|
|
|
|
while (currentDuration < 0 && retries >= 0) {
|
|
|
|
retries--;
|
|
|
|
Object durationObj = scripter.currentMenu.getAttribute(MenuAttribute.RUNTIME);
|
|
|
|
|
|
|
|
if (durationObj != null && durationObj instanceof MenuTime) {
|
|
|
|
MenuTime time = (MenuTime) durationObj;
|
|
|
|
currentDuration = (time.getHour() * 60) + time.getMinute();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
scripter.waitScreen(1000);
|
2017-08-05 15:33:28 +02:00
|
|
|
}
|
2017-08-12 00:12:11 +02:00
|
|
|
if (retries < 0 || currentDuration != duration)
|
|
|
|
throw new Exception("wrong time!");
|
|
|
|
}
|
|
|
|
|
|
|
|
Log.v("SetTbrCommand", "8. setting from " + scripter.currentMenu);
|
|
|
|
retries=5;
|
|
|
|
while(retries>= 0 && (scripter.currentMenu.getType()==TBR_DURATION ||scripter.currentMenu.getType()==TBR_SET))
|
|
|
|
{
|
|
|
|
retries--;
|
|
|
|
scripter.pressCheckKey();
|
|
|
|
scripter.waitScreen(1000);
|
|
|
|
}
|
|
|
|
if(retries<0 || scripter.currentMenu.getType()==TBR_DURATION ||scripter.currentMenu.getType()==TBR_SET)
|
|
|
|
throw new Exception("failed setting basal!");
|
|
|
|
retries=10;
|
|
|
|
boolean canceledError = true;
|
|
|
|
if(percentage==100)
|
|
|
|
canceledError=false;
|
|
|
|
while(retries>=0 && scripter.currentMenu.getType()!=MAIN_MENU )
|
|
|
|
{
|
|
|
|
if(percentage==100 && scripter.currentMenu.getType()==WARNING_OR_ERROR)
|
2017-08-05 15:33:28 +02:00
|
|
|
{
|
|
|
|
scripter.pressCheckKey();
|
2017-08-12 00:12:11 +02:00
|
|
|
retries++;
|
|
|
|
canceledError = true;
|
2017-08-05 15:33:28 +02:00
|
|
|
}
|
2017-08-12 00:12:11 +02:00
|
|
|
else {
|
|
|
|
retries--;
|
|
|
|
if (scripter.currentMenu.getType() == MAIN_MENU && canceledError)
|
|
|
|
break;
|
2017-08-05 15:33:28 +02:00
|
|
|
}
|
2017-07-15 14:46:58 +02:00
|
|
|
}
|
2017-08-12 00:12:11 +02:00
|
|
|
if(retries<0 || scripter.currentMenu.getType()!=MAIN_MENU )
|
|
|
|
throw new Exception("failed going to main!");
|
|
|
|
|
|
|
|
Object percentageObj = scripter.currentMenu.getAttribute(MenuAttribute.TBR);
|
|
|
|
Object durationObj = scripter.currentMenu.getAttribute(MenuAttribute.RUNTIME);
|
|
|
|
|
|
|
|
if(percentageObj == null || !(percentageObj instanceof Double))
|
|
|
|
throw new Exception("not percentage");
|
|
|
|
|
|
|
|
if(((double)percentageObj)!=percentage)
|
|
|
|
throw new Exception("wrong percentage set!");
|
|
|
|
|
2017-08-11 14:19:16 +02:00
|
|
|
if(percentage==100)
|
|
|
|
return new CommandResult().success(true).enacted(true).message("TBR was cancelled");
|
2017-07-13 19:50:11 +02:00
|
|
|
|
2017-08-12 00:12:11 +02:00
|
|
|
if(durationObj==null || !(durationObj instanceof MenuTime))
|
|
|
|
throw new Exception("not time");
|
|
|
|
|
|
|
|
MenuTime t = (MenuTime) durationObj;
|
|
|
|
if(t.getMinute()+(60*t.getHour())> duration || t.getMinute()+(60*t.getHour())< duration-5)
|
|
|
|
throw new Exception("wrong time set!");
|
|
|
|
|
2017-08-11 14:19:16 +02:00
|
|
|
return new CommandResult().success(true).enacted(true).message(
|
|
|
|
String.format(Locale.US, "TBR set to %d%% for %d min", percentage, duration));
|
2017-08-12 00:12:11 +02:00
|
|
|
} catch (Exception e) {
|
|
|
|
Log.e("SetTbrCommand", "got exception: ", e);
|
|
|
|
return new CommandResult().success(false).message("failed to wait: " + e.getMessage());
|
2017-07-13 19:50:11 +02:00
|
|
|
}
|
|
|
|
}
|
2017-07-14 15:01:20 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public String toString() {
|
|
|
|
return "SetTbrCommand{" +
|
|
|
|
"percentage=" + percentage +
|
|
|
|
", duration=" + duration +
|
|
|
|
'}';
|
|
|
|
}
|
2017-07-13 19:50:11 +02:00
|
|
|
}
|