blob: e2ad3ad45c6491bc92a41fa83508f87d32e3df68 [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
Jeff Brown6ec402b2010-07-28 15:48:59 -070019import android.os.Parcel;
Jeff Brownc5ed5912010-07-14 18:48:53 -070020import android.os.Parcelable;
21
Jeff Brown32cbc38552011-12-01 14:01:49 -080022import java.util.concurrent.atomic.AtomicInteger;
23
Jeff Brownc5ed5912010-07-14 18:48:53 -070024/**
25 * Common base class for input events.
26 */
27public abstract class InputEvent implements Parcelable {
Jeff Brown69206512010-09-12 17:17:30 -070028 /** @hide */
Jeff Brown6ec402b2010-07-28 15:48:59 -070029 protected static final int PARCEL_TOKEN_MOTION_EVENT = 1;
30 /** @hide */
31 protected static final int PARCEL_TOKEN_KEY_EVENT = 2;
Jeff Brown32cbc38552011-12-01 14:01:49 -080032
33 // Next sequence number.
34 private static final AtomicInteger mNextSeq = new AtomicInteger();
35
36 /** @hide */
37 protected int mSeq;
38
39 /** @hide */
40 protected boolean mRecycled;
41
42 private static final boolean TRACK_RECYCLED_LOCATION = false;
43 private RuntimeException mRecycledLocation;
44
Jeff Brownc5ed5912010-07-14 18:48:53 -070045 /*package*/ InputEvent() {
Jeff Brown32cbc38552011-12-01 14:01:49 -080046 mSeq = mNextSeq.getAndIncrement();
Jeff Brownc5ed5912010-07-14 18:48:53 -070047 }
48
49 /**
50 * Gets the id for the device that this event came from. An id of
51 * zero indicates that the event didn't come from a physical device
52 * and maps to the default keymap. The other numbers are arbitrary and
53 * you shouldn't depend on the values.
54 *
55 * @return The device id.
56 * @see InputDevice#getDevice
57 */
Jeff Brown91c69ab2011-02-14 17:03:18 -080058 public abstract int getDeviceId();
59
Jeff Brownc5ed5912010-07-14 18:48:53 -070060 /**
Jeff Browne33348b2010-07-15 23:54:05 -070061 * Gets the device that this event came from.
62 *
63 * @return The device, or null if unknown.
64 */
65 public final InputDevice getDevice() {
Jeff Brown91c69ab2011-02-14 17:03:18 -080066 return InputDevice.getDevice(getDeviceId());
Jeff Browne33348b2010-07-15 23:54:05 -070067 }
Jeff Brown91c69ab2011-02-14 17:03:18 -080068
Jeff Browne33348b2010-07-15 23:54:05 -070069 /**
Jeff Brownc5ed5912010-07-14 18:48:53 -070070 * Gets the source of the event.
71 *
Jeff Browne33348b2010-07-15 23:54:05 -070072 * @return The event source or {@link InputDevice#SOURCE_UNKNOWN} if unknown.
John Spurlock600cba92013-04-18 08:53:56 -040073 * @see InputDevice#getSources
Jeff Brownc5ed5912010-07-14 18:48:53 -070074 */
Jeff Brown91c69ab2011-02-14 17:03:18 -080075 public abstract int getSource();
76
Jeff Brownc5ed5912010-07-14 18:48:53 -070077 /**
78 * Modifies the source of the event.
Jeff Brown91c69ab2011-02-14 17:03:18 -080079 *
80 * @param source The new source.
Jeff Brownc5ed5912010-07-14 18:48:53 -070081 * @hide
82 */
Jeff Brown91c69ab2011-02-14 17:03:18 -080083 public abstract void setSource(int source);
84
Jeff Brown0029c662011-03-30 02:25:18 -070085 /**
Michael Wright74e41562013-03-08 14:58:14 -080086 * Determines whether the event is from the given source.
87 *
88 * @param source The input source to check against. This can be a specific device type, such as
89 * {@link InputDevice#SOURCE_TOUCH_NAVIGATION}, or a more generic device class, such as
90 * {@link InputDevice#SOURCE_CLASS_POINTER}.
91 * @return Whether the event is from the given source.
92 */
93 public boolean isFromSource(int source) {
94 return (getSource() & source) == source;
95 }
96
97 /**
Jeff Brown21bc5c92011-02-28 18:27:14 -080098 * Copies the event.
99 *
100 * @return A deep copy of the event.
101 * @hide
102 */
103 public abstract InputEvent copy();
104
105 /**
Jeff Brown0029c662011-03-30 02:25:18 -0700106 * Recycles the event.
107 * This method should only be used by the system since applications do not
108 * expect {@link KeyEvent} objects to be recycled, although {@link MotionEvent}
109 * objects are fine. See {@link KeyEvent#recycle()} for details.
110 * @hide
111 */
Jeff Brown32cbc38552011-12-01 14:01:49 -0800112 public void recycle() {
113 if (TRACK_RECYCLED_LOCATION) {
114 if (mRecycledLocation != null) {
115 throw new RuntimeException(toString() + " recycled twice!", mRecycledLocation);
116 }
117 mRecycledLocation = new RuntimeException("Last recycled here");
118 } else {
119 if (mRecycled) {
120 throw new RuntimeException(toString() + " recycled twice!");
121 }
122 mRecycled = true;
123 }
124 }
125
126 /**
Jeff Brown92cc2d82011-12-02 01:19:47 -0800127 * Conditionally recycled the event if it is appropriate to do so after
128 * dispatching the event to an application.
129 *
130 * If the event is a {@link MotionEvent} then it is recycled.
131 *
132 * If the event is a {@link KeyEvent} then it is NOT recycled, because applications
133 * expect key events to be immutable so once the event has been dispatched to
134 * the application we can no longer recycle it.
135 * @hide
136 */
137 public void recycleIfNeededAfterDispatch() {
138 recycle();
139 }
140
141 /**
Jeff Brown32cbc38552011-12-01 14:01:49 -0800142 * Reinitializes the event on reuse (after recycling).
143 * @hide
144 */
145 protected void prepareForReuse() {
146 mRecycled = false;
147 mRecycledLocation = null;
148 mSeq = mNextSeq.getAndIncrement();
149 }
Jeff Brown0029c662011-03-30 02:25:18 -0700150
Jeff Brown21bc5c92011-02-28 18:27:14 -0800151 /**
152 * Gets a private flag that indicates when the system has detected that this input event
153 * may be inconsistent with respect to the sequence of previously delivered input events,
154 * such as when a key up event is sent but the key was not down or when a pointer
155 * move event is sent but the pointer is not down.
156 *
157 * @return True if this event is tainted.
158 * @hide
159 */
160 public abstract boolean isTainted();
161
162 /**
163 * Sets a private flag that indicates when the system has detected that this input event
164 * may be inconsistent with respect to the sequence of previously delivered input events,
165 * such as when a key up event is sent but the key was not down or when a pointer
166 * move event is sent but the pointer is not down.
167 *
168 * @param tainted True if this event is tainted.
169 * @hide
170 */
171 public abstract void setTainted(boolean tainted);
172
Jeff Brown4e91a182011-04-07 11:38:09 -0700173 /**
Jeff Brownb11499d2012-04-20 19:54:22 -0700174 * Retrieve the time this event occurred,
175 * in the {@link android.os.SystemClock#uptimeMillis} time base.
176 *
177 * @return Returns the time this event occurred,
178 * in the {@link android.os.SystemClock#uptimeMillis} time base.
179 */
180 public abstract long getEventTime();
181
182 /**
183 * Retrieve the time this event occurred,
184 * in the {@link android.os.SystemClock#uptimeMillis} time base but with
185 * nanosecond (instead of millisecond) precision.
186 * <p>
Jeff Brown4e91a182011-04-07 11:38:09 -0700187 * The value is in nanosecond precision but it may not have nanosecond accuracy.
Jeff Brownb11499d2012-04-20 19:54:22 -0700188 * </p>
189 *
190 * @return Returns the time this event occurred,
191 * in the {@link android.os.SystemClock#uptimeMillis} time base but with
192 * nanosecond (instead of millisecond) precision.
193 *
Jeff Brown4e91a182011-04-07 11:38:09 -0700194 * @hide
195 */
196 public abstract long getEventTimeNano();
197
Jeff Brown32cbc38552011-12-01 14:01:49 -0800198 /**
Wale Ogunwalec3672cd2014-11-05 15:17:35 -0800199 * Marks the input event as being canceled.
200 *
201 * @hide
202 */
203 public abstract void cancel();
204
205 /**
Jeff Brown32cbc38552011-12-01 14:01:49 -0800206 * Gets the unique sequence number of this event.
207 * Every input event that is created or received by a process has a
208 * unique sequence number. Moreover, a new sequence number is obtained
209 * each time an event object is recycled.
210 *
211 * Sequence numbers are only guaranteed to be locally unique within a process.
212 * Sequence numbers are not preserved when events are parceled.
213 *
214 * @return The unique sequence number of this event.
215 * @hide
216 */
217 public int getSequenceNumber() {
218 return mSeq;
219 }
220
Jeff Brown69206512010-09-12 17:17:30 -0700221 public int describeContents() {
Jeff Brown6ec402b2010-07-28 15:48:59 -0700222 return 0;
223 }
Jeff Brown91c69ab2011-02-14 17:03:18 -0800224
Jeff Brown6ec402b2010-07-28 15:48:59 -0700225 public static final Parcelable.Creator<InputEvent> CREATOR
226 = new Parcelable.Creator<InputEvent>() {
227 public InputEvent createFromParcel(Parcel in) {
228 int token = in.readInt();
229 if (token == PARCEL_TOKEN_KEY_EVENT) {
230 return KeyEvent.createFromParcelBody(in);
231 } else if (token == PARCEL_TOKEN_MOTION_EVENT) {
232 return MotionEvent.createFromParcelBody(in);
233 } else {
234 throw new IllegalStateException("Unexpected input event type token in parcel.");
235 }
236 }
237
238 public InputEvent[] newArray(int size) {
239 return new InputEvent[size];
240 }
241 };
Jeff Brownc5ed5912010-07-14 18:48:53 -0700242}