blob: e51a06d5e8d800c1f7a540a55e3299503f99332b [file] [log] [blame]
Todd Poynor752faf22013-06-12 13:25:59 -07001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "BatteryPropertiesRegistrar.h"
18#include <batteryservice/BatteryService.h>
19#include <batteryservice/IBatteryPropertiesListener.h>
20#include <batteryservice/IBatteryPropertiesRegistrar.h>
Todd Poynor020369d2013-09-18 20:09:33 -070021#include <binder/IPCThreadState.h>
Todd Poynor752faf22013-06-12 13:25:59 -070022#include <binder/IServiceManager.h>
Todd Poynor020369d2013-09-18 20:09:33 -070023#include <binder/PermissionCache.h>
24#include <private/android_filesystem_config.h>
Todd Poynor752faf22013-06-12 13:25:59 -070025#include <utils/Errors.h>
26#include <utils/Mutex.h>
27#include <utils/String16.h>
28
Yabin Cuie98e1772016-02-17 12:21:34 -080029#include <healthd/healthd.h>
Todd Poynor752faf22013-06-12 13:25:59 -070030
Todd Poynor7b27f272013-09-06 15:14:24 -070031namespace android {
Todd Poynor752faf22013-06-12 13:25:59 -070032
Todd Poynore5535642016-01-05 19:41:34 -080033void BatteryPropertiesRegistrar::publish(
34 const sp<BatteryPropertiesRegistrar>& service) {
35 defaultServiceManager()->addService(String16("batteryproperties"), service);
Todd Poynor752faf22013-06-12 13:25:59 -070036}
37
Chih-Hung Hsieh4df10562016-07-27 16:05:50 -070038void BatteryPropertiesRegistrar::notifyListeners(const struct BatteryProperties& props) {
Todd Poynorfd683702017-06-26 14:34:38 -070039 Vector<sp<IBatteryPropertiesListener> > listenersCopy;
40
41 // Binder currently may service an incoming oneway transaction whenever an
42 // outbound oneway call is made (if there is already a pending incoming
43 // oneway call waiting). This is considered a bug and may change in the
44 // future. For now, avoid recursive mutex lock while making outbound
45 // calls by making a local copy of the current list of listeners.
46 {
47 Mutex::Autolock _l(mRegistrationLock);
48 listenersCopy = mListeners;
49 }
50 for (size_t i = 0; i < listenersCopy.size(); i++) {
51 listenersCopy[i]->batteryPropertiesChanged(props);
Todd Poynor752faf22013-06-12 13:25:59 -070052 }
53}
54
55void BatteryPropertiesRegistrar::registerListener(const sp<IBatteryPropertiesListener>& listener) {
56 {
Natalie Silvanovich3e6d3312014-04-30 14:50:27 -070057 if (listener == NULL)
58 return;
Todd Poynor752faf22013-06-12 13:25:59 -070059 Mutex::Autolock _l(mRegistrationLock);
60 // check whether this is a duplicate
61 for (size_t i = 0; i < mListeners.size(); i++) {
Marco Nelissen26279a92014-11-14 08:03:02 -080062 if (IInterface::asBinder(mListeners[i]) == IInterface::asBinder(listener)) {
Todd Poynor752faf22013-06-12 13:25:59 -070063 return;
64 }
65 }
66
67 mListeners.add(listener);
Marco Nelissen26279a92014-11-14 08:03:02 -080068 IInterface::asBinder(listener)->linkToDeath(this);
Todd Poynor752faf22013-06-12 13:25:59 -070069 }
Todd Poynor7b27f272013-09-06 15:14:24 -070070 healthd_battery_update();
Todd Poynor752faf22013-06-12 13:25:59 -070071}
72
73void BatteryPropertiesRegistrar::unregisterListener(const sp<IBatteryPropertiesListener>& listener) {
Natalie Silvanovich3e6d3312014-04-30 14:50:27 -070074 if (listener == NULL)
75 return;
Todd Poynor752faf22013-06-12 13:25:59 -070076 Mutex::Autolock _l(mRegistrationLock);
77 for (size_t i = 0; i < mListeners.size(); i++) {
Marco Nelissen26279a92014-11-14 08:03:02 -080078 if (IInterface::asBinder(mListeners[i]) == IInterface::asBinder(listener)) {
79 IInterface::asBinder(mListeners[i])->unlinkToDeath(this);
Todd Poynor752faf22013-06-12 13:25:59 -070080 mListeners.removeAt(i);
81 break;
82 }
83 }
84}
85
Todd Poynorc133b712013-08-14 17:39:13 -070086status_t BatteryPropertiesRegistrar::getProperty(int id, struct BatteryProperty *val) {
Todd Poynor7b27f272013-09-06 15:14:24 -070087 return healthd_get_property(id, val);
Todd Poynorc133b712013-08-14 17:39:13 -070088}
89
Adam Lesinski3dec1aa2017-02-15 18:49:00 -080090void BatteryPropertiesRegistrar::scheduleUpdate() {
91 healthd_battery_update();
92}
93
Mark Salyzyn6f5b47f2014-05-15 15:00:59 -070094status_t BatteryPropertiesRegistrar::dump(int fd, const Vector<String16>& /*args*/) {
Todd Poynor020369d2013-09-18 20:09:33 -070095 IPCThreadState* self = IPCThreadState::self();
96 const int pid = self->getCallingPid();
97 const int uid = self->getCallingUid();
98 if ((uid != AID_SHELL) &&
99 !PermissionCache::checkPermission(
100 String16("android.permission.DUMP"), pid, uid))
101 return PERMISSION_DENIED;
102
103 healthd_dump_battery_state(fd);
104 return OK;
105}
106
Todd Poynor752faf22013-06-12 13:25:59 -0700107void BatteryPropertiesRegistrar::binderDied(const wp<IBinder>& who) {
108 Mutex::Autolock _l(mRegistrationLock);
109
110 for (size_t i = 0; i < mListeners.size(); i++) {
Marco Nelissen26279a92014-11-14 08:03:02 -0800111 if (IInterface::asBinder(mListeners[i]) == who) {
Todd Poynor752faf22013-06-12 13:25:59 -0700112 mListeners.removeAt(i);
113 break;
114 }
115 }
116}
117
118} // namespace android