Carbs only treatments in Queue
This commit is contained in:
parent
2cf438a064
commit
2561c3f8b6
3 changed files with 17 additions and 10 deletions
|
@ -166,6 +166,10 @@ public class CommandQueue {
|
||||||
public boolean bolus(DetailedBolusInfo detailedBolusInfo, Callback callback) {
|
public boolean bolus(DetailedBolusInfo detailedBolusInfo, Callback callback) {
|
||||||
Command.CommandType type = detailedBolusInfo.isSMB ? Command.CommandType.SMB_BOLUS : Command.CommandType.BOLUS;
|
Command.CommandType type = detailedBolusInfo.isSMB ? Command.CommandType.SMB_BOLUS : Command.CommandType.BOLUS;
|
||||||
|
|
||||||
|
if(type.equals(Command.CommandType.BOLUS) && detailedBolusInfo.carbs > 0 && detailedBolusInfo.insulin == 0){
|
||||||
|
type = Command.CommandType.CARBS_ONLY_TREATMENT;
|
||||||
|
//Carbs only can be added in parallel as they can be "in the future".
|
||||||
|
} else {
|
||||||
if (isRunning(type)) {
|
if (isRunning(type)) {
|
||||||
if (callback != null)
|
if (callback != null)
|
||||||
callback.result(executingNowError()).run();
|
callback.result(executingNowError()).run();
|
||||||
|
@ -174,6 +178,7 @@ public class CommandQueue {
|
||||||
|
|
||||||
// remove all unfinished boluses
|
// remove all unfinished boluses
|
||||||
removeAll(type);
|
removeAll(type);
|
||||||
|
}
|
||||||
|
|
||||||
// apply constraints
|
// apply constraints
|
||||||
detailedBolusInfo.insulin = MainApp.getConstraintChecker().applyBolusConstraints(new Constraint<>(detailedBolusInfo.insulin)).value();
|
detailedBolusInfo.insulin = MainApp.getConstraintChecker().applyBolusConstraints(new Constraint<>(detailedBolusInfo.insulin)).value();
|
||||||
|
@ -183,7 +188,8 @@ public class CommandQueue {
|
||||||
if (detailedBolusInfo.isSMB) {
|
if (detailedBolusInfo.isSMB) {
|
||||||
add(new CommandSMBBolus(detailedBolusInfo, callback));
|
add(new CommandSMBBolus(detailedBolusInfo, callback));
|
||||||
} else {
|
} else {
|
||||||
add(new CommandBolus(detailedBolusInfo, callback));
|
add(new CommandBolus(detailedBolusInfo, callback, type));
|
||||||
|
if(type.equals(Command.CommandType.BOLUS))
|
||||||
// Bring up bolus progress dialog (start here, so the dialog is shown when the bolus is requested,
|
// Bring up bolus progress dialog (start here, so the dialog is shown when the bolus is requested,
|
||||||
// not when the Bolus command is starting. The command closes the dialog upon completion).
|
// not when the Bolus command is starting. The command closes the dialog upon completion).
|
||||||
showBolusProgressDialog(detailedBolusInfo.insulin, detailedBolusInfo.context);
|
showBolusProgressDialog(detailedBolusInfo.insulin, detailedBolusInfo.context);
|
||||||
|
|
|
@ -12,6 +12,7 @@ public abstract class Command {
|
||||||
public enum CommandType {
|
public enum CommandType {
|
||||||
BOLUS,
|
BOLUS,
|
||||||
SMB_BOLUS,
|
SMB_BOLUS,
|
||||||
|
CARBS_ONLY_TREATMENT,
|
||||||
TEMPBASAL,
|
TEMPBASAL,
|
||||||
EXTENDEDBOLUS,
|
EXTENDEDBOLUS,
|
||||||
BASALPROFILE,
|
BASALPROFILE,
|
||||||
|
|
|
@ -16,8 +16,8 @@ import info.nightscout.utils.DecimalFormatter;
|
||||||
public class CommandBolus extends Command {
|
public class CommandBolus extends Command {
|
||||||
DetailedBolusInfo detailedBolusInfo;
|
DetailedBolusInfo detailedBolusInfo;
|
||||||
|
|
||||||
public CommandBolus(DetailedBolusInfo detailedBolusInfo, Callback callback) {
|
public CommandBolus(DetailedBolusInfo detailedBolusInfo, Callback callback, CommandType type) {
|
||||||
commandType = CommandType.BOLUS;
|
commandType = type;
|
||||||
this.detailedBolusInfo = detailedBolusInfo;
|
this.detailedBolusInfo = detailedBolusInfo;
|
||||||
this.callback = callback;
|
this.callback = callback;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue