| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264 |
- import Foundation
- protocol FileStorage {
- func save<Value: JSON>(_ value: Value, as name: String)
- func saveAsync<Value: JSON>(_ value: Value, as name: String) async
- func retrieve<Value: JSON>(_ name: String, as type: Value.Type) -> Value?
- func retrieveAsync<Value: JSON>(_ name: String, as type: Value.Type) async -> Value?
- func retrieveRaw(_ name: String) -> RawJSON?
- func retrieveRawAsync(_ name: String) async -> RawJSON?
- func append<Value: JSON>(_ newValue: Value, to name: String)
- func append<Value: JSON>(_ newValues: [Value], to name: String)
- func append<Value: JSON, T: Equatable>(_ newValue: Value, to name: String, uniqBy keyPath: KeyPath<Value, T>)
- func append<Value: JSON, T: Equatable>(_ newValues: [Value], to name: String, uniqBy keyPath: KeyPath<Value, T>)
- func remove(_ name: String)
- func rename(_ name: String, to newName: String)
- func transaction(_ exec: (FileStorage) -> Void)
- func urlFor(file: String) -> URL?
- func parseOnFileSettingsToMgdL() -> Bool
- }
- final class BaseFileStorage: FileStorage {
- private let processQueue = DispatchQueue.markedQueue(label: "BaseFileStorage.processQueue", qos: .utility)
- func save<Value: JSON>(_ value: Value, as name: String) {
- processQueue.safeSync {
- if let value = value as? RawJSON, let data = value.data(using: .utf8) {
- try? Disk.save(data, to: .documents, as: name)
- } else {
- try? Disk.save(value, to: .documents, as: name, encoder: JSONCoding.encoder)
- }
- }
- }
- func saveAsync<Value: JSON>(_ value: Value, as name: String) async {
- await withCheckedContinuation { continuation in
- processQueue.safeSync {
- if let value = value as? RawJSON, let data = value.data(using: .utf8) {
- try? Disk.save(data, to: .documents, as: name)
- } else {
- try? Disk.save(value, to: .documents, as: name, encoder: JSONCoding.encoder)
- }
- continuation.resume()
- }
- }
- }
- func retrieve<Value: JSON>(_ name: String, as type: Value.Type) -> Value? {
- processQueue.safeSync {
- try? Disk.retrieve(name, from: .documents, as: type, decoder: JSONCoding.decoder)
- }
- }
- func retrieveAsync<Value: JSON>(_ name: String, as type: Value.Type) async -> Value? {
- await withCheckedContinuation { continuation in
- processQueue.safeSync {
- let result = try? Disk.retrieve(name, from: .documents, as: type, decoder: JSONCoding.decoder)
- continuation.resume(returning: result)
- }
- }
- }
- func retrieveRaw(_ name: String) -> RawJSON? {
- processQueue.safeSync {
- guard let data = try? Disk.retrieve(name, from: .documents, as: Data.self) else {
- return nil
- }
- return String(data: data, encoding: .utf8)
- }
- }
- func retrieveRawAsync(_ name: String) async -> RawJSON? {
- await withCheckedContinuation { continuation in
- processQueue.safeSync {
- guard let data = try? Disk.retrieve(name, from: .documents, as: Data.self) else {
- continuation.resume(returning: nil)
- return
- }
- continuation.resume(returning: String(data: data, encoding: .utf8))
- }
- }
- }
- func append<Value: JSON>(_ newValue: Value, to name: String) {
- processQueue.safeSync {
- try? Disk.append(newValue, to: name, in: .documents, decoder: JSONCoding.decoder, encoder: JSONCoding.encoder)
- }
- }
- func append<Value: JSON>(_ newValues: [Value], to name: String) {
- processQueue.safeSync {
- try? Disk.append(newValues, to: name, in: .documents, decoder: JSONCoding.decoder, encoder: JSONCoding.encoder)
- }
- }
- func append<Value: JSON, T: Equatable>(_ newValue: Value, to name: String, uniqBy keyPath: KeyPath<Value, T>) {
- if let value = retrieve(name, as: Value.self) {
- if value[keyPath: keyPath] != newValue[keyPath: keyPath] {
- append(newValue, to: name)
- }
- } else if let values = retrieve(name, as: [Value].self) {
- guard values.first(where: { $0[keyPath: keyPath] == newValue[keyPath: keyPath] }) == nil else {
- return
- }
- append(newValue, to: name)
- } else {
- save(newValue, as: name)
- }
- }
- func append<Value: JSON, T: Equatable>(_ newValues: [Value], to name: String, uniqBy keyPath: KeyPath<Value, T>) {
- if let value = retrieve(name, as: Value.self) {
- if newValues.firstIndex(where: { $0[keyPath: keyPath] == value[keyPath: keyPath] }) != nil {
- save(newValues, as: name)
- return
- }
- append(newValues, to: name)
- } else if var values = retrieve(name, as: [Value].self) {
- for newValue in newValues {
- if let index = values.firstIndex(where: { $0[keyPath: keyPath] == newValue[keyPath: keyPath] }) {
- values[index] = newValue
- } else {
- values.append(newValue)
- }
- save(values, as: name)
- }
- } else {
- save(newValues, as: name)
- }
- }
- func remove(_ name: String) {
- processQueue.safeSync {
- try? Disk.remove(name, from: .documents)
- }
- }
- func rename(_ name: String, to newName: String) {
- processQueue.safeSync {
- try? Disk.rename(name, in: .documents, to: newName)
- }
- }
- func transaction(_ exec: (FileStorage) -> Void) {
- processQueue.safeSync {
- exec(self)
- }
- }
- func urlFor(file: String) -> URL? {
- try? Disk.url(for: file, in: .documents)
- }
- }
- extension FileStorage {
- private func correctUnitParsingOffsets(_ parsedValue: Decimal) -> Decimal {
- Int(parsedValue) % 2 == 0 ? parsedValue : parsedValue + 1
- }
- func parseSettingIfMmolL(value: Decimal, threshold: Decimal = 39) -> Decimal {
- value < threshold ? correctUnitParsingOffsets(value.asMgdL) : value
- }
- /// Parses mmol/L settings stored on file to mg/dL if necessary and updates the preferences, settings, insulin sensitivities, and glucose targets.
- /// - Returns: A boolean indicating whether any settings were parsed and updated.
- func parseOnFileSettingsToMgdL() -> Bool {
- debug(.businessLogic, "Check for mmol/L settings stored on file.")
- var wasParsed = false
- // Retrieve and parse preferences (Preferences struct)
- if var preferences = retrieve(OpenAPS.Settings.preferences, as: Preferences.self) {
- let initialThreshold = preferences.threshold_setting
- let initialSMBTarget = preferences.enableSMB_high_bg_target
- let initialExerciseTarget = preferences.halfBasalExerciseTarget
- preferences.threshold_setting = parseSettingIfMmolL(value: preferences.threshold_setting)
- preferences.enableSMB_high_bg_target = parseSettingIfMmolL(value: preferences.enableSMB_high_bg_target)
- preferences.halfBasalExerciseTarget = parseSettingIfMmolL(value: preferences.halfBasalExerciseTarget)
- if preferences.threshold_setting != initialThreshold ||
- preferences.enableSMB_high_bg_target != initialSMBTarget ||
- preferences.halfBasalExerciseTarget != initialExerciseTarget
- {
- debug(.businessLogic, "Preferences found in mmol/L. Parsing to mg/dL.")
- save(preferences, as: OpenAPS.Settings.preferences)
- wasParsed = true
- } else {
- debug(.businessLogic, "Preferences stored in mg/dL; no parsing required.")
- }
- }
- // Retrieve and parse settings (FreeAPSSettings struct)
- if var settings = retrieve(OpenAPS.Settings.settings, as: FreeAPSSettings.self) {
- let initialHigh = settings.high
- let initialLow = settings.low
- let initialHighGlucose = settings.highGlucose
- let initialLowGlucose = settings.lowGlucose
- settings.high = parseSettingIfMmolL(value: settings.high)
- settings.low = parseSettingIfMmolL(value: settings.low)
- settings.highGlucose = parseSettingIfMmolL(value: settings.highGlucose)
- settings.lowGlucose = parseSettingIfMmolL(value: settings.lowGlucose)
- if settings.high != initialHigh ||
- settings.low != initialLow ||
- settings.highGlucose != initialHighGlucose ||
- settings.lowGlucose != initialLowGlucose
- {
- debug(.businessLogic, "FreeAPSSettings found in mmol/L. Parsing to mg/dL.")
- save(settings, as: OpenAPS.Settings.settings)
- wasParsed = true
- } else {
- debug(.businessLogic, "FreeAPSSettings stored in mg/dL; no parsing required.")
- }
- }
- // Retrieve and parse insulin sensitivities
- if var sensitivities = retrieve(OpenAPS.Settings.insulinSensitivities, as: InsulinSensitivities.self),
- sensitivities.units == .mmolL || sensitivities.userPreferredUnits == .mmolL
- {
- debug(.businessLogic, "Insulin sensitivities found in mmol/L. Parsing to mg/dL.")
- sensitivities.sensitivities = sensitivities.sensitivities.map { isf in
- InsulinSensitivityEntry(
- sensitivity: parseSettingIfMmolL(value: isf.sensitivity),
- offset: isf.offset,
- start: isf.start
- )
- }
- sensitivities.units = .mgdL
- sensitivities.userPreferredUnits = .mgdL
- save(sensitivities, as: OpenAPS.Settings.insulinSensitivities)
- wasParsed = true
- } else {
- debug(.businessLogic, "Insulin sensitivities stored in mg/dL; no parsing required.")
- }
- // Retrieve and parse glucose targets
- if var glucoseTargets = retrieve(OpenAPS.Settings.bgTargets, as: BGTargets.self),
- glucoseTargets.units == .mmolL || glucoseTargets.userPreferredUnits == .mmolL
- {
- debug(.businessLogic, "Glucose target profile found in mmol/L. Parsing to mg/dL.")
- glucoseTargets.targets = glucoseTargets.targets.map { target in
- BGTargetEntry(
- low: parseSettingIfMmolL(value: target.low),
- high: parseSettingIfMmolL(value: target.high),
- start: target.start,
- offset: target.offset
- )
- }
- glucoseTargets.units = .mgdL
- glucoseTargets.userPreferredUnits = .mgdL
- save(glucoseTargets, as: OpenAPS.Settings.bgTargets)
- wasParsed = true
- } else {
- debug(.businessLogic, "Glucose target profile stored in mg/dL; no parsing required.")
- }
- return wasParsed
- }
- }
|