| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- // LoopFollow
- // BGData.swift
- import Foundation
- import UIKit
- extension MainViewController {
- // Dex Share Web Call
- func webLoadDexShare() {
- // Dexcom Share only returns 24 hrs of data as of now
- // Requesting more just for consistency with NS
- let graphHours = 24 * Storage.shared.downloadDays.value
- let count = graphHours * 12
- dexShare?.fetchData(count) { err, result in
- if let error = err {
- LogManager.shared.log(category: .dexcom, message: "Error fetching Dexcom data: \(error.localizedDescription)", limitIdentifier: "Error fetching Dexcom data")
- self.webLoadNSBGData()
- return
- }
- guard let data = result, !data.isEmpty else {
- LogManager.shared.log(category: .dexcom, message: "Received empty data array from Dexcom", limitIdentifier: "Received empty data array from Dexcom")
- self.webLoadNSBGData()
- return
- }
- // If Dex data is old, load from NS instead
- let latestDate = data[0].date
- let now = dateTimeUtils.getNowTimeIntervalUTC()
- if (latestDate + 330) < now, IsNightscoutEnabled() {
- LogManager.shared.log(category: .dexcom, message: "Dexcom data is old, loading from NS instead", limitIdentifier: "Dexcom data is old, loading from NS instead")
- self.webLoadNSBGData()
- return
- }
- // Dexcom Share can return duplicate readings when multiple uploaders
- // write to the same Dexcom account. Dedup before any further use.
- let dedupedData = self.deduplicateBGReadings(data)
- // Supplement with NS if Dex data doesn't cover the full requested window.
- let dexCutoff = dateTimeUtils.getNowTimeIntervalUTC() - Double(graphHours) * 3600
- let dexCoversFull = dedupedData.last.map { $0.date <= dexCutoff } ?? false
- if !dexCoversFull, IsNightscoutEnabled() {
- self.webLoadNSBGData(dexData: dedupedData)
- } else {
- self.ProcessDexBGData(data: dedupedData, sourceName: "Dexcom")
- }
- }
- }
- // NS BG Data Web call
- func webLoadNSBGData(dexData: [ShareGlucoseData] = []) {
- // This kicks it out in the instance where dexcom fails but they aren't using NS &&
- if !IsNightscoutEnabled() {
- Storage.shared.lastBGChecked.value = Date()
- return
- }
- var parameters: [String: String] = [:]
- let date = Calendar.current.date(byAdding: .day, value: -1 * Storage.shared.downloadDays.value, to: Date())!
- parameters["count"] = "\(Storage.shared.downloadDays.value * globalVariables.maxExpectedUploaders * 24 * 60 / 5)"
- parameters["find[date][$gte]"] = "\(Int(date.timeIntervalSince1970 * 1000))"
- // Exclude 'cal' entries
- parameters["find[type][$ne]"] = "cal"
- NightscoutUtils.executeRequest(eventType: .sgv, parameters: parameters) { (result: Result<[ShareGlucoseData], Error>) in
- switch result {
- case let .success(entriesResponse):
- var nsData = entriesResponse
- DispatchQueue.main.async {
- // transform NS data to look like Dex data
- for i in 0 ..< nsData.count {
- // convert the NS timestamp to seconds instead of milliseconds
- nsData[i].date /= 1000
- nsData[i].date.round(FloatingPointRoundingRule.toNearestOrEven)
- }
- var nsData2 = self.deduplicateBGReadings(nsData)
- // merge NS and Dex data if needed; use recent Dex data and older NS data
- var sourceName = "Nightscout"
- if !dexData.isEmpty {
- let oldestDexDate = dexData[dexData.count - 1].date
- var itemsToRemove = 0
- while itemsToRemove < nsData2.count, nsData2[itemsToRemove].date >= oldestDexDate {
- itemsToRemove += 1
- }
- nsData2.removeFirst(itemsToRemove)
- nsData2 = dexData + nsData2
- sourceName = "Dexcom"
- }
- // trigger the processor for the data after downloading.
- self.ProcessDexBGData(data: nsData2, sourceName: sourceName)
- }
- case let .failure(error):
- LogManager.shared.log(category: .nightscout, message: "Failed to fetch bg data: \(error)", limitIdentifier: "Failed to fetch bg data")
- DispatchQueue.main.async {
- TaskScheduler.shared.rescheduleTask(
- id: .fetchBG,
- to: Date().addingTimeInterval(10)
- )
- }
- // if we have Dex data, use it
- if !dexData.isEmpty {
- self.ProcessDexBGData(data: dexData, sourceName: "Dexcom")
- } else {
- Storage.shared.lastBGChecked.value = Date()
- }
- return
- }
- }
- }
- /// Removes consecutive duplicate readings (same SGV within 30 s). Expects newest-first input.
- func deduplicateBGReadings(_ readings: [ShareGlucoseData]) -> [ShareGlucoseData] {
- var result: [ShareGlucoseData] = []
- var lastTime = Double.infinity
- var lastSGV: Int?
- for reading in readings {
- if lastSGV == nil || lastSGV != reading.sgv || lastTime - reading.date >= 30 {
- result.append(reading)
- lastTime = reading.date
- lastSGV = reading.sgv
- }
- }
- return result
- }
- /// Processes incoming BG data.
- func ProcessDexBGData(data: [ShareGlucoseData], sourceName: String) {
- let graphHours = 24 * Storage.shared.downloadDays.value
- guard !data.isEmpty else {
- LogManager.shared.log(category: .nightscout, message: "No bg data received. Skipping processing.", limitIdentifier: "No bg data received. Skipping processing.")
- Storage.shared.lastBGChecked.value = Date()
- return
- }
- let latestReading = data[0]
- let sensorTimestamp = latestReading.date
- let now = dateTimeUtils.getNowTimeIntervalUTC()
- // secondsAgo is how old the newest reading is
- let secondsAgo = now - sensorTimestamp
- // Compute the current sensor schedule offset
- let currentOffset = CycleHelper.cycleOffset(for: sensorTimestamp, interval: 5 * 60)
- if Storage.shared.sensorScheduleOffset.value != currentOffset {
- Storage.shared.sensorScheduleOffset.value = currentOffset
- LogManager.shared.log(category: .nightscout,
- message: "Sensor schedule offset: \(currentOffset) seconds.",
- isDebug: true)
- }
- // Determine the next polling delay.
- var delayToSchedule: Double = 0
- DispatchQueue.main.async {
- // Fallback scheduling for older readings.
- if secondsAgo >= (20 * 60) {
- delayToSchedule = 5 * 60
- LogManager.shared.log(category: .nightscout,
- message: "Reading is very old (\(secondsAgo) sec). Scheduling next fetch in 5 minutes.",
- isDebug: true)
- } else if secondsAgo >= (10 * 60) {
- delayToSchedule = 60
- LogManager.shared.log(category: .nightscout,
- message: "Reading is moderately old (\(secondsAgo) sec). Scheduling next fetch in 60 seconds.",
- isDebug: true)
- } else if secondsAgo >= (7 * 60) {
- delayToSchedule = 30
- LogManager.shared.log(category: .nightscout,
- message: "Reading is a bit old (\(secondsAgo) sec). Scheduling next fetch in 30 seconds.",
- isDebug: true)
- } else if secondsAgo >= (5 * 60) {
- delayToSchedule = 5
- LogManager.shared.log(category: .nightscout,
- message: "Reading is close to 5 minutes old (\(secondsAgo) sec). Scheduling next fetch in 5 seconds.",
- isDebug: true)
- } else {
- delayToSchedule = 300 - secondsAgo + Double(Storage.shared.bgUpdateDelay.value)
- LogManager.shared.log(category: .nightscout,
- message: "Fresh reading. Scheduling next fetch in \(delayToSchedule) seconds.",
- isDebug: true)
- TaskScheduler.shared.rescheduleTask(id: .alarmCheck, to: Date().addingTimeInterval(3))
- }
- TaskScheduler.shared.rescheduleTask(id: .fetchBG, to: Date().addingTimeInterval(delayToSchedule))
- // Evaluate speak conditions if there is a previous value.
- if data.count > 1 {
- self.evaluateSpeakConditions(currentValue: data[0].sgv, previousValue: data[1].sgv)
- }
- }
- // Process data for graph display.
- bgData.removeAll()
- for i in 0 ..< data.count {
- let readingTimestamp = data[data.count - 1 - i].date
- if readingTimestamp >= dateTimeUtils.getTimeIntervalNHoursAgo(N: graphHours) {
- let sgvValue = data[data.count - 1 - i].sgv
- // Skip outlier values (e.g. first reading of a new sensor might be abnormally high).
- if sgvValue > 600 {
- LogManager.shared.log(category: .nightscout,
- message: "Skipping reading with sgv \(sgvValue) as it exceeds threshold.",
- isDebug: true)
- continue
- }
- let reading = ShareGlucoseData(sgv: sgvValue, date: readingTimestamp, direction: data[data.count - 1 - i].direction)
- bgData.append(reading)
- }
- }
- LogManager.shared.log(category: .nightscout,
- message: "Graph data updated with \(bgData.count) entries.",
- isDebug: true)
- viewUpdateNSBG(sourceName: sourceName)
- }
- func updateServerText(with serverText: String? = nil) {
- if Storage.shared.showDisplayName.value, let displayName = Bundle.main.object(forInfoDictionaryKey: "CFBundleDisplayName") as? String {
- Observable.shared.serverText.value = displayName
- } else if let serverText = serverText {
- Observable.shared.serverText.value = serverText
- }
- }
- // NS BG Data Front end updater
- func viewUpdateNSBG(sourceName: String) {
- DispatchQueue.main.async {
- TaskScheduler.shared.rescheduleTask(id: .minAgoUpdate, to: Date())
- let entries = self.bgData
- if entries.count < 2 { // Protect index out of bounds
- Storage.shared.lastBGChecked.value = Date()
- return
- }
- self.updateBGGraph()
- self.updateStats()
- let latestEntryIndex = entries.count - 1
- let latestBG = entries[latestEntryIndex].sgv
- let priorBG = entries[latestEntryIndex - 1].sgv
- let deltaBG = latestBG - priorBG
- let lastBGTime = entries[latestEntryIndex].date
- self.updateServerText(with: sourceName)
- // Set BGText with the latest BG value
- self.updateBGTextAppearance()
- if latestBG <= globalVariables.minDisplayGlucose {
- Observable.shared.bgText.value = "LOW"
- } else if latestBG >= globalVariables.maxDisplayGlucose {
- Observable.shared.bgText.value = "HIGH"
- } else {
- Observable.shared.bgText.value = Localizer.toDisplayUnits(String(latestBG))
- }
- Observable.shared.bg.value = latestBG
- // Direction handling
- if let directionBG = entries[latestEntryIndex].direction {
- Observable.shared.directionText.value = self.bgDirectionGraphic(directionBG)
- } else {
- Observable.shared.directionText.value = ""
- }
- // Delta handling
- if deltaBG < 0 {
- Observable.shared.deltaText.value = Localizer.toDisplayUnits(String(deltaBG))
- } else {
- Observable.shared.deltaText.value = "+" + Localizer.toDisplayUnits(String(deltaBG))
- }
- // Live Activity storage
- Storage.shared.lastBgReadingTimeSeconds.value = lastBGTime
- Storage.shared.lastDeltaMgdl.value = Double(deltaBG)
- Storage.shared.lastTrendCode.value = entries[latestEntryIndex].direction
- // Mark BG data as loaded for initial loading state
- self.markDataLoaded("bg")
- // Live Activity update
- #if !targetEnvironment(macCatalyst)
- LiveActivityManager.shared.refreshFromCurrentState(reason: "bg")
- #endif
- // Update contact
- if Storage.shared.contactEnabled.value {
- self.contactImageUpdater
- .updateContactImage(
- bgValue: Observable.shared.bgText.value,
- trend: Observable.shared.directionText.value,
- delta: Observable.shared.deltaText.value,
- iob: Observable.shared.iobText.value,
- stale: Observable.shared.bgStale.value
- )
- }
- Storage.shared.lastBGChecked.value = Date()
- }
- }
- }
|