Merge "health@2.0: IHealthInfoCallback expands HealthInfo struct." am: f2f00cb742
am: 4b29ecf7c1
Change-Id: I955bc91b50e7551eebfd2210482502ef1b080315
This commit is contained in:
commit
aaf2e923d1
4 changed files with 68 additions and 89 deletions
|
@ -74,6 +74,36 @@ cc_library {
|
|||
],
|
||||
}
|
||||
|
||||
genrule {
|
||||
name: "android.hardware.health-V2.0-java_gen_java",
|
||||
tools: ["hidl-gen"],
|
||||
cmd: "$(location hidl-gen) -o $(genDir) -Ljava -randroid.hardware:hardware/interfaces -randroid.hidl:system/libhidl/transport android.hardware.health@2.0",
|
||||
srcs: [
|
||||
":android.hardware.health@2.0_hal",
|
||||
],
|
||||
out: [
|
||||
"android/hardware/health/V2_0/HealthInfo.java",
|
||||
"android/hardware/health/V2_0/Result.java",
|
||||
"android/hardware/health/V2_0/IHealth.java",
|
||||
"android/hardware/health/V2_0/IHealthInfoCallback.java",
|
||||
],
|
||||
}
|
||||
|
||||
java_library {
|
||||
name: "android.hardware.health-V2.0-java",
|
||||
no_framework_libs: true,
|
||||
defaults: ["hidl-java-module-defaults"],
|
||||
srcs: [":android.hardware.health-V2.0-java_gen_java"],
|
||||
libs: [
|
||||
"hwbinder",
|
||||
"android.hardware.health-V1.0-java",
|
||||
"android.hidl.base-V1.0-java",
|
||||
]
|
||||
}
|
||||
|
||||
// This package does not export any types. Not creating java constants export.
|
||||
|
||||
|
||||
genrule {
|
||||
name: "android.hardware.health@2.0-adapter-helper_genc++",
|
||||
tools: ["hidl-gen"],
|
||||
|
@ -100,7 +130,6 @@ genrule {
|
|||
],
|
||||
}
|
||||
|
||||
|
||||
cc_library {
|
||||
name: "android.hardware.health@2.0-adapter-helper",
|
||||
defaults: ["hidl-module-defaults"],
|
||||
|
|
|
@ -1,86 +0,0 @@
|
|||
# This file is autogenerated by hidl-gen. Do not edit manually.
|
||||
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
|
||||
################################################################################
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_MODULE := android.hardware.health-V2.0-java
|
||||
LOCAL_MODULE_CLASS := JAVA_LIBRARIES
|
||||
|
||||
intermediates := $(call local-generated-sources-dir, COMMON)
|
||||
|
||||
HIDL := $(HOST_OUT_EXECUTABLES)/hidl-gen$(HOST_EXECUTABLE_SUFFIX)
|
||||
|
||||
LOCAL_JAVA_LIBRARIES := \
|
||||
android.hardware.health-V1.0-java \
|
||||
android.hidl.base-V1.0-java \
|
||||
|
||||
LOCAL_NO_STANDARD_LIBRARIES := true
|
||||
LOCAL_JAVA_LIBRARIES += core-oj hwbinder
|
||||
|
||||
#
|
||||
# Build types.hal (Result)
|
||||
#
|
||||
GEN := $(intermediates)/android/hardware/health/V2_0/Result.java
|
||||
$(GEN): $(HIDL)
|
||||
$(GEN): PRIVATE_HIDL := $(HIDL)
|
||||
$(GEN): PRIVATE_DEPS := $(LOCAL_PATH)/types.hal
|
||||
$(GEN): PRIVATE_OUTPUT_DIR := $(intermediates)
|
||||
$(GEN): PRIVATE_CUSTOM_TOOL = \
|
||||
$(PRIVATE_HIDL) -o $(PRIVATE_OUTPUT_DIR) \
|
||||
-Ljava \
|
||||
-randroid.hardware:hardware/interfaces \
|
||||
-randroid.hidl:system/libhidl/transport \
|
||||
android.hardware.health@2.0::types.Result
|
||||
|
||||
$(GEN): $(LOCAL_PATH)/types.hal
|
||||
$(transform-generated-source)
|
||||
LOCAL_GENERATED_SOURCES += $(GEN)
|
||||
|
||||
#
|
||||
# Build IHealth.hal
|
||||
#
|
||||
GEN := $(intermediates)/android/hardware/health/V2_0/IHealth.java
|
||||
$(GEN): $(HIDL)
|
||||
$(GEN): PRIVATE_HIDL := $(HIDL)
|
||||
$(GEN): PRIVATE_DEPS := $(LOCAL_PATH)/IHealth.hal
|
||||
$(GEN): PRIVATE_DEPS += $(LOCAL_PATH)/IHealthInfoCallback.hal
|
||||
$(GEN): $(LOCAL_PATH)/IHealthInfoCallback.hal
|
||||
$(GEN): PRIVATE_DEPS += $(LOCAL_PATH)/types.hal
|
||||
$(GEN): $(LOCAL_PATH)/types.hal
|
||||
$(GEN): PRIVATE_OUTPUT_DIR := $(intermediates)
|
||||
$(GEN): PRIVATE_CUSTOM_TOOL = \
|
||||
$(PRIVATE_HIDL) -o $(PRIVATE_OUTPUT_DIR) \
|
||||
-Ljava \
|
||||
-randroid.hardware:hardware/interfaces \
|
||||
-randroid.hidl:system/libhidl/transport \
|
||||
android.hardware.health@2.0::IHealth
|
||||
|
||||
$(GEN): $(LOCAL_PATH)/IHealth.hal
|
||||
$(transform-generated-source)
|
||||
LOCAL_GENERATED_SOURCES += $(GEN)
|
||||
|
||||
#
|
||||
# Build IHealthInfoCallback.hal
|
||||
#
|
||||
GEN := $(intermediates)/android/hardware/health/V2_0/IHealthInfoCallback.java
|
||||
$(GEN): $(HIDL)
|
||||
$(GEN): PRIVATE_HIDL := $(HIDL)
|
||||
$(GEN): PRIVATE_DEPS := $(LOCAL_PATH)/IHealthInfoCallback.hal
|
||||
$(GEN): PRIVATE_OUTPUT_DIR := $(intermediates)
|
||||
$(GEN): PRIVATE_CUSTOM_TOOL = \
|
||||
$(PRIVATE_HIDL) -o $(PRIVATE_OUTPUT_DIR) \
|
||||
-Ljava \
|
||||
-randroid.hardware:hardware/interfaces \
|
||||
-randroid.hidl:system/libhidl/transport \
|
||||
android.hardware.health@2.0::IHealthInfoCallback
|
||||
|
||||
$(GEN): $(LOCAL_PATH)/IHealthInfoCallback.hal
|
||||
$(transform-generated-source)
|
||||
LOCAL_GENERATED_SOURCES += $(GEN)
|
||||
include $(BUILD_JAVA_LIBRARY)
|
||||
|
||||
|
||||
|
||||
include $(call all-makefiles-under,$(LOCAL_PATH))
|
|
@ -16,8 +16,6 @@
|
|||
|
||||
package android.hardware.health@2.0;
|
||||
|
||||
import @1.0::HealthInfo;
|
||||
|
||||
/**
|
||||
* IHealthInfoCallback is the callback interface to
|
||||
* {@link IHealthInfoBus.registerCallback}.
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
|
||||
package android.hardware.health@2.0;
|
||||
|
||||
import @1.0::HealthInfo;
|
||||
import @1.0::Result;
|
||||
|
||||
/**
|
||||
|
@ -25,3 +26,40 @@ enum Result : @1.0::Result {
|
|||
NOT_FOUND,
|
||||
CALLBACK_DIED,
|
||||
};
|
||||
|
||||
struct HealthInfo {
|
||||
/**
|
||||
* Legacy information from 1.0 HAL.
|
||||
*
|
||||
* If a value is not available, it must be set to 0, UNKNOWN, or empty
|
||||
* string.
|
||||
*/
|
||||
@1.0::HealthInfo legacy;
|
||||
|
||||
/**
|
||||
* Average battery current in microamperes. Positive
|
||||
* values indicate net current entering the battery from a charge source,
|
||||
* negative values indicate net current discharging from the battery.
|
||||
* The time period over which the average is computed may depend on the
|
||||
* fuel gauge hardware and its configuration.
|
||||
*
|
||||
* If this value is not available, it must be set to 0.
|
||||
*/
|
||||
int32_t batteryCurrentAverage;
|
||||
|
||||
/**
|
||||
* Remaining battery capacity percentage of total capacity
|
||||
* (with no fractional part). This value must be in the range 0-100
|
||||
* (inclusive).
|
||||
*
|
||||
* If this value is not available, it must be set to 0.
|
||||
*/
|
||||
int32_t batteryCapacity;
|
||||
|
||||
/**
|
||||
* Battery remaining energy in nanowatt-hours.
|
||||
*
|
||||
* If this value is not available, it must be set to 0.
|
||||
*/
|
||||
int64_t energyCounter;
|
||||
};
|
Loading…
Reference in a new issue