HealthDataReader.swift
17.3 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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
import Foundation
import HealthKit
/// Focused HealthKit query helper. It mirrors the original SwiftUI project data
/// coverage while avoiding dependencies on the old network and user modules.
final class HealthDataReader {
private let healthStore: HKHealthStore
init(healthStore: HKHealthStore) {
self.healthStore = healthStore
}
func collectRecentData(startDate: Date, endDate: Date) async throws -> NativeHealthSyncSummary {
async let hrv = fetchQuantitySamples(
identifier: .heartRateVariabilitySDNN,
dataType: .hrv,
unit: .secondUnit(with: .milli),
startDate: startDate,
endDate: endDate
)
async let heart = fetchHeartRateFamily(startDate: startDate, endDate: endDate)
async let oxygen = fetchQuantitySamples(
identifier: .oxygenSaturation,
dataType: .oxygenSaturation,
unit: .percent(),
startDate: startDate,
endDate: endDate
)
async let activeEnergy = fetchDailyCumulativeSamples(
identifier: .activeEnergyBurned,
dataType: .activeEnergy,
unit: .kilocalorie(),
startDate: startDate,
endDate: endDate
)
async let exercise = fetchDailyCumulativeSamples(
identifier: .appleExerciseTime,
dataType: .exercise,
unit: .second(),
startDate: startDate,
endDate: endDate
)
async let stand = fetchDailyCumulativeSamples(
identifier: .appleStandTime,
dataType: .stand,
unit: .second(),
startDate: startDate,
endDate: endDate
)
async let steps = fetchDailyCumulativeSamples(
identifier: .stepCount,
dataType: .steps,
unit: .count(),
startDate: startDate,
endDate: endDate
)
async let wristTemp = fetchQuantitySamples(
identifier: .appleSleepingWristTemperature,
dataType: .sleepingWristTemperature,
unit: .degreeCelsius(),
startDate: startDate,
endDate: endDate
)
async let respiratory = fetchQuantitySamples(
identifier: .respiratoryRate,
dataType: .respiratoryRate,
unit: HKUnit.count().unitDivided(by: .minute()),
startDate: startDate,
endDate: endDate
)
async let rhythm = fetchIrregularHeartRhythmEvents(startDate: startDate, endDate: endDate)
async let sleep = fetchSleepIntervals(startDate: startDate, endDate: endDate)
let hrvPoints = try await hrv
let heartPoints = try await heart
let oxygenPoints = try await oxygen
let activeEnergyPoints = try await activeEnergy
let exercisePoints = try await exercise
let standPoints = try await stand
let stepPoints = try await steps
let wristTempPoints = try await wristTemp
let respiratoryPoints = try await respiratory
let rhythmPoints = try await rhythm
let sleepIntervals = try await sleep
return NativeHealthSyncSummary(
commonCount: hrvPoints.count
+ heartPoints.count
+ oxygenPoints.count
+ activeEnergyPoints.count
+ exercisePoints.count
+ standPoints.count
+ stepPoints.count
+ wristTempPoints.count
+ respiratoryPoints.count
+ rhythmPoints.count,
sleepCount: sleepIntervals.count,
startedAt: startDate,
endedAt: endDate
)
}
func fetchLatestHRV() async throws -> Double? {
guard let type = NativeHealthTypeCatalog.quantity(.heartRateVariabilitySDNN) else {
throw NativeHealthKitError.invalidType("heartRateVariabilitySDNN")
}
let sample = try await fetchLatestQuantitySample(type: type)
return sample?.quantity.doubleValue(for: .secondUnit(with: .milli))
}
func fetchTodayStepCount() async throws -> Int {
guard let type = NativeHealthTypeCatalog.quantity(.stepCount) else {
throw NativeHealthKitError.invalidType("stepCount")
}
let startOfDay = Calendar.current.startOfDay(for: Date())
let predicate = HKQuery.predicateForSamples(withStart: startOfDay, end: Date())
return try await withCheckedThrowingContinuation { continuation in
let query = HKStatisticsQuery(
quantityType: type,
quantitySamplePredicate: predicate,
options: .cumulativeSum
) { _, statistics, error in
if let error {
continuation.resume(throwing: error)
return
}
let value = statistics?.sumQuantity()?.doubleValue(for: .count()) ?? 0
continuation.resume(returning: Int(value))
}
healthStore.execute(query)
}
}
func fetchHrvData(startDate: Date, endDate: Date) async throws -> [NativeHealthDataPoint] {
try await fetchQuantitySamples(
identifier: .heartRateVariabilitySDNN,
dataType: .hrv,
unit: .secondUnit(with: .milli),
startDate: startDate,
endDate: endDate
)
}
func fetchHeartRateData(startDate: Date, endDate: Date) async throws -> [NativeHealthDataPoint] {
try await fetchQuantitySamples(
identifier: .heartRate,
dataType: .heartRate,
unit: HKUnit.count().unitDivided(by: .minute()),
startDate: startDate,
endDate: endDate
)
}
func fetchWalkingHeartRateData(startDate: Date, endDate: Date) async throws -> [NativeHealthDataPoint] {
try await fetchQuantitySamples(
identifier: .walkingHeartRateAverage,
dataType: .walkingHeartRate,
unit: HKUnit.count().unitDivided(by: .minute()),
startDate: startDate,
endDate: endDate
)
}
func fetchRestingHeartRateData(startDate: Date, endDate: Date) async throws -> [NativeHealthDataPoint] {
try await fetchQuantitySamples(
identifier: .restingHeartRate,
dataType: .restingHeartRate,
unit: HKUnit.count().unitDivided(by: .minute()),
startDate: startDate,
endDate: endDate
)
}
func fetchSleepingHeartRateData(startDate: Date, endDate: Date) async throws -> [NativeHealthDataPoint] {
let sleepIntervals = try await fetchSleepIntervals(startDate: startDate, endDate: endDate)
var points: [NativeHealthDataPoint] = []
for interval in sleepIntervals where NativeSleepStage.isAsleep(interval.dataType) {
let samples = try await fetchQuantitySamples(
identifier: .heartRate,
dataType: .sleepingHeartRate,
unit: HKUnit.count().unitDivided(by: .minute()),
startDate: Date(timeIntervalSince1970: interval.fromTime),
endDate: Date(timeIntervalSince1970: interval.toTime)
)
points.append(contentsOf: samples)
}
return points
}
func fetchOxygenSaturationData(startDate: Date, endDate: Date) async throws -> [NativeHealthDataPoint] {
let points = try await fetchQuantitySamples(
identifier: .oxygenSaturation,
dataType: .oxygenSaturation,
unit: .percent(),
startDate: startDate,
endDate: endDate
)
return points.map { point in
NativeHealthDataPoint(dataType: point.dataType, time: point.time, value: point.value * 100)
}
}
func fetchActiveEnergyData(startDate: Date, endDate: Date) async throws -> [NativeHealthDataPoint] {
try await fetchDailyCumulativeSamples(identifier: .activeEnergyBurned, dataType: .activeEnergy, unit: .kilocalorie(), startDate: startDate, endDate: endDate)
// try await fetchQuantitySamples(
// identifier: .activeEnergyBurned,
// dataType: .activeEnergy,
// unit: .kilocalorie(),
// startDate: startDate,
// endDate: endDate
// )
}
func fetchExerciseData(startDate: Date, endDate: Date) async throws -> [NativeHealthDataPoint] {
try await fetchDailyCumulativeSamples(identifier: .appleExerciseTime, dataType: .exercise, unit: .second(), startDate: startDate, endDate: endDate)
// try await fetchQuantitySamples(
// identifier: .appleExerciseTime,
// dataType: .exercise,
// unit: .minute(),
// startDate: startDate,
// endDate: endDate
// )
}
func fetchStandData(startDate: Date, endDate: Date) async throws -> [NativeHealthDataPoint] {
try await fetchDailyCumulativeSamples(identifier: .appleStandTime, dataType: .stand, unit: .second(), startDate: startDate, endDate: endDate)
// try await fetchQuantitySamples(
// identifier: .appleStandTime,
// dataType: .stand,
// unit: .minute(),
// startDate: startDate,
// endDate: endDate
// )
}
func fetchStepCountData(startDate: Date, endDate: Date) async throws -> [NativeHealthDataPoint] {
try await fetchDailyCumulativeSamples(
identifier: .stepCount,
dataType: .steps,
unit: .count(),
startDate: startDate,
endDate: endDate
)
}
func fetchSleepData(startDate: Date, endDate: Date) async throws -> [NativeSleepInterval] {
try await fetchSleepIntervals(startDate: startDate, endDate: endDate)
}
func fetchSleepingWristTemperatureData(startDate: Date, endDate: Date) async throws -> [NativeHealthDataPoint] {
try await fetchQuantitySamples(
identifier: .appleSleepingWristTemperature,
dataType: .sleepingWristTemperature,
unit: .degreeCelsius(),
startDate: startDate,
endDate: endDate
)
}
func fetchRespiratoryRateData(startDate: Date, endDate: Date) async throws -> [NativeHealthDataPoint] {
try await fetchQuantitySamples(
identifier: .respiratoryRate,
dataType: .respiratoryRate,
unit: HKUnit.count().unitDivided(by: .minute()),
startDate: startDate,
endDate: endDate
)
}
func fetchIrregularHeartRhythmData(startDate: Date, endDate: Date) async throws -> [NativeHealthDataPoint] {
try await fetchIrregularHeartRhythmEvents(startDate: startDate, endDate: endDate)
}
func fetchActivityTargetData(startDate: Date, endDate: Date) async throws -> NativeActivityTarget? {
let calendar = Calendar.current
var start = calendar.dateComponents([.era, .year, .month, .day], from: startDate)
var end = calendar.dateComponents([.era, .year, .month, .day], from: endDate)
start.calendar = calendar
end.calendar = calendar
let predicate = HKQuery.predicate(forActivitySummariesBetweenStart: start, end: end)
return try await withCheckedThrowingContinuation { continuation in
let query = HKActivitySummaryQuery(predicate: predicate) { _, summaries, error in
if let error {
continuation.resume(throwing: error)
return
}
guard let summary = summaries?.last else {
continuation.resume(returning: nil)
return
}
continuation.resume(
returning: NativeActivityTarget(
move: Int(summary.activeEnergyBurnedGoal.doubleValue(for: .kilocalorie())),
stand: Int(summary.appleStandHoursGoal.doubleValue(for: .count()))
)
)
}
healthStore.execute(query)
}
}
private func fetchHeartRateFamily(startDate: Date, endDate: Date) async throws -> [NativeHealthDataPoint] {
async let heartRate = fetchQuantitySamples(
identifier: .heartRate,
dataType: .heartRate,
unit: HKUnit.count().unitDivided(by: .minute()),
startDate: startDate,
endDate: endDate
)
async let walking = fetchQuantitySamples(
identifier: .walkingHeartRateAverage,
dataType: .walkingHeartRate,
unit: HKUnit.count().unitDivided(by: .minute()),
startDate: startDate,
endDate: endDate
)
async let resting = fetchQuantitySamples(
identifier: .restingHeartRate,
dataType: .restingHeartRate,
unit: HKUnit.count().unitDivided(by: .minute()),
startDate: startDate,
endDate: endDate
)
return try await heartRate + walking + resting
}
private func fetchQuantitySamples(
identifier: HKQuantityTypeIdentifier,
dataType: NativeHealthDataType,
unit: HKUnit,
startDate: Date,
endDate: Date
) async throws -> [NativeHealthDataPoint] {
guard let type = NativeHealthTypeCatalog.quantity(identifier) else {
throw NativeHealthKitError.invalidType(identifier.rawValue)
}
let predicate = HKQuery.predicateForSamples(
withStart: startDate,
end: endDate,
options: .strictStartDate
)
let sort = NSSortDescriptor(key: HKSampleSortIdentifierStartDate, ascending: true)
return try await withCheckedThrowingContinuation { continuation in
let query = HKSampleQuery(
sampleType: type,
predicate: predicate,
limit: HKObjectQueryNoLimit,
sortDescriptors: [sort]
) { _, samples, error in
if let error {
continuation.resume(throwing: error)
return
}
let points = (samples as? [HKQuantitySample] ?? []).map { sample in
NativeHealthDataPoint(
dataType: dataType,
time: sample.startDate.timeIntervalSince1970,
value: sample.quantity.doubleValue(for: unit)
)
}
continuation.resume(returning: points)
}
healthStore.execute(query)
}
}
private func fetchDailyCumulativeSamples(
identifier: HKQuantityTypeIdentifier,
dataType: NativeHealthDataType,
unit: HKUnit,
startDate: Date,
endDate: Date
) async throws -> [NativeHealthDataPoint] {
guard let type = NativeHealthTypeCatalog.quantity(identifier) else {
throw NativeHealthKitError.invalidType(identifier.rawValue)
}
var interval = DateComponents()
interval.day = 1
let anchorDate = Calendar.current.startOfDay(for: startDate)
let predicate = HKQuery.predicateForSamples(withStart: startDate, end: endDate)
return try await withCheckedThrowingContinuation { continuation in
let query = HKStatisticsCollectionQuery(
quantityType: type,
quantitySamplePredicate: predicate,
options: .cumulativeSum,
anchorDate: anchorDate,
intervalComponents: interval
)
query.initialResultsHandler = { _, collection, error in
if let error {
continuation.resume(throwing: error)
return
}
var points: [NativeHealthDataPoint] = []
collection?.enumerateStatistics(from: startDate, to: endDate) { statistics, _ in
guard let value = statistics.sumQuantity()?.doubleValue(for: unit) else { return }
points.append(
NativeHealthDataPoint(
dataType: dataType,
time: statistics.startDate.timeIntervalSince1970,
value: value
)
)
}
continuation.resume(returning: points)
}
healthStore.execute(query)
}
}
private func fetchSleepIntervals(startDate: Date, endDate: Date) async throws -> [NativeSleepInterval] {
guard let type = NativeHealthTypeCatalog.category(.sleepAnalysis) else {
throw NativeHealthKitError.invalidType("sleepAnalysis")
}
let predicate = HKQuery.predicateForSamples(
withStart: startDate,
end: endDate,
options: .strictStartDate
)
let sort = NSSortDescriptor(key: HKSampleSortIdentifierStartDate, ascending: true)
return try await withCheckedThrowingContinuation { continuation in
let query = HKSampleQuery(
sampleType: type,
predicate: predicate,
limit: HKObjectQueryNoLimit,
sortDescriptors: [sort]
) { _, samples, error in
if let error {
continuation.resume(throwing: error)
return
}
let intervals = (samples as? [HKCategorySample] ?? []).map { sample in
NativeSleepInterval(
dataType: sample.value,
fromTime: sample.startDate.timeIntervalSince1970,
toTime: sample.endDate.timeIntervalSince1970
)
}
continuation.resume(returning: intervals)
}
healthStore.execute(query)
}
}
private func fetchIrregularHeartRhythmEvents(
startDate: Date,
endDate: Date
) async throws -> [NativeHealthDataPoint] {
guard let type = NativeHealthTypeCatalog.category(.irregularHeartRhythmEvent) else {
throw NativeHealthKitError.invalidType("irregularHeartRhythmEvent")
}
let predicate = HKQuery.predicateForSamples(
withStart: startDate,
end: endDate,
options: .strictStartDate
)
let sort = NSSortDescriptor(key: HKSampleSortIdentifierStartDate, ascending: true)
return try await withCheckedThrowingContinuation { continuation in
let query = HKSampleQuery(
sampleType: type,
predicate: predicate,
limit: HKObjectQueryNoLimit,
sortDescriptors: [sort]
) { _, samples, error in
if let error {
continuation.resume(throwing: error)
return
}
let points = (samples as? [HKCategorySample] ?? []).map { sample in
NativeHealthDataPoint(
dataType: .irregularHeartRhythm,
time: sample.startDate.timeIntervalSince1970,
value: Double(sample.value)
)
}
continuation.resume(returning: points)
}
healthStore.execute(query)
}
}
private func fetchLatestQuantitySample(type: HKQuantityType) async throws -> HKQuantitySample? {
let sort = NSSortDescriptor(key: HKSampleSortIdentifierEndDate, ascending: false)
return try await withCheckedThrowingContinuation { continuation in
let query = HKSampleQuery(
sampleType: type,
predicate: nil,
limit: 1,
sortDescriptors: [sort]
) { _, samples, error in
if let error {
continuation.resume(throwing: error)
return
}
continuation.resume(returning: samples?.first as? HKQuantitySample)
}
healthStore.execute(query)
}
}
}