/* * 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. */ /** * @file * @kit BasicServicesKit */ import { AsyncCallback, BusinessError } from './@ohos.base'; /** * Provides methods to get power consumption information. * * @namespace batteryStats * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ declare namespace batteryStats { /** * Describes the consumption type. * * @enum { number } * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ export enum ConsumptionType { /** Indicates an invalid consumption type * * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ CONSUMPTION_TYPE_INVALID = -17, /** Indicates the battery power consumption generated by APP * * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ CONSUMPTION_TYPE_APP, /** Indicates the battery power consumption generated by bluetooth * * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ CONSUMPTION_TYPE_BLUETOOTH, /** Indicates the battery power consumption generated when the CPU is idle * * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ CONSUMPTION_TYPE_IDLE, /** Indicates the battery power consumption generated when phone call is active * * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ CONSUMPTION_TYPE_PHONE, /** Indicates the battery power consumption generated by radio * * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ CONSUMPTION_TYPE_RADIO, /** Indicates the battery power consumption generated by screen * * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ CONSUMPTION_TYPE_SCREEN, /** Indicates the battery power consumption generated by user * * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ CONSUMPTION_TYPE_USER, /** Indicates the battery power consumption generated by WIFI * * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ CONSUMPTION_TYPE_WIFI } /** * Obtains the power consumption information list. * * @returns { Promise> } Power consumption information list. * @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API. * @throws { BusinessError } 4600101 - Failed to connect to the service. * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ function getBatteryStats(): Promise>; /** * Obtains the power consumption information list. * * @param { AsyncCallback> } callback Indicates the callback of power consumption information list. * AsyncCallback encapsulates an interface of BatteryStatsInfo type. * @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API. * @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Parameter verification failed. * @throws { BusinessError } 4600101 - Failed to connect to the service. * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ function getBatteryStats(callback: AsyncCallback>): void; /** * Obtains power consumption information(mAh) for a given uid. * * @param { number } uid Indicates the uid. * @returns { number } Power consumption information(mAh). * @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API. * @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Parameter verification failed. * @throws { BusinessError } 4600101 - Failed to connect to the service. * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ function getAppPowerValue(uid: number): number; /** * Obtains power consumption information(Percent) for a given uid. * * @param { number } uid Indicates the uid. * @returns { number } Power consumption information(Percent). * @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API. * @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Parameter verification failed. * @throws { BusinessError } 4600101 - Failed to connect to the service. * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ function getAppPowerPercent(uid: number): number; /** * Obtains power consumption information(mAh) for a given type. * * @param { ConsumptionType } type Indicates the hardware type. * the ConsumptionType type is an enumeration class. * @returns { number } Power consumption information(mAh). * @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API. * @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Parameter verification failed. * @throws { BusinessError } 4600101 - Failed to connect to the service. * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ function getHardwareUnitPowerValue(type: ConsumptionType): number; /** * Obtains power consumption information(Percent) for a given type. * * @param { ConsumptionType } type Indicates the hardware type. * the ConsumptionType type is an enumeration class. * @returns { number } Power consumption information(Percent). * @throws { BusinessError } 202 - Permission verification failed. A non-system application calls a system API. * @throws { BusinessError } 401 - Parameter error. Possible causes: 1. Parameter verification failed. * @throws { BusinessError } 4600101 - Failed to connect to the service. * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ function getHardwareUnitPowerPercent(type: ConsumptionType): number; /** * Contains power consumption information of a device. *

Power consumption information includes the uid, type and power consumption value. * * @typedef BatteryStatsInfo * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ interface BatteryStatsInfo { /** The uid related with the power consumption info. * * @type { number } * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ uid: number; /** The type related with the power consumption info. * * @type { ConsumptionType } * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ type: ConsumptionType; /** The power consumption value(mAh). * * @type { number } * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ power: number; } } /** * Provides methods to get power consumption information. * * @namespace batteryStats * @syscap SystemCapability.PowerManager.BatteryStatistics * @systemapi * @since 8 */ export default batteryStats;