Merge branch 'omnipod_eros_dev' into omnipod_eros_dev_upstream_merge
This commit is contained in:
commit
a397b7b567
|
@ -105,14 +105,14 @@ public abstract class PodStateManager {
|
||||||
/**
|
/**
|
||||||
* @return true if the Pod's activation time has been exceeded
|
* @return true if the Pod's activation time has been exceeded
|
||||||
*/
|
*/
|
||||||
public boolean isPodActivationTimeExceeded() {
|
public final boolean isPodActivationTimeExceeded() {
|
||||||
return isPodInitialized() && getPodProgressStatus() == PodProgressStatus.ACTIVATION_TIME_EXCEEDED;
|
return isPodInitialized() && getPodProgressStatus() == PodProgressStatus.ACTIVATION_TIME_EXCEEDED;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return true if we have a Pod state and the Pod is dead, meaning it is either in a fault state or activation time has been exceeded or it is deactivated
|
* @return true if we have a Pod state and the Pod is dead, meaning it is either in a fault state or activation time has been exceeded or it is deactivated
|
||||||
*/
|
*/
|
||||||
public boolean isPodDead() {
|
public final boolean isPodDead() {
|
||||||
return isPodInitialized() && getPodProgressStatus().isDead();
|
return isPodInitialized() && getPodProgressStatus().isDead();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -603,6 +603,8 @@ public abstract class PodStateManager {
|
||||||
|
|
||||||
podState.setLastUpdatedFromResponse(DateTime.now());
|
podState.setLastUpdatedFromResponse(DateTime.now());
|
||||||
});
|
});
|
||||||
|
|
||||||
|
onUpdatedFromResponse();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void onTbrChanged() {
|
protected void onTbrChanged() {
|
||||||
|
@ -625,6 +627,11 @@ public abstract class PodStateManager {
|
||||||
// Can be overridden in subclasses
|
// Can be overridden in subclasses
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected void onUpdatedFromResponse() {
|
||||||
|
// Deliberately left empty
|
||||||
|
// Can be overridden in subclasses
|
||||||
|
}
|
||||||
|
|
||||||
private void setAndStore(Runnable runnable) {
|
private void setAndStore(Runnable runnable) {
|
||||||
setSafe(runnable);
|
setSafe(runnable);
|
||||||
storePodState();
|
storePodState();
|
||||||
|
|
|
@ -270,8 +270,6 @@ public class AapsOmnipodManager {
|
||||||
|
|
||||||
addSuccessToHistory(PodHistoryEntryType.GET_POD_STATUS, statusResponse);
|
addSuccessToHistory(PodHistoryEntryType.GET_POD_STATUS, statusResponse);
|
||||||
|
|
||||||
sendEvent(new EventDismissNotification(Notification.OMNIPOD_STARTUP_STATUS_REFRESH_FAILED));
|
|
||||||
|
|
||||||
return new PumpEnactResult(injector).success(true).enacted(false);
|
return new PumpEnactResult(injector).success(true).enacted(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,8 @@ import javax.inject.Singleton;
|
||||||
|
|
||||||
import info.nightscout.androidaps.logging.AAPSLogger;
|
import info.nightscout.androidaps.logging.AAPSLogger;
|
||||||
import info.nightscout.androidaps.plugins.bus.RxBusWrapper;
|
import info.nightscout.androidaps.plugins.bus.RxBusWrapper;
|
||||||
|
import info.nightscout.androidaps.plugins.general.overview.events.EventDismissNotification;
|
||||||
|
import info.nightscout.androidaps.plugins.general.overview.notifications.Notification;
|
||||||
import info.nightscout.androidaps.plugins.pump.omnipod.definition.OmnipodStorageKeys;
|
import info.nightscout.androidaps.plugins.pump.omnipod.definition.OmnipodStorageKeys;
|
||||||
import info.nightscout.androidaps.plugins.pump.omnipod.driver.manager.PodStateManager;
|
import info.nightscout.androidaps.plugins.pump.omnipod.driver.manager.PodStateManager;
|
||||||
import info.nightscout.androidaps.plugins.pump.omnipod.event.EventOmnipodActiveAlertsChanged;
|
import info.nightscout.androidaps.plugins.pump.omnipod.event.EventOmnipodActiveAlertsChanged;
|
||||||
|
@ -50,4 +52,8 @@ public class AapsPodStateManager extends PodStateManager {
|
||||||
@Override protected void onFaultEventChanged() {
|
@Override protected void onFaultEventChanged() {
|
||||||
rxBus.send(new EventOmnipodFaultEventChanged());
|
rxBus.send(new EventOmnipodFaultEventChanged());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override protected void onUpdatedFromResponse() {
|
||||||
|
rxBus.send(new EventDismissNotification(Notification.OMNIPOD_STARTUP_STATUS_REFRESH_FAILED));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue