HealthDataReader.swift
11.1 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
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 = fetchQuantitySamples(
identifier: .activeEnergyBurned,
dataType: .activeEnergy,
unit: .kilocalorie(),
startDate: startDate,
endDate: endDate
)
async let exercise = fetchQuantitySamples(
identifier: .appleExerciseTime,
dataType: .exercise,
unit: .minute(),
startDate: startDate,
endDate: endDate
)
async let stand = fetchQuantitySamples(
identifier: .appleStandTime,
dataType: .stand,
unit: .minute(),
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)
}
}
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)
}
}
}