AndroidAPS/app/src/main/java/info/nightscout/androidaps/MainApp.java

228 lines
8.3 KiB
Java
Raw Normal View History

2016-06-05 01:40:35 +02:00
package info.nightscout.androidaps;
2020-04-02 18:48:37 +02:00
import android.bluetooth.BluetoothDevice;
2020-01-03 14:30:39 +01:00
import android.content.Intent;
2017-07-24 01:50:27 +02:00
import android.content.IntentFilter;
import android.content.res.Resources;
import android.net.ConnectivityManager;
import android.net.wifi.WifiManager;
2019-07-05 01:22:45 +02:00
2019-12-24 16:07:17 +01:00
import androidx.annotation.StringRes;
2019-05-16 13:57:37 +02:00
import androidx.localbroadcastmanager.content.LocalBroadcastManager;
2016-06-05 01:40:35 +02:00
2016-06-24 17:48:11 +02:00
import com.crashlytics.android.Crashlytics;
2019-04-05 00:32:26 +02:00
import com.google.firebase.analytics.FirebaseAnalytics;
2016-06-05 01:40:35 +02:00
import com.j256.ormlite.android.apptools.OpenHelperManager;
2017-12-22 02:55:40 +01:00
import net.danlew.android.joda.JodaTimeAndroid;
2019-12-13 13:12:36 +01:00
import org.json.JSONException;
2016-08-05 23:54:03 +02:00
2020-03-25 23:51:04 +01:00
import java.util.List;
2019-12-23 13:27:15 +01:00
import javax.inject.Inject;
2019-12-13 02:12:19 +01:00
import dagger.android.AndroidInjector;
2019-12-21 20:17:08 +01:00
import dagger.android.DaggerApplication;
2020-03-10 18:58:27 +01:00
import dagger.android.HasAndroidInjector;
2019-12-13 13:12:36 +01:00
import info.nightscout.androidaps.data.Profile;
2016-08-05 23:54:03 +02:00
import info.nightscout.androidaps.db.DatabaseHelper;
2019-12-13 02:12:19 +01:00
import info.nightscout.androidaps.dependencyInjection.DaggerAppComponent;
2020-03-25 23:51:04 +01:00
import info.nightscout.androidaps.interfaces.PluginBase;
2019-12-28 01:52:20 +01:00
import info.nightscout.androidaps.logging.AAPSLogger;
import info.nightscout.androidaps.logging.LTag;
2019-02-28 23:16:50 +01:00
import info.nightscout.androidaps.plugins.configBuilder.ConfigBuilderPlugin;
2020-03-16 21:40:29 +01:00
import info.nightscout.androidaps.plugins.configBuilder.PluginStore;
2020-03-16 22:49:34 +01:00
import info.nightscout.androidaps.plugins.configBuilder.ProfileFunction;
2020-01-03 16:29:59 +01:00
import info.nightscout.androidaps.plugins.constraints.versionChecker.VersionCheckerUtils;
2019-02-28 23:16:50 +01:00
import info.nightscout.androidaps.plugins.general.nsclient.NSUpload;
2020-04-02 18:48:37 +02:00
import info.nightscout.androidaps.receivers.BTReceiver;
import info.nightscout.androidaps.receivers.ChargingStateReceiver;
2017-07-24 01:50:27 +02:00
import info.nightscout.androidaps.receivers.DataReceiver;
2016-12-16 02:00:53 +01:00
import info.nightscout.androidaps.receivers.KeepAliveReceiver;
import info.nightscout.androidaps.receivers.NetworkChangeReceiver;
2020-03-31 20:22:32 +02:00
import info.nightscout.androidaps.receivers.ReceiverStatusStore;
import info.nightscout.androidaps.receivers.TimeDateOrTZChangeReceiver;
2018-07-29 15:37:28 +02:00
import info.nightscout.androidaps.services.Intents;
2019-12-13 02:12:19 +01:00
import info.nightscout.androidaps.utils.ActivityMonitor;
2019-02-26 20:38:27 +01:00
import info.nightscout.androidaps.utils.FabricPrivacy;
import info.nightscout.androidaps.utils.LocaleHelper;
2020-01-03 14:30:39 +01:00
import info.nightscout.androidaps.utils.resources.ResourceHelper;
2020-03-16 22:49:34 +01:00
import info.nightscout.androidaps.utils.sharedPreferences.SP;
2016-06-24 17:48:11 +02:00
import io.fabric.sdk.android.Fabric;
2016-06-05 01:40:35 +02:00
2019-12-21 20:17:08 +01:00
public class MainApp extends DaggerApplication {
2016-06-05 01:40:35 +02:00
2019-12-21 20:17:08 +01:00
static MainApp sInstance;
2020-01-02 23:25:29 +01:00
private static Resources sResources;
2016-06-05 01:40:35 +02:00
2020-01-03 14:30:39 +01:00
static FirebaseAnalytics firebaseAnalytics;
2019-04-05 00:32:26 +02:00
2019-12-21 20:17:08 +01:00
static DatabaseHelper sDatabaseHelper = null;
2016-06-05 01:40:35 +02:00
2020-03-16 21:40:29 +01:00
@Inject PluginStore pluginStore;
2020-03-10 18:58:27 +01:00
@Inject public HasAndroidInjector injector;
2019-12-31 09:41:02 +01:00
@Inject AAPSLogger aapsLogger;
2020-03-31 20:22:32 +02:00
@Inject ReceiverStatusStore receiverStatusStore;
2019-12-31 09:41:02 +01:00
@Inject ActivityMonitor activityMonitor;
2020-01-03 14:30:39 +01:00
@Inject FabricPrivacy fabricPrivacy;
@Inject ResourceHelper resourceHelper;
2020-01-03 16:29:59 +01:00
@Inject VersionCheckerUtils versionCheckersUtils;
2020-03-16 22:49:34 +01:00
@Inject SP sp;
@Inject ProfileFunction profileFunction;
2019-12-28 15:00:16 +01:00
@Inject ConfigBuilderPlugin configBuilderPlugin;
2020-01-06 15:22:28 +01:00
@Inject KeepAliveReceiver.KeepAliveManager keepAliveManager;
2020-03-25 23:51:04 +01:00
@Inject List<PluginBase> plugins;
2019-12-23 13:27:15 +01:00
2016-06-05 01:40:35 +02:00
@Override
public void onCreate() {
super.onCreate();
2019-12-13 02:12:19 +01:00
2020-03-16 22:49:34 +01:00
aapsLogger.debug("onCreate");
2018-02-22 13:30:36 +01:00
sInstance = this;
sResources = getResources();
LocaleHelper.INSTANCE.update(this);
2018-03-31 00:36:03 +02:00
sDatabaseHelper = OpenHelperManager.getHelper(sInstance, DatabaseHelper.class);
2018-02-22 13:30:36 +01:00
Thread.setDefaultUncaughtExceptionHandler((thread, ex) -> {
if (ex instanceof InternalError) {
// usually the app trying to spawn a thread while being killed
return;
}
2020-04-01 16:13:08 +02:00
aapsLogger.error("Uncaught exception crashing app", ex);
});
2018-02-22 13:30:36 +01:00
try {
2020-01-03 14:30:39 +01:00
if (fabricPrivacy.fabricEnabled()) {
2018-02-22 13:30:36 +01:00
Fabric.with(this, new Crashlytics());
}
} catch (Exception e) {
2020-03-16 22:49:34 +01:00
aapsLogger.error("Error with Fabric init! " + e);
2018-02-22 13:30:36 +01:00
}
2019-12-31 09:41:02 +01:00
registerActivityLifecycleCallbacks(activityMonitor);
2019-10-15 23:50:09 +02:00
2020-01-03 14:30:39 +01:00
firebaseAnalytics = FirebaseAnalytics.getInstance(this);
firebaseAnalytics.setAnalyticsCollectionEnabled(!Boolean.getBoolean("disableFirebase") && fabricPrivacy.fabricEnabled());
2019-04-05 00:32:26 +02:00
2017-12-22 02:55:40 +01:00
JodaTimeAndroid.init(this);
2018-02-22 13:30:36 +01:00
2020-03-16 22:49:34 +01:00
aapsLogger.debug("Version: " + BuildConfig.VERSION_NAME);
aapsLogger.debug("BuildVersion: " + BuildConfig.BUILDVERSION);
aapsLogger.debug("Remote: " + BuildConfig.REMOTE);
2016-06-05 01:40:35 +02:00
2017-07-24 01:50:27 +02:00
registerLocalBroadcastReceiver();
2019-04-22 14:10:12 +02:00
//trigger here to see the new version on app start after an update
2020-01-03 16:29:59 +01:00
versionCheckersUtils.triggerCheckVersion();
2019-04-22 14:10:12 +02:00
2020-01-10 23:14:58 +01:00
// Register all tabs in app here
2020-03-25 23:51:04 +01:00
pluginStore.setPlugins(plugins);
2020-01-10 23:14:58 +01:00
configBuilderPlugin.initialize();
NSUpload.uploadAppStart();
2017-08-23 13:28:07 +02:00
2020-01-06 15:22:28 +01:00
new Thread(() -> keepAliveManager.setAlarm(this)).start();
2019-12-13 13:12:36 +01:00
doMigrations();
}
2019-12-13 13:12:36 +01:00
private void doMigrations() {
// guarantee that the unreachable threshold is at least 30 and of type String
// Added in 1.57 at 21.01.2018
2020-03-16 22:49:34 +01:00
int unreachable_threshold = sp.getInt(R.string.key_pump_unreachable_threshold, 30);
sp.remove(R.string.key_pump_unreachable_threshold);
2019-12-13 13:12:36 +01:00
if (unreachable_threshold < 30) unreachable_threshold = 30;
2020-03-16 22:49:34 +01:00
sp.putString(R.string.key_pump_unreachable_threshold, Integer.toString(unreachable_threshold));
2019-12-13 13:12:36 +01:00
// 2.5 -> 2.6
2020-03-16 22:49:34 +01:00
if (!sp.contains(R.string.key_units)) {
2019-12-13 13:12:36 +01:00
String newUnits = Constants.MGDL;
2020-03-16 22:49:34 +01:00
Profile p = profileFunction.getProfile();
2019-12-13 13:12:36 +01:00
if (p != null && p.getData() != null && p.getData().has("units")) {
try {
newUnits = p.getData().getString("units");
} catch (JSONException e) {
2020-03-16 22:49:34 +01:00
aapsLogger.error("Unhandled exception", e);
2019-12-13 13:12:36 +01:00
}
}
2020-03-16 22:49:34 +01:00
sp.putString(R.string.key_units, newUnits);
2019-12-13 13:12:36 +01:00
}
2017-07-24 01:50:27 +02:00
}
2019-12-21 20:17:08 +01:00
@Override
protected AndroidInjector<? extends DaggerApplication> applicationInjector() {
return DaggerAppComponent
.builder()
.application(this)
.build();
}
2017-07-24 01:50:27 +02:00
private void registerLocalBroadcastReceiver() {
2020-03-31 09:48:46 +02:00
IntentFilter filter = new IntentFilter();
filter.addAction(Intents.ACTION_NEW_TREATMENT);
filter.addAction(Intents.ACTION_CHANGED_TREATMENT);
filter.addAction(Intents.ACTION_REMOVED_TREATMENT);
filter.addAction(Intents.ACTION_NEW_SGV);
filter.addAction(Intents.ACTION_NEW_PROFILE);
filter.addAction(Intents.ACTION_NEW_MBG);
filter.addAction(Intents.ACTION_NEW_CAL);
LocalBroadcastManager.getInstance(this).registerReceiver(new DataReceiver(), filter);
filter = new IntentFilter();
filter.addAction(Intent.ACTION_TIME_CHANGED);
filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);
registerReceiver(new TimeDateOrTZChangeReceiver(), filter);
filter = new IntentFilter();
filter.addAction(ConnectivityManager.CONNECTIVITY_ACTION);
filter.addAction(WifiManager.NETWORK_STATE_CHANGED_ACTION);
filter.addAction(WifiManager.WIFI_STATE_CHANGED_ACTION);
registerReceiver(new NetworkChangeReceiver(), filter);
2020-03-31 20:22:32 +02:00
filter = new IntentFilter();
filter.addAction(Intent.ACTION_POWER_CONNECTED);
filter.addAction(Intent.ACTION_POWER_DISCONNECTED);
filter.addAction(Intent.ACTION_BATTERY_CHANGED);
registerReceiver(new ChargingStateReceiver(), filter);
2020-04-02 18:48:37 +02:00
filter = new IntentFilter();
filter.addAction(BluetoothDevice.ACTION_ACL_CONNECTED);
filter.addAction(BluetoothDevice.ACTION_ACL_DISCONNECTED);
registerReceiver(new BTReceiver(), filter);
2016-12-16 02:00:53 +01:00
}
2019-12-30 00:53:44 +01:00
@Deprecated
2019-12-24 16:07:17 +01:00
public static String gs(@StringRes int id) {
2018-01-14 21:42:36 +01:00
return sResources.getString(id);
}
2019-12-30 00:53:44 +01:00
@Deprecated
2019-12-24 16:07:17 +01:00
public static String gs(@StringRes int id, Object... args) {
return sResources.getString(id, args);
}
2019-12-30 00:53:44 +01:00
@Deprecated
2016-06-05 01:40:35 +02:00
public static MainApp instance() {
return sInstance;
}
public static DatabaseHelper getDbHelper() {
2016-07-07 10:34:20 +02:00
return sDatabaseHelper;
2016-06-05 01:40:35 +02:00
}
2020-01-03 14:30:39 +01:00
public FirebaseAnalytics getFirebaseAnalytics() {
return firebaseAnalytics;
2019-04-05 00:32:26 +02:00
}
2016-06-05 01:40:35 +02:00
@Override
public void onTerminate() {
2019-12-28 01:52:20 +01:00
aapsLogger.debug(LTag.CORE, "onTerminate");
2019-12-31 09:41:02 +01:00
unregisterActivityLifecycleCallbacks(activityMonitor);
2020-01-06 15:22:28 +01:00
keepAliveManager.cancelAlarm(this);
2019-12-24 16:07:17 +01:00
super.onTerminate();
2016-06-05 01:40:35 +02:00
}
2016-12-16 02:00:53 +01:00
}