HealthKitQueryReader.swift 21.5 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 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623
import Foundation
import HealthKit

/// Low-level HealthKit query helper shared by the host API and anchored reader.
/// It contains no upload or anchor persistence behavior.
final class HealthKitQueryReader {
  private let healthStore: HKHealthStore

  init(healthStore: HKHealthStore) {
    self.healthStore = healthStore

  }

  func fetchSleepData(startDate: Date, endDate: Date) async throws -> [NativeSleepInterval] {
    try await fetchSleepIntervals(startDate: startDate, endDate: endDate)
  }

  func fetchActivityTargetData(startDate: Date, endDate: Date) async throws -> NativeActivityTarget? {
    try await fetchActivityTargetDataList(startDate: startDate, endDate: endDate).last
  }

  func fetchActivityTargetDataList(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
        }
        let targets = (summaries ?? [])
          .sorted {
            let lhsDate = calendar.date(from: $0.dateComponents(for: calendar)) ?? .distantPast
            let rhsDate = calendar.date(from: $1.dateComponents(for: calendar)) ?? .distantPast
            return lhsDate < rhsDate
          }
          .map { Self.activityTarget(from: $0, calendar: calendar) }
        continuation.resume(returning: targets)
      }
      healthStore.execute(query)
    }
  }

  func fetchWorkoutDataList(startDate: Date, endDate: Date) async throws -> [NativeWorkoutInterval] {
    let predicate = HKQuery.predicateForSamples(
      withStart: startDate,
      end: endDate,
      options: []
    )
    let sort = NSSortDescriptor(key: HKSampleSortIdentifierEndDate, ascending: true)

    return try await withCheckedThrowingContinuation { continuation in
      let query = HKSampleQuery(
        sampleType: .workoutType(),
        predicate: predicate,
        limit: HKObjectQueryNoLimit,
        sortDescriptors: [sort]
      ) { _, samples, error in
        if let error {
          continuation.resume(throwing: error)
          return
        }
        let workouts = (samples as? [HKWorkout] ?? []).map {
          NativeWorkoutInterval(
            workoutType: Int($0.workoutActivityType.rawValue),
            startTime: $0.startDate.timeIntervalSince1970,
            endTime: $0.endDate.timeIntervalSince1970
          )
        }
        continuation.resume(returning: workouts)
      }
      healthStore.execute(query)
    }
  }

  func fetchRawData(
    for dataType: NativeHealthDataType,
    startDate: Date,
    endDate: Date
  ) async throws -> [NativeHealthRawDataPoint] {
    switch dataType {
    case .hrv:
      return try await fetchRawQuantitySamples(
        identifier: .heartRateVariabilitySDNN,
        dataType: .hrv,
        unit: .secondUnit(with: .milli),
        startDate: startDate,
        endDate: endDate
      )
    case .heartRate:
      return try await fetchRawQuantitySamples(
        identifier: .heartRate,
        dataType: .heartRate,
        unit: HKUnit.count().unitDivided(by: .minute()),
        startDate: startDate,
        endDate: endDate
      )
    case .oxygenSaturation:
      let points = try await fetchRawQuantitySamples(
        identifier: .oxygenSaturation,
        dataType: .oxygenSaturation,
        unit: .percent(),
        startDate: startDate,
        endDate: endDate
      )
      return points.map {
        NativeHealthRawDataPoint(
          dataType: $0.dataType,
          startTime: $0.startTime,
          endTime: $0.endTime,
          value: $0.value * 100,
          isMotionLike: nil
        )
      }
    case .activeEnergy:
      return try await fetchRawQuantitySamples(
        identifier: .activeEnergyBurned,
        dataType: .activeEnergy,
        unit: .kilocalorie(),
        startDate: startDate,
        endDate: endDate
      )
    case .exercise:
      return try await fetchRawQuantitySamples(
        identifier: .appleExerciseTime,
        dataType: .exercise,
        unit: .second(),
        startDate: startDate,
        endDate: endDate
      )
    case .stand:
      return try await fetchRawQuantitySamples(
        identifier: .appleStandTime,
        dataType: .stand,
        unit: .hour(),
        startDate: startDate,
        endDate: endDate
      )
    case .steps:
      return try await fetchRawQuantitySamples(
        identifier: .stepCount,
        dataType: .steps,
        unit: .count(),
        startDate: startDate,
        endDate: endDate
      )
    case .walkingHeartRate:
      return try await fetchRawQuantitySamples(
        identifier: .walkingHeartRateAverage,
        dataType: .walkingHeartRate,
        unit: HKUnit.count().unitDivided(by: .minute()),
        startDate: startDate,
        endDate: endDate
      )
    case .restingHeartRate:
      return try await fetchRawQuantitySamples(
        identifier: .restingHeartRate,
        dataType: .restingHeartRate,
        unit: HKUnit.count().unitDivided(by: .minute()),
        startDate: startDate,
        endDate: endDate
      )
    case .sleepingHeartRate:
      return try await fetchRawQuantitySamples(
        identifier: .heartRate,
        dataType: .sleepingHeartRate,
        unit: HKUnit.count().unitDivided(by: .minute()),
        startDate: startDate,
        endDate: endDate
      )
    case .sleepingWristTemperature:
      return try await fetchRawQuantitySamples(
        identifier: .appleSleepingWristTemperature,
        dataType: .sleepingWristTemperature,
        unit: .degreeCelsius(),
        startDate: startDate,
        endDate: endDate
      )
    case .respiratoryRate:
      return try await fetchRawQuantitySamples(
        identifier: .respiratoryRate,
        dataType: .respiratoryRate,
        unit: HKUnit.count().unitDivided(by: .minute()),
        startDate: startDate,
        endDate: endDate
      )
    case .irregularHeartRhythm:
      return try await fetchRawIrregularHeartRhythmEvents(startDate: startDate, endDate: endDate)
    case .sleep:
      return []
    }
  }

  private static func activityTarget(
    from summary: HKActivitySummary,
    calendar: Calendar
  ) -> NativeActivityTarget {
    let day = calendar.date(from: summary.dateComponents(for: calendar))
    let timestamp = day.map { calendar.startOfDay(for: $0).timeIntervalSince1970 }

    return NativeActivityTarget(
      healthValueTimestamp: timestamp,
      move: Int(summary.activeEnergyBurnedGoal.doubleValue(for: .kilocalorie())),
      stand: Int(summary.appleStandHoursGoal.doubleValue(for: .count())),
//      activityMoveMode: Self.activityMoveModeValue(from: summary),
      activeEnergyBurned: summary.activeEnergyBurned.doubleValue(for: .kilocalorie()),
      activeEnergyBurnedGoal: summary.activeEnergyBurnedGoal.doubleValue(for: .kilocalorie()),
      appleMoveTime: Self.appleMoveTimeValue(from: summary),
      appleMoveTimeGoal: Self.appleMoveTimeGoalValue(from: summary),
      appleExerciseTime: summary.appleExerciseTime.doubleValue(for: .second()),
      exerciseTimeGoal: Self.exerciseTimeGoalValue(from: summary),
      appleStandHours: summary.appleStandHours.doubleValue(for: .count()),
      standHoursGoal: summary.standHoursGoal?.doubleValue(for: .count()),
    )
  }

  private static func activityMoveModeValue(from summary: HKActivitySummary) -> Int? {
    if #available(iOS 14.0, *) {
      return summary.activityMoveMode.rawValue
    }
    return nil
  }

  private static func appleMoveTimeValue(from summary: HKActivitySummary) -> Double? {
    if #available(iOS 14.0, *) {
      return summary.appleMoveTime.doubleValue(for: .second())
    }
    return nil
  }

  private static func appleMoveTimeGoalValue(from summary: HKActivitySummary) -> Double? {
    if #available(iOS 14.0, *) {
      return summary.appleMoveTimeGoal.doubleValue(for: .second())
    }
    return nil
  }

  private static func exerciseTimeGoalValue(from summary: HKActivitySummary) -> Double? {
    if #available(iOS 16.0, *) {
      return summary.exerciseTimeGoal?.doubleValue(for: .second())
    }
    return nil
  }

  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)
    }

    // HealthKit can represent derived values such as resting heart rate and
    // walking heart rate average as a day-long sample, then replace that
    // sample as the estimate improves. Requiring the sample's start date to
    // be inside the upload range would drop the replacement whenever the
    // server cursor is later than midnight. Query by interval overlap instead.
    let predicate = HKQuery.predicateForSamples(
      withStart: startDate,
      end: endDate,
      options: []
    )
    let samples = try await fetchQuantitySampleObjects(type: type, predicate: predicate)
    return samples.map { sample in
      NativeHealthDataPoint(
        dataType: dataType,
        time: sample.endDate.timeIntervalSince1970,
        value: sample.quantity.doubleValue(for: unit)
      )
    }
  }

  private func fetchRawQuantitySamples(
    identifier: HKQuantityTypeIdentifier,
    dataType: NativeHealthDataType,
    unit: HKUnit,
    startDate: Date,
    endDate: Date
  ) async throws -> [NativeHealthRawDataPoint] {
    guard let type = NativeHealthTypeCatalog.quantity(identifier) else {
      throw NativeHealthKitError.invalidType(identifier.rawValue)
    }

    let predicate = HKQuery.predicateForSamples(
      withStart: startDate,
      end: endDate,
      options: []
    )
    let samples = try await fetchQuantitySampleObjects(type: type, predicate: predicate)
    return samples.map { sample in
        var ismotion: Bool?
        if identifier == .heartRate, let rawValue = sample.metadata?[ HKMetadataKeyHeartRateMotionContext] as? NSNumber, let context = HKHeartRateMotionContext(rawValue: rawValue.intValue) {
            ismotion = context == .active
        }
        
      return NativeHealthRawDataPoint(
        dataType: dataType,
        startTime: sample.startDate.timeIntervalSince1970,
        endTime: sample.endDate.timeIntervalSince1970,
        value: sample.quantity.doubleValue(for: unit),
        isMotionLike: ismotion
      )
    }
  }

  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)
    }
    let calendar = Calendar.current
    let queryStartDate = calendar.startOfDay(for: startDate)
    let predicate = HKQuery.predicateForSamples(withStart: queryStartDate, end: endDate)
    let samples = try await fetchQuantitySampleObjects(type: type, predicate: predicate)
    let latestEndByDay = samples
      .filter { $0.endDate > startDate }
      .reduce(into: [Date: Date]()) { result, sample in
        let day = calendar.startOfDay(for: sample.startDate)
        result[day] = max(result[day] ?? .distantPast, sample.endDate)
      }

    var points: [NativeHealthDataPoint] = []
    for day in latestEndByDay.keys.sorted() {
      guard let latestEnd = latestEndByDay[day] else { continue }
      let value = try await dailyCumulative(type: type, unit: unit, day: day, endDate: endDate)
      points.append(
        NativeHealthDataPoint(
          dataType: dataType,
          time: Self.uploadTimeForDailyPoint(day: day, latestEnd: latestEnd).timeIntervalSince1970,
          value: value
        )
      )
    }
    return points
  }

  private func fetchDailyStandHours(startDate: Date, endDate: Date) async throws -> [NativeHealthDataPoint] {
    let calendar = Calendar.current
    guard let standType = NativeHealthTypeCatalog.quantity(.appleStandTime) else {
      throw NativeHealthKitError.invalidType("appleStandTime")
    }
    let queryStartDate = calendar.startOfDay(for: startDate)
    let samplePredicate = HKQuery.predicateForSamples(withStart: queryStartDate, end: endDate)
    let samples = try await fetchQuantitySampleObjects(type: standType, predicate: samplePredicate)
    let latestEndByDay = samples
      .filter { $0.endDate > startDate }
      .reduce(into: [Date: Date]()) { result, sample in
        let day = calendar.startOfDay(for: sample.startDate)
        result[day] = max(result[day] ?? .distantPast, sample.endDate)
      }

    guard !latestEndByDay.isEmpty else { return [] }
    var start = calendar.dateComponents([.era, .year, .month, .day], from: latestEndByDay.keys.min()!)
    var end = calendar.dateComponents([.era, .year, .month, .day], from: latestEndByDay.keys.max()!)
    start.calendar = calendar
    end.calendar = calendar
    let summaryPredicate = HKQuery.predicate(forActivitySummariesBetweenStart: start, end: end)

    return try await withCheckedThrowingContinuation { continuation in
      let query = HKActivitySummaryQuery(predicate: summaryPredicate) { _, summaries, error in
        if let error {
          continuation.resume(throwing: error)
          return
        }

        let points = (summaries ?? [])
          .compactMap { summary -> NativeHealthDataPoint? in
            guard let date = calendar.date(from: summary.dateComponents(for: calendar)),
                  let latestEnd = latestEndByDay[calendar.startOfDay(for: date)] else {
              return nil
            }
            return NativeHealthDataPoint(
              dataType: .stand,
              time: Self.uploadTimeForDailyPoint(day: date, latestEnd: latestEnd).timeIntervalSince1970,
              value: summary.appleStandHours.doubleValue(for: .count())
            )
          }
          .sorted { $0.time < $1.time }

        continuation.resume(returning: points)
      }
      healthStore.execute(query)
    }
  }

  private static func uploadTimeForDailyPoint(day: Date, latestEnd: Date) -> Date {
    let calendar = Calendar.current
    let start = calendar.startOfDay(for: day)
    guard let nextDay = calendar.date(byAdding: .day, value: 1, to: start),
          latestEnd >= nextDay else {
      return latestEnd
    }
    return nextDay.addingTimeInterval(-1)
  }

  private func fetchSleepIntervals(startDate: Date, endDate: Date) async throws -> [NativeSleepInterval] {
    guard let type = NativeHealthTypeCatalog.category(.sleepAnalysis) else {
      throw NativeHealthKitError.invalidType("sleepAnalysis")
    }
    // Sleep stages are intervals and can begin before the requested boundary.
    // Include any stage that overlaps the range so overnight data is not lost.
    let predicate = HKQuery.predicateForSamples(
      withStart: startDate,
      end: endDate,
      options: []
    )
    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: []
    )
    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.endDate.timeIntervalSince1970,
            value: Double(sample.value)
          )
        }
        continuation.resume(returning: points)
      }
      healthStore.execute(query)
    }
  }

  private func fetchRawIrregularHeartRhythmEvents(
    startDate: Date,
    endDate: Date
  ) async throws -> [NativeHealthRawDataPoint] {
    guard let type = NativeHealthTypeCatalog.category(.irregularHeartRhythmEvent) else {
      throw NativeHealthKitError.invalidType("irregularHeartRhythmEvent")
    }
    let predicate = HKQuery.predicateForSamples(
      withStart: startDate,
      end: endDate,
      options: []
    )
    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
          NativeHealthRawDataPoint(
            dataType: .irregularHeartRhythm,
            startTime: sample.startDate.timeIntervalSince1970,
            endTime: sample.endDate.timeIntervalSince1970,
            value: Double(sample.value),
            isMotionLike: nil
          )
        }
        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)
    }
  }

  private func fetchQuantitySampleObjects(
    type: HKQuantityType,
    predicate: NSPredicate
  ) async throws -> [HKQuantitySample] {
    let sort = NSSortDescriptor(key: HKSampleSortIdentifierEndDate, 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)
        } else {
          continuation.resume(returning: samples as? [HKQuantitySample] ?? [])
        }
      }
      healthStore.execute(query)
    }
  }

  private func dailyCumulative(
    type: HKQuantityType,
    unit: HKUnit,
    day: Date,
    endDate: Date
  ) async throws -> Double {
    let calendar = Calendar.current
    let start = calendar.startOfDay(for: day)
    let nextDay = calendar.date(byAdding: .day, value: 1, to: start) ?? endDate
    let end = min(nextDay, endDate)
    let predicate = HKQuery.predicateForSamples(
      withStart: start,
      end: end,
      options: .strictStartDate
    )
    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)
        } else {
          continuation.resume(returning: statistics?.sumQuantity()?.doubleValue(for: unit) ?? 0)
        }
      }
      healthStore.execute(query)
        
    }
  }
}