-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathStatusExtensionContext.swift
More file actions
403 lines (339 loc) · 13.4 KB
/
StatusExtensionContext.swift
File metadata and controls
403 lines (339 loc) · 13.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
//
// StatusExtensionContext.swift
// Loop Status Extension
//
// Created by Bharat Mediratta on 11/25/16.
// Copyright © 2016 LoopKit Authors. All rights reserved.
//
// This class allows Loop to pass context data to the Loop Status Extension.
import Foundation
import HealthKit
import LoopKit
import LoopKitUI
import LoopAlgorithm
struct NetBasalContext {
let rate: Double
let percentage: Double
let start: Date
let end: Date?
}
struct GlucoseDisplayableContext: GlucoseDisplayable {
let isStateValid: Bool
let stateDescription: String
let trendType: GlucoseTrend?
let trendRate: HKQuantity?
let isLocal: Bool
let glucoseRangeCategory: GlucoseRangeCategory?
}
struct GlucoseContext: GlucoseValue {
let value: Double
let unit: HKUnit
let startDate: Date
var quantity: HKQuantity {
return HKQuantity(unit: unit, doubleValue: value)
}
}
struct PredictedGlucoseContext {
let values: [Double]
let unit: HKUnit
let startDate: Date
let interval: TimeInterval
var samples: [GlucoseContext] {
var result: [GlucoseContext] = []
for (i, v) in values.enumerated() {
result.append(GlucoseContext(value: v, unit: unit, startDate: startDate.addingTimeInterval(Double(i) * interval)))
}
return result
}
}
struct DeviceStatusHighlightContext: DeviceStatusHighlight {
var localizedMessage: String
var imageName: String
var state: DeviceStatusHighlightState
init(localizedMessage: String,
imageName: String,
state: DeviceStatusHighlightState)
{
self.localizedMessage = localizedMessage
self.imageName = imageName
self.state = state
}
init?(from deviceStatusHighlight: DeviceStatusHighlight?) {
guard let deviceStatusHighlight = deviceStatusHighlight else {
return nil
}
self.init(localizedMessage: deviceStatusHighlight.localizedMessage,
imageName: deviceStatusHighlight.imageName,
state: deviceStatusHighlight.state)
}
}
struct DeviceLifecycleProgressContext: DeviceLifecycleProgress {
var percentComplete: Double
var progressState: DeviceLifecycleProgressState
init(percentComplete: Double,
progressState: DeviceLifecycleProgressState)
{
self.percentComplete = percentComplete
self.progressState = progressState
}
init?(from deviceLifecycleProgress: DeviceLifecycleProgress?) {
guard let deviceLifecycleProgress = deviceLifecycleProgress else {
return nil
}
self.init(percentComplete: deviceLifecycleProgress.percentComplete,
progressState: deviceLifecycleProgress.progressState)
}
}
extension NetBasalContext: RawRepresentable {
typealias RawValue = [String: Any]
init?(rawValue: RawValue) {
guard
let rate = rawValue["rate"] as? Double,
let percentage = rawValue["percentage"] as? Double,
let start = rawValue["start"] as? Date
else {
return nil
}
self.rate = rate
self.percentage = percentage
self.start = start
self.end = rawValue["end"] as? Date
}
var rawValue: RawValue {
var value: RawValue = [
"rate": rate,
"percentage": percentage,
"start": start
]
value["end"] = end
return value
}
}
extension GlucoseDisplayableContext: RawRepresentable {
typealias RawValue = [String: Any]
init(_ other: GlucoseDisplayable) {
isStateValid = other.isStateValid
stateDescription = other.stateDescription
isLocal = other.isLocal
trendType = other.trendType
trendRate = other.trendRate
glucoseRangeCategory = other.glucoseRangeCategory
}
init?(rawValue: RawValue) {
guard
let isStateValid = rawValue["isStateValid"] as? Bool,
let stateDescription = rawValue["stateDescription"] as? String,
let isLocal = rawValue["isLocal"] as? Bool
else {
return nil
}
self.isStateValid = isStateValid
self.stateDescription = stateDescription
self.isLocal = isLocal
if let rawValue = rawValue["trendType"] as? GlucoseTrend.RawValue {
trendType = GlucoseTrend(rawValue: rawValue)
} else {
trendType = nil
}
if let trendRateValue = rawValue["trendRateValue"] as? Double {
trendRate = HKQuantity(unit: .milligramsPerDeciliterPerMinute, doubleValue: trendRateValue)
} else {
trendRate = nil
}
if let glucoseRangeCategoryRawValue = rawValue["glucoseRangeCategory"] as? GlucoseRangeCategory.RawValue {
glucoseRangeCategory = GlucoseRangeCategory(rawValue: glucoseRangeCategoryRawValue)
} else {
glucoseRangeCategory = nil
}
}
var rawValue: RawValue {
var raw: RawValue = [
"isStateValid": isStateValid,
"stateDescription": stateDescription,
"isLocal": isLocal
]
raw["trendType"] = trendType?.rawValue
if let trendRate = trendRate {
raw["trendRateValue"] = trendRate.doubleValue(for: HKUnit.milligramsPerDeciliterPerMinute)
}
raw["glucoseRangeCategory"] = glucoseRangeCategory?.rawValue
return raw
}
}
extension PredictedGlucoseContext: RawRepresentable {
typealias RawValue = [String: Any]
init?(rawValue: RawValue) {
guard
let values = rawValue["values"] as? [Double],
let unitString = rawValue["unit"] as? String,
let startDate = rawValue["startDate"] as? Date,
let interval = rawValue["interval"] as? TimeInterval
else {
return nil
}
self.values = values
self.unit = HKUnit(from: unitString)
self.startDate = startDate
self.interval = interval
}
var rawValue: RawValue {
return [
"values": values,
"unit": unit.unitString,
"startDate": startDate,
"interval": interval
]
}
}
extension DeviceStatusHighlightContext: RawRepresentable {
typealias RawValue = [String: Any]
init?(rawValue: RawValue) {
guard let localizedMessage = rawValue["localizedMessage"] as? String,
let imageName = rawValue["imageName"] as? String,
let rawState = rawValue["state"] as? DeviceStatusHighlightState.RawValue,
let state = DeviceStatusHighlightState(rawValue: rawState) else
{
return nil
}
self.localizedMessage = localizedMessage
self.imageName = imageName
self.state = state
}
var rawValue: RawValue {
return [
"localizedMessage": localizedMessage,
"imageName": imageName,
"state": state.rawValue,
]
}
}
extension DeviceLifecycleProgressContext: RawRepresentable {
typealias RawValue = [String: Any]
init?(rawValue: RawValue) {
guard let percentComplete = rawValue["percentComplete"] as? Double,
let rawProgressState = rawValue["progressState"] as? DeviceLifecycleProgressState.RawValue,
let progressState = DeviceLifecycleProgressState(rawValue: rawProgressState) else
{
return nil
}
self.percentComplete = percentComplete
self.progressState = progressState
}
var rawValue: RawValue {
return [
"percentComplete": percentComplete,
"progressState": progressState.rawValue,
]
}
}
struct PumpManagerHUDViewContext: RawRepresentable {
typealias RawValue = [String: Any]
let pumpManagerHUDViewRawValue: PumpManagerHUDViewRawValue
init(pumpManagerHUDViewRawValue: PumpManagerHUDViewRawValue) {
self.pumpManagerHUDViewRawValue = pumpManagerHUDViewRawValue
}
init?(rawValue: RawValue) {
if let pumpManagerHUDViewRawValue = rawValue["pumpManagerHUDViewRawValue"] as? PumpManagerHUDViewRawValue {
self.pumpManagerHUDViewRawValue = pumpManagerHUDViewRawValue
} else {
return nil
}
}
var rawValue: RawValue {
return ["pumpManagerHUDViewRawValue": pumpManagerHUDViewRawValue]
}
}
struct StatusExtensionContext: RawRepresentable {
typealias RawValue = [String: Any]
private let version = 5
var predictedGlucose: PredictedGlucoseContext?
var lastLoopCompleted: Date?
var mostRecentGlucoseDataDate: Date?
var mostRecentPumpDataDate: Date?
var createdAt: Date?
var isClosedLoop: Bool?
var preMealPresetAllowed: Bool?
var preMealPresetActive: Bool?
var customPresetActive: Bool?
var netBasal: NetBasalContext?
var batteryPercentage: Double?
var reservoirCapacity: Double?
var glucoseDisplay: GlucoseDisplayableContext?
var pumpManagerHUDViewContext: PumpManagerHUDViewContext?
var pumpStatusHighlightContext: DeviceStatusHighlightContext?
var pumpLifecycleProgressContext: DeviceLifecycleProgressContext?
var cgmStatusHighlightContext: DeviceStatusHighlightContext?
var cgmLifecycleProgressContext: DeviceLifecycleProgressContext?
var carbsOnBoard: Double?
init() { }
init?(rawValue: RawValue) {
guard let version = rawValue["version"] as? Int, version == self.version else {
return nil
}
if let rawValue = rawValue["predictedGlucose"] as? PredictedGlucoseContext.RawValue {
predictedGlucose = PredictedGlucoseContext(rawValue: rawValue)
}
if let rawValue = rawValue["netBasal"] as? NetBasalContext.RawValue {
netBasal = NetBasalContext(rawValue: rawValue)
}
lastLoopCompleted = rawValue["lastLoopCompleted"] as? Date
mostRecentGlucoseDataDate = rawValue["mostRecentGlucoseDataDate"] as? Date
mostRecentPumpDataDate = rawValue["mostRecentPumpDataDate"] as? Date
createdAt = rawValue["createdAt"] as? Date
isClosedLoop = rawValue["isClosedLoop"] as? Bool
preMealPresetAllowed = rawValue["preMealPresetAllowed"] as? Bool
preMealPresetActive = rawValue["preMealPresetActive"] as? Bool
customPresetActive = rawValue["customPresetActive"] as? Bool
batteryPercentage = rawValue["batteryPercentage"] as? Double
reservoirCapacity = rawValue["reservoirCapacity"] as? Double
carbsOnBoard = rawValue["carbsOnBoard"] as? Double
if let rawValue = rawValue["glucoseDisplay"] as? GlucoseDisplayableContext.RawValue {
glucoseDisplay = GlucoseDisplayableContext(rawValue: rawValue)
}
if let rawPumpManagerHUDViewContext = rawValue["pumpManagerHUDViewContext"] as? PumpManagerHUDViewContext.RawValue {
pumpManagerHUDViewContext = PumpManagerHUDViewContext(rawValue: rawPumpManagerHUDViewContext)
}
if let rawPumpStatusHighlightContext = rawValue["pumpStatusHighlightContext"] as? DeviceStatusHighlightContext.RawValue {
pumpStatusHighlightContext = DeviceStatusHighlightContext(rawValue: rawPumpStatusHighlightContext)
}
if let rawPumpLifecycleProgressContext = rawValue["pumpLifecycleProgressContext"] as? DeviceLifecycleProgressContext.RawValue {
pumpLifecycleProgressContext = DeviceLifecycleProgressContext(rawValue: rawPumpLifecycleProgressContext)
}
if let rawCGMStatusHighlightContext = rawValue["cgmStatusHighlightContext"] as? DeviceStatusHighlightContext.RawValue {
cgmStatusHighlightContext = DeviceStatusHighlightContext(rawValue: rawCGMStatusHighlightContext)
}
if let rawCGMLifecycleProgressContext = rawValue["cgmLifecycleProgressContext"] as? DeviceLifecycleProgressContext.RawValue {
cgmLifecycleProgressContext = DeviceLifecycleProgressContext(rawValue: rawCGMLifecycleProgressContext)
}
}
var rawValue: RawValue {
var raw: RawValue = [
"version": version
]
raw["predictedGlucose"] = predictedGlucose?.rawValue
raw["lastLoopCompleted"] = lastLoopCompleted
raw["mostRecentGlucoseDataDate"] = mostRecentGlucoseDataDate
raw["mostRecentPumpDataDate"] = mostRecentPumpDataDate
raw["createdAt"] = createdAt
raw["isClosedLoop"] = isClosedLoop
raw["preMealPresetAllowed"] = preMealPresetAllowed
raw["preMealPresetActive"] = preMealPresetActive
raw["customPresetActive"] = customPresetActive
raw["netBasal"] = netBasal?.rawValue
raw["batteryPercentage"] = batteryPercentage
raw["reservoirCapacity"] = reservoirCapacity
raw["glucoseDisplay"] = glucoseDisplay?.rawValue
raw["pumpManagerHUDViewContext"] = pumpManagerHUDViewContext?.rawValue
raw["pumpStatusHighlightContext"] = pumpStatusHighlightContext?.rawValue
raw["pumpLifecycleProgressContext"] = pumpLifecycleProgressContext?.rawValue
raw["cgmStatusHighlightContext"] = cgmStatusHighlightContext?.rawValue
raw["cgmLifecycleProgressContext"] = cgmLifecycleProgressContext?.rawValue
raw["carbsOnBoard"] = carbsOnBoard
return raw
}
}
extension StatusExtensionContext: CustomDebugStringConvertible {
var debugDescription: String {
return String(reflecting: rawValue)
}
}