AndroidAPS/app/src/main/java/info/nightscout/androidaps/receivers/KeepAliveReceiver.java

90 lines
3.5 KiB
Java
Raw Normal View History

2016-07-07 00:56:31 +02:00
package info.nightscout.androidaps.receivers;
/**
* Created by mike on 07.07.2016.
*/
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.PowerManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
2016-08-02 15:43:21 +02:00
import java.util.Date;
2016-07-07 00:56:31 +02:00
import info.nightscout.androidaps.Constants;
2016-07-18 12:02:33 +02:00
import info.nightscout.androidaps.MainApp;
2017-01-28 23:45:14 +01:00
import info.nightscout.androidaps.interfaces.PumpInterface;
2017-06-02 10:25:49 +02:00
import info.nightscout.androidaps.data.Profile;
import info.nightscout.androidaps.plugins.ConfigBuilder.ConfigBuilderPlugin;
2017-12-17 01:37:27 +01:00
import info.nightscout.utils.LocalAlertUtils;
2017-12-19 07:16:41 +01:00
import info.nightscout.utils.SP;
2016-07-07 00:56:31 +02:00
public class KeepAliveReceiver extends BroadcastReceiver {
private static Logger log = LoggerFactory.getLogger(KeepAliveReceiver.class);
2017-11-28 21:48:46 +01:00
public static final long STATUS_UPDATE_FREQUENCY = 15 * 60 * 1000L;
public static void cancelAlarm(Context context) {
Intent intent = new Intent(context, KeepAliveReceiver.class);
PendingIntent sender = PendingIntent.getBroadcast(context, 0, intent, 0);
AlarmManager alarmManager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
alarmManager.cancel(sender);
}
2016-07-07 00:56:31 +02:00
@Override
2016-07-07 10:34:20 +02:00
public void onReceive(Context context, Intent rIntent) {
2016-07-07 00:56:31 +02:00
PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "");
wl.acquire();
2017-12-17 01:37:27 +01:00
LocalAlertUtils.shortenSnoozeInterval();
LocalAlertUtils.checkStaleBGAlert();
2017-11-28 21:48:46 +01:00
checkPump();
2017-01-29 11:11:07 +01:00
2017-11-28 21:48:46 +01:00
log.debug("KeepAlive received");
wl.release();
}
private void checkPump() {
final PumpInterface pump = ConfigBuilderPlugin.getActivePump();
2017-06-02 10:25:49 +02:00
final Profile profile = MainApp.getConfigBuilder().getProfile();
if (pump != null && profile != null && profile.getBasal() != null) {
2017-02-19 19:15:14 +01:00
Date lastConnection = pump.lastDataTime();
2017-11-28 21:48:46 +01:00
boolean isStatusOutdated = lastConnection.getTime() + STATUS_UPDATE_FREQUENCY < System.currentTimeMillis();
boolean isBasalOutdated = Math.abs(profile.getBasal() - pump.getBaseBasalRate()) > pump.getPumpDescription().basalStep;
2017-12-17 01:37:27 +01:00
LocalAlertUtils.checkPumpUnreachableAlarm(lastConnection, isStatusOutdated);
2017-01-29 11:11:07 +01:00
if (!pump.isThisProfileSet(profile)) {
2017-11-11 14:05:29 +01:00
MainApp.getConfigBuilder().getCommandQueue().setProfile(profile, null);
} else if (isStatusOutdated && !pump.isBusy()) {
2017-11-11 14:05:29 +01:00
MainApp.getConfigBuilder().getCommandQueue().readStatus("KeepAlive. Status outdated.", null);
} else if (isBasalOutdated && !pump.isBusy()) {
2017-11-11 14:05:29 +01:00
MainApp.getConfigBuilder().getCommandQueue().readStatus("KeepAlive. Basal outdated.", null);
2017-01-29 11:11:07 +01:00
}
}
2016-07-07 00:56:31 +02:00
}
2017-11-28 21:48:46 +01:00
//called by MainApp at first app start
2016-07-07 00:56:31 +02:00
public void setAlarm(Context context) {
2017-11-28 21:48:46 +01:00
2017-12-17 01:37:27 +01:00
LocalAlertUtils.shortenSnoozeInterval();
LocalAlertUtils.presnoozeAlarms();
2017-11-28 21:48:46 +01:00
2016-07-07 00:56:31 +02:00
AlarmManager am = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
Intent i = new Intent(context, KeepAliveReceiver.class);
PendingIntent pi = PendingIntent.getBroadcast(context, 0, i, 0);
try {
pi.send();
} catch (PendingIntent.CanceledException e) {
}
am.cancel(pi);
am.setInexactRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(), Constants.keepAliveMsecs, pi);
}
2017-12-02 10:21:42 +01:00
}