blob: 9882f6c0d4c1c20223a90db4cd12690e97cd1008 [file] [log] [blame]
Jeff Brownfa25bf52012-07-23 19:26:30 -07001/*
2 * Copyright (C) 2012 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 com.android.server.display;
18
Jeff Brown4ed8fe72012-08-30 18:18:29 -070019import android.graphics.Rect;
Jeff Brown4ccb8232014-01-16 22:16:42 -080020import android.hardware.display.DisplayViewport;
Jeff Brown64a55af2012-08-26 02:47:39 -070021import android.os.IBinder;
Dominik Laskowskidb845962019-01-27 21:20:00 -080022import android.view.DisplayAddress;
Jeff Brown4ed8fe72012-08-30 18:18:29 -070023import android.view.Surface;
Mathias Agopian3866f0d2013-02-11 22:08:48 -080024import android.view.SurfaceControl;
Jeff Brown4ed8fe72012-08-30 18:18:29 -070025
26import java.io.PrintWriter;
Jeff Brown64a55af2012-08-26 02:47:39 -070027
Jeff Brownfa25bf52012-07-23 19:26:30 -070028/**
29 * Represents a physical display device such as the built-in display
Jeff Brown848c2dc2012-08-19 20:18:08 -070030 * an external monitor, or a WiFi display.
Jeff Brownbd6e1502012-08-28 03:27:37 -070031 * <p>
Jeff Brown4ed8fe72012-08-30 18:18:29 -070032 * Display devices are guarded by the {@link DisplayManagerService.SyncRoot} lock.
Jeff Brownbd6e1502012-08-28 03:27:37 -070033 * </p>
Jeff Brownfa25bf52012-07-23 19:26:30 -070034 */
Jeff Brown4ed8fe72012-08-30 18:18:29 -070035abstract class DisplayDevice {
Jeff Brownbd6e1502012-08-28 03:27:37 -070036 private final DisplayAdapter mDisplayAdapter;
37 private final IBinder mDisplayToken;
Wale Ogunwale361ca212014-11-20 11:42:38 -080038 private final String mUniqueId;
Jeff Brownbd6e1502012-08-28 03:27:37 -070039
Jeff Brown4ed8fe72012-08-30 18:18:29 -070040 // The display device does not manage these properties itself, they are set by
41 // the display manager service. The display device shouldn't really be looking at these.
42 private int mCurrentLayerStack = -1;
43 private int mCurrentOrientation = -1;
Mathias Agopian63f1c432012-09-04 19:29:13 -070044 private Rect mCurrentLayerStackRect;
45 private Rect mCurrentDisplayRect;
Jeff Brown4ed8fe72012-08-30 18:18:29 -070046
Jeff Browncbad9762012-09-04 21:57:59 -070047 // The display device owns its surface, but it should only set it
Robert Carrae606b42018-02-15 15:36:23 -080048 // within a transaction from performTraversalLocked.
Jeff Browncbad9762012-09-04 21:57:59 -070049 private Surface mCurrentSurface;
Jeff Brown4ed8fe72012-08-30 18:18:29 -070050
Jeff Brown10acf6d2015-04-14 14:20:47 -070051 // DEBUG STATE: Last device info which was written to the log, or null if none.
52 // Do not use for any other purpose.
53 DisplayDeviceInfo mDebugLastLoggedDeviceInfo;
54
Wale Ogunwale361ca212014-11-20 11:42:38 -080055 public DisplayDevice(DisplayAdapter displayAdapter, IBinder displayToken, String uniqueId) {
Jeff Brownbd6e1502012-08-28 03:27:37 -070056 mDisplayAdapter = displayAdapter;
57 mDisplayToken = displayToken;
Wale Ogunwale361ca212014-11-20 11:42:38 -080058 mUniqueId = uniqueId;
Jeff Brownbd6e1502012-08-28 03:27:37 -070059 }
60
Jeff Brown848c2dc2012-08-19 20:18:08 -070061 /**
Jeff Brownbd6e1502012-08-28 03:27:37 -070062 * Gets the display adapter that owns the display device.
Jeff Brown848c2dc2012-08-19 20:18:08 -070063 *
64 * @return The display adapter.
65 */
Jeff Brown4ed8fe72012-08-30 18:18:29 -070066 public final DisplayAdapter getAdapterLocked() {
Jeff Brownbd6e1502012-08-28 03:27:37 -070067 return mDisplayAdapter;
68 }
Jeff Brown848c2dc2012-08-19 20:18:08 -070069
70 /**
Jeff Brown64a55af2012-08-26 02:47:39 -070071 * Gets the Surface Flinger display token for this display.
72 *
73 * @return The display token, or null if the display is not being managed
74 * by Surface Flinger.
75 */
Jeff Brown4ed8fe72012-08-30 18:18:29 -070076 public final IBinder getDisplayTokenLocked() {
Jeff Brownbd6e1502012-08-28 03:27:37 -070077 return mDisplayToken;
78 }
Jeff Brown64a55af2012-08-26 02:47:39 -070079
80 /**
Jeff Brown4ed8fe72012-08-30 18:18:29 -070081 * Gets the name of the display device.
82 *
83 * @return The display device name.
84 */
85 public final String getNameLocked() {
86 return getDisplayDeviceInfoLocked().name;
87 }
88
89 /**
Wale Ogunwale361ca212014-11-20 11:42:38 -080090 * Returns the unique id of the display device.
91 */
92 public final String getUniqueId() {
93 return mUniqueId;
94 }
95
96 /**
Michael Wright1c9977b2016-07-12 13:30:10 -070097 * Returns whether the unique id of the device is stable across reboots.
98 */
99 public abstract boolean hasStableUniqueId();
100
101 /**
Jeff Brown848c2dc2012-08-19 20:18:08 -0700102 * Gets information about the display device.
103 *
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700104 * The information returned should not change between calls unless the display
105 * adapter sent a {@link DisplayAdapter#DISPLAY_DEVICE_EVENT_CHANGED} event and
106 * {@link #applyPendingDisplayDeviceInfoChangesLocked()} has been called to apply
107 * the pending changes.
108 *
109 * @return The display device info, which should be treated as immutable by the caller.
110 * The display device should allocate a new display device info object whenever
111 * the data changes.
Jeff Brown848c2dc2012-08-19 20:18:08 -0700112 */
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700113 public abstract DisplayDeviceInfo getDisplayDeviceInfoLocked();
Jeff Brownbd6e1502012-08-28 03:27:37 -0700114
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700115 /**
116 * Applies any pending changes to the observable state of the display device
117 * if the display adapter sent a {@link DisplayAdapter#DISPLAY_DEVICE_EVENT_CHANGED} event.
118 */
119 public void applyPendingDisplayDeviceInfoChangesLocked() {
120 }
121
122 /**
123 * Gives the display device a chance to update its properties while in a transaction.
124 */
Robert Carrae606b42018-02-15 15:36:23 -0800125 public void performTraversalLocked(SurfaceControl.Transaction t) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700126 }
127
128 /**
Jeff Brown037c33e2014-04-09 00:31:55 -0700129 * Sets the display state, if supported.
Jeff Browne75926d2014-09-18 15:24:49 -0700130 *
Jeff Brown5d6443b2015-04-10 20:15:01 -0700131 * @param state The new display state.
132 * @param brightness The new display brightness.
Jeff Browne75926d2014-09-18 15:24:49 -0700133 * @return A runnable containing work to be deferred until after we have
134 * exited the critical section, or null if none.
Jeff Brown9e316a12012-10-08 19:17:06 -0700135 */
Jeff Brown5d6443b2015-04-10 20:15:01 -0700136 public Runnable requestDisplayStateLocked(int state, int brightness) {
Jeff Browne75926d2014-09-18 15:24:49 -0700137 return null;
Jeff Brown9e316a12012-10-08 19:17:06 -0700138 }
139
140 /**
Michael Wrighta3dab232019-02-22 16:54:21 +0000141 * Sets the display modes the system is allowed to switch between, roughly ordered by
142 * preference.
143 *
144 * Not all display devices will automatically switch between modes, so it's important that the
145 * most-desired modes are at the beginning of the allowed array.
Michael Wright3f145a22014-07-22 19:46:03 -0700146 */
Michael Wrighta3dab232019-02-22 16:54:21 +0000147 public void setAllowedDisplayModesLocked(int[] modes) {
148 }
149
150 /**
151 * Sets the requested color mode.
152 */
153 public void setRequestedColorModeLocked(int colorMode) {
Michael Wright3f145a22014-07-22 19:46:03 -0700154 }
155
Adrian Roos898ec382018-01-17 12:54:50 +0100156 public void onOverlayChangedLocked() {
157 }
158
Michael Wright3f145a22014-07-22 19:46:03 -0700159 /**
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700160 * Sets the display layer stack while in a transaction.
161 */
Robert Carrae606b42018-02-15 15:36:23 -0800162 public final void setLayerStackLocked(SurfaceControl.Transaction t, int layerStack) {
Jeff Browncbad9762012-09-04 21:57:59 -0700163 if (mCurrentLayerStack != layerStack) {
164 mCurrentLayerStack = layerStack;
Robert Carrae606b42018-02-15 15:36:23 -0800165 t.setDisplayLayerStack(mDisplayToken, layerStack);
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700166 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700167 }
168
169 /**
Mathias Agopian63f1c432012-09-04 19:29:13 -0700170 * Sets the display projection while in a transaction.
171 *
172 * @param orientation defines the display's orientation
173 * @param layerStackRect defines which area of the window manager coordinate
174 * space will be used
175 * @param displayRect defines where on the display will layerStackRect be
176 * mapped to. displayRect is specified post-orientation, that is
177 * it uses the orientation seen by the end-user
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700178 */
Robert Carrae606b42018-02-15 15:36:23 -0800179 public final void setProjectionLocked(SurfaceControl.Transaction t, int orientation,
Jeff Browncbad9762012-09-04 21:57:59 -0700180 Rect layerStackRect, Rect displayRect) {
181 if (mCurrentOrientation != orientation
182 || mCurrentLayerStackRect == null
183 || !mCurrentLayerStackRect.equals(layerStackRect)
184 || mCurrentDisplayRect == null
185 || !mCurrentDisplayRect.equals(displayRect)) {
186 mCurrentOrientation = orientation;
Jeff Brownd728bf52012-09-08 18:05:28 -0700187
Jeff Browncbad9762012-09-04 21:57:59 -0700188 if (mCurrentLayerStackRect == null) {
189 mCurrentLayerStackRect = new Rect();
190 }
191 mCurrentLayerStackRect.set(layerStackRect);
Jeff Brownd728bf52012-09-08 18:05:28 -0700192
Jeff Browncbad9762012-09-04 21:57:59 -0700193 if (mCurrentDisplayRect == null) {
194 mCurrentDisplayRect = new Rect();
195 }
196 mCurrentDisplayRect.set(displayRect);
Jeff Brownd728bf52012-09-08 18:05:28 -0700197
Robert Carrae606b42018-02-15 15:36:23 -0800198 t.setDisplayProjection(mDisplayToken,
Jeff Browncbad9762012-09-04 21:57:59 -0700199 orientation, layerStackRect, displayRect);
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700200 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700201 }
202
203 /**
Jeff Browncbad9762012-09-04 21:57:59 -0700204 * Sets the display surface while in a transaction.
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700205 */
Robert Carrae606b42018-02-15 15:36:23 -0800206 public final void setSurfaceLocked(SurfaceControl.Transaction t, Surface surface) {
Jeff Browncbad9762012-09-04 21:57:59 -0700207 if (mCurrentSurface != surface) {
208 mCurrentSurface = surface;
Robert Carrae606b42018-02-15 15:36:23 -0800209 t.setDisplaySurface(mDisplayToken, surface);
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700210 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700211 }
212
213 /**
Jeff Brownd728bf52012-09-08 18:05:28 -0700214 * Populates the specified viewport object with orientation,
215 * physical and logical rects based on the display's current projection.
216 */
217 public final void populateViewportLocked(DisplayViewport viewport) {
218 viewport.orientation = mCurrentOrientation;
219
220 if (mCurrentLayerStackRect != null) {
221 viewport.logicalFrame.set(mCurrentLayerStackRect);
222 } else {
223 viewport.logicalFrame.setEmpty();
224 }
225
226 if (mCurrentDisplayRect != null) {
227 viewport.physicalFrame.set(mCurrentDisplayRect);
228 } else {
229 viewport.physicalFrame.setEmpty();
230 }
Jeff Brown83d616a2012-09-09 20:33:43 -0700231
232 boolean isRotated = (mCurrentOrientation == Surface.ROTATION_90
233 || mCurrentOrientation == Surface.ROTATION_270);
234 DisplayDeviceInfo info = getDisplayDeviceInfoLocked();
235 viewport.deviceWidth = isRotated ? info.height : info.width;
236 viewport.deviceHeight = isRotated ? info.width : info.height;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +0100237
238 viewport.uniqueId = info.uniqueId;
Dominik Laskowskidb845962019-01-27 21:20:00 -0800239
240 if (info.address instanceof DisplayAddress.Physical) {
241 viewport.physicalPort = ((DisplayAddress.Physical) info.address).getPort();
242 } else {
243 viewport.physicalPort = null;
244 }
Jeff Brownd728bf52012-09-08 18:05:28 -0700245 }
246
247 /**
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700248 * Dumps the local state of the display device.
249 * Does not need to dump the display device info because that is already dumped elsewhere.
250 */
251 public void dumpLocked(PrintWriter pw) {
252 pw.println("mAdapter=" + mDisplayAdapter.getName());
Wale Ogunwale361ca212014-11-20 11:42:38 -0800253 pw.println("mUniqueId=" + mUniqueId);
Jeff Browncbad9762012-09-04 21:57:59 -0700254 pw.println("mDisplayToken=" + mDisplayToken);
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700255 pw.println("mCurrentLayerStack=" + mCurrentLayerStack);
256 pw.println("mCurrentOrientation=" + mCurrentOrientation);
Jeff Browncbad9762012-09-04 21:57:59 -0700257 pw.println("mCurrentLayerStackRect=" + mCurrentLayerStackRect);
258 pw.println("mCurrentDisplayRect=" + mCurrentDisplayRect);
259 pw.println("mCurrentSurface=" + mCurrentSurface);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700260 }
Jeff Brownfa25bf52012-07-23 19:26:30 -0700261}