如何从具有 HKDevice 的健康工具包中查询样本
How to query for samples from health kit that have an HKDevice
我想从 HealthKit 中查询样本,但为了防止不准确或被操纵的数据,我不想要其他应用程序写入健康的样本。有谁知道我可以使用什么谓词来过滤掉所有应用程序的数据或只允许来自设备的数据?提前致谢。
编辑:我意识到应用程序可以通过包含 HKDevice 将数据保存到健康。所以过滤掉没有设备的样本是行不通的。
我仍然乐于接受建议和替代解决方案,但这是我的解决方法,因为我无法弄清楚如何使用谓词来完成工作。
let datePredicate = HKQuery.predicateForSamples(withStart:Date(), end: nil, options: [])
let sampleQuery = HKAnchoredObjectQuery(type: sampleType,
predicate: predicate,
anchor: nil,
limit: Int(HKObjectQueryNoLimit)) { query,
samples,
deletedObjects,
anchor,
error in
if let error = error {
print("Error performing sample query: \(error.localizedDescription)")
return
}
guard let samples = samples as? [HKQuantitySample] else { return }
// this line filters out all samples that do not have a device
let samplesFromDevices = samples.filter {
[=10=].device != nil && [=10=].sourceRevision.source.bundleIdentifier.hasPrefix("com.apple.health")
}
doStuffWithMySamples(samplesFromDevices)
}
如您所见,我只是在数据通过后对其进行过滤,而不是事先进行过滤。
编辑:健康中列出的来源似乎分为应用程序和实际设备。不是 100% 确定他们是如何做到这一点的,但似乎设备部分下的源都有一个前缀为 com.apple.health 的包标识符。希望这有效。
如果您想排除手动输入的数据,请参阅此答案:
用户通过 Health 添加到 HealthKit 的示例将具有 HKMetadataKeyWasUserEntered
键。
您可以在查询中过滤掉 apple 未存储的结果,而不是迭代所有结果。
首先,您需要获取所需类型的所有资源。
let query = HKSourceQuery(sampleType: type,
samplePredicate: predicate) {
query, sources, error in
// error handling ...
// create a list of your desired sources
let desiredSources = sources?.filter {
![=10=].bundleIdentifier.starts(with: "com.apple.health")
}
// now use that list as a predicate for your query
let sourcePredicate = HKQuery.predicateForObjects(from: desiredSources!)
// use this predicate to query for data
}
您还可以使用 NSCompoundPredicate
组合其他谓词
我想从 HealthKit 中查询样本,但为了防止不准确或被操纵的数据,我不想要其他应用程序写入健康的样本。有谁知道我可以使用什么谓词来过滤掉所有应用程序的数据或只允许来自设备的数据?提前致谢。
编辑:我意识到应用程序可以通过包含 HKDevice 将数据保存到健康。所以过滤掉没有设备的样本是行不通的。
我仍然乐于接受建议和替代解决方案,但这是我的解决方法,因为我无法弄清楚如何使用谓词来完成工作。
let datePredicate = HKQuery.predicateForSamples(withStart:Date(), end: nil, options: [])
let sampleQuery = HKAnchoredObjectQuery(type: sampleType,
predicate: predicate,
anchor: nil,
limit: Int(HKObjectQueryNoLimit)) { query,
samples,
deletedObjects,
anchor,
error in
if let error = error {
print("Error performing sample query: \(error.localizedDescription)")
return
}
guard let samples = samples as? [HKQuantitySample] else { return }
// this line filters out all samples that do not have a device
let samplesFromDevices = samples.filter {
[=10=].device != nil && [=10=].sourceRevision.source.bundleIdentifier.hasPrefix("com.apple.health")
}
doStuffWithMySamples(samplesFromDevices)
}
如您所见,我只是在数据通过后对其进行过滤,而不是事先进行过滤。
编辑:健康中列出的来源似乎分为应用程序和实际设备。不是 100% 确定他们是如何做到这一点的,但似乎设备部分下的源都有一个前缀为 com.apple.health 的包标识符。希望这有效。
如果您想排除手动输入的数据,请参阅此答案:
用户通过 Health 添加到 HealthKit 的示例将具有 HKMetadataKeyWasUserEntered
键。
您可以在查询中过滤掉 apple 未存储的结果,而不是迭代所有结果。
首先,您需要获取所需类型的所有资源。
let query = HKSourceQuery(sampleType: type,
samplePredicate: predicate) {
query, sources, error in
// error handling ...
// create a list of your desired sources
let desiredSources = sources?.filter {
![=10=].bundleIdentifier.starts(with: "com.apple.health")
}
// now use that list as a predicate for your query
let sourcePredicate = HKQuery.predicateForObjects(from: desiredSources!)
// use this predicate to query for data
}
您还可以使用 NSCompoundPredicate
组合其他谓词