Java Code Examples for com.eveningoutpost.dexdrip.Models.Sensor#InitDb
The following examples show how to use
com.eveningoutpost.dexdrip.Models.Sensor#InitDb .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ListenerService.java From xDrip with GNU General Public License v3.0 | 6 votes |
private boolean resetDataToLatest(DataMap dataMap, Context context) {//KS if (dataMap != null) { Double dmTimestamp = dataMap.getDouble("timestamp"); Log.d(TAG, "resetDataToLatest dataMap.datetime=" + JoH.dateTimeText(dmTimestamp.longValue()) + " dataMap.sgvDouble=" + dataMap.getDouble("sgvDouble")); // todo ratelimit Sensor.InitDb(context);//ensure database has already been initialized final BgReading last = BgReading.last(); if (last != null) { long bgTimestamp = last.timestamp; Log.d(TAG, "resetDataToLatest last.timestamp=" + JoH.dateTimeText(bgTimestamp) + " last.calculated_value=" + last.calculated_value); if (bgTimestamp > dmTimestamp) { dataMap(dataMap, last, mPrefs, new com.eveningoutpost.dexdrip.UtilityModels.BgGraphBuilder(context)); return true; } } } return false; }
Example 2
Source File: ListenerService.java From xDrip with GNU General Public License v3.0 | 6 votes |
private void syncSensorData(DataMap dataMap, Context context) {//KS Log.d(TAG, "syncSensorData"); if (dataMap != null) { String uuid = dataMap.getString("uuid"); Log.d(TAG, "syncSensorData add Sensor for uuid=" + uuid); long started_at = dataMap.getLong("started_at"); Integer latest_battery_level = dataMap.getInt("latest_battery_level"); String sensor_location = dataMap.getString("sensor_location"); Sensor.InitDb(context);//ensure database has already been initialized if (uuid != null && !uuid.isEmpty()) { Log.d(TAG, "syncSensorData add Sensor for uuid=" + uuid + " timestamp=" + started_at + " timeString=" + JoH.dateTimeText(started_at)); Sensor sensor = Sensor.getByUuid(uuid); if (sensor == null) { Log.d(TAG, "syncSensorData createUpdate new Sensor..."); Sensor.createUpdate(started_at, 0, latest_battery_level, sensor_location, uuid); Sensor newsensor = Sensor.currentSensor(); if (newsensor != null) { Log.d(TAG, "syncSensorData createUpdate Sensor with uuid=" + uuid + " started at=" + started_at); } else Log.d(TAG, "syncSensorData Failed to createUpdate new Sensor for uuid=" + uuid); } else Log.d(TAG, "syncSensorData Sensor already exists with uuid=" + uuid); } } }
Example 3
Source File: ListenerService.java From xDrip-plus with GNU General Public License v3.0 | 6 votes |
private void syncSensorData(DataMap dataMap, Context context) {//KS Log.d(TAG, "syncSensorData"); if (dataMap != null) { String uuid = dataMap.getString("uuid"); Log.d(TAG, "syncSensorData add Sensor for uuid=" + uuid); long started_at = dataMap.getLong("started_at"); Integer latest_battery_level = dataMap.getInt("latest_battery_level"); String sensor_location = dataMap.getString("sensor_location"); Sensor.InitDb(context);//ensure database has already been initialized if (uuid != null && !uuid.isEmpty()) { Log.d(TAG, "syncSensorData add Sensor for uuid=" + uuid + " timestamp=" + started_at + " timeString=" + JoH.dateTimeText(started_at)); Sensor sensor = Sensor.getByUuid(uuid); if (sensor == null) { Log.d(TAG, "syncSensorData createUpdate new Sensor..."); Sensor.createUpdate(started_at, 0, latest_battery_level, sensor_location, uuid); Sensor newsensor = Sensor.currentSensor(); if (newsensor != null) { Log.d(TAG, "syncSensorData createUpdate Sensor with uuid=" + uuid + " started at=" + started_at); } else Log.d(TAG, "syncSensorData Failed to createUpdate new Sensor for uuid=" + uuid); } else Log.d(TAG, "syncSensorData Sensor already exists with uuid=" + uuid); } } }
Example 4
Source File: ListenerService.java From xDrip-plus with GNU General Public License v3.0 | 6 votes |
private boolean resetDataToLatest(DataMap dataMap, Context context) {//KS if (dataMap != null) { Double dmTimestamp = dataMap.getDouble("timestamp"); Log.d(TAG, "resetDataToLatest dataMap.datetime=" + JoH.dateTimeText(dmTimestamp.longValue()) + " dataMap.sgvDouble=" + dataMap.getDouble("sgvDouble")); // todo ratelimit Sensor.InitDb(context);//ensure database has already been initialized final BgReading last = BgReading.last(); if (last != null) { long bgTimestamp = last.timestamp; Log.d(TAG, "resetDataToLatest last.timestamp=" + JoH.dateTimeText(bgTimestamp) + " last.calculated_value=" + last.calculated_value); if (bgTimestamp > dmTimestamp) { dataMap(dataMap, last, mPrefs, new com.eveningoutpost.dexdrip.UtilityModels.BgGraphBuilder(context)); return true; } } } return false; }
Example 5
Source File: ListenerService.java From xDrip with GNU General Public License v3.0 | 5 votes |
@Override public void onCreate() { Log.d(TAG, "onCreate entered"); Context context = getApplicationContext(); Home.setAppContext(context); xdrip.checkAppContext(context); Sensor.InitDb(context); mPrefs = PreferenceManager.getDefaultSharedPreferences(context); listenForChangeInSettings(); setupStepSensor(); super.onCreate(); }
Example 6
Source File: ListenerService.java From xDrip-plus with GNU General Public License v3.0 | 5 votes |
private void syncActiveBtDeviceData(DataMap dataMap, Context context) {//KS Log.d(TAG, "syncActiveBtDeviceData"); if (dataMap != null) { String name = dataMap.getString("name", ""); String address = dataMap.getString("address", ""); Boolean connected = dataMap.getBoolean("connected", false); Log.d(TAG, "syncActiveBtDeviceData add ActiveBluetoothDevice for name=" + name + " address=" + address + " connected=" + connected); Sensor.InitDb(context);//ensure database has already been initialized if (name != null && !name.isEmpty() && address != null && !address.isEmpty()) { final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getApplicationContext()); synchronized (ActiveBluetoothDevice.table_lock) { ActiveBluetoothDevice btDevice = new Select().from(ActiveBluetoothDevice.class) .orderBy("_ID desc") .executeSingle(); prefs.edit().putString("last_connected_device_address", address).apply(); if (btDevice == null) { ActiveBluetoothDevice newBtDevice = new ActiveBluetoothDevice(); newBtDevice.name = name; newBtDevice.address = address; newBtDevice.connected = connected; newBtDevice.save(); } else { btDevice.name = name; btDevice.address = address; btDevice.connected = connected; btDevice.save(); } } } } }
Example 7
Source File: ListenerService.java From xDrip-plus with GNU General Public License v3.0 | 5 votes |
@Override public void onCreate() { Log.d(TAG, "onCreate entered"); Context context = getApplicationContext(); Home.setAppContext(context); xdrip.checkAppContext(context); Sensor.InitDb(context); mPrefs = PreferenceManager.getDefaultSharedPreferences(context); listenForChangeInSettings(); setupStepSensor(); super.onCreate(); }
Example 8
Source File: ListenerService.java From xDrip-plus with GNU General Public License v3.0 | 5 votes |
DataRequester(Context context, String thispath, byte[] thispayload) { path = thispath; payload = thispayload; if (JoH.quietratelimit("db-init",10)) { Sensor.InitDb(context);//ensure database has already been initialized } Log.d(TAG, "DataRequester DataRequester: " + thispath + " lastRequest:" + JoH.dateTimeText(lastRequest)); }
Example 9
Source File: ListenerService.java From xDrip with GNU General Public License v3.0 | 5 votes |
private void syncActiveBtDeviceData(DataMap dataMap, Context context) {//KS Log.d(TAG, "syncActiveBtDeviceData"); if (dataMap != null) { String name = dataMap.getString("name", ""); String address = dataMap.getString("address", ""); Boolean connected = dataMap.getBoolean("connected", false); Log.d(TAG, "syncActiveBtDeviceData add ActiveBluetoothDevice for name=" + name + " address=" + address + " connected=" + connected); Sensor.InitDb(context);//ensure database has already been initialized if (name != null && !name.isEmpty() && address != null && !address.isEmpty()) { final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getApplicationContext()); synchronized (ActiveBluetoothDevice.table_lock) { ActiveBluetoothDevice btDevice = new Select().from(ActiveBluetoothDevice.class) .orderBy("_ID desc") .executeSingle(); prefs.edit().putString("last_connected_device_address", address).apply(); if (btDevice == null) { ActiveBluetoothDevice newBtDevice = new ActiveBluetoothDevice(); newBtDevice.name = name; newBtDevice.address = address; newBtDevice.connected = connected; newBtDevice.save(); } else { btDevice.name = name; btDevice.address = address; btDevice.connected = connected; btDevice.save(); } } } } }
Example 10
Source File: ListenerService.java From xDrip with GNU General Public License v3.0 | 5 votes |
DataRequester(Context context, String thispath, byte[] thispayload) { path = thispath; payload = thispayload; if (JoH.quietratelimit("db-init",10)) { Sensor.InitDb(context);//ensure database has already been initialized } Log.d(TAG, "DataRequester DataRequester: " + thispath + " lastRequest:" + JoH.dateTimeText(lastRequest)); }
Example 11
Source File: ListenerService.java From xDrip with GNU General Public License v3.0 | 4 votes |
private synchronized void syncBloodTestData(DataMap dataMap, Context context) {//KS Log.d(TAG, "syncBloodTestData"); boolean changed = false; ArrayList<DataMap> entries = dataMap.getDataMapArrayList("entries"); if (entries != null) { Gson gson = new GsonBuilder() .excludeFieldsWithoutExposeAnnotation() .registerTypeAdapter(Date.class, new DateTypeAdapter()) .serializeSpecialFloatingPointValues() .create(); Log.d(TAG, "syncBloodTestData add BloodTest Table entries count=" + entries.size()); Sensor.InitDb(context);//ensure database has already been initialized for (DataMap entry : entries) { if (entry != null) { String record = entry.getString("data"); if (record != null) { BloodTest data = gson.fromJson(record, BloodTest.class); BloodTest exists = BloodTest.byUUID(data.uuid); if (exists != null) { Log.d(TAG, "syncBloodTestData save existing BloodTest for uuid=" + data.uuid + " timestamp=" + data.timestamp + " timeString=" + JoH.dateTimeText(data.timestamp) + " mgdl=" + data.mgdl + " state=" + data.state); if (exists.mgdl != data.mgdl || exists.state != data.state || exists.timestamp != data.timestamp) {//state indicates if deleted changed = true; } exists.mgdl = data.mgdl; exists.created_timestamp = data.created_timestamp; exists.source = data.source; exists.state = data.state; exists.timestamp = data.timestamp; exists.save(); } else { changed = true; data.save(); Log.d(TAG, "syncBloodTestData create new BloodTest for uuid=" + data.uuid + " timestamp=" + data.timestamp + " timeString=" + JoH.dateTimeText(data.timestamp) + " mgdl=" + data.mgdl + " state=" + data.state); } } } } if (changed) { showTreatments(context, "bts"); } } }
Example 12
Source File: xdrip.java From xDrip with GNU General Public License v3.0 | 4 votes |
private static void updateMigrations() { Sensor.InitDb(context);//ensure database has already been initialized BgReading.updateDB(); LibreBlock.updateDB(); LibreData.updateDB(); }
Example 13
Source File: ListenerService.java From xDrip with GNU General Public License v3.0 | 4 votes |
private synchronized void syncTreatmentsData(DataMap dataMap, Context context) { Log.d(TAG, "syncTreatmentsData"); boolean changed = false; String action = dataMap.getString("action"); if (action.equals("delete")) { Log.d(TAG, "syncTreatmentsData Delete Treatments"); deleteTreatment(dataMap); showTreatments(context, "treats"); } else { ArrayList<DataMap> entries = dataMap.getDataMapArrayList("entries"); if (entries != null) { Gson gson = new GsonBuilder() .excludeFieldsWithoutExposeAnnotation() .registerTypeAdapter(Date.class, new DateTypeAdapter()) .serializeSpecialFloatingPointValues() .create(); Log.d(TAG, "syncTreatmentsData add Treatments Table entries count=" + entries.size()); Sensor.InitDb(context);//ensure database has already been initialized for (DataMap entry : entries) { if (entry != null) { String record = entry.getString("data"); if (record != null) { Treatments data = gson.fromJson(record, Treatments.class); Treatments exists = Treatments.byuuid(data.uuid); if (exists != null) { Log.d(TAG, "syncTreatmentsData save existing Treatments for action insert uuid=" + data.uuid + " timestamp=" + data.timestamp + " timeString=" + JoH.dateTimeText(data.timestamp) + " carbs=" + data.carbs + " insulin=" + data.insulin + " exists.systime=" + JoH.dateTimeText(exists.systimestamp)); if (exists.timestamp != data.timestamp) {//currently only tracking timestamp on watch changed = true; } exists.enteredBy = data.enteredBy; exists.eventType = data.eventType; exists.insulin = data.insulin; exists.carbs = data.carbs; exists.created_at = data.created_at; exists.notes = data.notes; exists.timestamp = data.timestamp; exists.systimestamp = exists.systimestamp > 0 ? exists.systimestamp : data.timestamp < last_send_previous_treatments ? data.timestamp : last_send_previous_treatments > 0 ? last_send_previous_treatments - 1 : JoH.tsl(); exists.save(); } else { changed = true; data.systimestamp = data.timestamp < last_send_previous_treatments ? data.timestamp : last_send_previous_treatments > 0 ? last_send_previous_treatments - 1 : JoH.tsl(); data.save(); Log.d(TAG, "syncTreatmentsData create new treatment for action insert uuid=" + data.uuid + " timestamp=" + data.timestamp + " timeString=" + JoH.dateTimeText(data.timestamp) + " carbs=" + data.carbs + " insulin=" + data.insulin + " systime=" + JoH.dateTimeText(data.systimestamp)); } } } } if (changed) { showTreatments(context, "treats"); } } } }
Example 14
Source File: ListenerService.java From xDrip with GNU General Public License v3.0 | 4 votes |
private synchronized void syncCalibrationData(DataMap dataMap, Context context) {//KS Log.d(TAG, "syncCalibrationData"); boolean changed = false; ArrayList<DataMap> entries = dataMap.getDataMapArrayList("entries"); if (entries != null) { Gson gson = new GsonBuilder() .excludeFieldsWithoutExposeAnnotation() .registerTypeAdapter(Date.class, new DateTypeAdapter()) .serializeSpecialFloatingPointValues() .create(); Log.d(TAG, "syncCalibrationData add Calibration Table entries count=" + entries.size()); Sensor.InitDb(context);//ensure database has already been initialized Sensor sensor = Sensor.currentSensor(); if (sensor != null) { for (DataMap entry : entries) { if (entry != null) { String calibration = entry.getString("bgs"); // bgs should be refactored to avoid confusion if (calibration != null) { Calibration bgData = gson.fromJson(calibration, Calibration.class); Calibration exists = Calibration.findByUuid(bgData.uuid); bgData.sensor = sensor; if (exists != null) { Log.d(TAG, "syncCalibrationData Calibration exists for uuid=" + bgData.uuid + " bg=" + bgData.bg + " timestamp=" + bgData.timestamp + " timeString=" + JoH.dateTimeText(bgData.timestamp)); if (exists.slope != bgData.slope || exists.slope_confidence != bgData.slope_confidence || exists.timestamp != bgData.timestamp || exists.bg != bgData.bg) {//slope* indicates if shown on graph changed = true; } exists.adjusted_raw_value = bgData.adjusted_raw_value; exists.bg = bgData.bg; exists.check_in = bgData.check_in; exists.distance_from_estimate = bgData.distance_from_estimate; exists.estimate_bg_at_time_of_calibration = bgData.estimate_bg_at_time_of_calibration; exists.estimate_raw_at_time_of_calibration = bgData.estimate_raw_at_time_of_calibration; exists.first_decay = bgData.first_decay; exists.first_intercept = bgData.first_intercept; exists.first_scale = bgData.first_scale; exists.first_slope = bgData.first_slope; exists.intercept = bgData.intercept; exists.possible_bad = bgData.possible_bad; exists.raw_timestamp = bgData.raw_timestamp; exists.raw_value = bgData.raw_value; exists.second_decay = bgData.second_decay; exists.second_intercept = bgData.second_intercept; exists.second_scale = bgData.second_scale; exists.second_slope = bgData.second_slope; exists.sensor = sensor; exists.sensor_age_at_time_of_estimation = bgData.sensor_age_at_time_of_estimation; exists.sensor_confidence = bgData.sensor_confidence; exists.sensor_uuid = bgData.sensor_uuid; exists.slope = bgData.slope; exists.slope_confidence = bgData.slope_confidence; exists.timestamp = bgData.timestamp; exists.save(); } else { changed = true; bgData.save(); //final boolean adjustPast = mPrefs.getBoolean("rewrite_history", true); Log.d(TAG, "syncCalibrationData Calibration does not exist for uuid=" + bgData.uuid + " timestamp=" + bgData.timestamp + " timeString=" + JoH.dateTimeText(bgData.timestamp)); //Calibration.adjustRecentBgReadings(adjustPast ? 30 : 2); } exists = Calibration.findByUuid(bgData.uuid); if (exists != null) Log.d(TAG, "syncCalibrationData Calibration GSON saved BG: " + exists.toS()); else Log.d(TAG, "syncCalibrationData Calibration GSON NOT saved"); } } } } else { Log.d(TAG, "syncCalibrationData No Active Sensor!! Request WEARABLE_INITDB_PATH"); sendData(WEARABLE_INITDB_PATH, null); } if (changed) { showTreatments(context, "cals"); } } }
Example 15
Source File: ListenerService.java From xDrip with GNU General Public License v3.0 | 4 votes |
private void syncAlertTypeData(DataMap dataMap, Context context) {//KS Log.d(TAG, "syncAlertTypeData"); ArrayList<DataMap> entries = dataMap.getDataMapArrayList("entries"); if (entries != null) { Gson gson = new GsonBuilder() .excludeFieldsWithoutExposeAnnotation() .registerTypeAdapter(Date.class, new DateTypeAdapter()) .serializeSpecialFloatingPointValues() .create(); Log.d(TAG, "syncAlertTypeData add AlertType Table entries count=" + entries.size()); Sensor.InitDb(context);//ensure database has already been initialized AlertType.remove_all(); for (DataMap entry : entries) { if (entry != null) { String alertrecord = entry.getString("alert"); if (alertrecord != null) { AlertType data = gson.fromJson(alertrecord, AlertType.class); AlertType exists = AlertType.get_alert(data.uuid); if (exists != null) { Log.d(TAG, "syncAlertTypeData AlertType exists for uuid=" + data.uuid + " name=" + data.name); exists.name = data.name; exists.active = data.active; exists.volume = data.volume; exists.vibrate = data.vibrate; exists.light = data.light; exists.override_silent_mode = data.override_silent_mode; exists.predictive = data.predictive; exists.time_until_threshold_crossed = data.time_until_threshold_crossed; exists.above= data.above; exists.threshold = data.threshold; exists.all_day = data.all_day; exists.start_time_minutes = data.start_time_minutes; exists.end_time_minutes = data.end_time_minutes; exists.minutes_between = data.minutes_between; exists.default_snooze = data.default_snooze; exists.text = data.text; exists.mp3_file = data.mp3_file; exists.save(); } else { data.save(); Log.d(TAG, "syncAlertTypeData AlertType does not exist for uuid=" + data.uuid); } exists = AlertType.get_alert(data.uuid); if (exists != null) Log.d(TAG, "syncAlertTypeData AlertType GSON saved BG: " + exists.toS()); else Log.d(TAG, "syncAlertTypeData AlertType GSON NOT saved"); } } } } }
Example 16
Source File: ListenerService.java From xDrip-plus with GNU General Public License v3.0 | 4 votes |
private void syncAlertTypeData(DataMap dataMap, Context context) {//KS Log.d(TAG, "syncAlertTypeData"); ArrayList<DataMap> entries = dataMap.getDataMapArrayList("entries"); if (entries != null) { Gson gson = new GsonBuilder() .excludeFieldsWithoutExposeAnnotation() .registerTypeAdapter(Date.class, new DateTypeAdapter()) .serializeSpecialFloatingPointValues() .create(); Log.d(TAG, "syncAlertTypeData add AlertType Table entries count=" + entries.size()); Sensor.InitDb(context);//ensure database has already been initialized AlertType.remove_all(); for (DataMap entry : entries) { if (entry != null) { String alertrecord = entry.getString("alert"); if (alertrecord != null) { AlertType data = gson.fromJson(alertrecord, AlertType.class); AlertType exists = AlertType.get_alert(data.uuid); if (exists != null) { Log.d(TAG, "syncAlertTypeData AlertType exists for uuid=" + data.uuid + " name=" + data.name); exists.name = data.name; exists.active = data.active; exists.volume = data.volume; exists.vibrate = data.vibrate; exists.light = data.light; exists.override_silent_mode = data.override_silent_mode; exists.predictive = data.predictive; exists.time_until_threshold_crossed = data.time_until_threshold_crossed; exists.above= data.above; exists.threshold = data.threshold; exists.all_day = data.all_day; exists.start_time_minutes = data.start_time_minutes; exists.end_time_minutes = data.end_time_minutes; exists.minutes_between = data.minutes_between; exists.default_snooze = data.default_snooze; exists.text = data.text; exists.mp3_file = data.mp3_file; exists.save(); } else { data.save(); Log.d(TAG, "syncAlertTypeData AlertType does not exist for uuid=" + data.uuid); } exists = AlertType.get_alert(data.uuid); if (exists != null) Log.d(TAG, "syncAlertTypeData AlertType GSON saved BG: " + exists.toS()); else Log.d(TAG, "syncAlertTypeData AlertType GSON NOT saved"); } } } } }
Example 17
Source File: ListenerService.java From xDrip-plus with GNU General Public License v3.0 | 4 votes |
private synchronized void syncCalibrationData(DataMap dataMap, Context context) {//KS Log.d(TAG, "syncCalibrationData"); boolean changed = false; ArrayList<DataMap> entries = dataMap.getDataMapArrayList("entries"); if (entries != null) { Gson gson = new GsonBuilder() .excludeFieldsWithoutExposeAnnotation() .registerTypeAdapter(Date.class, new DateTypeAdapter()) .serializeSpecialFloatingPointValues() .create(); Log.d(TAG, "syncCalibrationData add Calibration Table entries count=" + entries.size()); Sensor.InitDb(context);//ensure database has already been initialized Sensor sensor = Sensor.currentSensor(); if (sensor != null) { for (DataMap entry : entries) { if (entry != null) { String calibration = entry.getString("bgs"); // bgs should be refactored to avoid confusion if (calibration != null) { Calibration bgData = gson.fromJson(calibration, Calibration.class); Calibration exists = Calibration.findByUuid(bgData.uuid); bgData.sensor = sensor; if (exists != null) { Log.d(TAG, "syncCalibrationData Calibration exists for uuid=" + bgData.uuid + " bg=" + bgData.bg + " timestamp=" + bgData.timestamp + " timeString=" + JoH.dateTimeText(bgData.timestamp)); if (exists.slope != bgData.slope || exists.slope_confidence != bgData.slope_confidence || exists.timestamp != bgData.timestamp || exists.bg != bgData.bg) {//slope* indicates if shown on graph changed = true; } exists.adjusted_raw_value = bgData.adjusted_raw_value; exists.bg = bgData.bg; exists.check_in = bgData.check_in; exists.distance_from_estimate = bgData.distance_from_estimate; exists.estimate_bg_at_time_of_calibration = bgData.estimate_bg_at_time_of_calibration; exists.estimate_raw_at_time_of_calibration = bgData.estimate_raw_at_time_of_calibration; exists.first_decay = bgData.first_decay; exists.first_intercept = bgData.first_intercept; exists.first_scale = bgData.first_scale; exists.first_slope = bgData.first_slope; exists.intercept = bgData.intercept; exists.possible_bad = bgData.possible_bad; exists.raw_timestamp = bgData.raw_timestamp; exists.raw_value = bgData.raw_value; exists.second_decay = bgData.second_decay; exists.second_intercept = bgData.second_intercept; exists.second_scale = bgData.second_scale; exists.second_slope = bgData.second_slope; exists.sensor = sensor; exists.sensor_age_at_time_of_estimation = bgData.sensor_age_at_time_of_estimation; exists.sensor_confidence = bgData.sensor_confidence; exists.sensor_uuid = bgData.sensor_uuid; exists.slope = bgData.slope; exists.slope_confidence = bgData.slope_confidence; exists.timestamp = bgData.timestamp; exists.save(); } else { changed = true; bgData.save(); //final boolean adjustPast = mPrefs.getBoolean("rewrite_history", true); Log.d(TAG, "syncCalibrationData Calibration does not exist for uuid=" + bgData.uuid + " timestamp=" + bgData.timestamp + " timeString=" + JoH.dateTimeText(bgData.timestamp)); //Calibration.adjustRecentBgReadings(adjustPast ? 30 : 2); } exists = Calibration.findByUuid(bgData.uuid); if (exists != null) Log.d(TAG, "syncCalibrationData Calibration GSON saved BG: " + exists.toS()); else Log.d(TAG, "syncCalibrationData Calibration GSON NOT saved"); } } } } else { Log.d(TAG, "syncCalibrationData No Active Sensor!! Request WEARABLE_INITDB_PATH"); sendData(WEARABLE_INITDB_PATH, null); } if (changed) { showTreatments(context, "cals"); } } }
Example 18
Source File: ListenerService.java From xDrip-plus with GNU General Public License v3.0 | 4 votes |
private synchronized void syncTreatmentsData(DataMap dataMap, Context context) { Log.d(TAG, "syncTreatmentsData"); boolean changed = false; String action = dataMap.getString("action"); if (action.equals("delete")) { Log.d(TAG, "syncTreatmentsData Delete Treatments"); deleteTreatment(dataMap); showTreatments(context, "treats"); } else { ArrayList<DataMap> entries = dataMap.getDataMapArrayList("entries"); if (entries != null) { Gson gson = new GsonBuilder() .excludeFieldsWithoutExposeAnnotation() .registerTypeAdapter(Date.class, new DateTypeAdapter()) .serializeSpecialFloatingPointValues() .create(); Log.d(TAG, "syncTreatmentsData add Treatments Table entries count=" + entries.size()); Sensor.InitDb(context);//ensure database has already been initialized for (DataMap entry : entries) { if (entry != null) { String record = entry.getString("data"); if (record != null) { Treatments data = gson.fromJson(record, Treatments.class); Treatments exists = Treatments.byuuid(data.uuid); if (exists != null) { Log.d(TAG, "syncTreatmentsData save existing Treatments for action insert uuid=" + data.uuid + " timestamp=" + data.timestamp + " timeString=" + JoH.dateTimeText(data.timestamp) + " carbs=" + data.carbs + " insulin=" + data.insulin + " exists.systime=" + JoH.dateTimeText(exists.systimestamp)); if (exists.timestamp != data.timestamp) {//currently only tracking timestamp on watch changed = true; } exists.enteredBy = data.enteredBy; exists.eventType = data.eventType; exists.insulin = data.insulin; exists.carbs = data.carbs; exists.created_at = data.created_at; exists.notes = data.notes; exists.timestamp = data.timestamp; exists.systimestamp = exists.systimestamp > 0 ? exists.systimestamp : data.timestamp < last_send_previous_treatments ? data.timestamp : last_send_previous_treatments > 0 ? last_send_previous_treatments - 1 : JoH.tsl(); exists.save(); } else { changed = true; data.systimestamp = data.timestamp < last_send_previous_treatments ? data.timestamp : last_send_previous_treatments > 0 ? last_send_previous_treatments - 1 : JoH.tsl(); data.save(); Log.d(TAG, "syncTreatmentsData create new treatment for action insert uuid=" + data.uuid + " timestamp=" + data.timestamp + " timeString=" + JoH.dateTimeText(data.timestamp) + " carbs=" + data.carbs + " insulin=" + data.insulin + " systime=" + JoH.dateTimeText(data.systimestamp)); } } } } if (changed) { showTreatments(context, "treats"); } } } }
Example 19
Source File: ListenerService.java From xDrip-plus with GNU General Public License v3.0 | 4 votes |
private synchronized void syncBloodTestData(DataMap dataMap, Context context) {//KS Log.d(TAG, "syncBloodTestData"); boolean changed = false; ArrayList<DataMap> entries = dataMap.getDataMapArrayList("entries"); if (entries != null) { Gson gson = new GsonBuilder() .excludeFieldsWithoutExposeAnnotation() .registerTypeAdapter(Date.class, new DateTypeAdapter()) .serializeSpecialFloatingPointValues() .create(); Log.d(TAG, "syncBloodTestData add BloodTest Table entries count=" + entries.size()); Sensor.InitDb(context);//ensure database has already been initialized for (DataMap entry : entries) { if (entry != null) { String record = entry.getString("data"); if (record != null) { BloodTest data = gson.fromJson(record, BloodTest.class); BloodTest exists = BloodTest.byUUID(data.uuid); if (exists != null) { Log.d(TAG, "syncBloodTestData save existing BloodTest for uuid=" + data.uuid + " timestamp=" + data.timestamp + " timeString=" + JoH.dateTimeText(data.timestamp) + " mgdl=" + data.mgdl + " state=" + data.state); if (exists.mgdl != data.mgdl || exists.state != data.state || exists.timestamp != data.timestamp) {//state indicates if deleted changed = true; } exists.mgdl = data.mgdl; exists.created_timestamp = data.created_timestamp; exists.source = data.source; exists.state = data.state; exists.timestamp = data.timestamp; exists.save(); } else { changed = true; data.save(); Log.d(TAG, "syncBloodTestData create new BloodTest for uuid=" + data.uuid + " timestamp=" + data.timestamp + " timeString=" + JoH.dateTimeText(data.timestamp) + " mgdl=" + data.mgdl + " state=" + data.state); } } } } if (changed) { showTreatments(context, "bts"); } } }
Example 20
Source File: xdrip.java From xDrip-plus with GNU General Public License v3.0 | 4 votes |
private static void updateMigrations() { Sensor.InitDb(context);//ensure database has already been initialized BgReading.updateDB(); LibreBlock.updateDB(); LibreData.updateDB(); }