1 /*
2  * Copyright (C) 2018 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 #ifndef ANDROID_SENSOR_PRIVACY_MANAGER_H
18 #define ANDROID_SENSOR_PRIVACY_MANAGER_H
19 
20 #include "android/hardware/ISensorPrivacyListener.h"
21 #include "android/hardware/ISensorPrivacyManager.h"
22 
23 #include <utils/threads.h>
24 
25 // ---------------------------------------------------------------------------
26 namespace android {
27 
28 class SensorPrivacyManager
29 {
30 public:
31     SensorPrivacyManager();
32 
33     void addSensorPrivacyListener(const sp<hardware::ISensorPrivacyListener>& listener);
34     void removeSensorPrivacyListener(const sp<hardware::ISensorPrivacyListener>& listener);
35     bool isSensorPrivacyEnabled();
36 
37     status_t linkToDeath(const sp<IBinder::DeathRecipient>& recipient);
38     status_t unlinkToDeath(const sp<IBinder::DeathRecipient>& recipient);
39 
40 private:
41     Mutex mLock;
42     sp<hardware::ISensorPrivacyManager> mService;
43     sp<hardware::ISensorPrivacyManager> getService();
44 };
45 
46 
47 }; // namespace android
48 // ---------------------------------------------------------------------------
49 
50 #endif // ANDROID_SENSOR_PRIVACY_MANAGER_H
51