blob: 60daddd663d5dc1995ad916278ca5df7b7592e03 [file] [log] [blame]
Jeff Brown0a0a1242011-12-02 02:25:22 -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
17package android.view;
18
Mathew Inwooda570dee2018-08-17 14:56:00 +010019import android.annotation.UnsupportedAppUsage;
Jeff Brown0a0a1242011-12-02 02:25:22 -080020import android.os.Looper;
21import android.os.MessageQueue;
22import android.util.Log;
23
Aurimas Liutikas67e2ae82016-10-11 18:17:42 -070024import dalvik.annotation.optimization.FastNative;
25import dalvik.system.CloseGuard;
26
Jeff Brown3b4049e2015-04-17 15:22:27 -070027import java.lang.ref.WeakReference;
28
Jeff Brown0a0a1242011-12-02 02:25:22 -080029/**
30 * Provides a low-level mechanism for an application to receive display events
31 * such as vertical sync.
Jeff Brown58aedbc2012-02-13 20:15:01 -080032 *
33 * The display event receive is NOT thread safe. Moreover, its methods must only
34 * be called on the Looper thread to which it is attached.
35 *
Jeff Brown0a0a1242011-12-02 02:25:22 -080036 * @hide
37 */
38public abstract class DisplayEventReceiver {
Jorim Jaggi34a0cdb2017-06-08 15:40:38 -070039
40 /**
41 * When retrieving vsync events, this specifies that the vsync event should happen at the normal
42 * vsync-app tick.
43 * <p>
44 * Needs to be kept in sync with frameworks/native/include/gui/ISurfaceComposer.h
45 */
46 public static final int VSYNC_SOURCE_APP = 0;
47
48 /**
49 * When retrieving vsync events, this specifies that the vsync event should happen whenever
50 * Surface Flinger is processing a frame.
51 * <p>
52 * Needs to be kept in sync with frameworks/native/include/gui/ISurfaceComposer.h
53 */
54 public static final int VSYNC_SOURCE_SURFACE_FLINGER = 1;
55
Jeff Brown0a0a1242011-12-02 02:25:22 -080056 private static final String TAG = "DisplayEventReceiver";
57
58 private final CloseGuard mCloseGuard = CloseGuard.get();
59
Mathew Inwooda570dee2018-08-17 14:56:00 +010060 @UnsupportedAppUsage
Ashok Bhat27285822013-12-18 18:00:05 +000061 private long mReceiverPtr;
Jeff Brown0a0a1242011-12-02 02:25:22 -080062
63 // We keep a reference message queue object here so that it is not
64 // GC'd while the native peer of the receiver is using them.
65 private MessageQueue mMessageQueue;
66
Jeff Brown3b4049e2015-04-17 15:22:27 -070067 private static native long nativeInit(WeakReference<DisplayEventReceiver> receiver,
Jorim Jaggi34a0cdb2017-06-08 15:40:38 -070068 MessageQueue messageQueue, int vsyncSource);
Ashok Bhat27285822013-12-18 18:00:05 +000069 private static native void nativeDispose(long receiverPtr);
John Recke46af372016-10-03 16:21:30 -070070 @FastNative
Ashok Bhat27285822013-12-18 18:00:05 +000071 private static native void nativeScheduleVsync(long receiverPtr);
Jeff Brown0a0a1242011-12-02 02:25:22 -080072
73 /**
74 * Creates a display event receiver.
75 *
76 * @param looper The looper to use when invoking callbacks.
Wale Ogunwale71f30992017-06-19 13:53:32 -070077 */
Mathew Inwooda570dee2018-08-17 14:56:00 +010078 @UnsupportedAppUsage
Wale Ogunwale71f30992017-06-19 13:53:32 -070079 public DisplayEventReceiver(Looper looper) {
80 this(looper, VSYNC_SOURCE_APP);
81 }
82
83 /**
84 * Creates a display event receiver.
85 *
86 * @param looper The looper to use when invoking callbacks.
Jorim Jaggi34a0cdb2017-06-08 15:40:38 -070087 * @param vsyncSource The source of the vsync tick. Must be on of the VSYNC_SOURCE_* values.
Jeff Brown0a0a1242011-12-02 02:25:22 -080088 */
Jorim Jaggi34a0cdb2017-06-08 15:40:38 -070089 public DisplayEventReceiver(Looper looper, int vsyncSource) {
Jeff Brown0a0a1242011-12-02 02:25:22 -080090 if (looper == null) {
91 throw new IllegalArgumentException("looper must not be null");
92 }
93
94 mMessageQueue = looper.getQueue();
Jorim Jaggi34a0cdb2017-06-08 15:40:38 -070095 mReceiverPtr = nativeInit(new WeakReference<DisplayEventReceiver>(this), mMessageQueue,
96 vsyncSource);
Jeff Brown0a0a1242011-12-02 02:25:22 -080097
98 mCloseGuard.open("dispose");
99 }
100
101 @Override
102 protected void finalize() throws Throwable {
103 try {
Jeff Brown3e7e7f02012-08-27 14:33:53 -0700104 dispose(true);
Jeff Brown0a0a1242011-12-02 02:25:22 -0800105 } finally {
106 super.finalize();
107 }
108 }
109
110 /**
111 * Disposes the receiver.
112 */
113 public void dispose() {
Jeff Brown3e7e7f02012-08-27 14:33:53 -0700114 dispose(false);
115 }
116
117 private void dispose(boolean finalized) {
Jeff Brown0a0a1242011-12-02 02:25:22 -0800118 if (mCloseGuard != null) {
Jeff Brown3e7e7f02012-08-27 14:33:53 -0700119 if (finalized) {
120 mCloseGuard.warnIfOpen();
121 }
Jeff Brown0a0a1242011-12-02 02:25:22 -0800122 mCloseGuard.close();
123 }
Jeff Brown3e7e7f02012-08-27 14:33:53 -0700124
Jeff Brown0a0a1242011-12-02 02:25:22 -0800125 if (mReceiverPtr != 0) {
126 nativeDispose(mReceiverPtr);
127 mReceiverPtr = 0;
128 }
129 mMessageQueue = null;
130 }
131
132 /**
133 * Called when a vertical sync pulse is received.
134 * The recipient should render a frame and then call {@link #scheduleVsync}
135 * to schedule the next vertical sync pulse.
136 *
137 * @param timestampNanos The timestamp of the pulse, in the {@link System#nanoTime()}
138 * timebase.
Dominik Laskowski3316a0a2019-01-25 02:56:41 -0800139 * @param physicalDisplayId Stable display ID that uniquely describes a (display, port) pair.
Jeff Brown0a0a1242011-12-02 02:25:22 -0800140 * @param frame The frame number. Increases by one for each vertical sync interval.
141 */
Mathew Inwooda570dee2018-08-17 14:56:00 +0100142 @UnsupportedAppUsage
Dominik Laskowski3316a0a2019-01-25 02:56:41 -0800143 public void onVsync(long timestampNanos, long physicalDisplayId, int frame) {
Jeff Browne87bf032012-09-20 18:30:13 -0700144 }
145
146 /**
147 * Called when a display hotplug event is received.
148 *
149 * @param timestampNanos The timestamp of the event, in the {@link System#nanoTime()}
150 * timebase.
Dominik Laskowski3316a0a2019-01-25 02:56:41 -0800151 * @param physicalDisplayId Stable display ID that uniquely describes a (display, port) pair.
Jeff Browne87bf032012-09-20 18:30:13 -0700152 * @param connected True if the display is connected, false if it disconnected.
153 */
Mathew Inwooda570dee2018-08-17 14:56:00 +0100154 @UnsupportedAppUsage
Dominik Laskowski3316a0a2019-01-25 02:56:41 -0800155 public void onHotplug(long timestampNanos, long physicalDisplayId, boolean connected) {
Jeff Brown0a0a1242011-12-02 02:25:22 -0800156 }
157
158 /**
Ady Abrahama5a21f72019-02-13 16:41:59 -0800159 * Called when a display config changed event is received.
160 *
161 * @param timestampNanos The timestamp of the event, in the {@link System#nanoTime()}
162 * timebase.
163 * @param physicalDisplayId Stable display ID that uniquely describes a (display, port) pair.
164 * @param configId The new config Id
165 */
166 public void onConfigChanged(long timestampNanos, long physicalDisplayId, int configId) {
167 }
168
169 /**
Jeff Brown0a0a1242011-12-02 02:25:22 -0800170 * Schedules a single vertical sync pulse to be delivered when the next
171 * display frame begins.
172 */
Mathew Inwooda570dee2018-08-17 14:56:00 +0100173 @UnsupportedAppUsage
Jeff Brown0a0a1242011-12-02 02:25:22 -0800174 public void scheduleVsync() {
175 if (mReceiverPtr == 0) {
176 Log.w(TAG, "Attempted to schedule a vertical sync pulse but the display event "
177 + "receiver has already been disposed.");
178 } else {
179 nativeScheduleVsync(mReceiverPtr);
180 }
181 }
182
183 // Called from native code.
184 @SuppressWarnings("unused")
Mathew Inwooda570dee2018-08-17 14:56:00 +0100185 @UnsupportedAppUsage
Dominik Laskowski3316a0a2019-01-25 02:56:41 -0800186 private void dispatchVsync(long timestampNanos, long physicalDisplayId, int frame) {
187 onVsync(timestampNanos, physicalDisplayId, frame);
Jeff Browne87bf032012-09-20 18:30:13 -0700188 }
189
190 // Called from native code.
191 @SuppressWarnings("unused")
Mathew Inwooda570dee2018-08-17 14:56:00 +0100192 @UnsupportedAppUsage
Dominik Laskowski3316a0a2019-01-25 02:56:41 -0800193 private void dispatchHotplug(long timestampNanos, long physicalDisplayId, boolean connected) {
194 onHotplug(timestampNanos, physicalDisplayId, connected);
Jeff Brown0a0a1242011-12-02 02:25:22 -0800195 }
Ady Abrahama5a21f72019-02-13 16:41:59 -0800196
197 // Called from native code.
198 @SuppressWarnings("unused")
199 private void dispatchConfigChanged(long timestampNanos, long physicalDisplayId, int configId) {
200 onConfigChanged(timestampNanos, physicalDisplayId, configId);
201 }
202
Jeff Brown0a0a1242011-12-02 02:25:22 -0800203}