2013-06-12 22:25:59 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define LOG_TAG "healthd"
|
|
|
|
|
2016-02-17 21:21:34 +01:00
|
|
|
#include <healthd/healthd.h>
|
|
|
|
#include <healthd/BatteryMonitor.h>
|
2013-06-12 22:25:59 +02:00
|
|
|
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2015-07-23 18:22:50 +02:00
|
|
|
#include <sys/types.h>
|
2013-06-12 22:25:59 +02:00
|
|
|
#include <unistd.h>
|
2019-01-12 02:09:20 +01:00
|
|
|
|
|
|
|
#include <algorithm>
|
2016-02-18 23:52:46 +01:00
|
|
|
#include <memory>
|
2019-10-07 20:18:04 +02:00
|
|
|
#include <optional>
|
2015-07-23 18:22:50 +02:00
|
|
|
|
2016-06-05 20:20:13 +02:00
|
|
|
#include <android-base/file.h>
|
2016-10-12 02:09:00 +02:00
|
|
|
#include <android-base/parseint.h>
|
2016-06-05 20:20:13 +02:00
|
|
|
#include <android-base/strings.h>
|
2019-10-07 20:18:04 +02:00
|
|
|
#include <android/hardware/health/2.1/types.h>
|
2013-06-12 22:25:59 +02:00
|
|
|
#include <batteryservice/BatteryService.h>
|
|
|
|
#include <cutils/klog.h>
|
2014-05-22 01:28:13 +02:00
|
|
|
#include <cutils/properties.h>
|
2013-08-15 02:39:13 +02:00
|
|
|
#include <utils/Errors.h>
|
2013-06-12 22:25:59 +02:00
|
|
|
#include <utils/String8.h>
|
|
|
|
#include <utils/Vector.h>
|
|
|
|
|
|
|
|
#define POWER_SUPPLY_SUBSYSTEM "power_supply"
|
|
|
|
#define POWER_SUPPLY_SYSFS_PATH "/sys/class/" POWER_SUPPLY_SUBSYSTEM
|
2014-07-11 00:06:21 +02:00
|
|
|
#define FAKE_BATTERY_CAPACITY 42
|
|
|
|
#define FAKE_BATTERY_TEMPERATURE 424
|
2016-02-26 01:19:30 +01:00
|
|
|
#define MILLION 1.0e6
|
2015-10-27 18:43:53 +01:00
|
|
|
#define DEFAULT_VBUS_VOLTAGE 5000000
|
2013-06-12 22:25:59 +02:00
|
|
|
|
2019-10-07 20:18:04 +02:00
|
|
|
using HealthInfo_1_0 = android::hardware::health::V1_0::HealthInfo;
|
|
|
|
using HealthInfo_2_0 = android::hardware::health::V2_0::HealthInfo;
|
|
|
|
using HealthInfo_2_1 = android::hardware::health::V2_1::HealthInfo;
|
|
|
|
using android::hardware::health::V1_0::BatteryHealth;
|
|
|
|
using android::hardware::health::V1_0::BatteryStatus;
|
2019-10-07 22:58:29 +02:00
|
|
|
using android::hardware::health::V2_1::BatteryCapacityLevel;
|
2020-02-13 02:00:24 +01:00
|
|
|
using android::hardware::health::V2_1::Constants;
|
2019-10-07 20:18:04 +02:00
|
|
|
|
2013-06-12 22:25:59 +02:00
|
|
|
namespace android {
|
|
|
|
|
2019-10-07 20:18:04 +02:00
|
|
|
template <typename T>
|
|
|
|
struct SysfsStringEnumMap {
|
2014-05-16 00:00:59 +02:00
|
|
|
const char* s;
|
2019-10-07 20:18:04 +02:00
|
|
|
T val;
|
2013-06-12 22:25:59 +02:00
|
|
|
};
|
|
|
|
|
2019-10-07 20:18:04 +02:00
|
|
|
template <typename T>
|
|
|
|
static std::optional<T> mapSysfsString(const char* str, SysfsStringEnumMap<T> map[]) {
|
2013-06-12 22:25:59 +02:00
|
|
|
for (int i = 0; map[i].s; i++)
|
|
|
|
if (!strcmp(str, map[i].s))
|
|
|
|
return map[i].val;
|
|
|
|
|
2019-10-07 20:18:04 +02:00
|
|
|
return std::nullopt;
|
2016-02-17 02:19:23 +01:00
|
|
|
}
|
|
|
|
|
2019-11-06 02:04:50 +01:00
|
|
|
static void initHealthInfo(HealthInfo_2_1* health_info_2_1) {
|
|
|
|
*health_info_2_1 = HealthInfo_2_1{};
|
|
|
|
|
|
|
|
// HIDL enum values are zero initialized, so they need to be initialized
|
|
|
|
// properly.
|
|
|
|
health_info_2_1->batteryCapacityLevel = BatteryCapacityLevel::UNKNOWN;
|
2020-02-13 02:00:24 +01:00
|
|
|
health_info_2_1->batteryChargeTimeToFullNowSeconds =
|
|
|
|
(int64_t)Constants::BATTERY_CHARGE_TIME_TO_FULL_NOW_SECONDS_UNSUPPORTED;
|
2019-11-06 02:04:50 +01:00
|
|
|
auto* props = &health_info_2_1->legacy.legacy;
|
|
|
|
props->batteryStatus = BatteryStatus::UNKNOWN;
|
|
|
|
props->batteryHealth = BatteryHealth::UNKNOWN;
|
|
|
|
}
|
|
|
|
|
2018-01-19 23:03:59 +01:00
|
|
|
BatteryMonitor::BatteryMonitor()
|
|
|
|
: mHealthdConfig(nullptr),
|
|
|
|
mBatteryDevicePresent(false),
|
|
|
|
mBatteryFixedCapacity(0),
|
2019-10-07 20:18:04 +02:00
|
|
|
mBatteryFixedTemperature(0),
|
2019-11-06 02:04:50 +01:00
|
|
|
mHealthInfo(std::make_unique<HealthInfo_2_1>()) {
|
|
|
|
initHealthInfo(mHealthInfo.get());
|
|
|
|
}
|
2019-10-07 20:18:04 +02:00
|
|
|
|
|
|
|
BatteryMonitor::~BatteryMonitor() {}
|
|
|
|
|
|
|
|
const HealthInfo_1_0& BatteryMonitor::getHealthInfo_1_0() const {
|
|
|
|
return getHealthInfo_2_0().legacy;
|
|
|
|
}
|
|
|
|
|
|
|
|
const HealthInfo_2_0& BatteryMonitor::getHealthInfo_2_0() const {
|
|
|
|
return getHealthInfo_2_1().legacy;
|
2016-02-17 02:19:23 +01:00
|
|
|
}
|
|
|
|
|
2019-10-07 20:18:04 +02:00
|
|
|
const HealthInfo_2_1& BatteryMonitor::getHealthInfo_2_1() const {
|
|
|
|
return *mHealthInfo;
|
2018-01-13 02:44:33 +01:00
|
|
|
}
|
|
|
|
|
2019-10-07 20:18:04 +02:00
|
|
|
BatteryStatus getBatteryStatus(const char* status) {
|
|
|
|
static SysfsStringEnumMap<BatteryStatus> batteryStatusMap[] = {
|
|
|
|
{"Unknown", BatteryStatus::UNKNOWN},
|
|
|
|
{"Charging", BatteryStatus::CHARGING},
|
|
|
|
{"Discharging", BatteryStatus::DISCHARGING},
|
|
|
|
{"Not charging", BatteryStatus::NOT_CHARGING},
|
|
|
|
{"Full", BatteryStatus::FULL},
|
|
|
|
{NULL, BatteryStatus::UNKNOWN},
|
2013-06-12 22:25:59 +02:00
|
|
|
};
|
|
|
|
|
2019-10-07 20:18:04 +02:00
|
|
|
auto ret = mapSysfsString(status, batteryStatusMap);
|
|
|
|
if (!ret) {
|
2013-06-12 22:25:59 +02:00
|
|
|
KLOG_WARNING(LOG_TAG, "Unknown battery status '%s'\n", status);
|
2019-10-07 20:18:04 +02:00
|
|
|
*ret = BatteryStatus::UNKNOWN;
|
2013-06-12 22:25:59 +02:00
|
|
|
}
|
|
|
|
|
2019-10-07 20:18:04 +02:00
|
|
|
return *ret;
|
2013-06-12 22:25:59 +02:00
|
|
|
}
|
|
|
|
|
2019-12-20 00:09:41 +01:00
|
|
|
BatteryCapacityLevel getBatteryCapacityLevel(const char* capacityLevel) {
|
|
|
|
static SysfsStringEnumMap<BatteryCapacityLevel> batteryCapacityLevelMap[] = {
|
|
|
|
{"Unknown", BatteryCapacityLevel::UNKNOWN},
|
|
|
|
{"Critical", BatteryCapacityLevel::CRITICAL},
|
|
|
|
{"Low", BatteryCapacityLevel::LOW},
|
|
|
|
{"Normal", BatteryCapacityLevel::NORMAL},
|
|
|
|
{"High", BatteryCapacityLevel::HIGH},
|
|
|
|
{"Full", BatteryCapacityLevel::FULL},
|
2020-02-13 02:00:24 +01:00
|
|
|
{NULL, BatteryCapacityLevel::UNSUPPORTED},
|
2019-12-20 00:09:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
auto ret = mapSysfsString(capacityLevel, batteryCapacityLevelMap);
|
|
|
|
if (!ret) {
|
2020-02-13 02:00:24 +01:00
|
|
|
KLOG_WARNING(LOG_TAG, "Unsupported battery capacity level '%s'\n", capacityLevel);
|
|
|
|
*ret = BatteryCapacityLevel::UNSUPPORTED;
|
2019-12-20 00:09:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return *ret;
|
|
|
|
}
|
|
|
|
|
2019-10-07 20:18:04 +02:00
|
|
|
BatteryHealth getBatteryHealth(const char* status) {
|
|
|
|
static SysfsStringEnumMap<BatteryHealth> batteryHealthMap[] = {
|
|
|
|
{"Unknown", BatteryHealth::UNKNOWN},
|
|
|
|
{"Good", BatteryHealth::GOOD},
|
|
|
|
{"Overheat", BatteryHealth::OVERHEAT},
|
|
|
|
{"Dead", BatteryHealth::DEAD},
|
|
|
|
{"Over voltage", BatteryHealth::OVER_VOLTAGE},
|
|
|
|
{"Unspecified failure", BatteryHealth::UNSPECIFIED_FAILURE},
|
|
|
|
{"Cold", BatteryHealth::COLD},
|
|
|
|
// battery health values from JEITA spec
|
|
|
|
{"Warm", BatteryHealth::GOOD},
|
|
|
|
{"Cool", BatteryHealth::GOOD},
|
|
|
|
{"Hot", BatteryHealth::OVERHEAT},
|
|
|
|
{NULL, BatteryHealth::UNKNOWN},
|
2013-06-12 22:25:59 +02:00
|
|
|
};
|
|
|
|
|
2019-10-07 20:18:04 +02:00
|
|
|
auto ret = mapSysfsString(status, batteryHealthMap);
|
|
|
|
if (!ret) {
|
2013-06-12 22:25:59 +02:00
|
|
|
KLOG_WARNING(LOG_TAG, "Unknown battery health '%s'\n", status);
|
2019-10-07 20:18:04 +02:00
|
|
|
*ret = BatteryHealth::UNKNOWN;
|
2013-06-12 22:25:59 +02:00
|
|
|
}
|
|
|
|
|
2019-10-07 20:18:04 +02:00
|
|
|
return *ret;
|
2013-06-12 22:25:59 +02:00
|
|
|
}
|
|
|
|
|
2016-06-05 20:20:13 +02:00
|
|
|
int BatteryMonitor::readFromFile(const String8& path, std::string* buf) {
|
2017-03-11 07:31:08 +01:00
|
|
|
if (android::base::ReadFileToString(path.c_str(), buf)) {
|
2016-06-05 20:20:13 +02:00
|
|
|
*buf = android::base::Trim(*buf);
|
2013-06-12 22:25:59 +02:00
|
|
|
}
|
2016-06-05 20:20:13 +02:00
|
|
|
return buf->length();
|
2013-06-12 22:25:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BatteryMonitor::PowerSupplyType BatteryMonitor::readPowerSupplyType(const String8& path) {
|
2019-10-07 20:18:04 +02:00
|
|
|
static SysfsStringEnumMap<int> supplyTypeMap[] = {
|
|
|
|
{"Unknown", ANDROID_POWER_SUPPLY_TYPE_UNKNOWN},
|
|
|
|
{"Battery", ANDROID_POWER_SUPPLY_TYPE_BATTERY},
|
|
|
|
{"UPS", ANDROID_POWER_SUPPLY_TYPE_AC},
|
|
|
|
{"Mains", ANDROID_POWER_SUPPLY_TYPE_AC},
|
|
|
|
{"USB", ANDROID_POWER_SUPPLY_TYPE_USB},
|
|
|
|
{"USB_DCP", ANDROID_POWER_SUPPLY_TYPE_AC},
|
|
|
|
{"USB_HVDCP", ANDROID_POWER_SUPPLY_TYPE_AC},
|
|
|
|
{"USB_CDP", ANDROID_POWER_SUPPLY_TYPE_AC},
|
|
|
|
{"USB_ACA", ANDROID_POWER_SUPPLY_TYPE_AC},
|
|
|
|
{"USB_C", ANDROID_POWER_SUPPLY_TYPE_AC},
|
|
|
|
{"USB_PD", ANDROID_POWER_SUPPLY_TYPE_AC},
|
|
|
|
{"USB_PD_DRP", ANDROID_POWER_SUPPLY_TYPE_USB},
|
|
|
|
{"Wireless", ANDROID_POWER_SUPPLY_TYPE_WIRELESS},
|
|
|
|
{NULL, 0},
|
2013-06-12 22:25:59 +02:00
|
|
|
};
|
2019-10-07 20:18:04 +02:00
|
|
|
std::string buf;
|
2013-06-12 22:25:59 +02:00
|
|
|
|
2016-06-05 20:20:13 +02:00
|
|
|
if (readFromFile(path, &buf) <= 0)
|
2013-06-12 22:25:59 +02:00
|
|
|
return ANDROID_POWER_SUPPLY_TYPE_UNKNOWN;
|
|
|
|
|
2019-10-07 20:18:04 +02:00
|
|
|
auto ret = mapSysfsString(buf.c_str(), supplyTypeMap);
|
2019-11-06 01:23:34 +01:00
|
|
|
if (!ret) {
|
2016-06-05 20:20:13 +02:00
|
|
|
KLOG_WARNING(LOG_TAG, "Unknown power supply type '%s'\n", buf.c_str());
|
2019-10-07 20:18:04 +02:00
|
|
|
*ret = ANDROID_POWER_SUPPLY_TYPE_UNKNOWN;
|
2016-02-03 13:45:54 +01:00
|
|
|
}
|
2013-06-12 22:25:59 +02:00
|
|
|
|
2019-10-07 20:18:04 +02:00
|
|
|
return static_cast<BatteryMonitor::PowerSupplyType>(*ret);
|
2013-06-12 22:25:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool BatteryMonitor::getBooleanField(const String8& path) {
|
2016-06-05 20:20:13 +02:00
|
|
|
std::string buf;
|
2013-06-12 22:25:59 +02:00
|
|
|
bool value = false;
|
2016-06-05 20:20:13 +02:00
|
|
|
|
|
|
|
if (readFromFile(path, &buf) > 0)
|
|
|
|
if (buf[0] != '0')
|
2013-06-12 22:25:59 +02:00
|
|
|
value = true;
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
int BatteryMonitor::getIntField(const String8& path) {
|
2016-06-05 20:20:13 +02:00
|
|
|
std::string buf;
|
2013-06-12 22:25:59 +02:00
|
|
|
int value = 0;
|
2016-06-05 20:20:13 +02:00
|
|
|
|
|
|
|
if (readFromFile(path, &buf) > 0)
|
2016-10-12 02:09:00 +02:00
|
|
|
android::base::ParseInt(buf, &value);
|
2016-06-05 20:20:13 +02:00
|
|
|
|
2013-06-12 22:25:59 +02:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2019-10-07 19:41:30 +02:00
|
|
|
void BatteryMonitor::updateValues(void) {
|
2019-11-06 02:04:50 +01:00
|
|
|
initHealthInfo(mHealthInfo.get());
|
2019-10-07 20:18:04 +02:00
|
|
|
|
|
|
|
HealthInfo_1_0& props = mHealthInfo->legacy.legacy;
|
2013-06-12 22:25:59 +02:00
|
|
|
|
2013-08-13 02:03:35 +02:00
|
|
|
if (!mHealthdConfig->batteryPresentPath.isEmpty())
|
|
|
|
props.batteryPresent = getBooleanField(mHealthdConfig->batteryPresentPath);
|
2013-06-12 22:25:59 +02:00
|
|
|
else
|
2013-10-22 05:26:25 +02:00
|
|
|
props.batteryPresent = mBatteryDevicePresent;
|
2013-06-12 22:25:59 +02:00
|
|
|
|
2014-05-22 01:28:13 +02:00
|
|
|
props.batteryLevel = mBatteryFixedCapacity ?
|
|
|
|
mBatteryFixedCapacity :
|
|
|
|
getIntField(mHealthdConfig->batteryCapacityPath);
|
2013-08-13 02:03:35 +02:00
|
|
|
props.batteryVoltage = getIntField(mHealthdConfig->batteryVoltagePath) / 1000;
|
2013-07-31 03:57:16 +02:00
|
|
|
|
2015-08-24 22:01:16 +02:00
|
|
|
if (!mHealthdConfig->batteryCurrentNowPath.isEmpty())
|
|
|
|
props.batteryCurrent = getIntField(mHealthdConfig->batteryCurrentNowPath) / 1000;
|
|
|
|
|
|
|
|
if (!mHealthdConfig->batteryFullChargePath.isEmpty())
|
|
|
|
props.batteryFullCharge = getIntField(mHealthdConfig->batteryFullChargePath);
|
|
|
|
|
|
|
|
if (!mHealthdConfig->batteryCycleCountPath.isEmpty())
|
|
|
|
props.batteryCycleCount = getIntField(mHealthdConfig->batteryCycleCountPath);
|
|
|
|
|
2016-04-07 21:34:40 +02:00
|
|
|
if (!mHealthdConfig->batteryChargeCounterPath.isEmpty())
|
|
|
|
props.batteryChargeCounter = getIntField(mHealthdConfig->batteryChargeCounterPath);
|
|
|
|
|
2019-10-07 22:58:29 +02:00
|
|
|
if (!mHealthdConfig->batteryCurrentAvgPath.isEmpty())
|
|
|
|
mHealthInfo->legacy.batteryCurrentAverage =
|
|
|
|
getIntField(mHealthdConfig->batteryCurrentAvgPath);
|
|
|
|
|
2019-12-20 00:09:41 +01:00
|
|
|
if (!mHealthdConfig->batteryChargeTimeToFullNowPath.isEmpty())
|
|
|
|
mHealthInfo->batteryChargeTimeToFullNowSeconds =
|
|
|
|
getIntField(mHealthdConfig->batteryChargeTimeToFullNowPath);
|
|
|
|
|
2020-02-11 03:23:57 +01:00
|
|
|
if (!mHealthdConfig->batteryFullChargeDesignCapacityUahPath.isEmpty())
|
|
|
|
mHealthInfo->batteryFullChargeDesignCapacityUah =
|
|
|
|
getIntField(mHealthdConfig->batteryFullChargeDesignCapacityUahPath);
|
2019-10-07 22:58:29 +02:00
|
|
|
|
2014-05-22 01:28:13 +02:00
|
|
|
props.batteryTemperature = mBatteryFixedTemperature ?
|
|
|
|
mBatteryFixedTemperature :
|
|
|
|
getIntField(mHealthdConfig->batteryTemperaturePath);
|
2013-06-12 22:25:59 +02:00
|
|
|
|
2016-06-05 20:20:13 +02:00
|
|
|
std::string buf;
|
2013-06-12 22:25:59 +02:00
|
|
|
|
2019-12-20 00:09:41 +01:00
|
|
|
if (readFromFile(mHealthdConfig->batteryCapacityLevelPath, &buf) > 0)
|
|
|
|
mHealthInfo->batteryCapacityLevel = getBatteryCapacityLevel(buf.c_str());
|
|
|
|
|
2016-06-05 20:20:13 +02:00
|
|
|
if (readFromFile(mHealthdConfig->batteryStatusPath, &buf) > 0)
|
|
|
|
props.batteryStatus = getBatteryStatus(buf.c_str());
|
2013-06-12 22:25:59 +02:00
|
|
|
|
2016-06-05 20:20:13 +02:00
|
|
|
if (readFromFile(mHealthdConfig->batteryHealthPath, &buf) > 0)
|
|
|
|
props.batteryHealth = getBatteryHealth(buf.c_str());
|
2013-06-12 22:25:59 +02:00
|
|
|
|
2016-06-05 20:20:13 +02:00
|
|
|
if (readFromFile(mHealthdConfig->batteryTechnologyPath, &buf) > 0)
|
|
|
|
props.batteryTechnology = String8(buf.c_str());
|
2013-06-12 22:25:59 +02:00
|
|
|
|
2015-10-27 18:43:53 +01:00
|
|
|
double MaxPower = 0;
|
2013-06-12 22:25:59 +02:00
|
|
|
|
2018-07-26 10:47:47 +02:00
|
|
|
for (size_t i = 0; i < mChargerNames.size(); i++) {
|
2013-06-12 22:25:59 +02:00
|
|
|
String8 path;
|
|
|
|
path.appendFormat("%s/%s/online", POWER_SUPPLY_SYSFS_PATH,
|
|
|
|
mChargerNames[i].string());
|
2016-06-05 20:20:13 +02:00
|
|
|
if (getIntField(path)) {
|
|
|
|
path.clear();
|
|
|
|
path.appendFormat("%s/%s/type", POWER_SUPPLY_SYSFS_PATH,
|
|
|
|
mChargerNames[i].string());
|
|
|
|
switch(readPowerSupplyType(path)) {
|
|
|
|
case ANDROID_POWER_SUPPLY_TYPE_AC:
|
|
|
|
props.chargerAcOnline = true;
|
|
|
|
break;
|
|
|
|
case ANDROID_POWER_SUPPLY_TYPE_USB:
|
|
|
|
props.chargerUsbOnline = true;
|
|
|
|
break;
|
|
|
|
case ANDROID_POWER_SUPPLY_TYPE_WIRELESS:
|
|
|
|
props.chargerWirelessOnline = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
KLOG_WARNING(LOG_TAG, "%s: Unknown power supply type\n",
|
|
|
|
mChargerNames[i].string());
|
|
|
|
}
|
|
|
|
path.clear();
|
|
|
|
path.appendFormat("%s/%s/current_max", POWER_SUPPLY_SYSFS_PATH,
|
|
|
|
mChargerNames[i].string());
|
2016-06-20 21:58:37 +02:00
|
|
|
int ChargingCurrent =
|
2015-10-27 18:43:53 +01:00
|
|
|
(access(path.string(), R_OK) == 0) ? getIntField(path) : 0;
|
|
|
|
|
2016-06-20 21:58:37 +02:00
|
|
|
path.clear();
|
|
|
|
path.appendFormat("%s/%s/voltage_max", POWER_SUPPLY_SYSFS_PATH,
|
|
|
|
mChargerNames[i].string());
|
|
|
|
|
|
|
|
int ChargingVoltage =
|
|
|
|
(access(path.string(), R_OK) == 0) ? getIntField(path) :
|
|
|
|
DEFAULT_VBUS_VOLTAGE;
|
|
|
|
|
|
|
|
double power = ((double)ChargingCurrent / MILLION) *
|
|
|
|
((double)ChargingVoltage / MILLION);
|
|
|
|
if (MaxPower < power) {
|
|
|
|
props.maxChargingCurrent = ChargingCurrent;
|
|
|
|
props.maxChargingVoltage = ChargingVoltage;
|
|
|
|
MaxPower = power;
|
2013-06-12 22:25:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-07 19:41:30 +02:00
|
|
|
}
|
2013-06-12 22:25:59 +02:00
|
|
|
|
2019-10-07 19:41:30 +02:00
|
|
|
void BatteryMonitor::logValues(void) {
|
|
|
|
char dmesgline[256];
|
|
|
|
size_t len;
|
2019-10-07 20:18:04 +02:00
|
|
|
const HealthInfo_1_0& props = mHealthInfo->legacy.legacy;
|
2019-10-07 19:41:30 +02:00
|
|
|
if (props.batteryPresent) {
|
|
|
|
snprintf(dmesgline, sizeof(dmesgline), "battery l=%d v=%d t=%s%d.%d h=%d st=%d",
|
|
|
|
props.batteryLevel, props.batteryVoltage, props.batteryTemperature < 0 ? "-" : "",
|
|
|
|
abs(props.batteryTemperature / 10), abs(props.batteryTemperature % 10),
|
|
|
|
props.batteryHealth, props.batteryStatus);
|
2015-08-24 22:01:16 +02:00
|
|
|
|
2019-10-07 19:41:30 +02:00
|
|
|
len = strlen(dmesgline);
|
|
|
|
if (!mHealthdConfig->batteryCurrentNowPath.isEmpty()) {
|
|
|
|
len += snprintf(dmesgline + len, sizeof(dmesgline) - len, " c=%d",
|
|
|
|
props.batteryCurrent);
|
2013-08-08 00:25:14 +02:00
|
|
|
}
|
2013-07-31 03:57:16 +02:00
|
|
|
|
2019-10-07 19:41:30 +02:00
|
|
|
if (!mHealthdConfig->batteryFullChargePath.isEmpty()) {
|
|
|
|
len += snprintf(dmesgline + len, sizeof(dmesgline) - len, " fc=%d",
|
|
|
|
props.batteryFullCharge);
|
|
|
|
}
|
2015-07-23 18:22:50 +02:00
|
|
|
|
2019-10-07 19:41:30 +02:00
|
|
|
if (!mHealthdConfig->batteryCycleCountPath.isEmpty()) {
|
|
|
|
len += snprintf(dmesgline + len, sizeof(dmesgline) - len, " cc=%d",
|
|
|
|
props.batteryCycleCount);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
len = snprintf(dmesgline, sizeof(dmesgline), "battery none");
|
2013-08-08 00:25:14 +02:00
|
|
|
}
|
2013-06-12 22:25:59 +02:00
|
|
|
|
2019-10-07 19:41:30 +02:00
|
|
|
snprintf(dmesgline + len, sizeof(dmesgline) - len, " chg=%s%s%s",
|
|
|
|
props.chargerAcOnline ? "a" : "", props.chargerUsbOnline ? "u" : "",
|
|
|
|
props.chargerWirelessOnline ? "w" : "");
|
|
|
|
|
|
|
|
KLOG_WARNING(LOG_TAG, "%s\n", dmesgline);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BatteryMonitor::isChargerOnline() {
|
2019-10-07 20:18:04 +02:00
|
|
|
const HealthInfo_1_0& props = mHealthInfo->legacy.legacy;
|
2013-06-12 22:25:59 +02:00
|
|
|
return props.chargerAcOnline | props.chargerUsbOnline |
|
|
|
|
props.chargerWirelessOnline;
|
|
|
|
}
|
|
|
|
|
2016-02-20 03:03:23 +01:00
|
|
|
int BatteryMonitor::getChargeStatus() {
|
2019-10-07 20:18:04 +02:00
|
|
|
BatteryStatus result = BatteryStatus::UNKNOWN;
|
2016-02-20 03:03:23 +01:00
|
|
|
if (!mHealthdConfig->batteryStatusPath.isEmpty()) {
|
2016-06-05 20:20:13 +02:00
|
|
|
std::string buf;
|
|
|
|
if (readFromFile(mHealthdConfig->batteryStatusPath, &buf) > 0)
|
|
|
|
result = getBatteryStatus(buf.c_str());
|
2016-02-20 03:03:23 +01:00
|
|
|
}
|
2019-10-07 20:18:04 +02:00
|
|
|
return static_cast<int>(result);
|
2013-06-12 22:25:59 +02:00
|
|
|
}
|
|
|
|
|
2013-08-15 02:39:13 +02:00
|
|
|
status_t BatteryMonitor::getProperty(int id, struct BatteryProperty *val) {
|
|
|
|
status_t ret = BAD_VALUE;
|
2017-02-03 02:31:13 +01:00
|
|
|
std::string buf;
|
2013-08-15 02:39:13 +02:00
|
|
|
|
2014-05-09 02:15:45 +02:00
|
|
|
val->valueInt64 = LONG_MIN;
|
|
|
|
|
2013-08-15 02:39:13 +02:00
|
|
|
switch(id) {
|
|
|
|
case BATTERY_PROP_CHARGE_COUNTER:
|
|
|
|
if (!mHealthdConfig->batteryChargeCounterPath.isEmpty()) {
|
2014-05-09 02:15:45 +02:00
|
|
|
val->valueInt64 =
|
2013-08-15 02:39:13 +02:00
|
|
|
getIntField(mHealthdConfig->batteryChargeCounterPath);
|
2018-10-08 20:10:11 +02:00
|
|
|
ret = OK;
|
2013-08-15 02:39:13 +02:00
|
|
|
} else {
|
|
|
|
ret = NAME_NOT_FOUND;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BATTERY_PROP_CURRENT_NOW:
|
|
|
|
if (!mHealthdConfig->batteryCurrentNowPath.isEmpty()) {
|
2014-05-09 02:15:45 +02:00
|
|
|
val->valueInt64 =
|
2013-08-15 02:39:13 +02:00
|
|
|
getIntField(mHealthdConfig->batteryCurrentNowPath);
|
2018-10-08 20:10:11 +02:00
|
|
|
ret = OK;
|
2013-08-15 02:39:13 +02:00
|
|
|
} else {
|
|
|
|
ret = NAME_NOT_FOUND;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2013-08-28 03:11:49 +02:00
|
|
|
case BATTERY_PROP_CURRENT_AVG:
|
|
|
|
if (!mHealthdConfig->batteryCurrentAvgPath.isEmpty()) {
|
2014-05-09 02:15:45 +02:00
|
|
|
val->valueInt64 =
|
2013-08-28 03:11:49 +02:00
|
|
|
getIntField(mHealthdConfig->batteryCurrentAvgPath);
|
2018-10-08 20:10:11 +02:00
|
|
|
ret = OK;
|
2013-08-28 03:11:49 +02:00
|
|
|
} else {
|
|
|
|
ret = NAME_NOT_FOUND;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2014-03-19 23:04:40 +01:00
|
|
|
case BATTERY_PROP_CAPACITY:
|
|
|
|
if (!mHealthdConfig->batteryCapacityPath.isEmpty()) {
|
2014-05-09 02:15:45 +02:00
|
|
|
val->valueInt64 =
|
2014-03-19 23:04:40 +01:00
|
|
|
getIntField(mHealthdConfig->batteryCapacityPath);
|
2018-10-08 20:10:11 +02:00
|
|
|
ret = OK;
|
2014-03-19 23:04:40 +01:00
|
|
|
} else {
|
|
|
|
ret = NAME_NOT_FOUND;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2014-05-09 02:15:45 +02:00
|
|
|
case BATTERY_PROP_ENERGY_COUNTER:
|
2014-05-20 22:54:40 +02:00
|
|
|
if (mHealthdConfig->energyCounter) {
|
|
|
|
ret = mHealthdConfig->energyCounter(&val->valueInt64);
|
|
|
|
} else {
|
|
|
|
ret = NAME_NOT_FOUND;
|
|
|
|
}
|
2014-05-09 02:15:45 +02:00
|
|
|
break;
|
|
|
|
|
2017-02-03 02:31:13 +01:00
|
|
|
case BATTERY_PROP_BATTERY_STATUS:
|
2018-01-19 23:03:59 +01:00
|
|
|
val->valueInt64 = getChargeStatus();
|
2018-10-08 20:10:11 +02:00
|
|
|
ret = OK;
|
2017-02-03 02:31:13 +01:00
|
|
|
break;
|
|
|
|
|
2013-08-15 02:39:13 +02:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-09-19 05:09:33 +02:00
|
|
|
void BatteryMonitor::dumpState(int fd) {
|
|
|
|
int v;
|
|
|
|
char vs[128];
|
2019-10-07 20:18:04 +02:00
|
|
|
const HealthInfo_1_0& props = mHealthInfo->legacy.legacy;
|
2013-09-19 05:09:33 +02:00
|
|
|
|
2015-10-27 18:43:53 +01:00
|
|
|
snprintf(vs, sizeof(vs), "ac: %d usb: %d wireless: %d current_max: %d voltage_max: %d\n",
|
2013-09-19 05:09:33 +02:00
|
|
|
props.chargerAcOnline, props.chargerUsbOnline,
|
2015-10-27 18:43:53 +01:00
|
|
|
props.chargerWirelessOnline, props.maxChargingCurrent,
|
|
|
|
props.maxChargingVoltage);
|
2013-09-19 05:09:33 +02:00
|
|
|
write(fd, vs, strlen(vs));
|
|
|
|
snprintf(vs, sizeof(vs), "status: %d health: %d present: %d\n",
|
|
|
|
props.batteryStatus, props.batteryHealth, props.batteryPresent);
|
|
|
|
write(fd, vs, strlen(vs));
|
|
|
|
snprintf(vs, sizeof(vs), "level: %d voltage: %d temp: %d\n",
|
|
|
|
props.batteryLevel, props.batteryVoltage,
|
|
|
|
props.batteryTemperature);
|
|
|
|
write(fd, vs, strlen(vs));
|
|
|
|
|
|
|
|
if (!mHealthdConfig->batteryCurrentNowPath.isEmpty()) {
|
|
|
|
v = getIntField(mHealthdConfig->batteryCurrentNowPath);
|
|
|
|
snprintf(vs, sizeof(vs), "current now: %d\n", v);
|
|
|
|
write(fd, vs, strlen(vs));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mHealthdConfig->batteryCurrentAvgPath.isEmpty()) {
|
|
|
|
v = getIntField(mHealthdConfig->batteryCurrentAvgPath);
|
|
|
|
snprintf(vs, sizeof(vs), "current avg: %d\n", v);
|
|
|
|
write(fd, vs, strlen(vs));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mHealthdConfig->batteryChargeCounterPath.isEmpty()) {
|
|
|
|
v = getIntField(mHealthdConfig->batteryChargeCounterPath);
|
|
|
|
snprintf(vs, sizeof(vs), "charge counter: %d\n", v);
|
|
|
|
write(fd, vs, strlen(vs));
|
|
|
|
}
|
2015-08-24 22:01:16 +02:00
|
|
|
|
|
|
|
if (!mHealthdConfig->batteryCurrentNowPath.isEmpty()) {
|
|
|
|
snprintf(vs, sizeof(vs), "current now: %d\n", props.batteryCurrent);
|
|
|
|
write(fd, vs, strlen(vs));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mHealthdConfig->batteryCycleCountPath.isEmpty()) {
|
|
|
|
snprintf(vs, sizeof(vs), "cycle count: %d\n", props.batteryCycleCount);
|
|
|
|
write(fd, vs, strlen(vs));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mHealthdConfig->batteryFullChargePath.isEmpty()) {
|
|
|
|
snprintf(vs, sizeof(vs), "Full charge: %d\n", props.batteryFullCharge);
|
|
|
|
write(fd, vs, strlen(vs));
|
|
|
|
}
|
2013-09-19 05:09:33 +02:00
|
|
|
}
|
|
|
|
|
2013-09-10 21:40:00 +02:00
|
|
|
void BatteryMonitor::init(struct healthd_config *hc) {
|
2013-06-12 22:25:59 +02:00
|
|
|
String8 path;
|
2014-05-22 01:28:13 +02:00
|
|
|
char pval[PROPERTY_VALUE_MAX];
|
2013-06-12 22:25:59 +02:00
|
|
|
|
2013-08-13 02:03:35 +02:00
|
|
|
mHealthdConfig = hc;
|
2016-02-18 23:52:46 +01:00
|
|
|
std::unique_ptr<DIR, decltype(&closedir)> dir(opendir(POWER_SUPPLY_SYSFS_PATH), closedir);
|
2013-06-12 22:25:59 +02:00
|
|
|
if (dir == NULL) {
|
|
|
|
KLOG_ERROR(LOG_TAG, "Could not open %s\n", POWER_SUPPLY_SYSFS_PATH);
|
|
|
|
} else {
|
|
|
|
struct dirent* entry;
|
|
|
|
|
2016-02-18 23:52:46 +01:00
|
|
|
while ((entry = readdir(dir.get()))) {
|
2013-06-12 22:25:59 +02:00
|
|
|
const char* name = entry->d_name;
|
2019-01-12 02:09:20 +01:00
|
|
|
std::vector<String8>::iterator itIgnoreName;
|
2013-06-12 22:25:59 +02:00
|
|
|
|
|
|
|
if (!strcmp(name, ".") || !strcmp(name, ".."))
|
|
|
|
continue;
|
|
|
|
|
2019-01-12 02:09:20 +01:00
|
|
|
itIgnoreName = find(hc->ignorePowerSupplyNames.begin(),
|
|
|
|
hc->ignorePowerSupplyNames.end(), String8(name));
|
|
|
|
if (itIgnoreName != hc->ignorePowerSupplyNames.end())
|
|
|
|
continue;
|
|
|
|
|
2013-06-12 22:25:59 +02:00
|
|
|
// Look for "type" file in each subdirectory
|
|
|
|
path.clear();
|
|
|
|
path.appendFormat("%s/%s/type", POWER_SUPPLY_SYSFS_PATH, name);
|
|
|
|
switch(readPowerSupplyType(path)) {
|
|
|
|
case ANDROID_POWER_SUPPLY_TYPE_AC:
|
|
|
|
case ANDROID_POWER_SUPPLY_TYPE_USB:
|
|
|
|
case ANDROID_POWER_SUPPLY_TYPE_WIRELESS:
|
|
|
|
path.clear();
|
|
|
|
path.appendFormat("%s/%s/online", POWER_SUPPLY_SYSFS_PATH, name);
|
|
|
|
if (access(path.string(), R_OK) == 0)
|
|
|
|
mChargerNames.add(String8(name));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ANDROID_POWER_SUPPLY_TYPE_BATTERY:
|
2013-10-22 05:26:25 +02:00
|
|
|
mBatteryDevicePresent = true;
|
|
|
|
|
2013-08-13 02:03:35 +02:00
|
|
|
if (mHealthdConfig->batteryStatusPath.isEmpty()) {
|
|
|
|
path.clear();
|
|
|
|
path.appendFormat("%s/%s/status", POWER_SUPPLY_SYSFS_PATH,
|
|
|
|
name);
|
|
|
|
if (access(path, R_OK) == 0)
|
|
|
|
mHealthdConfig->batteryStatusPath = path;
|
|
|
|
}
|
2013-06-12 22:25:59 +02:00
|
|
|
|
2013-08-13 02:03:35 +02:00
|
|
|
if (mHealthdConfig->batteryHealthPath.isEmpty()) {
|
2013-06-12 22:25:59 +02:00
|
|
|
path.clear();
|
2013-08-13 02:03:35 +02:00
|
|
|
path.appendFormat("%s/%s/health", POWER_SUPPLY_SYSFS_PATH,
|
|
|
|
name);
|
2013-06-12 22:25:59 +02:00
|
|
|
if (access(path, R_OK) == 0)
|
2013-08-13 02:03:35 +02:00
|
|
|
mHealthdConfig->batteryHealthPath = path;
|
2013-06-12 22:25:59 +02:00
|
|
|
}
|
|
|
|
|
2013-08-13 02:03:35 +02:00
|
|
|
if (mHealthdConfig->batteryPresentPath.isEmpty()) {
|
|
|
|
path.clear();
|
|
|
|
path.appendFormat("%s/%s/present", POWER_SUPPLY_SYSFS_PATH,
|
|
|
|
name);
|
|
|
|
if (access(path, R_OK) == 0)
|
|
|
|
mHealthdConfig->batteryPresentPath = path;
|
|
|
|
}
|
2013-07-31 03:57:16 +02:00
|
|
|
|
2013-08-13 02:03:35 +02:00
|
|
|
if (mHealthdConfig->batteryCapacityPath.isEmpty()) {
|
|
|
|
path.clear();
|
|
|
|
path.appendFormat("%s/%s/capacity", POWER_SUPPLY_SYSFS_PATH,
|
|
|
|
name);
|
|
|
|
if (access(path, R_OK) == 0)
|
|
|
|
mHealthdConfig->batteryCapacityPath = path;
|
|
|
|
}
|
2013-07-31 03:57:16 +02:00
|
|
|
|
2013-08-13 02:03:35 +02:00
|
|
|
if (mHealthdConfig->batteryVoltagePath.isEmpty()) {
|
|
|
|
path.clear();
|
|
|
|
path.appendFormat("%s/%s/voltage_now",
|
|
|
|
POWER_SUPPLY_SYSFS_PATH, name);
|
|
|
|
if (access(path, R_OK) == 0) {
|
|
|
|
mHealthdConfig->batteryVoltagePath = path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-24 22:01:16 +02:00
|
|
|
if (mHealthdConfig->batteryFullChargePath.isEmpty()) {
|
|
|
|
path.clear();
|
|
|
|
path.appendFormat("%s/%s/charge_full",
|
|
|
|
POWER_SUPPLY_SYSFS_PATH, name);
|
|
|
|
if (access(path, R_OK) == 0)
|
|
|
|
mHealthdConfig->batteryFullChargePath = path;
|
|
|
|
}
|
|
|
|
|
2013-08-13 02:03:35 +02:00
|
|
|
if (mHealthdConfig->batteryCurrentNowPath.isEmpty()) {
|
2013-06-12 22:25:59 +02:00
|
|
|
path.clear();
|
2013-08-13 02:03:35 +02:00
|
|
|
path.appendFormat("%s/%s/current_now",
|
|
|
|
POWER_SUPPLY_SYSFS_PATH, name);
|
2013-06-12 22:25:59 +02:00
|
|
|
if (access(path, R_OK) == 0)
|
2013-08-13 02:03:35 +02:00
|
|
|
mHealthdConfig->batteryCurrentNowPath = path;
|
|
|
|
}
|
|
|
|
|
2015-08-24 22:01:16 +02:00
|
|
|
if (mHealthdConfig->batteryCycleCountPath.isEmpty()) {
|
|
|
|
path.clear();
|
|
|
|
path.appendFormat("%s/%s/cycle_count",
|
|
|
|
POWER_SUPPLY_SYSFS_PATH, name);
|
|
|
|
if (access(path, R_OK) == 0)
|
|
|
|
mHealthdConfig->batteryCycleCountPath = path;
|
|
|
|
}
|
|
|
|
|
2019-12-20 00:09:41 +01:00
|
|
|
if (mHealthdConfig->batteryCapacityLevelPath.isEmpty()) {
|
|
|
|
path.clear();
|
|
|
|
path.appendFormat("%s/%s/capacity_level", POWER_SUPPLY_SYSFS_PATH, name);
|
|
|
|
if (access(path, R_OK) == 0) mHealthdConfig->batteryCapacityLevelPath = path;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mHealthdConfig->batteryChargeTimeToFullNowPath.isEmpty()) {
|
|
|
|
path.clear();
|
|
|
|
path.appendFormat("%s/%s/time_to_full_now", POWER_SUPPLY_SYSFS_PATH, name);
|
|
|
|
if (access(path, R_OK) == 0)
|
|
|
|
mHealthdConfig->batteryChargeTimeToFullNowPath = path;
|
|
|
|
}
|
|
|
|
|
2020-02-11 03:23:57 +01:00
|
|
|
if (mHealthdConfig->batteryFullChargeDesignCapacityUahPath.isEmpty()) {
|
|
|
|
path.clear();
|
|
|
|
path.appendFormat("%s/%s/charge_full_design", POWER_SUPPLY_SYSFS_PATH, name);
|
|
|
|
if (access(path, R_OK) == 0)
|
|
|
|
mHealthdConfig->batteryFullChargeDesignCapacityUahPath = path;
|
|
|
|
}
|
|
|
|
|
2013-08-28 03:11:49 +02:00
|
|
|
if (mHealthdConfig->batteryCurrentAvgPath.isEmpty()) {
|
|
|
|
path.clear();
|
|
|
|
path.appendFormat("%s/%s/current_avg",
|
|
|
|
POWER_SUPPLY_SYSFS_PATH, name);
|
|
|
|
if (access(path, R_OK) == 0)
|
|
|
|
mHealthdConfig->batteryCurrentAvgPath = path;
|
|
|
|
}
|
|
|
|
|
2013-08-13 02:03:35 +02:00
|
|
|
if (mHealthdConfig->batteryChargeCounterPath.isEmpty()) {
|
|
|
|
path.clear();
|
|
|
|
path.appendFormat("%s/%s/charge_counter",
|
|
|
|
POWER_SUPPLY_SYSFS_PATH, name);
|
|
|
|
if (access(path, R_OK) == 0)
|
|
|
|
mHealthdConfig->batteryChargeCounterPath = path;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mHealthdConfig->batteryTemperaturePath.isEmpty()) {
|
|
|
|
path.clear();
|
|
|
|
path.appendFormat("%s/%s/temp", POWER_SUPPLY_SYSFS_PATH,
|
|
|
|
name);
|
|
|
|
if (access(path, R_OK) == 0) {
|
|
|
|
mHealthdConfig->batteryTemperaturePath = path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mHealthdConfig->batteryTechnologyPath.isEmpty()) {
|
|
|
|
path.clear();
|
|
|
|
path.appendFormat("%s/%s/technology",
|
|
|
|
POWER_SUPPLY_SYSFS_PATH, name);
|
|
|
|
if (access(path, R_OK) == 0)
|
|
|
|
mHealthdConfig->batteryTechnologyPath = path;
|
2013-06-12 22:25:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ANDROID_POWER_SUPPLY_TYPE_UNKNOWN:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-13 04:01:00 +02:00
|
|
|
// Typically the case for devices which do not have a battery and
|
|
|
|
// and are always plugged into AC mains.
|
2013-10-22 05:26:25 +02:00
|
|
|
if (!mBatteryDevicePresent) {
|
2014-09-23 23:54:24 +02:00
|
|
|
KLOG_WARNING(LOG_TAG, "No battery devices found\n");
|
2013-10-22 05:26:25 +02:00
|
|
|
hc->periodic_chores_interval_fast = -1;
|
|
|
|
hc->periodic_chores_interval_slow = -1;
|
|
|
|
} else {
|
|
|
|
if (mHealthdConfig->batteryStatusPath.isEmpty())
|
|
|
|
KLOG_WARNING(LOG_TAG, "BatteryStatusPath not found\n");
|
|
|
|
if (mHealthdConfig->batteryHealthPath.isEmpty())
|
|
|
|
KLOG_WARNING(LOG_TAG, "BatteryHealthPath not found\n");
|
|
|
|
if (mHealthdConfig->batteryPresentPath.isEmpty())
|
|
|
|
KLOG_WARNING(LOG_TAG, "BatteryPresentPath not found\n");
|
|
|
|
if (mHealthdConfig->batteryCapacityPath.isEmpty())
|
|
|
|
KLOG_WARNING(LOG_TAG, "BatteryCapacityPath not found\n");
|
|
|
|
if (mHealthdConfig->batteryVoltagePath.isEmpty())
|
|
|
|
KLOG_WARNING(LOG_TAG, "BatteryVoltagePath not found\n");
|
|
|
|
if (mHealthdConfig->batteryTemperaturePath.isEmpty())
|
|
|
|
KLOG_WARNING(LOG_TAG, "BatteryTemperaturePath not found\n");
|
|
|
|
if (mHealthdConfig->batteryTechnologyPath.isEmpty())
|
|
|
|
KLOG_WARNING(LOG_TAG, "BatteryTechnologyPath not found\n");
|
2015-09-28 22:35:59 +02:00
|
|
|
if (mHealthdConfig->batteryCurrentNowPath.isEmpty())
|
2015-08-24 22:01:16 +02:00
|
|
|
KLOG_WARNING(LOG_TAG, "BatteryCurrentNowPath not found\n");
|
|
|
|
if (mHealthdConfig->batteryFullChargePath.isEmpty())
|
|
|
|
KLOG_WARNING(LOG_TAG, "BatteryFullChargePath not found\n");
|
|
|
|
if (mHealthdConfig->batteryCycleCountPath.isEmpty())
|
|
|
|
KLOG_WARNING(LOG_TAG, "BatteryCycleCountPath not found\n");
|
2019-12-20 00:09:41 +01:00
|
|
|
if (mHealthdConfig->batteryCapacityLevelPath.isEmpty())
|
|
|
|
KLOG_WARNING(LOG_TAG, "batteryCapacityLevelPath not found\n");
|
|
|
|
if (mHealthdConfig->batteryChargeTimeToFullNowPath.isEmpty())
|
|
|
|
KLOG_WARNING(LOG_TAG, "batteryChargeTimeToFullNowPath. not found\n");
|
2020-02-11 03:23:57 +01:00
|
|
|
if (mHealthdConfig->batteryFullChargeDesignCapacityUahPath.isEmpty())
|
|
|
|
KLOG_WARNING(LOG_TAG, "batteryFullChargeDesignCapacityUahPath. not found\n");
|
2013-10-22 05:26:25 +02:00
|
|
|
}
|
2014-05-22 01:28:13 +02:00
|
|
|
|
2014-07-11 00:06:21 +02:00
|
|
|
if (property_get("ro.boot.fake_battery", pval, NULL) > 0
|
|
|
|
&& strtol(pval, NULL, 10) != 0) {
|
|
|
|
mBatteryFixedCapacity = FAKE_BATTERY_CAPACITY;
|
|
|
|
mBatteryFixedTemperature = FAKE_BATTERY_TEMPERATURE;
|
|
|
|
}
|
2013-06-12 22:25:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}; // namespace android
|