blob: 7c42c36e774770bd5ba8e124798785602e28eae9 [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
Steven Morelande8e63aa2018-01-10 15:45:36 -080019import android.annotation.SystemApi;
Steven Morelandcbba4c72019-01-11 10:19:51 -080020import android.annotation.TestApi;
Artur Satayevafdb23a2019-12-10 17:47:53 +000021import android.compat.annotation.UnsupportedAppUsage;
Steven Morelande8e63aa2018-01-10 15:45:36 -080022
Andreas Huberdab5fc62016-08-15 09:25:02 -070023import libcore.util.NativeAllocationRegistry;
24
Steven Morelandec5eb7e2017-10-25 04:50:46 +000025import java.util.NoSuchElementException;
26
Andreas Huberdab5fc62016-08-15 09:25:02 -070027/** @hide */
Steven Morelande8e63aa2018-01-10 15:45:36 -080028@SystemApi
Steven Morelandcbba4c72019-01-11 10:19:51 -080029@TestApi
Andreas Huberdab5fc62016-08-15 09:25:02 -070030public abstract class HwBinder implements IHwBinder {
31 private static final String TAG = "HwBinder";
32
33 private static final NativeAllocationRegistry sNativeRegistry;
34
Steven Moreland4c0d6b62018-02-07 10:07:03 -080035 /**
36 * Create and initialize a HwBinder object and the native objects
37 * used to allow this to participate in hwbinder transactions.
Steven Moreland4c0d6b62018-02-07 10:07:03 -080038 */
Andreas Huberdab5fc62016-08-15 09:25:02 -070039 public HwBinder() {
40 native_setup();
41
42 sNativeRegistry.registerNativeAllocation(
43 this,
44 mNativeContext);
45 }
46
Steven Morelande62b1f32016-12-20 15:55:48 -080047 @Override
Andreas Huberdab5fc62016-08-15 09:25:02 -070048 public final native void transact(
Steven Morelande62b1f32016-12-20 15:55:48 -080049 int code, HwParcel request, HwParcel reply, int flags)
50 throws RemoteException;
Andreas Huberdab5fc62016-08-15 09:25:02 -070051
Steven Moreland4c0d6b62018-02-07 10:07:03 -080052 /**
53 * Process a hwbinder transaction.
54 *
55 * @param code interface specific code for interface.
56 * @param request parceled transaction
57 * @param reply object to parcel reply into
58 * @param flags transaction flags to be chosen by wire protocol
Steven Moreland4c0d6b62018-02-07 10:07:03 -080059 */
Andreas Huberdab5fc62016-08-15 09:25:02 -070060 public abstract void onTransact(
Steven Morelande62b1f32016-12-20 15:55:48 -080061 int code, HwParcel request, HwParcel reply, int flags)
62 throws RemoteException;
Andreas Huberdab5fc62016-08-15 09:25:02 -070063
Steven Moreland4c0d6b62018-02-07 10:07:03 -080064 /**
65 * Registers this service with the hwservicemanager.
66 *
67 * @param serviceName instance name of the service
Steven Moreland4c0d6b62018-02-07 10:07:03 -080068 */
Martijn Coenen85d12da2017-03-06 13:07:53 +010069 public native final void registerService(String serviceName)
Steven Morelandc0631d02017-01-04 10:37:59 -080070 throws RemoteException;
Andreas Huber35eb7992016-10-25 13:29:30 -070071
Steven Morelandadcb8962018-01-25 10:24:07 -080072 /**
73 * Returns the specified service from the hwservicemanager. Does not retry.
74 *
75 * @param iface fully-qualified interface name for example foo.bar@1.3::IBaz
76 * @param serviceName the instance name of the service for example default.
77 * @throws NoSuchElementException when the service is unavailable
Steven Morelandadcb8962018-01-25 10:24:07 -080078 */
Steven Morelandec5eb7e2017-10-25 04:50:46 +000079 public static final IHwBinder getService(
Steven Morelandf3c53492016-11-03 15:17:04 -070080 String iface,
Steven Morelandcc9e67c2017-10-25 04:46:26 +000081 String serviceName)
Steven Morelandec5eb7e2017-10-25 04:50:46 +000082 throws RemoteException, NoSuchElementException {
83 return getService(iface, serviceName, false /* retry */);
84 }
Steven Morelandadcb8962018-01-25 10:24:07 -080085 /**
86 * Returns the specified service from the hwservicemanager.
87 * @param iface fully-qualified interface name for example foo.bar@1.3::IBaz
88 * @param serviceName the instance name of the service for example default.
89 * @param retry whether to wait for the service to start if it's not already started
90 * @throws NoSuchElementException when the service is unavailable
Steven Morelandadcb8962018-01-25 10:24:07 -080091 */
Steven Morelandec5eb7e2017-10-25 04:50:46 +000092 public static native final IHwBinder getService(
93 String iface,
94 String serviceName,
95 boolean retry)
Steven Morelandc0631d02017-01-04 10:37:59 -080096 throws RemoteException, NoSuchElementException;
Andreas Huberdab5fc62016-08-15 09:25:02 -070097
Steven Morelande8e63aa2018-01-10 15:45:36 -080098 /**
99 * Configures how many threads the process-wide hwbinder threadpool
100 * has to process incoming requests.
101 *
Steven Moreland739811a2018-01-30 10:11:40 -0800102 * @param maxThreads total number of threads to create (includes this thread if
103 * callerWillJoin is true)
104 * @param callerWillJoin whether joinRpcThreadpool will be called in advance
Steven Morelande8e63aa2018-01-10 15:45:36 -0800105 */
Timur Iskhakovb6a62832017-07-10 10:08:38 -0700106 public static native final void configureRpcThreadpool(
107 long maxThreads, boolean callerWillJoin);
108
Steven Morelande8e63aa2018-01-10 15:45:36 -0800109 /**
110 * Current thread will join hwbinder threadpool and process
111 * commands in the pool. Should be called after configuring
112 * a threadpool with callerWillJoin true and then registering
113 * the provided service if this thread doesn't need to do
114 * anything else.
Steven Morelande8e63aa2018-01-10 15:45:36 -0800115 */
Timur Iskhakovb6a62832017-07-10 10:08:38 -0700116 public static native final void joinRpcThreadpool();
117
Andreas Huberdab5fc62016-08-15 09:25:02 -0700118 // Returns address of the "freeFunction".
119 private static native final long native_init();
120
121 private native final void native_setup();
122
123 static {
124 long freeFunction = native_init();
125
126 sNativeRegistry = new NativeAllocationRegistry(
127 HwBinder.class.getClassLoader(),
128 freeFunction,
129 128 /* size */);
130 }
131
132 private long mNativeContext;
Sundong Ahn28cc6e82017-07-13 16:34:01 +0900133
134 private static native void native_report_sysprop_change();
135
136 /**
Steven Moreland36be1912018-01-25 15:42:02 -0800137 * Enable instrumentation if available.
Steven Moreland739811a2018-01-30 10:11:40 -0800138 *
139 * On a non-user build, this method:
140 * - tries to enable atracing (if enabled)
141 * - tries to enable coverage dumps (if running in VTS)
142 * - tries to enable record and replay (if running in VTS)
Steven Moreland36be1912018-01-25 15:42:02 -0800143 */
144 public static void enableInstrumentation() {
145 native_report_sysprop_change();
146 }
147
148 /**
Sundong Ahn28cc6e82017-07-13 16:34:01 +0900149 * Notifies listeners that a system property has changed
Steven Moreland36be1912018-01-25 15:42:02 -0800150 *
151 * TODO(b/72480743): remove this method
152 *
Steven Morelande8e63aa2018-01-10 15:45:36 -0800153 * @hide
Sundong Ahn28cc6e82017-07-13 16:34:01 +0900154 */
Andrei Onea24ec3212019-03-15 17:35:05 +0000155 @UnsupportedAppUsage
Sundong Ahn28cc6e82017-07-13 16:34:01 +0900156 public static void reportSyspropChanged() {
157 native_report_sysprop_change();
158 }
Andreas Huberdab5fc62016-08-15 09:25:02 -0700159}