Remove redundant interface and split initPod into two separate methods
This commit is contained in:
parent
4a10a04f79
commit
afd890a519
3 changed files with 50 additions and 129 deletions
|
@ -1,74 +0,0 @@
|
|||
package info.nightscout.androidaps.plugins.pump.omnipod.defs;
|
||||
|
||||
import info.nightscout.androidaps.data.DetailedBolusInfo;
|
||||
import info.nightscout.androidaps.data.Profile;
|
||||
import info.nightscout.androidaps.data.PumpEnactResult;
|
||||
import info.nightscout.androidaps.plugins.pump.common.data.TempBasalPair;
|
||||
import info.nightscout.androidaps.plugins.pump.omnipod.comm.message.response.podinfo.PodInfoRecentPulseLog;
|
||||
|
||||
// TODO remove?
|
||||
// We only have this interface for possible Omnipod Dash implementation
|
||||
public interface IOmnipodManager {
|
||||
|
||||
/**
|
||||
* Initialize Pod
|
||||
*/
|
||||
PumpEnactResult initPod(PodInitActionType podInitActionType, PodInitReceiver podInitReceiver, Profile profile);
|
||||
|
||||
/**
|
||||
* Get Pod Status (is pod running, battery left ?, reservoir, etc)
|
||||
*/
|
||||
// TODO we should probably return a (wrapped) StatusResponse instead of a PumpEnactResult
|
||||
PumpEnactResult getPodStatus();
|
||||
|
||||
/**
|
||||
* Deactivate Pod
|
||||
*/
|
||||
PumpEnactResult deactivatePod(PodInitReceiver podInitReceiver);
|
||||
|
||||
/**
|
||||
* Set Basal Profile
|
||||
*/
|
||||
PumpEnactResult setBasalProfile(Profile basalProfile);
|
||||
|
||||
/**
|
||||
* Reset Pod status (if we forget to disconnect Pod and want to init new pod, and want to forget current pod)
|
||||
*/
|
||||
PumpEnactResult resetPodStatus();
|
||||
|
||||
/**
|
||||
* Set Bolus
|
||||
*
|
||||
* @param detailedBolusInfo DetailedBolusInfo instance with amount and all other required data
|
||||
*/
|
||||
PumpEnactResult bolus(DetailedBolusInfo detailedBolusInfo);
|
||||
|
||||
/**
|
||||
* Cancel Bolus (if bolus is already stopped, return acknowledgment)
|
||||
*/
|
||||
PumpEnactResult cancelBolus();
|
||||
|
||||
/**
|
||||
* Set Temporary Basal
|
||||
*
|
||||
* @param tempBasalPair TempBasalPair object containg amount and duration in minutes
|
||||
*/
|
||||
PumpEnactResult setTemporaryBasal(TempBasalPair tempBasalPair);
|
||||
|
||||
/**
|
||||
* Cancel Temporary Basal (if TB is already stopped, return acknowledgment)
|
||||
*/
|
||||
PumpEnactResult cancelTemporaryBasal();
|
||||
|
||||
/**
|
||||
* Acknowledge alerts
|
||||
*/
|
||||
PumpEnactResult acknowledgeAlerts();
|
||||
|
||||
/**
|
||||
* Set Time on Pod
|
||||
*/
|
||||
PumpEnactResult setTime();
|
||||
|
||||
PodInfoRecentPulseLog readPulseLog();
|
||||
}
|
|
@ -35,13 +35,12 @@ public class InitPodTask extends AsyncTask<Void, Void, String> {
|
|||
@Override
|
||||
protected String doInBackground(Void... params) {
|
||||
if (initActionFragment.podInitActionType == PodInitActionType.PairAndPrimeWizardStep) {
|
||||
initActionFragment.callResult = aapsOmnipodManager.initPod(
|
||||
initActionFragment.callResult = aapsOmnipodManager.pairAndPrime(
|
||||
initActionFragment.podInitActionType,
|
||||
initActionFragment,
|
||||
null
|
||||
initActionFragment
|
||||
);
|
||||
} else if (initActionFragment.podInitActionType == PodInitActionType.FillCannulaSetBasalProfileWizardStep) {
|
||||
initActionFragment.callResult = aapsOmnipodManager.initPod(
|
||||
initActionFragment.callResult = aapsOmnipodManager.setInitialBasalScheduleAndInsertCannula(
|
||||
initActionFragment.podInitActionType,
|
||||
initActionFragment,
|
||||
profileFunction.getProfile()
|
||||
|
|
|
@ -60,7 +60,6 @@ import info.nightscout.androidaps.plugins.pump.omnipod.comm.message.response.Sta
|
|||
import info.nightscout.androidaps.plugins.pump.omnipod.comm.message.response.podinfo.PodInfoRecentPulseLog;
|
||||
import info.nightscout.androidaps.plugins.pump.omnipod.comm.message.response.podinfo.PodInfoResponse;
|
||||
import info.nightscout.androidaps.plugins.pump.omnipod.defs.FaultEventCode;
|
||||
import info.nightscout.androidaps.plugins.pump.omnipod.defs.IOmnipodManager;
|
||||
import info.nightscout.androidaps.plugins.pump.omnipod.defs.PodInfoType;
|
||||
import info.nightscout.androidaps.plugins.pump.omnipod.defs.PodInitActionType;
|
||||
import info.nightscout.androidaps.plugins.pump.omnipod.defs.PodInitReceiver;
|
||||
|
@ -77,7 +76,7 @@ import io.reactivex.disposables.Disposable;
|
|||
import io.reactivex.subjects.SingleSubject;
|
||||
|
||||
@Singleton
|
||||
public class AapsOmnipodManager implements IOmnipodManager {
|
||||
public class AapsOmnipodManager {
|
||||
|
||||
private final PodStateManager podStateManager;
|
||||
private final OmnipodUtil omnipodUtil;
|
||||
|
@ -142,10 +141,13 @@ public class AapsOmnipodManager implements IOmnipodManager {
|
|||
timeChangeEventEnabled = sp.getBoolean(OmnipodConst.Prefs.TimeChangeEventEnabled, true);
|
||||
}
|
||||
|
||||
@Override
|
||||
public PumpEnactResult initPod(PodInitActionType podInitActionType, PodInitReceiver podInitReceiver, Profile profile) {
|
||||
public PumpEnactResult pairAndPrime(PodInitActionType podInitActionType, PodInitReceiver podInitReceiver) {
|
||||
if (podInitActionType != PodInitActionType.PairAndPrimeWizardStep) {
|
||||
return new PumpEnactResult(injector).success(false).enacted(false).comment(getStringResource(R.string.omnipod_error_illegal_init_action_type, podInitActionType.name()));
|
||||
}
|
||||
|
||||
long time = System.currentTimeMillis();
|
||||
if (PodInitActionType.PairAndPrimeWizardStep.equals(podInitActionType)) {
|
||||
|
||||
try {
|
||||
Disposable disposable = delegate.pairAndPrime().subscribe(res -> //
|
||||
handleSetupActionResult(podInitActionType, podInitReceiver, res, time, null));
|
||||
|
@ -157,7 +159,15 @@ public class AapsOmnipodManager implements IOmnipodManager {
|
|||
addFailureToHistory(time, PodHistoryEntryType.PairAndPrime, comment);
|
||||
return new PumpEnactResult(injector).success(false).enacted(false).comment(comment);
|
||||
}
|
||||
} else if (PodInitActionType.FillCannulaSetBasalProfileWizardStep.equals(podInitActionType)) {
|
||||
}
|
||||
|
||||
public PumpEnactResult setInitialBasalScheduleAndInsertCannula(PodInitActionType podInitActionType, PodInitReceiver podInitReceiver, Profile profile) {
|
||||
if (podInitActionType != PodInitActionType.FillCannulaSetBasalProfileWizardStep) {
|
||||
return new PumpEnactResult(injector).success(false).enacted(false).comment(getStringResource(R.string.omnipod_error_illegal_init_action_type, podInitActionType.name()));
|
||||
}
|
||||
|
||||
long time = System.currentTimeMillis();
|
||||
|
||||
try {
|
||||
BasalSchedule basalSchedule;
|
||||
try {
|
||||
|
@ -179,10 +189,6 @@ public class AapsOmnipodManager implements IOmnipodManager {
|
|||
}
|
||||
}
|
||||
|
||||
return new PumpEnactResult(injector).success(false).enacted(false).comment(getStringResource(R.string.omnipod_error_illegal_init_action_type, podInitActionType.name()));
|
||||
}
|
||||
|
||||
@Override
|
||||
public PumpEnactResult getPodStatus() {
|
||||
long time = System.currentTimeMillis();
|
||||
try {
|
||||
|
@ -196,7 +202,6 @@ public class AapsOmnipodManager implements IOmnipodManager {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public PumpEnactResult deactivatePod(PodInitReceiver podInitReceiver) {
|
||||
long time = System.currentTimeMillis();
|
||||
try {
|
||||
|
@ -217,7 +222,6 @@ public class AapsOmnipodManager implements IOmnipodManager {
|
|||
return new PumpEnactResult(injector).success(true).enacted(true);
|
||||
}
|
||||
|
||||
@Override
|
||||
public PumpEnactResult setBasalProfile(Profile profile) {
|
||||
long time = System.currentTimeMillis();
|
||||
try {
|
||||
|
@ -246,7 +250,6 @@ public class AapsOmnipodManager implements IOmnipodManager {
|
|||
return new PumpEnactResult(injector).success(true).enacted(true);
|
||||
}
|
||||
|
||||
@Override
|
||||
public PumpEnactResult resetPodStatus() {
|
||||
podStateManager.removeState();
|
||||
|
||||
|
@ -257,7 +260,6 @@ public class AapsOmnipodManager implements IOmnipodManager {
|
|||
return new PumpEnactResult(injector).success(true).enacted(true);
|
||||
}
|
||||
|
||||
@Override
|
||||
public PumpEnactResult bolus(DetailedBolusInfo detailedBolusInfo) {
|
||||
OmnipodManager.BolusCommandResult bolusCommandResult;
|
||||
|
||||
|
@ -325,7 +327,6 @@ public class AapsOmnipodManager implements IOmnipodManager {
|
|||
return new PumpEnactResult(injector).success(true).enacted(true).bolusDelivered(detailedBolusInfo.insulin);
|
||||
}
|
||||
|
||||
@Override
|
||||
public PumpEnactResult cancelBolus() {
|
||||
SingleSubject<Boolean> bolusCommandExecutionSubject = delegate.getBolusCommandExecutionSubject();
|
||||
if (bolusCommandExecutionSubject != null) {
|
||||
|
@ -365,7 +366,6 @@ public class AapsOmnipodManager implements IOmnipodManager {
|
|||
return new PumpEnactResult(injector).success(false).enacted(false).comment(comment);
|
||||
}
|
||||
|
||||
@Override
|
||||
public PumpEnactResult setTemporaryBasal(TempBasalPair tempBasalPair) {
|
||||
boolean beepsEnabled = isTbrBeepsEnabled();
|
||||
long time = System.currentTimeMillis();
|
||||
|
@ -398,7 +398,6 @@ public class AapsOmnipodManager implements IOmnipodManager {
|
|||
return new PumpEnactResult(injector).success(true).enacted(true);
|
||||
}
|
||||
|
||||
@Override
|
||||
public PumpEnactResult cancelTemporaryBasal() {
|
||||
long time = System.currentTimeMillis();
|
||||
try {
|
||||
|
@ -413,7 +412,6 @@ public class AapsOmnipodManager implements IOmnipodManager {
|
|||
return new PumpEnactResult(injector).success(true).enacted(true);
|
||||
}
|
||||
|
||||
@Override
|
||||
public PumpEnactResult acknowledgeAlerts() {
|
||||
long time = System.currentTimeMillis();
|
||||
try {
|
||||
|
@ -427,7 +425,6 @@ public class AapsOmnipodManager implements IOmnipodManager {
|
|||
return new PumpEnactResult(injector).success(true).enacted(true);
|
||||
}
|
||||
|
||||
// TODO should we add this to the OmnipodCommunicationManager interface?
|
||||
public PumpEnactResult getPodInfo(PodInfoType podInfoType) {
|
||||
long time = System.currentTimeMillis();
|
||||
try {
|
||||
|
@ -467,9 +464,8 @@ public class AapsOmnipodManager implements IOmnipodManager {
|
|||
return new PumpEnactResult(injector).success(true).enacted(true);
|
||||
}
|
||||
|
||||
// TODO should we add this to the OmnipodCommunicationManager interface?
|
||||
// Updates the pods current time based on the device timezone and the pod's time zone
|
||||
@Override public PumpEnactResult setTime() {
|
||||
public PumpEnactResult setTime() {
|
||||
long time = System.currentTimeMillis();
|
||||
try {
|
||||
delegate.setTime(isBasalBeepsEnabled());
|
||||
|
@ -491,7 +487,7 @@ public class AapsOmnipodManager implements IOmnipodManager {
|
|||
return new PumpEnactResult(injector).success(true).enacted(true);
|
||||
}
|
||||
|
||||
@Override public PodInfoRecentPulseLog readPulseLog() {
|
||||
public PodInfoRecentPulseLog readPulseLog() {
|
||||
PodInfoResponse response = delegate.getPodInfo(PodInfoType.RECENT_PULSE_LOG);
|
||||
return response.getPodInfo();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue