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;
|
2016-07-18 12:02:33 +02:00
|
|
|
import android.content.ComponentName;
|
2016-07-07 00:56:31 +02:00
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
2016-07-18 12:02:33 +02:00
|
|
|
import android.content.ServiceConnection;
|
|
|
|
import android.os.IBinder;
|
2016-07-07 00:56:31 +02:00
|
|
|
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 10:34:20 +02:00
|
|
|
import info.nightscout.androidaps.Config;
|
2016-07-07 00:56:31 +02:00
|
|
|
import info.nightscout.androidaps.Constants;
|
2016-07-08 13:41:53 +02:00
|
|
|
import info.nightscout.androidaps.MainActivity;
|
2016-07-18 12:02:33 +02:00
|
|
|
import info.nightscout.androidaps.MainApp;
|
2016-07-11 14:04:57 +02:00
|
|
|
import info.nightscout.androidaps.interfaces.PluginBase;
|
2016-07-08 13:41:53 +02:00
|
|
|
import info.nightscout.androidaps.plugins.DanaR.DanaRFragment;
|
2016-07-18 12:02:33 +02:00
|
|
|
import info.nightscout.androidaps.plugins.DanaR.Services.ExecutionService;
|
|
|
|
import info.nightscout.utils.ToastUtils;
|
2016-07-07 00:56:31 +02:00
|
|
|
|
|
|
|
public class KeepAliveReceiver extends BroadcastReceiver {
|
|
|
|
private static Logger log = LoggerFactory.getLogger(KeepAliveReceiver.class);
|
|
|
|
|
|
|
|
@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();
|
|
|
|
|
|
|
|
log.debug("KeepAlive received");
|
2016-07-18 20:19:55 +02:00
|
|
|
final DanaRFragment danaRFragment = (DanaRFragment) MainApp.getSpecificPlugin(DanaRFragment.class);
|
|
|
|
if (Config.DANAR && danaRFragment.isEnabled(PluginBase.PUMP)) {
|
2016-08-02 15:43:21 +02:00
|
|
|
if (danaRFragment.getDanaRPump().lastConnection.getTime() + 30 * 60 * 1000L < new Date().getTime() && !danaRFragment.isConnected() && !danaRFragment.isConnecting()) {
|
|
|
|
Thread t = new Thread(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
danaRFragment.doConnect("KeepAlive"); // TODO: only if if last conn > 30 min
|
|
|
|
}
|
|
|
|
});
|
|
|
|
t.start();
|
|
|
|
}
|
2016-07-07 10:34:20 +02:00
|
|
|
}
|
2016-07-07 00:56:31 +02:00
|
|
|
|
|
|
|
wl.release();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setAlarm(Context context) {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
public 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);
|
|
|
|
}
|
|
|
|
}
|