blob: 9b96f7fd1c5c36071a748f77dd45dcdd51e02914 [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
Riddle Hsua68473c2020-12-03 15:57:36 +080019import android.annotation.NonNull;
Robert Carr0bcbe642018-10-11 19:07:43 -070020import android.os.IBinder;
21
Jeff Brown928e0542011-01-10 11:17:36 -080022/**
23 * Functions as a handle for an application that can receive input.
24 * Enables the native input dispatcher to refer indirectly to the window manager's
25 * application window token.
26 * @hide
27 */
28public final class InputApplicationHandle {
29 // Pointer to the native input application handle.
30 // This field is lazily initialized via JNI.
31 @SuppressWarnings("unused")
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +000032 private long ptr;
Jeff Brown928e0542011-01-10 11:17:36 -080033
Jeff Brown9302c872011-07-13 22:51:29 -070034 // Application name.
Riddle Hsua68473c2020-12-03 15:57:36 +080035 public final @NonNull String name;
Jeff Brown9302c872011-07-13 22:51:29 -070036
37 // Dispatching timeout.
Riddle Hsua68473c2020-12-03 15:57:36 +080038 public final long dispatchingTimeoutNanos;
Jeff Brown9302c872011-07-13 22:51:29 -070039
Vishnu Nair5cf253192019-11-07 15:33:20 -080040 public final IBinder token;
Robert Carr0bcbe642018-10-11 19:07:43 -070041
Jeff Brown928e0542011-01-10 11:17:36 -080042 private native void nativeDispose();
43
Riddle Hsua68473c2020-12-03 15:57:36 +080044 public InputApplicationHandle(@NonNull IBinder token, @NonNull String name,
45 long dispatchingTimeoutNanos) {
Robert Carr0bcbe642018-10-11 19:07:43 -070046 this.token = token;
Riddle Hsua68473c2020-12-03 15:57:36 +080047 this.name = name;
48 this.dispatchingTimeoutNanos = dispatchingTimeoutNanos;
Jeff Brown928e0542011-01-10 11:17:36 -080049 }
50
Vishnu Nair5cf253192019-11-07 15:33:20 -080051 public InputApplicationHandle(InputApplicationHandle handle) {
52 this.token = handle.token;
53 this.dispatchingTimeoutNanos = handle.dispatchingTimeoutNanos;
54 this.name = handle.name;
55 }
56
Jeff Brown928e0542011-01-10 11:17:36 -080057 @Override
58 protected void finalize() throws Throwable {
Jeff Browncc4f7db2011-08-30 20:34:48 -070059 try {
60 nativeDispose();
61 } finally {
62 super.finalize();
63 }
Jeff Brown928e0542011-01-10 11:17:36 -080064 }
65}