2013-06-12 22:25:59 +02:00
|
|
|
/*
|
2016-11-02 00:41:56 +01:00
|
|
|
* Copyright (C) 2016 The Android Open Source Project
|
2013-06-12 22:25:59 +02:00
|
|
|
*
|
|
|
|
* 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"
|
|
|
|
#define KLOG_LEVEL 6
|
|
|
|
|
2016-02-17 21:21:34 +01:00
|
|
|
#include <healthd/healthd.h>
|
2013-06-12 22:25:59 +02:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <cutils/klog.h>
|
|
|
|
|
2016-11-09 01:27:54 +01:00
|
|
|
#include <android/hardware/health/1.0/IHealth.h>
|
|
|
|
#include <android/hardware/health/1.0/types.h>
|
|
|
|
#include <hal_conversion.h>
|
|
|
|
|
2013-06-12 22:25:59 +02:00
|
|
|
using namespace android;
|
|
|
|
|
2016-11-09 01:27:54 +01:00
|
|
|
using IHealth = ::android::hardware::health::V1_0::IHealth;
|
|
|
|
using Result = ::android::hardware::health::V1_0::Result;
|
|
|
|
using HealthConfig = ::android::hardware::health::V1_0::HealthConfig;
|
|
|
|
using HealthInfo = ::android::hardware::health::V1_0::HealthInfo;
|
|
|
|
|
|
|
|
using ::android::hardware::health::V1_0::hal_conversion::convertToHealthConfig;
|
|
|
|
using ::android::hardware::health::V1_0::hal_conversion::convertFromHealthConfig;
|
|
|
|
using ::android::hardware::health::V1_0::hal_conversion::convertToHealthInfo;
|
|
|
|
using ::android::hardware::health::V1_0::hal_conversion::convertFromHealthInfo;
|
|
|
|
|
|
|
|
// device specific hal interface;
|
|
|
|
static sp<IHealth> gHealth;
|
|
|
|
|
2016-11-02 00:41:56 +01:00
|
|
|
// main healthd loop
|
|
|
|
extern int healthd_main(void);
|
2013-09-10 21:40:00 +02:00
|
|
|
|
|
|
|
// Android mode
|
|
|
|
extern void healthd_mode_android_init(struct healthd_config *config);
|
|
|
|
extern int healthd_mode_android_preparetowait(void);
|
2016-11-02 00:41:56 +01:00
|
|
|
extern void healthd_mode_android_heartbeat(void);
|
2013-09-10 21:40:00 +02:00
|
|
|
extern void healthd_mode_android_battery_update(
|
|
|
|
struct android::BatteryProperties *props);
|
|
|
|
|
|
|
|
static struct healthd_mode_ops android_ops = {
|
|
|
|
.init = healthd_mode_android_init,
|
|
|
|
.preparetowait = healthd_mode_android_preparetowait,
|
2016-11-02 00:41:56 +01:00
|
|
|
.heartbeat = healthd_mode_android_heartbeat,
|
2013-09-10 21:40:00 +02:00
|
|
|
.battery_update = healthd_mode_android_battery_update,
|
|
|
|
};
|
|
|
|
|
2016-11-09 01:27:54 +01:00
|
|
|
// default energy counter property redirect to talk to device
|
|
|
|
// HAL
|
|
|
|
static int healthd_board_get_energy_counter(int64_t *energy) {
|
|
|
|
|
|
|
|
if (gHealth == nullptr) {
|
|
|
|
return NAME_NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
Result result = Result::NOT_SUPPORTED;
|
|
|
|
gHealth->energyCounter([=, &result] (Result ret, int64_t energyOut) {
|
|
|
|
result = ret;
|
|
|
|
*energy = energyOut;
|
|
|
|
});
|
|
|
|
|
|
|
|
return result == Result::SUCCESS ? OK : NAME_NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
void healthd_board_init(struct healthd_config *config) {
|
|
|
|
|
|
|
|
// Initialize the board HAL - Equivalent of healthd_board_init(config)
|
|
|
|
// in charger/recovery mode.
|
|
|
|
|
2017-01-23 23:49:09 +01:00
|
|
|
gHealth = IHealth::getService();
|
2016-11-09 01:27:54 +01:00
|
|
|
if (gHealth == nullptr) {
|
|
|
|
KLOG_WARNING(LOG_TAG, "unable to get HAL interface, using defaults\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
HealthConfig halConfig;
|
|
|
|
convertToHealthConfig(config, halConfig);
|
|
|
|
gHealth->init(halConfig, [=] (const auto &halConfigOut) {
|
|
|
|
convertFromHealthConfig(halConfigOut, config);
|
|
|
|
// always redirect energy counter queries
|
|
|
|
config->energyCounter = healthd_board_get_energy_counter;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
int healthd_board_battery_update(struct android::BatteryProperties *props) {
|
|
|
|
int logthis = 0;
|
|
|
|
|
|
|
|
if (gHealth == nullptr) {
|
|
|
|
return logthis;
|
|
|
|
}
|
|
|
|
|
|
|
|
HealthInfo info;
|
|
|
|
convertToHealthInfo(props, info);
|
|
|
|
gHealth->update(info,
|
|
|
|
[=, &logthis] (int32_t ret, const auto &infoOut) {
|
|
|
|
logthis = ret;
|
|
|
|
convertFromHealthInfo(infoOut, props);
|
|
|
|
});
|
|
|
|
|
|
|
|
return logthis;
|
|
|
|
}
|
|
|
|
|
2016-11-02 00:41:56 +01:00
|
|
|
int main(int /*argc*/, char ** /*argv*/) {
|
2013-09-07 00:14:24 +02:00
|
|
|
|
2013-09-10 21:40:00 +02:00
|
|
|
healthd_mode_ops = &android_ops;
|
2013-06-12 22:25:59 +02:00
|
|
|
|
2016-11-02 00:41:56 +01:00
|
|
|
return healthd_main();
|
2013-06-12 22:25:59 +02:00
|
|
|
}
|