blob: 3d05e2a0b9f68ada605e717a53a0188c9d6f6578 [file] [log] [blame]
Jeff Brown928e0542011-01-10 11:17:36 -08001/*
2 * Copyright (C) 2011 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
Robert Carr788f5742018-07-30 17:46:45 -070017package android.view;
Jeff Brown928e0542011-01-10 11:17:36 -080018
Robert Carr0bcbe642018-10-11 19:07:43 -070019import android.os.IBinder;
20
Jeff Brown928e0542011-01-10 11:17:36 -080021/**
22 * Functions as a handle for an application that can receive input.
23 * Enables the native input dispatcher to refer indirectly to the window manager's
24 * application window token.
25 * @hide
26 */
27public final class InputApplicationHandle {
28 // Pointer to the native input application handle.
29 // This field is lazily initialized via JNI.
30 @SuppressWarnings("unused")
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +000031 private long ptr;
Jeff Brown928e0542011-01-10 11:17:36 -080032
Jeff Brown9302c872011-07-13 22:51:29 -070033 // Application name.
34 public String name;
35
36 // Dispatching timeout.
37 public long dispatchingTimeoutNanos;
38
Vishnu Nair5cf253192019-11-07 15:33:20 -080039 public final IBinder token;
Robert Carr0bcbe642018-10-11 19:07:43 -070040
Jeff Brown928e0542011-01-10 11:17:36 -080041 private native void nativeDispose();
42
Robert Carr0bcbe642018-10-11 19:07:43 -070043 public InputApplicationHandle(IBinder token) {
44 this.token = token;
Jeff Brown928e0542011-01-10 11:17:36 -080045 }
46
Vishnu Nair5cf253192019-11-07 15:33:20 -080047 public InputApplicationHandle(InputApplicationHandle handle) {
48 this.token = handle.token;
49 this.dispatchingTimeoutNanos = handle.dispatchingTimeoutNanos;
50 this.name = handle.name;
51 }
52
Jeff Brown928e0542011-01-10 11:17:36 -080053 @Override
54 protected void finalize() throws Throwable {
Jeff Browncc4f7db2011-08-30 20:34:48 -070055 try {
56 nativeDispose();
57 } finally {
58 super.finalize();
59 }
Jeff Brown928e0542011-01-10 11:17:36 -080060 }
61}