blob: 5e2a0815b60d39e2cd52157d0a201379f3e81ed4 [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
17package android.os;
18
19import libcore.util.NativeAllocationRegistry;
20
Steven Morelandec5eb7e2017-10-25 04:50:46 +000021import java.util.NoSuchElementException;
22
Andreas Huberdab5fc62016-08-15 09:25:02 -070023/** @hide */
24public abstract class HwBinder implements IHwBinder {
25 private static final String TAG = "HwBinder";
26
27 private static final NativeAllocationRegistry sNativeRegistry;
28
29 public HwBinder() {
30 native_setup();
31
32 sNativeRegistry.registerNativeAllocation(
33 this,
34 mNativeContext);
35 }
36
Steven Morelande62b1f32016-12-20 15:55:48 -080037 @Override
Andreas Huberdab5fc62016-08-15 09:25:02 -070038 public final native void transact(
Steven Morelande62b1f32016-12-20 15:55:48 -080039 int code, HwParcel request, HwParcel reply, int flags)
40 throws RemoteException;
Andreas Huberdab5fc62016-08-15 09:25:02 -070041
42 public abstract void onTransact(
Steven Morelande62b1f32016-12-20 15:55:48 -080043 int code, HwParcel request, HwParcel reply, int flags)
44 throws RemoteException;
Andreas Huberdab5fc62016-08-15 09:25:02 -070045
Martijn Coenen85d12da2017-03-06 13:07:53 +010046 public native final void registerService(String serviceName)
Steven Morelandc0631d02017-01-04 10:37:59 -080047 throws RemoteException;
Andreas Huber35eb7992016-10-25 13:29:30 -070048
Steven Morelandec5eb7e2017-10-25 04:50:46 +000049 public static final IHwBinder getService(
Steven Morelandf3c53492016-11-03 15:17:04 -070050 String iface,
Steven Morelandcc9e67c2017-10-25 04:46:26 +000051 String serviceName)
Steven Morelandec5eb7e2017-10-25 04:50:46 +000052 throws RemoteException, NoSuchElementException {
53 return getService(iface, serviceName, false /* retry */);
54 }
55 public static native final IHwBinder getService(
56 String iface,
57 String serviceName,
58 boolean retry)
Steven Morelandc0631d02017-01-04 10:37:59 -080059 throws RemoteException, NoSuchElementException;
Andreas Huberdab5fc62016-08-15 09:25:02 -070060
Timur Iskhakovb6a62832017-07-10 10:08:38 -070061 public static native final void configureRpcThreadpool(
62 long maxThreads, boolean callerWillJoin);
63
64 public static native final void joinRpcThreadpool();
65
Andreas Huberdab5fc62016-08-15 09:25:02 -070066 // Returns address of the "freeFunction".
67 private static native final long native_init();
68
69 private native final void native_setup();
70
71 static {
72 long freeFunction = native_init();
73
74 sNativeRegistry = new NativeAllocationRegistry(
75 HwBinder.class.getClassLoader(),
76 freeFunction,
77 128 /* size */);
78 }
79
80 private long mNativeContext;
Sundong Ahn28cc6e82017-07-13 16:34:01 +090081
82 private static native void native_report_sysprop_change();
83
84 /**
85 * Notifies listeners that a system property has changed
86 */
87 public static void reportSyspropChanged() {
88 native_report_sysprop_change();
89 }
Andreas Huberdab5fc62016-08-15 09:25:02 -070090}