blob: c2848d40e59571aa8533a0ce45cadd3127e8397e [file] [log] [blame]
Jeff Brownc5ed5912010-07-14 18:48:53 -07001/*
2 * Copyright (C) 2010 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.view;
18
Mathew Inwooda570dee2018-08-17 14:56:00 +010019import android.annotation.UnsupportedAppUsage;
Jeff Brown6ec402b2010-07-28 15:48:59 -070020import android.os.Parcel;
Jeff Brownc5ed5912010-07-14 18:48:53 -070021import android.os.Parcelable;
22
Jeff Brown32cbc38552011-12-01 14:01:49 -080023import java.util.concurrent.atomic.AtomicInteger;
24
Jeff Brownc5ed5912010-07-14 18:48:53 -070025/**
26 * Common base class for input events.
27 */
28public abstract class InputEvent implements Parcelable {
Jeff Brown69206512010-09-12 17:17:30 -070029 /** @hide */
Jeff Brown6ec402b2010-07-28 15:48:59 -070030 protected static final int PARCEL_TOKEN_MOTION_EVENT = 1;
31 /** @hide */
32 protected static final int PARCEL_TOKEN_KEY_EVENT = 2;
Jeff Brown32cbc38552011-12-01 14:01:49 -080033
34 // Next sequence number.
35 private static final AtomicInteger mNextSeq = new AtomicInteger();
36
37 /** @hide */
38 protected int mSeq;
39
40 /** @hide */
41 protected boolean mRecycled;
42
43 private static final boolean TRACK_RECYCLED_LOCATION = false;
44 private RuntimeException mRecycledLocation;
45
Jeff Brownc5ed5912010-07-14 18:48:53 -070046 /*package*/ InputEvent() {
Jeff Brown32cbc38552011-12-01 14:01:49 -080047 mSeq = mNextSeq.getAndIncrement();
Jeff Brownc5ed5912010-07-14 18:48:53 -070048 }
49
50 /**
51 * Gets the id for the device that this event came from. An id of
52 * zero indicates that the event didn't come from a physical device
53 * and maps to the default keymap. The other numbers are arbitrary and
54 * you shouldn't depend on the values.
Siarhei Vishniakou85ddfff2018-01-31 16:49:36 -080055 *
Jeff Brownc5ed5912010-07-14 18:48:53 -070056 * @return The device id.
57 * @see InputDevice#getDevice
58 */
Jeff Brown91c69ab2011-02-14 17:03:18 -080059 public abstract int getDeviceId();
60
Jeff Brownc5ed5912010-07-14 18:48:53 -070061 /**
Jeff Browne33348b2010-07-15 23:54:05 -070062 * Gets the device that this event came from.
Siarhei Vishniakou85ddfff2018-01-31 16:49:36 -080063 *
Jeff Browne33348b2010-07-15 23:54:05 -070064 * @return The device, or null if unknown.
65 */
66 public final InputDevice getDevice() {
Jeff Brown91c69ab2011-02-14 17:03:18 -080067 return InputDevice.getDevice(getDeviceId());
Jeff Browne33348b2010-07-15 23:54:05 -070068 }
Jeff Brown91c69ab2011-02-14 17:03:18 -080069
Jeff Browne33348b2010-07-15 23:54:05 -070070 /**
Jeff Brownc5ed5912010-07-14 18:48:53 -070071 * Gets the source of the event.
Siarhei Vishniakou85ddfff2018-01-31 16:49:36 -080072 *
Jeff Browne33348b2010-07-15 23:54:05 -070073 * @return The event source or {@link InputDevice#SOURCE_UNKNOWN} if unknown.
John Spurlock600cba92013-04-18 08:53:56 -040074 * @see InputDevice#getSources
Jeff Brownc5ed5912010-07-14 18:48:53 -070075 */
Jeff Brown91c69ab2011-02-14 17:03:18 -080076 public abstract int getSource();
77
Jeff Brownc5ed5912010-07-14 18:48:53 -070078 /**
79 * Modifies the source of the event.
Jeff Brown91c69ab2011-02-14 17:03:18 -080080 *
81 * @param source The new source.
Jeff Brownc5ed5912010-07-14 18:48:53 -070082 * @hide
83 */
Jeff Brown91c69ab2011-02-14 17:03:18 -080084 public abstract void setSource(int source);
85
Jeff Brown0029c662011-03-30 02:25:18 -070086 /**
Michael Wright74e41562013-03-08 14:58:14 -080087 * Determines whether the event is from the given source.
88 *
89 * @param source The input source to check against. This can be a specific device type, such as
90 * {@link InputDevice#SOURCE_TOUCH_NAVIGATION}, or a more generic device class, such as
91 * {@link InputDevice#SOURCE_CLASS_POINTER}.
92 * @return Whether the event is from the given source.
93 */
94 public boolean isFromSource(int source) {
95 return (getSource() & source) == source;
96 }
97
98 /**
Siarhei Vishniakou91fa08f2018-06-08 22:49:30 +010099 * Gets the display id of the event.
100 * @return The display id associated with the event.
101 * @hide
102 */
103 public abstract int getDisplayId();
104
105 /**
106 * Modifies the display id associated with the event
107 * @param displayId
108 * @hide
109 */
110 public abstract void setDisplayId(int displayId);
111 /**
Jeff Brown21bc5c92011-02-28 18:27:14 -0800112 * Copies the event.
113 *
114 * @return A deep copy of the event.
115 * @hide
116 */
117 public abstract InputEvent copy();
118
119 /**
Jeff Brown0029c662011-03-30 02:25:18 -0700120 * Recycles the event.
121 * This method should only be used by the system since applications do not
122 * expect {@link KeyEvent} objects to be recycled, although {@link MotionEvent}
123 * objects are fine. See {@link KeyEvent#recycle()} for details.
124 * @hide
125 */
Jeff Brown32cbc38552011-12-01 14:01:49 -0800126 public void recycle() {
127 if (TRACK_RECYCLED_LOCATION) {
128 if (mRecycledLocation != null) {
129 throw new RuntimeException(toString() + " recycled twice!", mRecycledLocation);
130 }
131 mRecycledLocation = new RuntimeException("Last recycled here");
132 } else {
133 if (mRecycled) {
134 throw new RuntimeException(toString() + " recycled twice!");
135 }
136 mRecycled = true;
137 }
138 }
139
140 /**
Jeff Brown92cc2d82011-12-02 01:19:47 -0800141 * Conditionally recycled the event if it is appropriate to do so after
142 * dispatching the event to an application.
143 *
144 * If the event is a {@link MotionEvent} then it is recycled.
145 *
146 * If the event is a {@link KeyEvent} then it is NOT recycled, because applications
147 * expect key events to be immutable so once the event has been dispatched to
148 * the application we can no longer recycle it.
149 * @hide
150 */
151 public void recycleIfNeededAfterDispatch() {
152 recycle();
153 }
154
155 /**
Jeff Brown32cbc38552011-12-01 14:01:49 -0800156 * Reinitializes the event on reuse (after recycling).
157 * @hide
158 */
159 protected void prepareForReuse() {
160 mRecycled = false;
161 mRecycledLocation = null;
162 mSeq = mNextSeq.getAndIncrement();
163 }
Jeff Brown0029c662011-03-30 02:25:18 -0700164
Jeff Brown21bc5c92011-02-28 18:27:14 -0800165 /**
166 * Gets a private flag that indicates when the system has detected that this input event
167 * may be inconsistent with respect to the sequence of previously delivered input events,
168 * such as when a key up event is sent but the key was not down or when a pointer
169 * move event is sent but the pointer is not down.
170 *
171 * @return True if this event is tainted.
172 * @hide
173 */
174 public abstract boolean isTainted();
175
176 /**
177 * Sets a private flag that indicates when the system has detected that this input event
178 * may be inconsistent with respect to the sequence of previously delivered input events,
179 * such as when a key up event is sent but the key was not down or when a pointer
180 * move event is sent but the pointer is not down.
181 *
182 * @param tainted True if this event is tainted.
183 * @hide
184 */
185 public abstract void setTainted(boolean tainted);
186
Jeff Brown4e91a182011-04-07 11:38:09 -0700187 /**
Jeff Brownb11499d2012-04-20 19:54:22 -0700188 * Retrieve the time this event occurred,
189 * in the {@link android.os.SystemClock#uptimeMillis} time base.
190 *
191 * @return Returns the time this event occurred,
192 * in the {@link android.os.SystemClock#uptimeMillis} time base.
193 */
194 public abstract long getEventTime();
195
196 /**
197 * Retrieve the time this event occurred,
198 * in the {@link android.os.SystemClock#uptimeMillis} time base but with
199 * nanosecond (instead of millisecond) precision.
200 * <p>
Jeff Brown4e91a182011-04-07 11:38:09 -0700201 * The value is in nanosecond precision but it may not have nanosecond accuracy.
Jeff Brownb11499d2012-04-20 19:54:22 -0700202 * </p>
203 *
204 * @return Returns the time this event occurred,
205 * in the {@link android.os.SystemClock#uptimeMillis} time base but with
206 * nanosecond (instead of millisecond) precision.
207 *
Jeff Brown4e91a182011-04-07 11:38:09 -0700208 * @hide
209 */
210 public abstract long getEventTimeNano();
211
Jeff Brown32cbc38552011-12-01 14:01:49 -0800212 /**
Wale Ogunwalec3672cd2014-11-05 15:17:35 -0800213 * Marks the input event as being canceled.
214 *
215 * @hide
216 */
217 public abstract void cancel();
218
219 /**
Jeff Brown32cbc38552011-12-01 14:01:49 -0800220 * Gets the unique sequence number of this event.
221 * Every input event that is created or received by a process has a
222 * unique sequence number. Moreover, a new sequence number is obtained
223 * each time an event object is recycled.
224 *
225 * Sequence numbers are only guaranteed to be locally unique within a process.
226 * Sequence numbers are not preserved when events are parceled.
227 *
228 * @return The unique sequence number of this event.
229 * @hide
230 */
Mathew Inwooda570dee2018-08-17 14:56:00 +0100231 @UnsupportedAppUsage
Jeff Brown32cbc38552011-12-01 14:01:49 -0800232 public int getSequenceNumber() {
233 return mSeq;
234 }
235
Jeff Brown69206512010-09-12 17:17:30 -0700236 public int describeContents() {
Jeff Brown6ec402b2010-07-28 15:48:59 -0700237 return 0;
238 }
Jeff Brown91c69ab2011-02-14 17:03:18 -0800239
Jeff Brown6ec402b2010-07-28 15:48:59 -0700240 public static final Parcelable.Creator<InputEvent> CREATOR
241 = new Parcelable.Creator<InputEvent>() {
242 public InputEvent createFromParcel(Parcel in) {
243 int token = in.readInt();
244 if (token == PARCEL_TOKEN_KEY_EVENT) {
245 return KeyEvent.createFromParcelBody(in);
246 } else if (token == PARCEL_TOKEN_MOTION_EVENT) {
247 return MotionEvent.createFromParcelBody(in);
248 } else {
249 throw new IllegalStateException("Unexpected input event type token in parcel.");
250 }
251 }
Siarhei Vishniakou85ddfff2018-01-31 16:49:36 -0800252
Jeff Brown6ec402b2010-07-28 15:48:59 -0700253 public InputEvent[] newArray(int size) {
254 return new InputEvent[size];
255 }
256 };
Jeff Brownc5ed5912010-07-14 18:48:53 -0700257}