blob: 4b5a4c8c837c77a37fcd1f67ef3a9066d967f099 [file] [log] [blame]
Andreas Huberdab5fc62016-08-15 09:25:02 -07001/*
2 * Copyright (C) 2016 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_OS_HW_REMOTE_BINDER_H
18#define ANDROID_OS_HW_REMOTE_BINDER_H
19
20#include <android-base/macros.h>
21#include <hwbinder/Binder.h>
22#include <jni.h>
Martijn Coenen727f7bf2016-12-27 14:33:09 +010023#include <utils/Mutex.h>
Andreas Huberdab5fc62016-08-15 09:25:02 -070024#include <utils/RefBase.h>
Steven Moreland90a98682018-07-24 13:11:53 -070025#include <vector>
Andreas Huberdab5fc62016-08-15 09:25:02 -070026
27namespace android {
28
Martijn Coenen727f7bf2016-12-27 14:33:09 +010029// Per-IBinder death recipient bookkeeping. This is how we reconcile local jobject
30// death recipient references passed in through JNI with the permanent corresponding
31// HwBinderDeathRecipient objects.
32
33class HwBinderDeathRecipient;
34
35class HwBinderDeathRecipientList : public RefBase {
Steven Moreland90a98682018-07-24 13:11:53 -070036 std::vector<sp<HwBinderDeathRecipient>> mList;
Martijn Coenen727f7bf2016-12-27 14:33:09 +010037 Mutex mLock;
38
39public:
40 HwBinderDeathRecipientList();
41 ~HwBinderDeathRecipientList();
42
43 void add(const sp<HwBinderDeathRecipient>& recipient);
44 void remove(const sp<HwBinderDeathRecipient>& recipient);
Steven Moreland90a98682018-07-24 13:11:53 -070045
46 // finds the most recently added matching death recipient
Martijn Coenen727f7bf2016-12-27 14:33:09 +010047 sp<HwBinderDeathRecipient> find(jobject recipient);
48
49 Mutex& lock(); // Use with care; specifically for mutual exclusion during binder death
50};
51
Andreas Huberdab5fc62016-08-15 09:25:02 -070052struct JHwRemoteBinder : public RefBase {
53 static void InitClass(JNIEnv *env);
54
55 static sp<JHwRemoteBinder> SetNativeContext(
56 JNIEnv *env, jobject thiz, const sp<JHwRemoteBinder> &context);
57
58 static sp<JHwRemoteBinder> GetNativeContext(JNIEnv *env, jobject thiz);
59
60 static jobject NewObject(JNIEnv *env, const sp<hardware::IBinder> &binder);
61
62 JHwRemoteBinder(
63 JNIEnv *env, jobject thiz, const sp<hardware::IBinder> &binder);
64
Martijn Coenen727f7bf2016-12-27 14:33:09 +010065 sp<hardware::IBinder> getBinder() const;
Andreas Huberdab5fc62016-08-15 09:25:02 -070066 void setBinder(const sp<hardware::IBinder> &binder);
Martijn Coenen727f7bf2016-12-27 14:33:09 +010067 sp<HwBinderDeathRecipientList> getDeathRecipientList() const;
Andreas Huberdab5fc62016-08-15 09:25:02 -070068
69protected:
70 virtual ~JHwRemoteBinder();
71
72private:
Andreas Huberdab5fc62016-08-15 09:25:02 -070073 jobject mObject;
74
75 sp<hardware::IBinder> mBinder;
Martijn Coenen727f7bf2016-12-27 14:33:09 +010076 sp<HwBinderDeathRecipientList> mDeathRecipientList;
Andreas Huberdab5fc62016-08-15 09:25:02 -070077 DISALLOW_COPY_AND_ASSIGN(JHwRemoteBinder);
78};
79
80int register_android_os_HwRemoteBinder(JNIEnv *env);
81
82} // namespace android
83
84#endif // ANDROID_OS_HW_REMOTE_BINDER_H
85