blob: 0c592e1f04b8a654e759f8ade86c5e7e8eff98a2 [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;
20
Andreas Huberdab5fc62016-08-15 09:25:02 -070021/** @hide */
Steven Morelande8e63aa2018-01-10 15:45:36 -080022@SystemApi
Andreas Huberdab5fc62016-08-15 09:25:02 -070023public interface IHwBinder {
Andreas Huber90349b32016-08-18 14:29:40 -070024 // These MUST match their corresponding libhwbinder/IBinder.h definition !!!
Steven Morelande8e63aa2018-01-10 15:45:36 -080025 /** @hide */
Andreas Huberdab5fc62016-08-15 09:25:02 -070026 public static final int FIRST_CALL_TRANSACTION = 1;
Steven Morelande8e63aa2018-01-10 15:45:36 -080027 /** @hide */
Andreas Huber90349b32016-08-18 14:29:40 -070028 public static final int FLAG_ONEWAY = 1;
Andreas Huberdab5fc62016-08-15 09:25:02 -070029
Steven Morelandadcb8962018-01-25 10:24:07 -080030 /**
31 * Process a hwbinder transaction.
32 *
33 * @hide
34 */
35 @SystemApi
Andreas Huberdab5fc62016-08-15 09:25:02 -070036 public void transact(
Steven Moreland27538df2016-12-20 15:55:48 -080037 int code, HwParcel request, HwParcel reply, int flags)
38 throws RemoteException;
Andreas Huberdab5fc62016-08-15 09:25:02 -070039
Steven Morelandadcb8962018-01-25 10:24:07 -080040 /**
41 * Return as IHwInterface instance only if this implements descriptor.
42 * @param descriptor for example foo.bar@1.0::IBaz
43 * @hide
44 */
45 @SystemApi
Andreas Huberdab5fc62016-08-15 09:25:02 -070046 public IHwInterface queryLocalInterface(String descriptor);
Martijn Coenen727f7bf2016-12-27 14:33:09 +010047
48 /**
49 * Interface for receiving a callback when the process hosting a service
50 * has gone away.
51 */
Steven Morelande8e63aa2018-01-10 15:45:36 -080052 @SystemApi
Martijn Coenen727f7bf2016-12-27 14:33:09 +010053 public interface DeathRecipient {
Steven Morelande8e63aa2018-01-10 15:45:36 -080054 /**
55 * Callback for a registered process dying.
56 */
57 @SystemApi
Martijn Coenen727f7bf2016-12-27 14:33:09 +010058 public void serviceDied(long cookie);
59 }
60
Steven Morelande8e63aa2018-01-10 15:45:36 -080061 /**
62 * Notifies the death recipient with the cookie when the process containing
63 * this binder dies.
64 */
65 @SystemApi
Martijn Coenen727f7bf2016-12-27 14:33:09 +010066 public boolean linkToDeath(DeathRecipient recipient, long cookie);
Steven Morelande8e63aa2018-01-10 15:45:36 -080067 /**
68 * Unregisters the death recipient from this binder.
69 */
70 @SystemApi
Martijn Coenen727f7bf2016-12-27 14:33:09 +010071 public boolean unlinkToDeath(DeathRecipient recipient);
Andreas Huberdab5fc62016-08-15 09:25:02 -070072}