1 /*
2  * Copyright (C) 2021 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #include <android-base/logging.h>
18 #include <android/hardware/health/translate-ndk.h>
19 #include <hal_conversion.h>
20 #include <pixelhealth/HealthHelper.h>
21 
22 using HidlHealthInfo = android::hardware::health::V2_0::HealthInfo;
23 using aidl::android::hardware::health::HealthInfo;
24 using android::h2a::translate;
25 using android::hardware::health::V1_0::hal_conversion::convertToHealthInfo;
26 
27 namespace hardware {
28 namespace google {
29 namespace pixel {
30 namespace health {
31 
ToHealthInfo(const struct android::BatteryProperties * props)32 HealthInfo ToHealthInfo(const struct android::BatteryProperties *props) {
33     HidlHealthInfo hidl_health_info;
34     convertToHealthInfo(props, hidl_health_info.legacy);
35     HealthInfo aidl_health_info;
36     CHECK(translate(hidl_health_info, &aidl_health_info));
37     return aidl_health_info;
38 }
39 
40 }  // namespace health
41 }  // namespace pixel
42 }  // namespace google
43 }  // namespace hardware
44