mirror of
https://gitee.com/openharmony/interface_sdk-js
synced 2024-11-23 15:20:17 +00:00
d9b0c03c29
Signed-off-by: aqxyjay <zhangchunxin@huawei.com>
145 lines
4.7 KiB
TypeScript
Executable File
145 lines
4.7 KiB
TypeScript
Executable File
/*
|
|
* Copyright (c) 2022 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import {AsyncCallback, BusinessError} from "./basic";
|
|
|
|
/**
|
|
* Provides methods to get power consumption information.
|
|
*
|
|
* @syscap SystemCapability.PowerManager.BatteryStatistics
|
|
* @systemapi
|
|
* @since 8
|
|
*/
|
|
declare namespace batteryStats {
|
|
/**
|
|
* Describes the consumption type.
|
|
*
|
|
* @systemapi
|
|
* @since 8
|
|
*/
|
|
export enum ConsumptionType {
|
|
/** Indicates an invalid consumption type */
|
|
CONSUMPTION_TYPE_INVALID = -17,
|
|
|
|
/** Indicates the battery power consumption generated by APP */
|
|
CONSUMPTION_TYPE_APP,
|
|
|
|
/** Indicates the battery power consumption generated by bluetooth */
|
|
CONSUMPTION_TYPE_BLUETOOTH,
|
|
|
|
/** Indicates the battery power consumption generated when the CPU is idle */
|
|
CONSUMPTION_TYPE_IDLE,
|
|
|
|
/** Indicates the battery power consumption generated when phone call is active */
|
|
CONSUMPTION_TYPE_PHONE,
|
|
|
|
/** Indicates the battery power consumption generated by radio */
|
|
CONSUMPTION_TYPE_RADIO,
|
|
|
|
/** Indicates the battery power consumption generated by screen */
|
|
CONSUMPTION_TYPE_SCREEN,
|
|
|
|
/** Indicates the battery power consumption generated by user */
|
|
CONSUMPTION_TYPE_USER,
|
|
|
|
/** Indicates the battery power consumption generated by WIFI */
|
|
CONSUMPTION_TYPE_WIFI
|
|
}
|
|
|
|
/**
|
|
* Obtains the power consumption information list.
|
|
*
|
|
* @return {Promise<Array<BatteryStatsInfo>>} Power consumption information list.
|
|
* @systemapi
|
|
* @since 8
|
|
*/
|
|
function getBatteryStats(): Promise<Array<BatteryStatsInfo>>;
|
|
|
|
/**
|
|
* Obtains the power consumption information list.
|
|
*
|
|
* @param {AsyncCallback} callback Indicates the callback of power consumption information list.
|
|
* @throws {BusinessError} 401 - If the callback is not valid.
|
|
* @systemapi
|
|
* @since 8
|
|
*/
|
|
function getBatteryStats(callback: AsyncCallback<Array<BatteryStatsInfo>>): void;
|
|
|
|
/**
|
|
* Obtains power consumption information(Mah) for a given uid.
|
|
*
|
|
* @param {number} uid Indicates the uid.
|
|
* @return {number} Power consumption information(Mah).
|
|
* @throws {BusinessError} 4600101 - If connecting to the service failed.
|
|
* @systemapi
|
|
* @since 8
|
|
*/
|
|
function getAppPowerValue(uid: number): number;
|
|
|
|
/**
|
|
* Obtains power consumption information(Percent) for a given uid.
|
|
*
|
|
* @param {number} uid Indicates the uid.
|
|
* @return {number} Power consumption information(Percent).
|
|
* @throws {BusinessError} 4600101 - If connecting to the service failed.
|
|
* @systemapi
|
|
* @since 8
|
|
*/
|
|
function getAppPowerPercent(uid: number): number;
|
|
|
|
/**
|
|
* Obtains power consumption information(Mah) for a given type.
|
|
*
|
|
* @param {ConsumptionType} type Indicates the hardware type.
|
|
* @return {number} Power consumption information(Mah).
|
|
* @throws {BusinessError} 401 - If the type is not valid.
|
|
* @throws {BusinessError} 4600101 - If connecting to the service failed.
|
|
* @systemapi
|
|
* @since 8
|
|
*/
|
|
function getHardwareUnitPowerValue(type: ConsumptionType): number;
|
|
|
|
/**
|
|
* Obtains power consumption information(Percent) for a given type.
|
|
*
|
|
* @param {ConsumptionType} type Indicates the hardware type.
|
|
* @return {number} Power consumption information(Percent).
|
|
* @throws {BusinessError} 401 - If the type is not valid.
|
|
* @throws {BusinessError} 4600101 - If connecting to the service failed.
|
|
* @systemapi
|
|
* @since 8
|
|
*/
|
|
function getHardwareUnitPowerPercent(type: ConsumptionType): number;
|
|
|
|
/**
|
|
* Contains power consumption information of a device.
|
|
*
|
|
* <p>Power consumption information includes the uid, type and power consumption value.
|
|
*
|
|
* @systemapi
|
|
* @since 8
|
|
*/
|
|
interface BatteryStatsInfo {
|
|
/** The uid related with the power consumption info. */
|
|
uid: number;
|
|
|
|
/** The type related with the power consumption info. */
|
|
type: ConsumptionType;
|
|
|
|
/** The power consumption value(mah). */
|
|
power: number;
|
|
}
|
|
}
|
|
export default batteryStats; |