summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorYingjie Wang <yingjiewang@codeaurora.org>2019-04-11 08:33:46 +0800
committerYingjie Wang <yingjiewang@codeaurora.org>2019-06-05 08:10:23 +0800
commit2e7c04a82d85a3ddec7a7a024e00f65e1ee0b0c3 (patch)
tree281675ab3a2b61d3f3a9e7a3d8d214e66f5afd3c /android
parent052afd6e47e58c88f00ea353f601592d308cbc72 (diff)
downloadgps-2e7c04a82d85a3ddec7a7a024e00f65e1ee0b0c3.tar.gz
Update SystemStatus with battery info in HealthHAL
Change-Id: Ibc2157f1834eb65da48f9375e497628411a185c9 CRs-fixed: 2433570
Diffstat (limited to 'android')
-rw-r--r--android/1.0/Gnss.cpp8
-rw-r--r--android/1.1/Gnss.cpp8
-rw-r--r--android/2.0/Gnss.cpp9
3 files changed, 21 insertions, 4 deletions
diff --git a/android/1.0/Gnss.cpp b/android/1.0/Gnss.cpp
index 873cf37..d85e0a4 100644
--- a/android/1.0/Gnss.cpp
+++ b/android/1.0/Gnss.cpp
@@ -37,6 +37,7 @@ namespace gnss {
namespace V1_0 {
namespace implementation {
+static sp<Gnss> sGnss;
void Gnss::GnssDeathRecipient::serviceDied(uint64_t cookie, const wp<IBase>& who) {
LOC_LOGE("%s] service died. cookie: %llu, who: %p",
__FUNCTION__, static_cast<unsigned long long>(cookie), &who);
@@ -47,10 +48,14 @@ void Gnss::GnssDeathRecipient::serviceDied(uint64_t cookie, const wp<IBase>& who
}
void location_on_battery_status_changed(bool charging) {
- LOC_LOGd("%s: battery status changed to %s charging", __func__, charging ? "" : "not ");
+ LOC_LOGd("battery status changed to %s charging", charging ? "" : "not ");
+ if (sGnss != nullptr) {
+ sGnss->getGnssInterface()->updateBatteryStatus(charging);
+ }
}
Gnss::Gnss() {
ENTRY_LOG_CALLFLOW();
+ sGnss = this;
// register health client to listen on battery change
loc_extn_battery_properties_listener_init(location_on_battery_status_changed);
// clear pending GnssConfig
@@ -65,6 +70,7 @@ Gnss::~Gnss() {
delete mApi;
mApi = nullptr;
}
+ sGnss = nullptr;
}
GnssAPIClient* Gnss::getApi() {
diff --git a/android/1.1/Gnss.cpp b/android/1.1/Gnss.cpp
index f0d74da..bea556f 100644
--- a/android/1.1/Gnss.cpp
+++ b/android/1.1/Gnss.cpp
@@ -41,6 +41,7 @@ namespace gnss {
namespace V1_1 {
namespace implementation {
+static sp<Gnss> sGnss;
static std::string getVersionString() {
static std::string version;
if (!version.empty())
@@ -88,10 +89,14 @@ void Gnss::GnssDeathRecipient::serviceDied(uint64_t cookie, const wp<IBase>& who
}
void location_on_battery_status_changed(bool charging) {
- LOC_LOGd("%s: battery status changed to %s charging", __func__, charging ? "" : "not ");
+ LOC_LOGd("battery status changed to %s charging", charging ? "" : "not");
+ if (sGnss != nullptr) {
+ sGnss->getGnssInterface()->updateBatteryStatus(charging);
+ }
}
Gnss::Gnss() {
ENTRY_LOG_CALLFLOW();
+ sGnss = this;
// register health client to listen on battery change
loc_extn_battery_properties_listener_init(location_on_battery_status_changed);
// clear pending GnssConfig
@@ -106,6 +111,7 @@ Gnss::~Gnss() {
delete mApi;
mApi = nullptr;
}
+ sGnss = nullptr;
}
GnssAPIClient* Gnss::getApi() {
diff --git a/android/2.0/Gnss.cpp b/android/2.0/Gnss.cpp
index be4efac..4fa5b63 100644
--- a/android/2.0/Gnss.cpp
+++ b/android/2.0/Gnss.cpp
@@ -41,7 +41,7 @@ namespace V2_0 {
namespace implementation {
using ::android::hardware::gnss::visibility_control::V1_0::implementation::GnssVisibilityControl;
-
+static sp<Gnss> sGnss;
static std::string getVersionString() {
static std::string version;
if (!version.empty())
@@ -88,10 +88,14 @@ void Gnss::GnssDeathRecipient::serviceDied(uint64_t cookie, const wp<IBase>& who
}
void location_on_battery_status_changed(bool charging) {
- LOC_LOGd("%s: battery status changed to %s charging", __func__, charging ? "" : "not ");
+ LOC_LOGd("battery status changed to %s charging", charging ? "" : "not");
+ if (sGnss != nullptr) {
+ sGnss->getGnssInterface()->updateBatteryStatus(charging);
+ }
}
Gnss::Gnss() {
ENTRY_LOG_CALLFLOW();
+ sGnss = this;
// register health client to listen on battery change
loc_extn_battery_properties_listener_init(location_on_battery_status_changed);
// clear pending GnssConfig
@@ -105,6 +109,7 @@ Gnss::~Gnss() {
delete mApi;
mApi = nullptr;
}
+ sGnss = nullptr;
}
GnssAPIClient* Gnss::getApi() {