blob: 89432727ca7ed0c382028ddf81d31a471bb75e80 [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
Chilun67a379b2019-04-11 19:49:42 +080019import static android.Manifest.permission.CAPTURE_SECURE_VIDEO_OUTPUT;
20import static android.Manifest.permission.CAPTURE_VIDEO_OUTPUT;
21import static android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
Andrii Kulianfc8f82b2017-01-26 13:17:27 -080022import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR;
Chilun67a379b2019-04-11 19:49:42 +080023import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_CAN_SHOW_WITH_INSECURE_KEYGUARD;
Andrii Kulianfc8f82b2017-01-26 13:17:27 -080024import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_OWN_CONTENT_ONLY;
25import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_PUBLIC;
26import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_SECURE;
Chilun67a379b2019-04-11 19:49:42 +080027import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_SHOULD_SHOW_SYSTEM_DECORATIONS;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +010028import static android.hardware.display.DisplayViewport.VIEWPORT_EXTERNAL;
29import static android.hardware.display.DisplayViewport.VIEWPORT_INTERNAL;
30import static android.hardware.display.DisplayViewport.VIEWPORT_VIRTUAL;
Jeff Brownbd6e1502012-08-28 03:27:37 -070031
Jeff Brownfa25bf52012-07-23 19:26:30 -070032import android.Manifest;
Santos Cordonee8931e2017-04-05 10:31:15 -070033import android.annotation.NonNull;
Kenny Guy05ce8092018-01-17 13:44:20 +000034import android.annotation.Nullable;
Michael Wrighteef0e132017-11-21 17:57:52 +000035import android.annotation.UserIdInt;
Kenny Guy29aa30e2017-11-30 13:43:46 +000036import android.app.AppOpsManager;
Jeff Brownfa25bf52012-07-23 19:26:30 -070037import android.content.Context;
38import android.content.pm.PackageManager;
Kenny Guy22bd0442017-10-26 00:15:54 +010039import android.content.pm.ParceledListSlice;
Michael Wrighteedcbf12017-08-16 23:14:54 +010040import android.content.res.Resources;
Dan Gittik122df862018-03-28 16:59:22 +010041import android.content.res.TypedArray;
Peiyong Lin277eaff2019-01-16 16:18:22 -080042import android.graphics.ColorSpace;
Michael Wrighteedcbf12017-08-16 23:14:54 +010043import android.graphics.Point;
Robert Carr5c52b132019-02-15 15:48:11 -080044import android.graphics.Rect;
Jeff Brownad9ef192014-04-08 17:26:30 -070045import android.hardware.SensorManager;
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +000046import android.hardware.display.AmbientBrightnessDayStats;
Kenny Guy22bd0442017-10-26 00:15:54 +010047import android.hardware.display.BrightnessChangeEvent;
Michael Wrighteef0e132017-11-21 17:57:52 +000048import android.hardware.display.BrightnessConfiguration;
Dan Gittik122df862018-03-28 16:59:22 +010049import android.hardware.display.Curve;
Jeff Brownbd6e1502012-08-28 03:27:37 -070050import android.hardware.display.DisplayManagerGlobal;
Jeff Brown4ccb8232014-01-16 22:16:42 -080051import android.hardware.display.DisplayManagerInternal;
Jeff Brown4ccb8232014-01-16 22:16:42 -080052import android.hardware.display.DisplayManagerInternal.DisplayTransactionListener;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +010053import android.hardware.display.DisplayViewport;
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -070054import android.hardware.display.DisplayedContentSample;
55import android.hardware.display.DisplayedContentSamplingAttributes;
Jeff Brownfa25bf52012-07-23 19:26:30 -070056import android.hardware.display.IDisplayManager;
Jeff Brownbd6e1502012-08-28 03:27:37 -070057import android.hardware.display.IDisplayManagerCallback;
Michael Wright75ee9fc2014-09-01 19:55:22 -070058import android.hardware.display.IVirtualDisplayCallback;
Jeff Browne08ae382012-09-07 20:36:36 -070059import android.hardware.display.WifiDisplayStatus;
Jeff Brown4ccb8232014-01-16 22:16:42 -080060import android.hardware.input.InputManagerInternal;
Michael Wrightc39d47a2014-07-08 18:07:36 -070061import android.media.projection.IMediaProjection;
62import android.media.projection.IMediaProjectionManager;
Jeff Brownfa25bf52012-07-23 19:26:30 -070063import android.os.Binder;
Jeff Brownbd6e1502012-08-28 03:27:37 -070064import android.os.Handler;
Jeff Brown64a55af2012-08-26 02:47:39 -070065import android.os.IBinder;
Jeff Brown4ccb8232014-01-16 22:16:42 -080066import android.os.IBinder.DeathRecipient;
Jeff Brownbd6e1502012-08-28 03:27:37 -070067import android.os.Looper;
68import android.os.Message;
Jeff Brown5d6443b2015-04-10 20:15:01 -070069import android.os.PowerManager;
Craig Mautner4504de52013-12-20 09:06:56 -080070import android.os.Process;
Jeff Brownbd6e1502012-08-28 03:27:37 -070071import android.os.RemoteException;
Dan Gittik7a32fba2018-03-28 12:19:38 +010072import android.os.ResultReceiver;
Michael Wrightc39d47a2014-07-08 18:07:36 -070073import android.os.ServiceManager;
Dan Gittik7a32fba2018-03-28 12:19:38 +010074import android.os.ShellCallback;
Jeff Brownbd6e1502012-08-28 03:27:37 -070075import android.os.SystemClock;
Jeff Brownfa25bf52012-07-23 19:26:30 -070076import android.os.SystemProperties;
Jeff Brown5d6443b2015-04-10 20:15:01 -070077import android.os.Trace;
Kenny Guy22bd0442017-10-26 00:15:54 +010078import android.os.UserHandle;
Michael Wrighteef0e132017-11-21 17:57:52 +000079import android.os.UserManager;
Dan Gittik7a32fba2018-03-28 12:19:38 +010080import android.provider.Settings;
Jeff Browna506a6e2013-06-04 00:02:38 -070081import android.text.TextUtils;
Andrii Kulianfb1bf692017-01-17 11:17:34 -080082import android.util.IntArray;
Dan Gittik122df862018-03-28 16:59:22 +010083import android.util.Pair;
Jeff Brownbd6e1502012-08-28 03:27:37 -070084import android.util.Slog;
85import android.util.SparseArray;
Dan Gittik122df862018-03-28 16:59:22 +010086import android.util.Spline;
Jeff Brownfa25bf52012-07-23 19:26:30 -070087import android.view.Display;
88import android.view.DisplayInfo;
Jeff Browna506a6e2013-06-04 00:02:38 -070089import android.view.Surface;
Robert Carrae606b42018-02-15 15:36:23 -080090import android.view.SurfaceControl;
Jeff Browna506a6e2013-06-04 00:02:38 -070091
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +010092import com.android.internal.annotations.GuardedBy;
93import com.android.internal.annotations.VisibleForTesting;
94import com.android.internal.util.DumpUtils;
95import com.android.internal.util.IndentingPrintWriter;
Jorim Jaggied7993b2017-03-28 18:50:01 +010096import com.android.server.AnimationThread;
Jeff Brown4ccb8232014-01-16 22:16:42 -080097import com.android.server.DisplayThread;
98import com.android.server.LocalServices;
99import com.android.server.SystemService;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700100import com.android.server.UiThread;
Jorim Jaggi21c39a72017-10-20 15:47:51 +0200101import com.android.server.wm.SurfaceAnimationThread;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +0100102import com.android.server.wm.WindowManagerInternal;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700103
104import java.io.FileDescriptor;
105import java.io.PrintWriter;
106import java.util.ArrayList;
Jeff Browna506a6e2013-06-04 00:02:38 -0700107import java.util.Arrays;
Jeff Browne75926d2014-09-18 15:24:49 -0700108import java.util.List;
Jeff Brown7f3994e2012-12-04 14:04:28 -0800109import java.util.concurrent.CopyOnWriteArrayList;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700110
111/**
Jeff Brownbd6e1502012-08-28 03:27:37 -0700112 * Manages attached displays.
Jeff Brownfa25bf52012-07-23 19:26:30 -0700113 * <p>
Jeff Brownbd6e1502012-08-28 03:27:37 -0700114 * The {@link DisplayManagerService} manages the global lifecycle of displays,
115 * decides how to configure logical displays based on the physical display devices currently
116 * attached, sends notifications to the system and to applications when the state
117 * changes, and so on.
118 * </p><p>
119 * The display manager service relies on a collection of {@link DisplayAdapter} components,
120 * for discovering and configuring physical display devices attached to the system.
121 * There are separate display adapters for each manner that devices are attached:
122 * one display adapter for built-in local displays, one for simulated non-functional
123 * displays when the system is headless, one for simulated overlay displays used for
124 * development, one for wifi displays, etc.
125 * </p><p>
126 * Display adapters are only weakly coupled to the display manager service.
127 * Display adapters communicate changes in display device state to the display manager
Craig Mautner722285e2012-09-07 13:55:58 -0700128 * service asynchronously via a {@link DisplayAdapter.Listener} registered
Jeff Brownbd6e1502012-08-28 03:27:37 -0700129 * by the display manager service. This separation of concerns is important for
130 * two main reasons. First, it neatly encapsulates the responsibilities of these
131 * two classes: display adapters handle individual display devices whereas
132 * the display manager service handles the global state. Second, it eliminates
133 * the potential for deadlocks resulting from asynchronous display device discovery.
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700134 * </p>
135 *
136 * <h3>Synchronization</h3>
137 * <p>
138 * Because the display manager may be accessed by multiple threads, the synchronization
139 * story gets a little complicated. In particular, the window manager may call into
140 * the display manager while holding a surface transaction with the expectation that
141 * it can apply changes immediately. Unfortunately, that means we can't just do
142 * everything asynchronously (*grump*).
Jeff Brownbd6e1502012-08-28 03:27:37 -0700143 * </p><p>
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700144 * To make this work, all of the objects that belong to the display manager must
145 * use the same lock. We call this lock the synchronization root and it has a unique
146 * type {@link DisplayManagerService.SyncRoot}. Methods that require this lock are
147 * named with the "Locked" suffix.
148 * </p><p>
149 * Where things get tricky is that the display manager is not allowed to make
150 * any potentially reentrant calls, especially into the window manager. We generally
151 * avoid this by making all potentially reentrant out-calls asynchronous.
Jeff Brownfa25bf52012-07-23 19:26:30 -0700152 * </p>
153 */
Jeff Brown4ccb8232014-01-16 22:16:42 -0800154public final class DisplayManagerService extends SystemService {
Jeff Brownfa25bf52012-07-23 19:26:30 -0700155 private static final String TAG = "DisplayManagerService";
Jeff Brownbd6e1502012-08-28 03:27:37 -0700156 private static final boolean DEBUG = false;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700157
Jeff Brownbbd28a22012-09-20 16:47:15 -0700158 // When this system property is set to 0, WFD is forcibly disabled on boot.
159 // When this system property is set to 1, WFD is forcibly enabled on boot.
160 // Otherwise WFD is enabled according to the value of config_enableWifiDisplay.
161 private static final String FORCE_WIFI_DISPLAY_ENABLE = "persist.debug.wfd.enable";
162
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200163 private static final String PROP_DEFAULT_DISPLAY_TOP_INSET = "persist.sys.displayinset.top";
164
Jeff Brownbd6e1502012-08-28 03:27:37 -0700165 private static final long WAIT_FOR_DEFAULT_DISPLAY_TIMEOUT = 10000;
166
Santos Cordonc22c5632017-06-21 16:03:49 -0700167 private static final int MSG_REGISTER_DEFAULT_DISPLAY_ADAPTERS = 1;
Jeff Brownbd6e1502012-08-28 03:27:37 -0700168 private static final int MSG_REGISTER_ADDITIONAL_DISPLAY_ADAPTERS = 2;
169 private static final int MSG_DELIVER_DISPLAY_EVENT = 3;
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700170 private static final int MSG_REQUEST_TRAVERSAL = 4;
Jeff Brownd728bf52012-09-08 18:05:28 -0700171 private static final int MSG_UPDATE_VIEWPORT = 5;
Michael Wrighta3dab232019-02-22 16:54:21 +0000172 private static final int MSG_LOAD_BRIGHTNESS_CONFIGURATION = 6;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700173
Jeff Brownb880d882014-02-10 19:47:07 -0800174 private final Context mContext;
Jeff Brownbd6e1502012-08-28 03:27:37 -0700175 private final DisplayManagerHandler mHandler;
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700176 private final Handler mUiHandler;
177 private final DisplayAdapterListener mDisplayAdapterListener;
Michael Wrighta3dab232019-02-22 16:54:21 +0000178 private final DisplayModeDirector mDisplayModeDirector;
Jeff Brown4ccb8232014-01-16 22:16:42 -0800179 private WindowManagerInternal mWindowManagerInternal;
180 private InputManagerInternal mInputManagerInternal;
Michael Wrightc39d47a2014-07-08 18:07:36 -0700181 private IMediaProjectionManager mProjectionService;
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700182
183 // The synchronization root for the display manager.
184 // This lock guards most of the display manager's state.
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800185 // NOTE: This is synchronized on while holding WindowManagerService.mWindowMap so never call
186 // into WindowManagerService methods that require mWindowMap while holding this unless you are
187 // very very sure that no deadlock can occur.
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700188 private final SyncRoot mSyncRoot = new SyncRoot();
189
190 // True if in safe mode.
191 // This option may disable certain display adapters.
192 public boolean mSafeMode;
193
194 // True if we are in a special boot mode where only core applications and
195 // services should be started. This option may disable certain display adapters.
196 public boolean mOnlyCore;
197
Jeff Brown27f1d672012-10-17 18:32:34 -0700198 // True if the display manager service should pretend there is only one display
199 // and only tell applications about the existence of the default logical display.
200 // The display manager can still mirror content to secondary displays but applications
201 // cannot present unique content on those displays.
202 // Used for demonstration purposes only.
203 private final boolean mSingleDisplayDemoMode;
204
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700205 // All callback records indexed by calling process id.
206 public final SparseArray<CallbackRecord> mCallbacks =
Jeff Brownbd6e1502012-08-28 03:27:37 -0700207 new SparseArray<CallbackRecord>();
Jeff Brownfa25bf52012-07-23 19:26:30 -0700208
Jeff Brownbd6e1502012-08-28 03:27:37 -0700209 // List of all currently registered display adapters.
210 private final ArrayList<DisplayAdapter> mDisplayAdapters = new ArrayList<DisplayAdapter>();
211
212 // List of all currently connected display devices.
213 private final ArrayList<DisplayDevice> mDisplayDevices = new ArrayList<DisplayDevice>();
214
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700215 // List of all logical displays indexed by logical display id.
216 private final SparseArray<LogicalDisplay> mLogicalDisplays =
217 new SparseArray<LogicalDisplay>();
Jeff Brownbd6e1502012-08-28 03:27:37 -0700218 private int mNextNonDefaultDisplayId = Display.DEFAULT_DISPLAY + 1;
219
Jeff Brown7f3994e2012-12-04 14:04:28 -0800220 // List of all display transaction listeners.
221 private final CopyOnWriteArrayList<DisplayTransactionListener> mDisplayTransactionListeners =
222 new CopyOnWriteArrayList<DisplayTransactionListener>();
223
Jeff Brownad9ef192014-04-08 17:26:30 -0700224 // Display power controller.
225 private DisplayPowerController mDisplayPowerController;
226
Jeff Brown037c33e2014-04-09 00:31:55 -0700227 // The overall display state, independent of changes that might influence one
228 // display or another in particular.
Jeff Brown5d6443b2015-04-10 20:15:01 -0700229 private int mGlobalDisplayState = Display.STATE_ON;
230
231 // The overall display brightness.
232 // For now, this only applies to the built-in display but we may split it up eventually.
233 private int mGlobalDisplayBrightness = PowerManager.BRIGHTNESS_DEFAULT;
Jeff Brown9e316a12012-10-08 19:17:06 -0700234
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700235 // Set to true when there are pending display changes that have yet to be applied
236 // to the surface flinger state.
237 private boolean mPendingTraversal;
Jeff Brownbd6e1502012-08-28 03:27:37 -0700238
Jeff Browne08ae382012-09-07 20:36:36 -0700239 // The Wifi display adapter, or null if not registered.
240 private WifiDisplayAdapter mWifiDisplayAdapter;
241
Jeff Brownce468a32013-11-21 16:42:03 -0800242 // The number of active wifi display scan requests.
243 private int mWifiDisplayScanRequestCount;
244
Jeff Browna506a6e2013-06-04 00:02:38 -0700245 // The virtual display adapter, or null if not registered.
246 private VirtualDisplayAdapter mVirtualDisplayAdapter;
247
Michael Wrighteef0e132017-11-21 17:57:52 +0000248 // The User ID of the current user
249 private @UserIdInt int mCurrentUserId;
250
Michael Wrighteedcbf12017-08-16 23:14:54 +0100251 // The stable device screen height and width. These are not tied to a specific display, even
252 // the default display, because they need to be stable over the course of the device's entire
253 // life, even if the default display changes (e.g. a new monitor is plugged into a PC-like
254 // device).
255 private Point mStableDisplaySize = new Point();
256
Winson72dbe7e2019-04-29 14:55:30 -0700257 // Whether the system has finished booting or not.
258 private boolean mSystemReady;
259
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200260 // The top inset of the default display.
261 // This gets persisted so that the boot animation knows how to transition from the display's
262 // full size to the size configured by the user. Right now we only persist and animate the top
263 // inset, but theoretically we could do it for all of them.
264 private int mDefaultDisplayTopInset;
265
Jeff Brownd728bf52012-09-08 18:05:28 -0700266 // Viewports of the default display and the display that should receive touch
267 // input from an external source. Used by the input system.
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +0100268 @GuardedBy("mSyncRoot")
269 private final ArrayList<DisplayViewport> mViewports = new ArrayList<>();
Jeff Brownd728bf52012-09-08 18:05:28 -0700270
Jeff Brown89d55462012-09-19 11:33:42 -0700271 // Persistent data store for all internal settings maintained by the display manager service.
272 private final PersistentDataStore mPersistentDataStore = new PersistentDataStore();
273
Jeff Brownbd6e1502012-08-28 03:27:37 -0700274 // Temporary callback list, used when sending display events to applications.
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700275 // May be used outside of the lock but only on the handler thread.
276 private final ArrayList<CallbackRecord> mTempCallbacks = new ArrayList<CallbackRecord>();
Jeff Brownbd6e1502012-08-28 03:27:37 -0700277
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700278 // Temporary display info, used for comparing display configurations.
279 private final DisplayInfo mTempDisplayInfo = new DisplayInfo();
280
Jeff Brownd728bf52012-09-08 18:05:28 -0700281 // Temporary viewports, used when sending new viewport information to the
282 // input system. May be used outside of the lock but only on the handler thread.
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +0100283 private final ArrayList<DisplayViewport> mTempViewports = new ArrayList<>();
Jeff Brownd728bf52012-09-08 18:05:28 -0700284
Damien Bargiacchi4364bbf2016-11-01 21:44:20 -0700285 // The default color mode for default displays. Overrides the usual
286 // Display.Display.COLOR_MODE_DEFAULT for displays with the
287 // DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY flag set.
288 private final int mDefaultDisplayDefaultColorMode;
289
Jeff Browne75926d2014-09-18 15:24:49 -0700290 // Temporary list of deferred work to perform when setting the display state.
291 // Only used by requestDisplayState. The field is self-synchronized and only
292 // intended for use inside of the requestGlobalDisplayStateInternal function.
293 private final ArrayList<Runnable> mTempDisplayStateWorkQueue = new ArrayList<Runnable>();
294
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800295 // Lists of UIDs that are present on the displays. Maps displayId -> array of UIDs.
296 private final SparseArray<IntArray> mDisplayAccessUIDs = new SparseArray<>();
297
Santos Cordonee8931e2017-04-05 10:31:15 -0700298 private final Injector mInjector;
299
Dan Gittik122df862018-03-28 16:59:22 +0100300 // The minimum brightness curve, which guarantess that any brightness curve that dips below it
301 // is rejected by the system.
302 private final Curve mMinimumBrightnessCurve;
303 private final Spline mMinimumBrightnessSpline;
Peiyong Lin277eaff2019-01-16 16:18:22 -0800304 private final ColorSpace mWideColorSpace;
Dan Gittik122df862018-03-28 16:59:22 +0100305
Long Lingbc841b02019-07-03 16:43:15 -0700306 private SensorManager mSensorManager;
307
Jeff Brownb880d882014-02-10 19:47:07 -0800308 public DisplayManagerService(Context context) {
Santos Cordonee8931e2017-04-05 10:31:15 -0700309 this(context, new Injector());
310 }
311
312 @VisibleForTesting
313 DisplayManagerService(Context context, Injector injector) {
Jeff Brownb880d882014-02-10 19:47:07 -0800314 super(context);
Santos Cordonee8931e2017-04-05 10:31:15 -0700315 mInjector = injector;
Jeff Brownb880d882014-02-10 19:47:07 -0800316 mContext = context;
Jeff Brown4ccb8232014-01-16 22:16:42 -0800317 mHandler = new DisplayManagerHandler(DisplayThread.get().getLooper());
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700318 mUiHandler = UiThread.getHandler();
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700319 mDisplayAdapterListener = new DisplayAdapterListener();
Michael Wrighta3dab232019-02-22 16:54:21 +0000320 mDisplayModeDirector = new DisplayModeDirector(context, mHandler);
Jeff Brown27f1d672012-10-17 18:32:34 -0700321 mSingleDisplayDemoMode = SystemProperties.getBoolean("persist.demo.singledisplay", false);
Dan Gittik122df862018-03-28 16:59:22 +0100322 Resources resources = mContext.getResources();
Damien Bargiacchi4364bbf2016-11-01 21:44:20 -0700323 mDefaultDisplayDefaultColorMode = mContext.getResources().getInteger(
Michael Wrighteef0e132017-11-21 17:57:52 +0000324 com.android.internal.R.integer.config_defaultDisplayDefaultColorMode);
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200325 mDefaultDisplayTopInset = SystemProperties.getInt(PROP_DEFAULT_DISPLAY_TOP_INSET, -1);
Dan Gittik122df862018-03-28 16:59:22 +0100326 float[] lux = getFloatArray(resources.obtainTypedArray(
327 com.android.internal.R.array.config_minimumBrightnessCurveLux));
328 float[] nits = getFloatArray(resources.obtainTypedArray(
329 com.android.internal.R.array.config_minimumBrightnessCurveNits));
330 mMinimumBrightnessCurve = new Curve(lux, nits);
331 mMinimumBrightnessSpline = Spline.createSpline(lux, nits);
Jeff Brown5d6443b2015-04-10 20:15:01 -0700332
Michael Wrighta3dab232019-02-22 16:54:21 +0000333 PowerManager pm = mContext.getSystemService(PowerManager.class);
Jeff Brown5d6443b2015-04-10 20:15:01 -0700334 mGlobalDisplayBrightness = pm.getDefaultScreenBrightnessSetting();
Michael Wrighteef0e132017-11-21 17:57:52 +0000335 mCurrentUserId = UserHandle.USER_SYSTEM;
Peiyong Lin277eaff2019-01-16 16:18:22 -0800336 ColorSpace[] colorSpaces = SurfaceControl.getCompositionColorSpaces();
337 mWideColorSpace = colorSpaces[1];
Winson72dbe7e2019-04-29 14:55:30 -0700338
339 mSystemReady = false;
Joel Fernandes2d314e12017-04-04 16:32:15 -0700340 }
341
342 public void setupSchedulerPolicies() {
Jorim Jaggied7993b2017-03-28 18:50:01 +0100343 // android.display and android.anim is critical to user experience and we should make sure
Michael Wrighteef0e132017-11-21 17:57:52 +0000344 // it is not in the default foregroup groups, add it to top-app to make sure it uses all
345 // the cores and scheduling settings for top-app when it runs.
Jorim Jaggied7993b2017-03-28 18:50:01 +0100346 Process.setThreadGroupAndCpuset(DisplayThread.get().getThreadId(),
347 Process.THREAD_GROUP_TOP_APP);
348 Process.setThreadGroupAndCpuset(AnimationThread.get().getThreadId(),
349 Process.THREAD_GROUP_TOP_APP);
Jorim Jaggi21c39a72017-10-20 15:47:51 +0200350 Process.setThreadGroupAndCpuset(SurfaceAnimationThread.get().getThreadId(),
351 Process.THREAD_GROUP_TOP_APP);
Craig Mautner4f67ba62012-08-02 11:23:00 -0700352 }
353
Jeff Brown4ccb8232014-01-16 22:16:42 -0800354 @Override
Jeff Brown4ccb8232014-01-16 22:16:42 -0800355 public void onStart() {
Michael Wright1c9977b2016-07-12 13:30:10 -0700356 // We need to pre-load the persistent data store so it's ready before the default display
357 // adapter is up so that we have it's configuration. We could load it lazily, but since
358 // we're going to have to read it in eventually we may as well do it here rather than after
Santos Cordonc22c5632017-06-21 16:03:49 -0700359 // we've waited for the display to register itself with us.
Michael Wrighta3dab232019-02-22 16:54:21 +0000360 synchronized (mSyncRoot) {
361 mPersistentDataStore.loadIfNeeded();
362 loadStableDisplayValuesLocked();
Michael Wrighteedcbf12017-08-16 23:14:54 +0100363 }
Santos Cordonc22c5632017-06-21 16:03:49 -0700364 mHandler.sendEmptyMessage(MSG_REGISTER_DEFAULT_DISPLAY_ADAPTERS);
Jeff Brown4ccb8232014-01-16 22:16:42 -0800365
366 publishBinderService(Context.DISPLAY_SERVICE, new BinderService(),
367 true /*allowIsolated*/);
368 publishLocalService(DisplayManagerInternal.class, new LocalService());
369 }
370
371 @Override
372 public void onBootPhase(int phase) {
373 if (phase == PHASE_WAIT_FOR_DEFAULT_DISPLAY) {
374 synchronized (mSyncRoot) {
Santos Cordonc22c5632017-06-21 16:03:49 -0700375 long timeout = SystemClock.uptimeMillis()
376 + mInjector.getDefaultDisplayDelayTimeout();
377 while (mLogicalDisplays.get(Display.DEFAULT_DISPLAY) == null ||
378 mVirtualDisplayAdapter == null) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800379 long delay = timeout - SystemClock.uptimeMillis();
380 if (delay <= 0) {
381 throw new RuntimeException("Timeout waiting for default display "
Santos Cordonc22c5632017-06-21 16:03:49 -0700382 + "to be initialized. DefaultDisplay="
383 + mLogicalDisplays.get(Display.DEFAULT_DISPLAY)
384 + ", mVirtualDisplayAdapter=" + mVirtualDisplayAdapter);
Jeff Brown4ccb8232014-01-16 22:16:42 -0800385 }
386 if (DEBUG) {
387 Slog.d(TAG, "waitForDefaultDisplay: waiting, timeout=" + delay);
388 }
389 try {
390 mSyncRoot.wait(delay);
391 } catch (InterruptedException ex) {
392 }
Jeff Brownbd6e1502012-08-28 03:27:37 -0700393 }
394 }
395 }
Jeff Brownbd6e1502012-08-28 03:27:37 -0700396 }
397
Michael Wrighteef0e132017-11-21 17:57:52 +0000398 @Override
399 public void onSwitchUser(@UserIdInt int newUserId) {
400 final int userSerial = getUserManager().getUserSerialNumber(newUserId);
401 synchronized (mSyncRoot) {
402 if (mCurrentUserId != newUserId) {
403 mCurrentUserId = newUserId;
404 BrightnessConfiguration config =
405 mPersistentDataStore.getBrightnessConfiguration(userSerial);
406 mDisplayPowerController.setBrightnessConfiguration(config);
407 }
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +0000408 mDisplayPowerController.onSwitchUser(newUserId);
Michael Wrighteef0e132017-11-21 17:57:52 +0000409 }
410 }
411
Jeff Brown4ccb8232014-01-16 22:16:42 -0800412 // TODO: Use dependencies or a boot phase
413 public void windowManagerAndInputReady() {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700414 synchronized (mSyncRoot) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800415 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
416 mInputManagerInternal = LocalServices.getService(InputManagerInternal.class);
Craig Mautner65d11b32012-10-01 13:59:52 -0700417 scheduleTraversalLocked(false);
Jeff Brownd728bf52012-09-08 18:05:28 -0700418 }
419 }
420
421 /**
Jeff Brownbd6e1502012-08-28 03:27:37 -0700422 * Called when the system is ready to go.
423 */
424 public void systemReady(boolean safeMode, boolean onlyCore) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700425 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -0700426 mSafeMode = safeMode;
427 mOnlyCore = onlyCore;
Winson72dbe7e2019-04-29 14:55:30 -0700428 mSystemReady = true;
429 // Just in case the top inset changed before the system was ready. At this point, any
430 // relevant configuration should be in place.
431 recordTopInsetLocked(mLogicalDisplays.get(Display.DEFAULT_DISPLAY));
Jeff Brownbd6e1502012-08-28 03:27:37 -0700432 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700433
Ana Kruleca74a8642019-11-14 00:51:00 +0100434 mDisplayModeDirector.setDesiredDisplayModeSpecsListener(
435 new DesiredDisplayModeSpecsObserver());
Long Lingbc841b02019-07-03 16:43:15 -0700436 mDisplayModeDirector.start(mSensorManager);
Michael Wrighta3dab232019-02-22 16:54:21 +0000437
Jeff Brownbd6e1502012-08-28 03:27:37 -0700438 mHandler.sendEmptyMessage(MSG_REGISTER_ADDITIONAL_DISPLAY_ADAPTERS);
439 }
440
Santos Cordonee8931e2017-04-05 10:31:15 -0700441 @VisibleForTesting
442 Handler getDisplayHandler() {
443 return mHandler;
444 }
445
Michael Wrighteedcbf12017-08-16 23:14:54 +0100446 private void loadStableDisplayValuesLocked() {
447 final Point size = mPersistentDataStore.getStableDisplaySize();
448 if (size.x > 0 && size.y > 0) {
449 // Just set these values directly so we don't write the display persistent data again
450 // unnecessarily
451 mStableDisplaySize.set(size.x, size.y);
452 } else {
453 final Resources res = mContext.getResources();
454 final int width = res.getInteger(
455 com.android.internal.R.integer.config_stableDeviceDisplayWidth);
456 final int height = res.getInteger(
457 com.android.internal.R.integer.config_stableDeviceDisplayHeight);
458 if (width > 0 && height > 0) {
459 setStableDisplaySizeLocked(width, height);
460 }
461 }
462 }
463
464 private Point getStableDisplaySizeInternal() {
465 Point r = new Point();
466 synchronized (mSyncRoot) {
467 if (mStableDisplaySize.x > 0 && mStableDisplaySize.y > 0) {
468 r.set(mStableDisplaySize.x, mStableDisplaySize.y);
469 }
470 }
471 return r;
472 }
473
Jeff Brown4ccb8232014-01-16 22:16:42 -0800474 private void registerDisplayTransactionListenerInternal(
475 DisplayTransactionListener listener) {
Jeff Brown7f3994e2012-12-04 14:04:28 -0800476 // List is self-synchronized copy-on-write.
477 mDisplayTransactionListeners.add(listener);
478 }
479
Jeff Brown4ccb8232014-01-16 22:16:42 -0800480 private void unregisterDisplayTransactionListenerInternal(
481 DisplayTransactionListener listener) {
Jeff Brown7f3994e2012-12-04 14:04:28 -0800482 // List is self-synchronized copy-on-write.
483 mDisplayTransactionListeners.remove(listener);
484 }
485
Jeff Brown4ccb8232014-01-16 22:16:42 -0800486 private void setDisplayInfoOverrideFromWindowManagerInternal(
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700487 int displayId, DisplayInfo info) {
488 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -0700489 LogicalDisplay display = mLogicalDisplays.get(displayId);
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700490 if (display != null) {
Jeff Brownef981a42013-08-07 14:13:37 -0700491 if (display.setDisplayInfoOverrideFromWindowManagerLocked(info)) {
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200492 handleLogicalDisplayChanged(displayId, display);
Craig Mautner65d11b32012-10-01 13:59:52 -0700493 scheduleTraversalLocked(false);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700494 }
Jeff Brownbd6e1502012-08-28 03:27:37 -0700495 }
496 }
497 }
498
Andrii Kuliancd097992017-03-23 18:31:59 -0700499 /**
500 * @see DisplayManagerInternal#getNonOverrideDisplayInfo(int, DisplayInfo)
501 */
502 private void getNonOverrideDisplayInfoInternal(int displayId, DisplayInfo outInfo) {
503 synchronized (mSyncRoot) {
504 final LogicalDisplay display = mLogicalDisplays.get(displayId);
505 if (display != null) {
506 display.getNonOverrideDisplayInfoLocked(outInfo);
507 }
508 }
509 }
510
Santos Cordonee8931e2017-04-05 10:31:15 -0700511 @VisibleForTesting
Robert Carrae606b42018-02-15 15:36:23 -0800512 void performTraversalInternal(SurfaceControl.Transaction t) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700513 synchronized (mSyncRoot) {
514 if (!mPendingTraversal) {
515 return;
Jeff Brownbd6e1502012-08-28 03:27:37 -0700516 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700517 mPendingTraversal = false;
518
Robert Carrae606b42018-02-15 15:36:23 -0800519 performTraversalLocked(t);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700520 }
Jeff Brown7f3994e2012-12-04 14:04:28 -0800521
522 // List is self-synchronized copy-on-write.
523 for (DisplayTransactionListener listener : mDisplayTransactionListeners) {
Vishnu Naire86bd982018-11-28 13:23:17 -0800524 listener.onDisplayTransaction(t);
Jeff Brown7f3994e2012-12-04 14:04:28 -0800525 }
Jeff Brownbd6e1502012-08-28 03:27:37 -0700526 }
527
Jeff Brown5d6443b2015-04-10 20:15:01 -0700528 private void requestGlobalDisplayStateInternal(int state, int brightness) {
529 if (state == Display.STATE_UNKNOWN) {
530 state = Display.STATE_ON;
531 }
532 if (state == Display.STATE_OFF) {
533 brightness = PowerManager.BRIGHTNESS_OFF;
534 } else if (brightness < 0) {
535 brightness = PowerManager.BRIGHTNESS_DEFAULT;
536 } else if (brightness > PowerManager.BRIGHTNESS_ON) {
537 brightness = PowerManager.BRIGHTNESS_ON;
538 }
539
Jeff Browne75926d2014-09-18 15:24:49 -0700540 synchronized (mTempDisplayStateWorkQueue) {
541 try {
542 // Update the display state within the lock.
Jeff Brown8e5d33e2015-06-10 13:05:50 -0700543 // Note that we do not need to schedule traversals here although it
544 // may happen as a side-effect of displays changing state.
Jeff Browne75926d2014-09-18 15:24:49 -0700545 synchronized (mSyncRoot) {
Jeff Brown5d6443b2015-04-10 20:15:01 -0700546 if (mGlobalDisplayState == state
547 && mGlobalDisplayBrightness == brightness) {
548 return; // no change
Jeff Browne75926d2014-09-18 15:24:49 -0700549 }
Jeff Brown5d6443b2015-04-10 20:15:01 -0700550
551 Trace.traceBegin(Trace.TRACE_TAG_POWER, "requestGlobalDisplayState("
552 + Display.stateToString(state)
553 + ", brightness=" + brightness + ")");
554 mGlobalDisplayState = state;
555 mGlobalDisplayBrightness = brightness;
Jeff Brown8e5d33e2015-06-10 13:05:50 -0700556 applyGlobalDisplayStateLocked(mTempDisplayStateWorkQueue);
Jeff Browne75926d2014-09-18 15:24:49 -0700557 }
558
559 // Setting the display power state can take hundreds of milliseconds
560 // to complete so we defer the most expensive part of the work until
561 // after we have exited the critical section to avoid blocking other
562 // threads for a long time.
563 for (int i = 0; i < mTempDisplayStateWorkQueue.size(); i++) {
564 mTempDisplayStateWorkQueue.get(i).run();
565 }
Jeff Brown5d6443b2015-04-10 20:15:01 -0700566 Trace.traceEnd(Trace.TRACE_TAG_POWER);
Jeff Browne75926d2014-09-18 15:24:49 -0700567 } finally {
568 mTempDisplayStateWorkQueue.clear();
Jeff Brown9e316a12012-10-08 19:17:06 -0700569 }
570 }
571 }
572
Galia Peychevaea945752019-06-26 14:05:12 +0200573 private void setPreferMinimalPostProcessingLocked(int displayId, boolean isPreferred) {
574 LogicalDisplay display = mLogicalDisplays.get(displayId);
575 if (display != null) {
576 DisplayDeviceInfo info =
577 display.getPrimaryDisplayDeviceLocked().getDisplayDeviceInfoLocked();
578
579 if (info.allmSupported) {
580 display.setAutoLowLatencyMode(isPreferred);
581 }
582 if (info.gameContentTypeSupported) {
583 display.setGameContentType(isPreferred);
584 }
585
586 scheduleTraversalLocked(false);
587 }
588 }
589
Jeff Brown4ccb8232014-01-16 22:16:42 -0800590 private DisplayInfo getDisplayInfoInternal(int displayId, int callingUid) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700591 synchronized (mSyncRoot) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800592 LogicalDisplay display = mLogicalDisplays.get(displayId);
593 if (display != null) {
594 DisplayInfo info = display.getDisplayInfoLocked();
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800595 if (info.hasAccess(callingUid)
596 || isUidPresentOnDisplayInternal(callingUid, displayId)) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800597 return info;
598 }
599 }
600 return null;
601 }
602 }
603
604 private int[] getDisplayIdsInternal(int callingUid) {
605 synchronized (mSyncRoot) {
606 final int count = mLogicalDisplays.size();
607 int[] displayIds = new int[count];
608 int n = 0;
609 for (int i = 0; i < count; i++) {
610 LogicalDisplay display = mLogicalDisplays.valueAt(i);
611 DisplayInfo info = display.getDisplayInfoLocked();
612 if (info.hasAccess(callingUid)) {
613 displayIds[n++] = mLogicalDisplays.keyAt(i);
614 }
615 }
616 if (n != count) {
617 displayIds = Arrays.copyOfRange(displayIds, 0, n);
618 }
619 return displayIds;
620 }
621 }
622
623 private void registerCallbackInternal(IDisplayManagerCallback callback, int callingPid) {
624 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -0700625 if (mCallbacks.get(callingPid) != null) {
626 throw new SecurityException("The calling process has already "
627 + "registered an IDisplayManagerCallback.");
Jeff Brown64a55af2012-08-26 02:47:39 -0700628 }
629
Jeff Brownbd6e1502012-08-28 03:27:37 -0700630 CallbackRecord record = new CallbackRecord(callingPid, callback);
631 try {
632 IBinder binder = callback.asBinder();
633 binder.linkToDeath(record, 0);
634 } catch (RemoteException ex) {
635 // give up
636 throw new RuntimeException(ex);
637 }
638
639 mCallbacks.put(callingPid, record);
640 }
641 }
642
Jeff Brownce468a32013-11-21 16:42:03 -0800643 private void onCallbackDied(CallbackRecord record) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700644 synchronized (mSyncRoot) {
Jeff Brownce468a32013-11-21 16:42:03 -0800645 mCallbacks.remove(record.mPid);
646 stopWifiDisplayScanLocked(record);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700647 }
648 }
649
Jeff Brown4ccb8232014-01-16 22:16:42 -0800650 private void startWifiDisplayScanInternal(int callingPid) {
651 synchronized (mSyncRoot) {
652 CallbackRecord record = mCallbacks.get(callingPid);
653 if (record == null) {
654 throw new IllegalStateException("The calling process has not "
655 + "registered an IDisplayManagerCallback.");
Jeff Browne08ae382012-09-07 20:36:36 -0700656 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800657 startWifiDisplayScanLocked(record);
Jeff Browne08ae382012-09-07 20:36:36 -0700658 }
659 }
660
Jeff Brownce468a32013-11-21 16:42:03 -0800661 private void startWifiDisplayScanLocked(CallbackRecord record) {
662 if (!record.mWifiDisplayScanRequested) {
663 record.mWifiDisplayScanRequested = true;
664 if (mWifiDisplayScanRequestCount++ == 0) {
665 if (mWifiDisplayAdapter != null) {
666 mWifiDisplayAdapter.requestStartScanLocked();
667 }
668 }
669 }
670 }
671
Jeff Brown4ccb8232014-01-16 22:16:42 -0800672 private void stopWifiDisplayScanInternal(int callingPid) {
673 synchronized (mSyncRoot) {
674 CallbackRecord record = mCallbacks.get(callingPid);
675 if (record == null) {
676 throw new IllegalStateException("The calling process has not "
677 + "registered an IDisplayManagerCallback.");
Jeff Brownce468a32013-11-21 16:42:03 -0800678 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800679 stopWifiDisplayScanLocked(record);
Jeff Brownce468a32013-11-21 16:42:03 -0800680 }
681 }
682
683 private void stopWifiDisplayScanLocked(CallbackRecord record) {
684 if (record.mWifiDisplayScanRequested) {
685 record.mWifiDisplayScanRequested = false;
686 if (--mWifiDisplayScanRequestCount == 0) {
687 if (mWifiDisplayAdapter != null) {
688 mWifiDisplayAdapter.requestStopScanLocked();
689 }
690 } else if (mWifiDisplayScanRequestCount < 0) {
Dianne Hackborn8d051722014-10-01 14:59:58 -0700691 Slog.wtf(TAG, "mWifiDisplayScanRequestCount became negative: "
Jeff Brownce468a32013-11-21 16:42:03 -0800692 + mWifiDisplayScanRequestCount);
693 mWifiDisplayScanRequestCount = 0;
694 }
695 }
696 }
697
Jeff Brown4ccb8232014-01-16 22:16:42 -0800698 private void connectWifiDisplayInternal(String address) {
699 synchronized (mSyncRoot) {
700 if (mWifiDisplayAdapter != null) {
701 mWifiDisplayAdapter.requestConnectLocked(address);
Jeff Browne08ae382012-09-07 20:36:36 -0700702 }
Jeff Browne08ae382012-09-07 20:36:36 -0700703 }
704 }
705
Jeff Brown4ccb8232014-01-16 22:16:42 -0800706 private void pauseWifiDisplayInternal() {
707 synchronized (mSyncRoot) {
708 if (mWifiDisplayAdapter != null) {
709 mWifiDisplayAdapter.requestPauseLocked();
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700710 }
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700711 }
712 }
713
Jeff Brown4ccb8232014-01-16 22:16:42 -0800714 private void resumeWifiDisplayInternal() {
715 synchronized (mSyncRoot) {
716 if (mWifiDisplayAdapter != null) {
717 mWifiDisplayAdapter.requestResumeLocked();
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700718 }
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700719 }
720 }
721
Jeff Brown4ccb8232014-01-16 22:16:42 -0800722 private void disconnectWifiDisplayInternal() {
723 synchronized (mSyncRoot) {
724 if (mWifiDisplayAdapter != null) {
725 mWifiDisplayAdapter.requestDisconnectLocked();
Jeff Browne08ae382012-09-07 20:36:36 -0700726 }
Jeff Browne08ae382012-09-07 20:36:36 -0700727 }
728 }
729
Jeff Brown4ccb8232014-01-16 22:16:42 -0800730 private void renameWifiDisplayInternal(String address, String alias) {
731 synchronized (mSyncRoot) {
732 if (mWifiDisplayAdapter != null) {
733 mWifiDisplayAdapter.requestRenameLocked(address, alias);
Jeff Brown89d55462012-09-19 11:33:42 -0700734 }
Jeff Brown89d55462012-09-19 11:33:42 -0700735 }
736 }
737
Jeff Brown4ccb8232014-01-16 22:16:42 -0800738 private void forgetWifiDisplayInternal(String address) {
739 synchronized (mSyncRoot) {
740 if (mWifiDisplayAdapter != null) {
741 mWifiDisplayAdapter.requestForgetLocked(address);
Jeff Brown89d55462012-09-19 11:33:42 -0700742 }
Jeff Brown89d55462012-09-19 11:33:42 -0700743 }
744 }
745
Jeff Brown4ccb8232014-01-16 22:16:42 -0800746 private WifiDisplayStatus getWifiDisplayStatusInternal() {
747 synchronized (mSyncRoot) {
748 if (mWifiDisplayAdapter != null) {
749 return mWifiDisplayAdapter.getWifiDisplayStatusLocked();
Jeff Browne08ae382012-09-07 20:36:36 -0700750 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800751 return new WifiDisplayStatus();
Jeff Browne08ae382012-09-07 20:36:36 -0700752 }
753 }
754
Michael Wright1c9977b2016-07-12 13:30:10 -0700755 private void requestColorModeInternal(int displayId, int colorMode) {
Michael Wright58e829f2015-09-15 00:13:26 +0100756 synchronized (mSyncRoot) {
757 LogicalDisplay display = mLogicalDisplays.get(displayId);
758 if (display != null &&
Michael Wright1c9977b2016-07-12 13:30:10 -0700759 display.getRequestedColorModeLocked() != colorMode) {
760 display.setRequestedColorModeLocked(colorMode);
Michael Wright58e829f2015-09-15 00:13:26 +0100761 scheduleTraversalLocked(false);
762 }
763 }
764 }
765
Michael Wright75ee9fc2014-09-01 19:55:22 -0700766 private int createVirtualDisplayInternal(IVirtualDisplayCallback callback,
Santos Cordonee8931e2017-04-05 10:31:15 -0700767 IMediaProjection projection, int callingUid, String packageName, String name, int width,
768 int height, int densityDpi, Surface surface, int flags, String uniqueId) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800769 synchronized (mSyncRoot) {
770 if (mVirtualDisplayAdapter == null) {
771 Slog.w(TAG, "Rejecting request to create private virtual display "
772 + "because the virtual display adapter is not available.");
773 return -1;
Jeff Brown7d00aff2013-08-02 19:03:49 -0700774 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800775
776 DisplayDevice device = mVirtualDisplayAdapter.createVirtualDisplayLocked(
Santos Cordonee8931e2017-04-05 10:31:15 -0700777 callback, projection, callingUid, packageName, name, width, height, densityDpi,
778 surface, flags, uniqueId);
Jeff Brown4ccb8232014-01-16 22:16:42 -0800779 if (device == null) {
780 return -1;
Jeff Brown7d00aff2013-08-02 19:03:49 -0700781 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700782
Jeff Brown4ccb8232014-01-16 22:16:42 -0800783 handleDisplayDeviceAddedLocked(device);
784 LogicalDisplay display = findLogicalDisplayForDeviceLocked(device);
785 if (display != null) {
786 return display.getDisplayIdLocked();
Jeff Browna506a6e2013-06-04 00:02:38 -0700787 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800788
789 // Something weird happened and the logical display was not created.
790 Slog.w(TAG, "Rejecting request to create virtual display "
791 + "because the logical display was not created.");
Michael Wright75ee9fc2014-09-01 19:55:22 -0700792 mVirtualDisplayAdapter.releaseVirtualDisplayLocked(callback.asBinder());
Jeff Brown4ccb8232014-01-16 22:16:42 -0800793 handleDisplayDeviceRemovedLocked(device);
Jeff Browna506a6e2013-06-04 00:02:38 -0700794 }
795 return -1;
796 }
797
Michael Wright01e840f2014-06-26 16:03:25 -0700798 private void resizeVirtualDisplayInternal(IBinder appToken,
799 int width, int height, int densityDpi) {
800 synchronized (mSyncRoot) {
801 if (mVirtualDisplayAdapter == null) {
802 return;
803 }
804
805 mVirtualDisplayAdapter.resizeVirtualDisplayLocked(appToken, width, height, densityDpi);
806 }
807 }
808
Jeff Brown92207df2014-04-16 13:16:07 -0700809 private void setVirtualDisplaySurfaceInternal(IBinder appToken, Surface surface) {
810 synchronized (mSyncRoot) {
811 if (mVirtualDisplayAdapter == null) {
812 return;
813 }
814
815 mVirtualDisplayAdapter.setVirtualDisplaySurfaceLocked(appToken, surface);
816 }
817 }
818
Jeff Brown4ccb8232014-01-16 22:16:42 -0800819 private void releaseVirtualDisplayInternal(IBinder appToken) {
820 synchronized (mSyncRoot) {
821 if (mVirtualDisplayAdapter == null) {
822 return;
Jeff Browna506a6e2013-06-04 00:02:38 -0700823 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700824
Jeff Brown4ccb8232014-01-16 22:16:42 -0800825 DisplayDevice device =
826 mVirtualDisplayAdapter.releaseVirtualDisplayLocked(appToken);
827 if (device != null) {
828 handleDisplayDeviceRemovedLocked(device);
Jeff Browna506a6e2013-06-04 00:02:38 -0700829 }
830 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700831 }
832
chaviwda4c6942018-11-07 15:52:56 -0800833 private void setVirtualDisplayStateInternal(IBinder appToken, boolean isOn) {
834 synchronized (mSyncRoot) {
835 if (mVirtualDisplayAdapter == null) {
836 return;
837 }
838
839 mVirtualDisplayAdapter.setVirtualDisplayStateLocked(appToken, isOn);
840 }
841 }
842
Santos Cordonc22c5632017-06-21 16:03:49 -0700843 private void registerDefaultDisplayAdapters() {
844 // Register default display adapters.
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700845 synchronized (mSyncRoot) {
Santos Cordonc22c5632017-06-21 16:03:49 -0700846 // main display adapter
Mike Lockwoode63f6f72013-11-15 11:01:47 -0800847 registerDisplayAdapterLocked(new LocalDisplayAdapter(
848 mSyncRoot, mContext, mHandler, mDisplayAdapterListener));
Santos Cordonc22c5632017-06-21 16:03:49 -0700849
850 // Standalone VR devices rely on a virtual display as their primary display for
851 // 2D UI. We register virtual display adapter along side the main display adapter
852 // here so that it is ready by the time the system sends the home Intent for
853 // early apps like SetupWizard/Launcher. In particular, SUW is displayed using
854 // the virtual display inside VR before any VR-specific apps even run.
855 mVirtualDisplayAdapter = mInjector.getVirtualDisplayAdapter(mSyncRoot, mContext,
856 mHandler, mDisplayAdapterListener);
857 if (mVirtualDisplayAdapter != null) {
858 registerDisplayAdapterLocked(mVirtualDisplayAdapter);
859 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700860 }
861 }
862
863 private void registerAdditionalDisplayAdapters() {
864 synchronized (mSyncRoot) {
865 if (shouldRegisterNonEssentialDisplayAdaptersLocked()) {
Jeff Brown89d55462012-09-19 11:33:42 -0700866 registerOverlayDisplayAdapterLocked();
867 registerWifiDisplayAdapterLocked();
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700868 }
869 }
870 }
871
Jeff Brown89d55462012-09-19 11:33:42 -0700872 private void registerOverlayDisplayAdapterLocked() {
873 registerDisplayAdapterLocked(new OverlayDisplayAdapter(
874 mSyncRoot, mContext, mHandler, mDisplayAdapterListener, mUiHandler));
875 }
876
877 private void registerWifiDisplayAdapterLocked() {
878 if (mContext.getResources().getBoolean(
Jeff Brownbbd28a22012-09-20 16:47:15 -0700879 com.android.internal.R.bool.config_enableWifiDisplay)
880 || SystemProperties.getInt(FORCE_WIFI_DISPLAY_ENABLE, -1) == 1) {
Jeff Brown89d55462012-09-19 11:33:42 -0700881 mWifiDisplayAdapter = new WifiDisplayAdapter(
882 mSyncRoot, mContext, mHandler, mDisplayAdapterListener,
883 mPersistentDataStore);
884 registerDisplayAdapterLocked(mWifiDisplayAdapter);
885 }
886 }
887
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700888 private boolean shouldRegisterNonEssentialDisplayAdaptersLocked() {
889 // In safe mode, we disable non-essential display adapters to give the user
890 // an opportunity to fix broken settings or other problems that might affect
891 // system stability.
892 // In only-core mode, we disable non-essential display adapters to minimize
893 // the number of dependencies that are started while in this mode and to
894 // prevent problems that might occur due to the device being encrypted.
895 return !mSafeMode && !mOnlyCore;
896 }
897
898 private void registerDisplayAdapterLocked(DisplayAdapter adapter) {
899 mDisplayAdapters.add(adapter);
900 adapter.registerLocked();
901 }
902
Jeff Brownbd6e1502012-08-28 03:27:37 -0700903 private void handleDisplayDeviceAdded(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700904 synchronized (mSyncRoot) {
Jeff Browna506a6e2013-06-04 00:02:38 -0700905 handleDisplayDeviceAddedLocked(device);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700906 }
907 }
908
Jeff Browna506a6e2013-06-04 00:02:38 -0700909 private void handleDisplayDeviceAddedLocked(DisplayDevice device) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700910 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
Jeff Browna506a6e2013-06-04 00:02:38 -0700911 if (mDisplayDevices.contains(device)) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700912 Slog.w(TAG, "Attempted to add already added display device: " + info);
Jeff Browna506a6e2013-06-04 00:02:38 -0700913 return;
914 }
915
Jeff Brown10acf6d2015-04-14 14:20:47 -0700916 Slog.i(TAG, "Display device added: " + info);
917 device.mDebugLastLoggedDeviceInfo = info;
Jeff Browna506a6e2013-06-04 00:02:38 -0700918
919 mDisplayDevices.add(device);
Michael Wright1c9977b2016-07-12 13:30:10 -0700920 LogicalDisplay display = addLogicalDisplayLocked(device);
Jeff Brown0033a862014-10-08 12:06:39 -0700921 Runnable work = updateDisplayStateLocked(device);
922 if (work != null) {
923 work.run();
924 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700925 scheduleTraversalLocked(false);
926 }
927
Jeff Brownbd6e1502012-08-28 03:27:37 -0700928 private void handleDisplayDeviceChanged(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700929 synchronized (mSyncRoot) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700930 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
Jeff Brownbd6e1502012-08-28 03:27:37 -0700931 if (!mDisplayDevices.contains(device)) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700932 Slog.w(TAG, "Attempted to change non-existent display device: " + info);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700933 return;
934 }
935
Jeff Brown10acf6d2015-04-14 14:20:47 -0700936 int diff = device.mDebugLastLoggedDeviceInfo.diff(info);
937 if (diff == DisplayDeviceInfo.DIFF_STATE) {
938 Slog.i(TAG, "Display device changed state: \"" + info.name
939 + "\", " + Display.stateToString(info.state));
940 } else if (diff != 0) {
941 Slog.i(TAG, "Display device changed: " + info);
942 }
Michael Wright1c9977b2016-07-12 13:30:10 -0700943 if ((diff & DisplayDeviceInfo.DIFF_COLOR_MODE) != 0) {
944 try {
945 mPersistentDataStore.setColorMode(device, info.colorMode);
946 } finally {
947 mPersistentDataStore.saveIfNeeded();
948 }
949 }
Jeff Brown10acf6d2015-04-14 14:20:47 -0700950 device.mDebugLastLoggedDeviceInfo = info;
Jeff Browne87bf032012-09-20 18:30:13 -0700951
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700952 device.applyPendingDisplayDeviceInfoChangesLocked();
953 if (updateLogicalDisplaysLocked()) {
Craig Mautner65d11b32012-10-01 13:59:52 -0700954 scheduleTraversalLocked(false);
Jeff Brown64a55af2012-08-26 02:47:39 -0700955 }
956 }
957 }
958
Jeff Brownbd6e1502012-08-28 03:27:37 -0700959 private void handleDisplayDeviceRemoved(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700960 synchronized (mSyncRoot) {
Jeff Browna506a6e2013-06-04 00:02:38 -0700961 handleDisplayDeviceRemovedLocked(device);
962 }
963 }
Jeff Brown8e5d33e2015-06-10 13:05:50 -0700964
Jeff Browna506a6e2013-06-04 00:02:38 -0700965 private void handleDisplayDeviceRemovedLocked(DisplayDevice device) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700966 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
Jeff Browna506a6e2013-06-04 00:02:38 -0700967 if (!mDisplayDevices.remove(device)) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700968 Slog.w(TAG, "Attempted to remove non-existent display device: " + info);
Jeff Browna506a6e2013-06-04 00:02:38 -0700969 return;
970 }
971
Jeff Brown10acf6d2015-04-14 14:20:47 -0700972 Slog.i(TAG, "Display device removed: " + info);
973 device.mDebugLastLoggedDeviceInfo = info;
Jeff Browna506a6e2013-06-04 00:02:38 -0700974
Jeff Browna506a6e2013-06-04 00:02:38 -0700975 updateLogicalDisplaysLocked();
976 scheduleTraversalLocked(false);
977 }
978
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200979 private void handleLogicalDisplayChanged(int displayId, @NonNull LogicalDisplay display) {
980 if (displayId == Display.DEFAULT_DISPLAY) {
981 recordTopInsetLocked(display);
982 }
983 sendDisplayEventLocked(displayId, DisplayManagerGlobal.EVENT_DISPLAY_CHANGED);
984 }
985
Jeff Brown8e5d33e2015-06-10 13:05:50 -0700986 private void applyGlobalDisplayStateLocked(List<Runnable> workQueue) {
Jeff Browna506a6e2013-06-04 00:02:38 -0700987 final int count = mDisplayDevices.size();
988 for (int i = 0; i < count; i++) {
989 DisplayDevice device = mDisplayDevices.get(i);
Jeff Browne75926d2014-09-18 15:24:49 -0700990 Runnable runnable = updateDisplayStateLocked(device);
991 if (runnable != null) {
992 workQueue.add(runnable);
993 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700994 }
995 }
996
Jeff Browne75926d2014-09-18 15:24:49 -0700997 private Runnable updateDisplayStateLocked(DisplayDevice device) {
Jeff Browna506a6e2013-06-04 00:02:38 -0700998 // Blank or unblank the display immediately to match the state requested
Jeff Brown037c33e2014-04-09 00:31:55 -0700999 // by the display power controller (if known).
Jeff Browna506a6e2013-06-04 00:02:38 -07001000 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
1001 if ((info.flags & DisplayDeviceInfo.FLAG_NEVER_BLANK) == 0) {
Jeff Brown5d6443b2015-04-10 20:15:01 -07001002 return device.requestDisplayStateLocked(mGlobalDisplayState, mGlobalDisplayBrightness);
Craig Mautner4f67ba62012-08-02 11:23:00 -07001003 }
Jeff Browne75926d2014-09-18 15:24:49 -07001004 return null;
Craig Mautner4f67ba62012-08-02 11:23:00 -07001005 }
1006
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001007 // Adds a new logical display based on the given display device.
1008 // Sends notifications if needed.
Michael Wright1c9977b2016-07-12 13:30:10 -07001009 private LogicalDisplay addLogicalDisplayLocked(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001010 DisplayDeviceInfo deviceInfo = device.getDisplayDeviceInfoLocked();
1011 boolean isDefault = (deviceInfo.flags
1012 & DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY) != 0;
1013 if (isDefault && mLogicalDisplays.get(Display.DEFAULT_DISPLAY) != null) {
1014 Slog.w(TAG, "Ignoring attempt to add a second default display: " + deviceInfo);
1015 isDefault = false;
1016 }
1017
Jeff Brown27f1d672012-10-17 18:32:34 -07001018 if (!isDefault && mSingleDisplayDemoMode) {
1019 Slog.i(TAG, "Not creating a logical display for a secondary display "
1020 + " because single display demo mode is enabled: " + deviceInfo);
Michael Wright1c9977b2016-07-12 13:30:10 -07001021 return null;
Jeff Brown27f1d672012-10-17 18:32:34 -07001022 }
1023
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001024 final int displayId = assignDisplayIdLocked(isDefault);
1025 final int layerStack = assignLayerStackLocked(displayId);
1026
Jeff Brownd728bf52012-09-08 18:05:28 -07001027 LogicalDisplay display = new LogicalDisplay(displayId, layerStack, device);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001028 display.updateLocked(mDisplayDevices);
1029 if (!display.isValidLocked()) {
1030 // This should never happen currently.
1031 Slog.w(TAG, "Ignoring display device because the logical display "
1032 + "created from it was not considered valid: " + deviceInfo);
Michael Wright1c9977b2016-07-12 13:30:10 -07001033 return null;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001034 }
1035
Michael Wrighteedcbf12017-08-16 23:14:54 +01001036 configureColorModeLocked(display, device);
1037 if (isDefault) {
1038 recordStableDisplayStatsIfNeededLocked(display);
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001039 recordTopInsetLocked(display);
Michael Wrighteedcbf12017-08-16 23:14:54 +01001040 }
1041
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001042 mLogicalDisplays.put(displayId, display);
1043
1044 // Wake up waitForDefaultDisplay.
1045 if (isDefault) {
1046 mSyncRoot.notifyAll();
1047 }
1048
1049 sendDisplayEventLocked(displayId, DisplayManagerGlobal.EVENT_DISPLAY_ADDED);
Michael Wright1c9977b2016-07-12 13:30:10 -07001050 return display;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001051 }
1052
1053 private int assignDisplayIdLocked(boolean isDefault) {
1054 return isDefault ? Display.DEFAULT_DISPLAY : mNextNonDefaultDisplayId++;
1055 }
1056
1057 private int assignLayerStackLocked(int displayId) {
1058 // Currently layer stacks and display ids are the same.
1059 // This need not be the case.
1060 return displayId;
1061 }
1062
Michael Wrighteedcbf12017-08-16 23:14:54 +01001063 private void configureColorModeLocked(LogicalDisplay display, DisplayDevice device) {
1064 if (display.getPrimaryDisplayDeviceLocked() == device) {
1065 int colorMode = mPersistentDataStore.getColorMode(device);
1066 if (colorMode == Display.COLOR_MODE_INVALID) {
1067 if ((device.getDisplayDeviceInfoLocked().flags
1068 & DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY) != 0) {
1069 colorMode = mDefaultDisplayDefaultColorMode;
1070 } else {
1071 colorMode = Display.COLOR_MODE_DEFAULT;
1072 }
1073 }
1074 display.setRequestedColorModeLocked(colorMode);
1075 }
1076 }
1077
1078 // If we've never recorded stable device stats for this device before and they aren't
1079 // explicitly configured, go ahead and record the stable device stats now based on the status
1080 // of the default display at first boot.
1081 private void recordStableDisplayStatsIfNeededLocked(LogicalDisplay d) {
1082 if (mStableDisplaySize.x <= 0 && mStableDisplaySize.y <= 0) {
1083 DisplayInfo info = d.getDisplayInfoLocked();
1084 setStableDisplaySizeLocked(info.getNaturalWidth(), info.getNaturalHeight());
1085 }
1086 }
1087
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001088 private void recordTopInsetLocked(@Nullable LogicalDisplay d) {
Winson72dbe7e2019-04-29 14:55:30 -07001089 // We must only persist the inset after boot has completed, otherwise we will end up
1090 // overwriting the persisted value before the masking flag has been loaded from the
1091 // resource overlay.
1092 if (!mSystemReady || d == null) {
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001093 return;
1094 }
1095 int topInset = d.getInsets().top;
1096 if (topInset == mDefaultDisplayTopInset) {
1097 return;
1098 }
1099 mDefaultDisplayTopInset = topInset;
1100 SystemProperties.set(PROP_DEFAULT_DISPLAY_TOP_INSET, Integer.toString(topInset));
1101 }
1102
Michael Wrighteedcbf12017-08-16 23:14:54 +01001103 private void setStableDisplaySizeLocked(int width, int height) {
1104 mStableDisplaySize = new Point(width, height);
1105 try {
1106 mPersistentDataStore.setStableDisplaySize(mStableDisplaySize);
1107 } finally {
1108 mPersistentDataStore.saveIfNeeded();
1109 }
1110 }
1111
Dan Gittik122df862018-03-28 16:59:22 +01001112 @VisibleForTesting
1113 Curve getMinimumBrightnessCurveInternal() {
1114 return mMinimumBrightnessCurve;
1115 }
1116
Peiyong Lin277eaff2019-01-16 16:18:22 -08001117 int getPreferredWideGamutColorSpaceIdInternal() {
1118 return mWideColorSpace.getId();
1119 }
1120
Michael Wrighteef0e132017-11-21 17:57:52 +00001121 private void setBrightnessConfigurationForUserInternal(
Dan Gittik7a32fba2018-03-28 12:19:38 +01001122 @Nullable BrightnessConfiguration c, @UserIdInt int userId,
Kenny Guy05ce8092018-01-17 13:44:20 +00001123 @Nullable String packageName) {
Dan Gittik122df862018-03-28 16:59:22 +01001124 validateBrightnessConfiguration(c);
Michael Wrighteef0e132017-11-21 17:57:52 +00001125 final int userSerial = getUserManager().getUserSerialNumber(userId);
1126 synchronized (mSyncRoot) {
1127 try {
Kenny Guy05ce8092018-01-17 13:44:20 +00001128 mPersistentDataStore.setBrightnessConfigurationForUser(c, userSerial,
1129 packageName);
Michael Wrighteef0e132017-11-21 17:57:52 +00001130 } finally {
1131 mPersistentDataStore.saveIfNeeded();
1132 }
1133 if (userId == mCurrentUserId) {
1134 mDisplayPowerController.setBrightnessConfiguration(c);
1135 }
1136 }
1137 }
1138
Dan Gittik122df862018-03-28 16:59:22 +01001139 @VisibleForTesting
1140 void validateBrightnessConfiguration(BrightnessConfiguration config) {
1141 if (config == null) {
1142 return;
1143 }
1144 if (isBrightnessConfigurationTooDark(config)) {
1145 throw new IllegalArgumentException("brightness curve is too dark");
1146 }
1147 }
1148
1149 private boolean isBrightnessConfigurationTooDark(BrightnessConfiguration config) {
1150 Pair<float[], float[]> curve = config.getCurve();
1151 float[] lux = curve.first;
1152 float[] nits = curve.second;
1153 for (int i = 0; i < lux.length; i++) {
1154 if (nits[i] < mMinimumBrightnessSpline.interpolate(lux[i])) {
1155 return true;
1156 }
1157 }
1158 return false;
1159 }
1160
Michael Wrighteef0e132017-11-21 17:57:52 +00001161 private void loadBrightnessConfiguration() {
1162 synchronized (mSyncRoot) {
1163 final int userSerial = getUserManager().getUserSerialNumber(mCurrentUserId);
1164 BrightnessConfiguration config =
1165 mPersistentDataStore.getBrightnessConfiguration(userSerial);
1166 mDisplayPowerController.setBrightnessConfiguration(config);
1167 }
1168 }
1169
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001170 // Updates all existing logical displays given the current set of display devices.
1171 // Removes invalid logical displays.
1172 // Sends notifications if needed.
1173 private boolean updateLogicalDisplaysLocked() {
1174 boolean changed = false;
1175 for (int i = mLogicalDisplays.size(); i-- > 0; ) {
1176 final int displayId = mLogicalDisplays.keyAt(i);
1177 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1178
1179 mTempDisplayInfo.copyFrom(display.getDisplayInfoLocked());
1180 display.updateLocked(mDisplayDevices);
1181 if (!display.isValidLocked()) {
1182 mLogicalDisplays.removeAt(i);
1183 sendDisplayEventLocked(displayId, DisplayManagerGlobal.EVENT_DISPLAY_REMOVED);
1184 changed = true;
1185 } else if (!mTempDisplayInfo.equals(display.getDisplayInfoLocked())) {
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001186 handleLogicalDisplayChanged(displayId, display);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001187 changed = true;
1188 }
1189 }
1190 return changed;
1191 }
1192
Robert Carrae606b42018-02-15 15:36:23 -08001193 private void performTraversalLocked(SurfaceControl.Transaction t) {
Jeff Brownd728bf52012-09-08 18:05:28 -07001194 // Clear all viewports before configuring displays so that we can keep
1195 // track of which ones we have configured.
1196 clearViewportsLocked();
1197
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001198 // Configure each display device.
1199 final int count = mDisplayDevices.size();
1200 for (int i = 0; i < count; i++) {
1201 DisplayDevice device = mDisplayDevices.get(i);
Robert Carrae606b42018-02-15 15:36:23 -08001202 configureDisplayLocked(t, device);
1203 device.performTraversalLocked(t);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001204 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001205
1206 // Tell the input system about these new viewports.
Jeff Brown4ccb8232014-01-16 22:16:42 -08001207 if (mInputManagerInternal != null) {
Jeff Brownd728bf52012-09-08 18:05:28 -07001208 mHandler.sendEmptyMessage(MSG_UPDATE_VIEWPORT);
1209 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001210 }
1211
Michael Wright3f145a22014-07-22 19:46:03 -07001212 private void setDisplayPropertiesInternal(int displayId, boolean hasContent,
Galia Peychevaea945752019-06-26 14:05:12 +02001213 float requestedRefreshRate, int requestedModeId, boolean preferMinimalPostProcessing,
1214 boolean inTraversal) {
Craig Mautner722285e2012-09-07 13:55:58 -07001215 synchronized (mSyncRoot) {
1216 LogicalDisplay display = mLogicalDisplays.get(displayId);
Michael Wright3f145a22014-07-22 19:46:03 -07001217 if (display == null) {
1218 return;
1219 }
1220 if (display.hasContentLocked() != hasContent) {
Jeff Brown33041bd2013-08-02 21:11:14 -07001221 if (DEBUG) {
1222 Slog.d(TAG, "Display " + displayId + " hasContent flag changed: "
1223 + "hasContent=" + hasContent + ", inTraversal=" + inTraversal);
1224 }
1225
Craig Mautner722285e2012-09-07 13:55:58 -07001226 display.setHasContentLocked(hasContent);
Craig Mautner65d11b32012-10-01 13:59:52 -07001227 scheduleTraversalLocked(inTraversal);
Craig Mautner722285e2012-09-07 13:55:58 -07001228 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001229 if (requestedModeId == 0 && requestedRefreshRate != 0) {
1230 // Scan supported modes returned by display.getInfo() to find a mode with the same
1231 // size as the default display mode but with the specified refresh rate instead.
1232 requestedModeId = display.getDisplayInfoLocked().findDefaultModeByRefreshRate(
1233 requestedRefreshRate);
1234 }
Michael Wrighta3dab232019-02-22 16:54:21 +00001235 mDisplayModeDirector.getAppRequestObserver().setAppRequestedMode(
1236 displayId, requestedModeId);
Galia Peychevaea945752019-06-26 14:05:12 +02001237
1238 setPreferMinimalPostProcessingLocked(displayId, preferMinimalPostProcessing);
Craig Mautner722285e2012-09-07 13:55:58 -07001239 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001240 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001241
Filip Gruszczynskid2e86402015-02-19 13:05:03 -08001242 private void setDisplayOffsetsInternal(int displayId, int x, int y) {
1243 synchronized (mSyncRoot) {
1244 LogicalDisplay display = mLogicalDisplays.get(displayId);
1245 if (display == null) {
1246 return;
1247 }
1248 if (display.getDisplayOffsetXLocked() != x
1249 || display.getDisplayOffsetYLocked() != y) {
1250 if (DEBUG) {
1251 Slog.d(TAG, "Display " + displayId + " burn-in offset set to ("
1252 + x + ", " + y + ")");
1253 }
1254 display.setDisplayOffsetsLocked(x, y);
1255 scheduleTraversalLocked(false);
1256 }
1257 }
1258 }
1259
Sam Lin4c3ac2b2019-02-18 04:50:26 -08001260 private void setDisplayScalingDisabledInternal(int displayId, boolean disable) {
1261 synchronized (mSyncRoot) {
1262 final LogicalDisplay display = mLogicalDisplays.get(displayId);
1263 if (display == null) {
1264 return;
1265 }
1266 if (display.isDisplayScalingDisabled() != disable) {
1267 if (DEBUG) {
1268 Slog.d(TAG, "Display " + displayId + " content scaling disabled = " + disable);
1269 }
1270 display.setDisplayScalingDisabledLocked(disable);
1271 scheduleTraversalLocked(false);
1272 }
1273 }
1274 }
1275
Andrii Kulianfb1bf692017-01-17 11:17:34 -08001276 // Updates the lists of UIDs that are present on displays.
1277 private void setDisplayAccessUIDsInternal(SparseArray<IntArray> newDisplayAccessUIDs) {
1278 synchronized (mSyncRoot) {
1279 mDisplayAccessUIDs.clear();
1280 for (int i = newDisplayAccessUIDs.size() - 1; i >= 0; i--) {
1281 mDisplayAccessUIDs.append(newDisplayAccessUIDs.keyAt(i),
1282 newDisplayAccessUIDs.valueAt(i));
1283 }
1284 }
1285 }
1286
1287 // Checks if provided UID's content is present on the display and UID has access to it.
1288 private boolean isUidPresentOnDisplayInternal(int uid, int displayId) {
1289 synchronized (mSyncRoot) {
1290 final IntArray displayUIDs = mDisplayAccessUIDs.get(displayId);
1291 return displayUIDs != null && displayUIDs.indexOf(uid) != -1;
1292 }
1293 }
1294
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001295 @Nullable
1296 private IBinder getDisplayToken(int displayId) {
1297 synchronized (mSyncRoot) {
1298 final LogicalDisplay display = mLogicalDisplays.get(displayId);
1299 if (display != null) {
1300 final DisplayDevice device = display.getPrimaryDisplayDeviceLocked();
1301 if (device != null) {
1302 return device.getDisplayTokenLocked();
1303 }
1304 }
1305 }
1306
1307 return null;
1308 }
1309
Robert Carr66b5664f2019-04-02 14:18:56 -07001310 private SurfaceControl.ScreenshotGraphicBuffer screenshotInternal(int displayId) {
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001311 final IBinder token = getDisplayToken(displayId);
1312 if (token == null) {
Robert Carr66b5664f2019-04-02 14:18:56 -07001313 return null;
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001314 }
Robert Carr66b5664f2019-04-02 14:18:56 -07001315 return SurfaceControl.screenshotToBufferWithSecureLayersUnsafe(
Peiyong Line3e5efd2019-03-21 20:59:47 +00001316 token, new Rect(), 0 /* width */, 0 /* height */,
1317 false /* useIdentityTransform */, 0 /* rotation */);
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001318 }
1319
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001320 @VisibleForTesting
1321 DisplayedContentSamplingAttributes getDisplayedContentSamplingAttributesInternal(
1322 int displayId) {
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001323 final IBinder token = getDisplayToken(displayId);
1324 if (token == null) {
1325 return null;
1326 }
1327 return SurfaceControl.getDisplayedContentSamplingAttributes(token);
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001328 }
1329
1330 @VisibleForTesting
1331 boolean setDisplayedContentSamplingEnabledInternal(
1332 int displayId, boolean enable, int componentMask, int maxFrames) {
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001333 final IBinder token = getDisplayToken(displayId);
1334 if (token == null) {
1335 return false;
1336 }
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001337 return SurfaceControl.setDisplayedContentSamplingEnabled(
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001338 token, enable, componentMask, maxFrames);
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001339 }
1340
1341 @VisibleForTesting
1342 DisplayedContentSample getDisplayedContentSampleInternal(int displayId,
1343 long maxFrames, long timestamp) {
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001344 final IBinder token = getDisplayToken(displayId);
1345 if (token == null) {
1346 return null;
1347 }
1348 return SurfaceControl.getDisplayedContentSample(token, maxFrames, timestamp);
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001349 }
1350
Ana Kruleca74a8642019-11-14 00:51:00 +01001351 private void onDesiredDisplayModeSpecsChangedInternal() {
Michael Wrighta3dab232019-02-22 16:54:21 +00001352 boolean changed = false;
1353 synchronized (mSyncRoot) {
1354 final int count = mLogicalDisplays.size();
1355 for (int i = 0; i < count; i++) {
1356 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1357 int displayId = mLogicalDisplays.keyAt(i);
Ana Kruleca74a8642019-11-14 00:51:00 +01001358 DisplayModeDirector.DesiredDisplayModeSpecs desiredDisplayModeSpecs =
1359 mDisplayModeDirector.getDesiredDisplayModeSpecs(displayId);
1360 DisplayModeDirector.DesiredDisplayModeSpecs existingDesiredDisplayModeSpecs =
1361 display.getDesiredDisplayModeSpecsLocked();
1362 if (DEBUG) {
1363 Slog.i(TAG,
1364 "Comparing display specs: " + desiredDisplayModeSpecs
1365 + ", existing: " + existingDesiredDisplayModeSpecs);
1366 }
1367 if (!desiredDisplayModeSpecs.equals(existingDesiredDisplayModeSpecs)) {
1368 display.setDesiredDisplayModeSpecsLocked(desiredDisplayModeSpecs);
Michael Wrighta3dab232019-02-22 16:54:21 +00001369 changed = true;
1370 }
1371 }
1372 if (changed) {
1373 scheduleTraversalLocked(false);
1374 }
1375 }
1376 }
1377
Jeff Brownd728bf52012-09-08 18:05:28 -07001378 private void clearViewportsLocked() {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001379 mViewports.clear();
Craig Mautner722285e2012-09-07 13:55:58 -07001380 }
1381
Robert Carrae606b42018-02-15 15:36:23 -08001382 private void configureDisplayLocked(SurfaceControl.Transaction t, DisplayDevice device) {
Jeff Brownd14c8c92014-01-07 18:13:09 -08001383 final DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
1384 final boolean ownContent = (info.flags & DisplayDeviceInfo.FLAG_OWN_CONTENT_ONLY) != 0;
Jeff Browna506a6e2013-06-04 00:02:38 -07001385
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001386 // Find the logical display that the display device is showing.
Jeff Brownd14c8c92014-01-07 18:13:09 -08001387 // Certain displays only ever show their own content.
Craig Mautner722285e2012-09-07 13:55:58 -07001388 LogicalDisplay display = findLogicalDisplayForDeviceLocked(device);
Jeff Brownd14c8c92014-01-07 18:13:09 -08001389 if (!ownContent) {
Jeff Browna506a6e2013-06-04 00:02:38 -07001390 if (display != null && !display.hasContentLocked()) {
1391 // If the display does not have any content of its own, then
1392 // automatically mirror the default logical display contents.
1393 display = null;
1394 }
1395 if (display == null) {
1396 display = mLogicalDisplays.get(Display.DEFAULT_DISPLAY);
1397 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001398 }
1399
1400 // Apply the logical display configuration to the display device.
1401 if (display == null) {
1402 // TODO: no logical display for the device, blank it
Jeff Brownd728bf52012-09-08 18:05:28 -07001403 Slog.w(TAG, "Missing logical display to use for physical display device: "
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001404 + device.getDisplayDeviceInfoLocked());
Jeff Brownd728bf52012-09-08 18:05:28 -07001405 return;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001406 }
Robert Carrae606b42018-02-15 15:36:23 -08001407 display.configureDisplayLocked(t, device, info.state == Display.STATE_OFF);
Arthur Hung41e81e72018-10-31 18:04:56 +08001408 final int viewportType;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001409 // Update the corresponding viewport.
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001410 if ((info.flags & DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY) != 0) {
Arthur Hung41e81e72018-10-31 18:04:56 +08001411 viewportType = VIEWPORT_INTERNAL;
1412 } else if (info.touch == DisplayDeviceInfo.TOUCH_EXTERNAL) {
1413 viewportType = VIEWPORT_EXTERNAL;
1414 } else if (info.touch == DisplayDeviceInfo.TOUCH_VIRTUAL
1415 && !TextUtils.isEmpty(info.uniqueId)) {
1416 viewportType = VIEWPORT_VIRTUAL;
1417 } else {
Arthur Hung46c4e582019-02-12 15:55:28 +08001418 Slog.i(TAG, "Display " + info + " does not support input device matching.");
Arthur Hung41e81e72018-10-31 18:04:56 +08001419 return;
Jeff Brownd728bf52012-09-08 18:05:28 -07001420 }
Santos Cordonee8931e2017-04-05 10:31:15 -07001421
Arthur Hung41e81e72018-10-31 18:04:56 +08001422 populateViewportLocked(viewportType, display.getDisplayIdLocked(), device, info.uniqueId);
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001423 }
1424
1425 /**
1426 * Get internal or external viewport. Create it if does not currently exist.
1427 * @param viewportType - either INTERNAL or EXTERNAL
1428 * @return the viewport with the requested type
1429 */
Arthur Hung41e81e72018-10-31 18:04:56 +08001430 private DisplayViewport getViewportLocked(int viewportType, String uniqueId) {
1431 if (viewportType != VIEWPORT_INTERNAL && viewportType != VIEWPORT_EXTERNAL
1432 && viewportType != VIEWPORT_VIRTUAL) {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001433 Slog.wtf(TAG, "Cannot call getViewportByTypeLocked for type "
1434 + DisplayViewport.typeToString(viewportType));
1435 return null;
1436 }
Arthur Hung41e81e72018-10-31 18:04:56 +08001437
1438 // Only allow a single INTERNAL or EXTERNAL viewport by forcing their uniqueIds
1439 // to be identical (in particular, empty).
1440 // TODO (b/116824030) allow multiple EXTERNAL viewports and remove this function.
1441 if (viewportType != VIEWPORT_VIRTUAL) {
1442 uniqueId = "";
1443 }
1444
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001445 DisplayViewport viewport;
1446 final int count = mViewports.size();
1447 for (int i = 0; i < count; i++) {
1448 viewport = mViewports.get(i);
Arthur Hung41e81e72018-10-31 18:04:56 +08001449 if (viewport.type == viewportType && uniqueId.equals(viewport.uniqueId)) {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001450 return viewport;
1451 }
1452 }
1453
Arthur Hung41e81e72018-10-31 18:04:56 +08001454 // Creates the viewport if none exists.
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001455 viewport = new DisplayViewport();
1456 viewport.type = viewportType;
Arthur Hung41e81e72018-10-31 18:04:56 +08001457 viewport.uniqueId = uniqueId;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001458 mViewports.add(viewport);
1459 return viewport;
1460 }
1461
Arthur Hung41e81e72018-10-31 18:04:56 +08001462 private void populateViewportLocked(int viewportType,
1463 int displayId, DisplayDevice device, String uniqueId) {
1464 final DisplayViewport viewport = getViewportLocked(viewportType, uniqueId);
Jeff Brownd728bf52012-09-08 18:05:28 -07001465 device.populateViewportLocked(viewport);
Arthur Hung41e81e72018-10-31 18:04:56 +08001466 viewport.valid = true;
1467 viewport.displayId = displayId;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001468 }
1469
1470 private LogicalDisplay findLogicalDisplayForDeviceLocked(DisplayDevice device) {
1471 final int count = mLogicalDisplays.size();
1472 for (int i = 0; i < count; i++) {
1473 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1474 if (display.getPrimaryDisplayDeviceLocked() == device) {
1475 return display;
1476 }
1477 }
1478 return null;
1479 }
1480
Jeff Brownbd6e1502012-08-28 03:27:37 -07001481 private void sendDisplayEventLocked(int displayId, int event) {
1482 Message msg = mHandler.obtainMessage(MSG_DELIVER_DISPLAY_EVENT, displayId, event);
1483 mHandler.sendMessage(msg);
1484 }
1485
Robert Carrae606b42018-02-15 15:36:23 -08001486 // Requests that performTraversals be called at a
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001487 // later time to apply changes to surfaces and displays.
Craig Mautner65d11b32012-10-01 13:59:52 -07001488 private void scheduleTraversalLocked(boolean inTraversal) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001489 if (!mPendingTraversal && mWindowManagerInternal != null) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001490 mPendingTraversal = true;
Craig Mautner65d11b32012-10-01 13:59:52 -07001491 if (!inTraversal) {
1492 mHandler.sendEmptyMessage(MSG_REQUEST_TRAVERSAL);
1493 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001494 }
1495 }
1496
1497 // Runs on Handler thread.
1498 // Delivers display event notifications to callbacks.
Jeff Brownbd6e1502012-08-28 03:27:37 -07001499 private void deliverDisplayEvent(int displayId, int event) {
1500 if (DEBUG) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001501 Slog.d(TAG, "Delivering display event: displayId="
1502 + displayId + ", event=" + event);
Jeff Brownfa25bf52012-07-23 19:26:30 -07001503 }
Jeff Brownfa25bf52012-07-23 19:26:30 -07001504
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001505 // Grab the lock and copy the callbacks.
Jeff Brownbd6e1502012-08-28 03:27:37 -07001506 final int count;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001507 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -07001508 count = mCallbacks.size();
1509 mTempCallbacks.clear();
1510 for (int i = 0; i < count; i++) {
1511 mTempCallbacks.add(mCallbacks.valueAt(i));
Craig Mautner4f67ba62012-08-02 11:23:00 -07001512 }
Jeff Brownbd6e1502012-08-28 03:27:37 -07001513 }
Craig Mautner4f67ba62012-08-02 11:23:00 -07001514
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001515 // After releasing the lock, send the notifications out.
Jeff Brownbd6e1502012-08-28 03:27:37 -07001516 for (int i = 0; i < count; i++) {
1517 mTempCallbacks.get(i).notifyDisplayEventAsync(displayId, event);
1518 }
1519 mTempCallbacks.clear();
Craig Mautner4f67ba62012-08-02 11:23:00 -07001520 }
1521
Michael Wrightc39d47a2014-07-08 18:07:36 -07001522 private IMediaProjectionManager getProjectionService() {
1523 if (mProjectionService == null) {
1524 IBinder b = ServiceManager.getService(Context.MEDIA_PROJECTION_SERVICE);
1525 mProjectionService = IMediaProjectionManager.Stub.asInterface(b);
1526 }
1527 return mProjectionService;
1528 }
1529
Michael Wrighteef0e132017-11-21 17:57:52 +00001530 private UserManager getUserManager() {
1531 return mContext.getSystemService(UserManager.class);
1532 }
1533
Jeff Brown4ccb8232014-01-16 22:16:42 -08001534 private void dumpInternal(PrintWriter pw) {
Jeff Brownbd6e1502012-08-28 03:27:37 -07001535 pw.println("DISPLAY MANAGER (dumpsys display)");
Jeff Brownfa25bf52012-07-23 19:26:30 -07001536
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001537 synchronized (mSyncRoot) {
Jeff Brown9e316a12012-10-08 19:17:06 -07001538 pw.println(" mOnlyCode=" + mOnlyCore);
1539 pw.println(" mSafeMode=" + mSafeMode);
1540 pw.println(" mPendingTraversal=" + mPendingTraversal);
Jeff Brown037c33e2014-04-09 00:31:55 -07001541 pw.println(" mGlobalDisplayState=" + Display.stateToString(mGlobalDisplayState));
Jeff Brown9e316a12012-10-08 19:17:06 -07001542 pw.println(" mNextNonDefaultDisplayId=" + mNextNonDefaultDisplayId);
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001543 pw.println(" mViewports=" + mViewports);
Damien Bargiacchi4364bbf2016-11-01 21:44:20 -07001544 pw.println(" mDefaultDisplayDefaultColorMode=" + mDefaultDisplayDefaultColorMode);
Jeff Brown27f1d672012-10-17 18:32:34 -07001545 pw.println(" mSingleDisplayDemoMode=" + mSingleDisplayDemoMode);
Jeff Brownce468a32013-11-21 16:42:03 -08001546 pw.println(" mWifiDisplayScanRequestCount=" + mWifiDisplayScanRequestCount);
Michael Wrighteedcbf12017-08-16 23:14:54 +01001547 pw.println(" mStableDisplaySize=" + mStableDisplaySize);
Kenny Guy2047db92019-02-21 13:04:05 +00001548 pw.println(" mMinimumBrightnessCurve=" + mMinimumBrightnessCurve);
Jeff Brown9e316a12012-10-08 19:17:06 -07001549
Jeff Brownbd6e1502012-08-28 03:27:37 -07001550 IndentingPrintWriter ipw = new IndentingPrintWriter(pw, " ");
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001551 ipw.increaseIndent();
Jeff Brownbd6e1502012-08-28 03:27:37 -07001552
1553 pw.println();
1554 pw.println("Display Adapters: size=" + mDisplayAdapters.size());
Jeff Brown848c2dc2012-08-19 20:18:08 -07001555 for (DisplayAdapter adapter : mDisplayAdapters) {
Jeff Brownbd6e1502012-08-28 03:27:37 -07001556 pw.println(" " + adapter.getName());
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001557 adapter.dumpLocked(ipw);
Jeff Brown848c2dc2012-08-19 20:18:08 -07001558 }
Craig Mautner9de49362012-08-02 14:30:30 -07001559
Jeff Brownbd6e1502012-08-28 03:27:37 -07001560 pw.println();
1561 pw.println("Display Devices: size=" + mDisplayDevices.size());
1562 for (DisplayDevice device : mDisplayDevices) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001563 pw.println(" " + device.getDisplayDeviceInfoLocked());
1564 device.dumpLocked(ipw);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001565 }
1566
1567 final int logicalDisplayCount = mLogicalDisplays.size();
1568 pw.println();
1569 pw.println("Logical Displays: size=" + logicalDisplayCount);
1570 for (int i = 0; i < logicalDisplayCount; i++) {
1571 int displayId = mLogicalDisplays.keyAt(i);
1572 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1573 pw.println(" Display " + displayId + ":");
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001574 display.dumpLocked(ipw);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001575 }
Jeff Brownce468a32013-11-21 16:42:03 -08001576
Michael Wrighta3dab232019-02-22 16:54:21 +00001577 pw.println();
1578 mDisplayModeDirector.dump(pw);
1579
Jeff Brownce468a32013-11-21 16:42:03 -08001580 final int callbackCount = mCallbacks.size();
1581 pw.println();
1582 pw.println("Callbacks: size=" + callbackCount);
1583 for (int i = 0; i < callbackCount; i++) {
1584 CallbackRecord callback = mCallbacks.valueAt(i);
1585 pw.println(" " + i + ": mPid=" + callback.mPid
1586 + ", mWifiDisplayScanRequested=" + callback.mWifiDisplayScanRequested);
1587 }
Jeff Brownad9ef192014-04-08 17:26:30 -07001588
1589 if (mDisplayPowerController != null) {
1590 mDisplayPowerController.dump(pw);
1591 }
Michael Wright1c9977b2016-07-12 13:30:10 -07001592
1593 pw.println();
1594 mPersistentDataStore.dump(pw);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001595 }
1596 }
1597
Dan Gittik122df862018-03-28 16:59:22 +01001598 private static float[] getFloatArray(TypedArray array) {
1599 int length = array.length();
1600 float[] floatArray = new float[length];
1601 for (int i = 0; i < length; i++) {
1602 floatArray[i] = array.getFloat(i, Float.NaN);
1603 }
1604 array.recycle();
1605 return floatArray;
1606 }
1607
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001608 /**
1609 * This is the object that everything in the display manager locks on.
1610 * We make it an inner class within the {@link DisplayManagerService} to so that it is
1611 * clear that the object belongs to the display manager service and that it is
1612 * a unique object with a special purpose.
1613 */
1614 public static final class SyncRoot {
1615 }
1616
Santos Cordonee8931e2017-04-05 10:31:15 -07001617 @VisibleForTesting
1618 static class Injector {
1619 VirtualDisplayAdapter getVirtualDisplayAdapter(SyncRoot syncRoot, Context context,
1620 Handler handler, DisplayAdapter.Listener displayAdapterListener) {
1621 return new VirtualDisplayAdapter(syncRoot, context, handler, displayAdapterListener);
1622 }
Santos Cordonc22c5632017-06-21 16:03:49 -07001623
1624 long getDefaultDisplayDelayTimeout() {
1625 return WAIT_FOR_DEFAULT_DISPLAY_TIMEOUT;
1626 }
Santos Cordonee8931e2017-04-05 10:31:15 -07001627 }
1628
Alex Sakhartchouk879d24f2017-06-20 22:01:19 -04001629 @VisibleForTesting
1630 DisplayDeviceInfo getDisplayDeviceInfoInternal(int displayId) {
1631 synchronized (mSyncRoot) {
1632 LogicalDisplay display = mLogicalDisplays.get(displayId);
1633 if (display != null) {
1634 DisplayDevice displayDevice = display.getPrimaryDisplayDeviceLocked();
1635 return displayDevice.getDisplayDeviceInfoLocked();
1636 }
1637 return null;
1638 }
1639 }
1640
Jeff Brownbd6e1502012-08-28 03:27:37 -07001641 private final class DisplayManagerHandler extends Handler {
1642 public DisplayManagerHandler(Looper looper) {
1643 super(looper, null, true /*async*/);
Jeff Brown848c2dc2012-08-19 20:18:08 -07001644 }
Jeff Brownbf5740e2012-08-19 23:20:02 -07001645
Jeff Brownbd6e1502012-08-28 03:27:37 -07001646 @Override
1647 public void handleMessage(Message msg) {
1648 switch (msg.what) {
Santos Cordonc22c5632017-06-21 16:03:49 -07001649 case MSG_REGISTER_DEFAULT_DISPLAY_ADAPTERS:
1650 registerDefaultDisplayAdapters();
Jeff Brownbd6e1502012-08-28 03:27:37 -07001651 break;
1652
1653 case MSG_REGISTER_ADDITIONAL_DISPLAY_ADAPTERS:
1654 registerAdditionalDisplayAdapters();
1655 break;
1656
1657 case MSG_DELIVER_DISPLAY_EVENT:
1658 deliverDisplayEvent(msg.arg1, msg.arg2);
1659 break;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001660
1661 case MSG_REQUEST_TRAVERSAL:
Jeff Brown4ccb8232014-01-16 22:16:42 -08001662 mWindowManagerInternal.requestTraversalFromDisplayManager();
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001663 break;
Jeff Brownd728bf52012-09-08 18:05:28 -07001664
1665 case MSG_UPDATE_VIEWPORT: {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001666 final boolean changed;
Jeff Brownd728bf52012-09-08 18:05:28 -07001667 synchronized (mSyncRoot) {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001668 changed = !mTempViewports.equals(mViewports);
1669 if (changed) {
1670 mTempViewports.clear();
1671 for (DisplayViewport d : mViewports) {
1672 mTempViewports.add(d.makeCopy());
1673 }
Santos Cordonee8931e2017-04-05 10:31:15 -07001674 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001675 }
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001676 if (changed) {
1677 mInputManagerInternal.setDisplayViewports(mTempViewports);
1678 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001679 break;
1680 }
Kenny Guy22bd0442017-10-26 00:15:54 +01001681
Michael Wrighteef0e132017-11-21 17:57:52 +00001682 case MSG_LOAD_BRIGHTNESS_CONFIGURATION:
1683 loadBrightnessConfiguration();
1684 break;
Jeff Brownbd6e1502012-08-28 03:27:37 -07001685 }
1686 }
1687 }
1688
1689 private final class DisplayAdapterListener implements DisplayAdapter.Listener {
1690 @Override
1691 public void onDisplayDeviceEvent(DisplayDevice device, int event) {
1692 switch (event) {
1693 case DisplayAdapter.DISPLAY_DEVICE_EVENT_ADDED:
1694 handleDisplayDeviceAdded(device);
1695 break;
1696
1697 case DisplayAdapter.DISPLAY_DEVICE_EVENT_CHANGED:
1698 handleDisplayDeviceChanged(device);
1699 break;
1700
1701 case DisplayAdapter.DISPLAY_DEVICE_EVENT_REMOVED:
1702 handleDisplayDeviceRemoved(device);
1703 break;
1704 }
1705 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001706
1707 @Override
1708 public void onTraversalRequested() {
1709 synchronized (mSyncRoot) {
Craig Mautner65d11b32012-10-01 13:59:52 -07001710 scheduleTraversalLocked(false);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001711 }
1712 }
Jeff Brownbd6e1502012-08-28 03:27:37 -07001713 }
1714
1715 private final class CallbackRecord implements DeathRecipient {
Jeff Brownce468a32013-11-21 16:42:03 -08001716 public final int mPid;
Jeff Brownbd6e1502012-08-28 03:27:37 -07001717 private final IDisplayManagerCallback mCallback;
1718
Jeff Brownce468a32013-11-21 16:42:03 -08001719 public boolean mWifiDisplayScanRequested;
1720
Jeff Brownbd6e1502012-08-28 03:27:37 -07001721 public CallbackRecord(int pid, IDisplayManagerCallback callback) {
1722 mPid = pid;
1723 mCallback = callback;
1724 }
1725
1726 @Override
1727 public void binderDied() {
1728 if (DEBUG) {
1729 Slog.d(TAG, "Display listener for pid " + mPid + " died.");
1730 }
Jeff Brownce468a32013-11-21 16:42:03 -08001731 onCallbackDied(this);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001732 }
1733
1734 public void notifyDisplayEventAsync(int displayId, int event) {
1735 try {
1736 mCallback.onDisplayEvent(displayId, event);
1737 } catch (RemoteException ex) {
1738 Slog.w(TAG, "Failed to notify process "
1739 + mPid + " that displays changed, assuming it died.", ex);
1740 binderDied();
1741 }
1742 }
1743 }
Jeff Brown4ccb8232014-01-16 22:16:42 -08001744
Santos Cordonee8931e2017-04-05 10:31:15 -07001745 @VisibleForTesting
1746 final class BinderService extends IDisplayManager.Stub {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001747 /**
1748 * Returns information about the specified logical display.
1749 *
1750 * @param displayId The logical display id.
lumarkec75b422019-01-07 15:58:38 +08001751 * @return The logical display info, return {@code null} if the display does not exist or
1752 * the calling UID isn't present on the display. The returned object must be treated as
1753 * immutable.
Jeff Brown4ccb8232014-01-16 22:16:42 -08001754 */
1755 @Override // Binder call
1756 public DisplayInfo getDisplayInfo(int displayId) {
1757 final int callingUid = Binder.getCallingUid();
1758 final long token = Binder.clearCallingIdentity();
1759 try {
1760 return getDisplayInfoInternal(displayId, callingUid);
1761 } finally {
1762 Binder.restoreCallingIdentity(token);
1763 }
1764 }
1765
1766 /**
1767 * Returns the list of all display ids.
1768 */
1769 @Override // Binder call
1770 public int[] getDisplayIds() {
1771 final int callingUid = Binder.getCallingUid();
1772 final long token = Binder.clearCallingIdentity();
1773 try {
1774 return getDisplayIdsInternal(callingUid);
1775 } finally {
1776 Binder.restoreCallingIdentity(token);
1777 }
1778 }
1779
lumarkec75b422019-01-07 15:58:38 +08001780 @Override // Binder call
1781 public boolean isUidPresentOnDisplay(int uid, int displayId) {
1782 final long token = Binder.clearCallingIdentity();
1783 try {
1784 return isUidPresentOnDisplayInternal(uid, displayId);
1785 } finally {
1786 Binder.restoreCallingIdentity(token);
1787 }
1788 }
1789
Michael Wrighteedcbf12017-08-16 23:14:54 +01001790 /**
1791 * Returns the stable device display size, in pixels.
1792 */
1793 @Override // Binder call
1794 public Point getStableDisplaySize() {
1795 final long token = Binder.clearCallingIdentity();
1796 try {
1797 return getStableDisplaySizeInternal();
1798 } finally {
1799 Binder.restoreCallingIdentity(token);
1800 }
1801 }
1802
Jeff Brown4ccb8232014-01-16 22:16:42 -08001803 @Override // Binder call
1804 public void registerCallback(IDisplayManagerCallback callback) {
1805 if (callback == null) {
1806 throw new IllegalArgumentException("listener must not be null");
1807 }
1808
1809 final int callingPid = Binder.getCallingPid();
1810 final long token = Binder.clearCallingIdentity();
1811 try {
1812 registerCallbackInternal(callback, callingPid);
1813 } finally {
1814 Binder.restoreCallingIdentity(token);
1815 }
1816 }
1817
1818 @Override // Binder call
1819 public void startWifiDisplayScan() {
1820 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1821 "Permission required to start wifi display scans");
1822
1823 final int callingPid = Binder.getCallingPid();
1824 final long token = Binder.clearCallingIdentity();
1825 try {
1826 startWifiDisplayScanInternal(callingPid);
1827 } finally {
1828 Binder.restoreCallingIdentity(token);
1829 }
1830 }
1831
1832 @Override // Binder call
1833 public void stopWifiDisplayScan() {
1834 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1835 "Permission required to stop wifi display scans");
1836
1837 final int callingPid = Binder.getCallingPid();
1838 final long token = Binder.clearCallingIdentity();
1839 try {
1840 stopWifiDisplayScanInternal(callingPid);
1841 } finally {
1842 Binder.restoreCallingIdentity(token);
1843 }
1844 }
1845
1846 @Override // Binder call
1847 public void connectWifiDisplay(String address) {
1848 if (address == null) {
1849 throw new IllegalArgumentException("address must not be null");
1850 }
1851 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1852 "Permission required to connect to a wifi display");
1853
1854 final long token = Binder.clearCallingIdentity();
1855 try {
1856 connectWifiDisplayInternal(address);
1857 } finally {
1858 Binder.restoreCallingIdentity(token);
1859 }
1860 }
1861
1862 @Override // Binder call
1863 public void disconnectWifiDisplay() {
1864 // This request does not require special permissions.
1865 // Any app can request disconnection from the currently active wifi display.
1866 // This exception should no longer be needed once wifi display control moves
1867 // to the media router service.
1868
1869 final long token = Binder.clearCallingIdentity();
1870 try {
1871 disconnectWifiDisplayInternal();
1872 } finally {
1873 Binder.restoreCallingIdentity(token);
1874 }
1875 }
1876
1877 @Override // Binder call
1878 public void renameWifiDisplay(String address, String alias) {
1879 if (address == null) {
1880 throw new IllegalArgumentException("address must not be null");
1881 }
1882 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1883 "Permission required to rename to a wifi display");
1884
1885 final long token = Binder.clearCallingIdentity();
1886 try {
1887 renameWifiDisplayInternal(address, alias);
1888 } finally {
1889 Binder.restoreCallingIdentity(token);
1890 }
1891 }
1892
1893 @Override // Binder call
1894 public void forgetWifiDisplay(String address) {
1895 if (address == null) {
1896 throw new IllegalArgumentException("address must not be null");
1897 }
1898 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1899 "Permission required to forget to a wifi display");
1900
1901 final long token = Binder.clearCallingIdentity();
1902 try {
1903 forgetWifiDisplayInternal(address);
1904 } finally {
1905 Binder.restoreCallingIdentity(token);
1906 }
1907 }
1908
1909 @Override // Binder call
1910 public void pauseWifiDisplay() {
1911 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1912 "Permission required to pause a wifi display session");
1913
1914 final long token = Binder.clearCallingIdentity();
1915 try {
1916 pauseWifiDisplayInternal();
1917 } finally {
1918 Binder.restoreCallingIdentity(token);
1919 }
1920 }
1921
1922 @Override // Binder call
1923 public void resumeWifiDisplay() {
1924 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1925 "Permission required to resume a wifi display session");
1926
1927 final long token = Binder.clearCallingIdentity();
1928 try {
1929 resumeWifiDisplayInternal();
1930 } finally {
1931 Binder.restoreCallingIdentity(token);
1932 }
1933 }
1934
1935 @Override // Binder call
1936 public WifiDisplayStatus getWifiDisplayStatus() {
1937 // This request does not require special permissions.
1938 // Any app can get information about available wifi displays.
1939
1940 final long token = Binder.clearCallingIdentity();
1941 try {
1942 return getWifiDisplayStatusInternal();
1943 } finally {
1944 Binder.restoreCallingIdentity(token);
1945 }
1946 }
1947
1948 @Override // Binder call
Michael Wright1c9977b2016-07-12 13:30:10 -07001949 public void requestColorMode(int displayId, int colorMode) {
Michael Wright58e829f2015-09-15 00:13:26 +01001950 mContext.enforceCallingOrSelfPermission(
Michael Wright1c9977b2016-07-12 13:30:10 -07001951 Manifest.permission.CONFIGURE_DISPLAY_COLOR_MODE,
1952 "Permission required to change the display color mode");
Michael Wright58e829f2015-09-15 00:13:26 +01001953 final long token = Binder.clearCallingIdentity();
1954 try {
Michael Wright1c9977b2016-07-12 13:30:10 -07001955 requestColorModeInternal(displayId, colorMode);
Michael Wright58e829f2015-09-15 00:13:26 +01001956 } finally {
1957 Binder.restoreCallingIdentity(token);
1958 }
1959 }
1960
1961 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07001962 public int createVirtualDisplay(IVirtualDisplayCallback callback,
Michael Wrightc39d47a2014-07-08 18:07:36 -07001963 IMediaProjection projection, String packageName, String name,
Santos Cordonee8931e2017-04-05 10:31:15 -07001964 int width, int height, int densityDpi, Surface surface, int flags,
1965 String uniqueId) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001966 final int callingUid = Binder.getCallingUid();
1967 if (!validatePackageName(callingUid, packageName)) {
1968 throw new SecurityException("packageName must match the calling uid");
1969 }
Michael Wright75ee9fc2014-09-01 19:55:22 -07001970 if (callback == null) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001971 throw new IllegalArgumentException("appToken must not be null");
1972 }
1973 if (TextUtils.isEmpty(name)) {
1974 throw new IllegalArgumentException("name must be non-null and non-empty");
1975 }
1976 if (width <= 0 || height <= 0 || densityDpi <= 0) {
1977 throw new IllegalArgumentException("width, height, and densityDpi must be "
1978 + "greater than 0");
1979 }
Pablo Ceballoseb3370d2016-08-31 15:00:17 -07001980 if (surface != null && surface.isSingleBuffered()) {
Pablo Ceballosaff2f942016-07-29 14:49:55 -07001981 throw new IllegalArgumentException("Surface can't be single-buffered");
1982 }
Michael Wrightc39d47a2014-07-08 18:07:36 -07001983
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001984 if ((flags & VIRTUAL_DISPLAY_FLAG_PUBLIC) != 0) {
1985 flags |= VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR;
1986
1987 // Public displays can't be allowed to show content when locked.
Andrii Kulian7211d2e2017-01-27 15:58:05 -08001988 if ((flags & VIRTUAL_DISPLAY_FLAG_CAN_SHOW_WITH_INSECURE_KEYGUARD) != 0) {
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001989 throw new IllegalArgumentException(
1990 "Public display must not be marked as SHOW_WHEN_LOCKED_INSECURE");
1991 }
Michael Wright6720be42014-07-29 19:14:16 -07001992 }
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001993 if ((flags & VIRTUAL_DISPLAY_FLAG_OWN_CONTENT_ONLY) != 0) {
1994 flags &= ~VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR;
Michael Wright6720be42014-07-29 19:14:16 -07001995 }
1996
Michael Wrightc39d47a2014-07-08 18:07:36 -07001997 if (projection != null) {
1998 try {
1999 if (!getProjectionService().isValidMediaProjection(projection)) {
2000 throw new SecurityException("Invalid media projection");
2001 }
Michael Wright6720be42014-07-29 19:14:16 -07002002 flags = projection.applyVirtualDisplayFlags(flags);
Michael Wrightc39d47a2014-07-08 18:07:36 -07002003 } catch (RemoteException e) {
Michael Wright6720be42014-07-29 19:14:16 -07002004 throw new SecurityException("unable to validate media projection or flags");
Michael Wrightc39d47a2014-07-08 18:07:36 -07002005 }
2006 }
2007
Michael Wright6720be42014-07-29 19:14:16 -07002008 if (callingUid != Process.SYSTEM_UID &&
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08002009 (flags & VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR) != 0) {
Michael Wrightc39d47a2014-07-08 18:07:36 -07002010 if (!canProjectVideo(projection)) {
2011 throw new SecurityException("Requires CAPTURE_VIDEO_OUTPUT or "
2012 + "CAPTURE_SECURE_VIDEO_OUTPUT permission, or an appropriate "
2013 + "MediaProjection token in order to create a screen sharing virtual "
2014 + "display.");
2015 }
2016 }
Santos Cordonb6992f22018-01-30 14:51:20 -08002017 if (callingUid != Process.SYSTEM_UID && (flags & VIRTUAL_DISPLAY_FLAG_SECURE) != 0) {
Michael Wrightc39d47a2014-07-08 18:07:36 -07002018 if (!canProjectSecureVideo(projection)) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08002019 throw new SecurityException("Requires CAPTURE_SECURE_VIDEO_OUTPUT "
Michael Wrightc39d47a2014-07-08 18:07:36 -07002020 + "or an appropriate MediaProjection token to create a "
2021 + "secure virtual display.");
Jeff Brown4ccb8232014-01-16 22:16:42 -08002022 }
2023 }
2024
Chilun67a379b2019-04-11 19:49:42 +08002025 // Sometimes users can have sensitive information in system decoration windows. An app
2026 // could create a virtual display with system decorations support and read the user info
2027 // from the surface.
2028 // We should only allow adding flag VIRTUAL_DISPLAY_FLAG_SHOULD_SHOW_SYSTEM_DECORATIONS
2029 // to virtual displays that are owned by the system.
2030 if (callingUid != Process.SYSTEM_UID
2031 && (flags & VIRTUAL_DISPLAY_FLAG_SHOULD_SHOW_SYSTEM_DECORATIONS) != 0) {
2032 if (!checkCallingPermission(INTERNAL_SYSTEM_WINDOW, "createVirtualDisplay()")) {
2033 throw new SecurityException("Requires INTERNAL_SYSTEM_WINDOW permission");
2034 }
2035 }
2036
Jeff Brown4ccb8232014-01-16 22:16:42 -08002037 final long token = Binder.clearCallingIdentity();
2038 try {
Santos Cordonee8931e2017-04-05 10:31:15 -07002039 return createVirtualDisplayInternal(callback, projection, callingUid, packageName,
2040 name, width, height, densityDpi, surface, flags, uniqueId);
Jeff Brown4ccb8232014-01-16 22:16:42 -08002041 } finally {
2042 Binder.restoreCallingIdentity(token);
2043 }
2044 }
2045
2046 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07002047 public void resizeVirtualDisplay(IVirtualDisplayCallback callback,
Michael Wright01e840f2014-06-26 16:03:25 -07002048 int width, int height, int densityDpi) {
Jeff Chang01baf6c2019-08-20 16:21:25 +08002049 if (width <= 0 || height <= 0 || densityDpi <= 0) {
2050 throw new IllegalArgumentException("width, height, and densityDpi must be "
2051 + "greater than 0");
2052 }
Michael Wright01e840f2014-06-26 16:03:25 -07002053 final long token = Binder.clearCallingIdentity();
2054 try {
Michael Wright75ee9fc2014-09-01 19:55:22 -07002055 resizeVirtualDisplayInternal(callback.asBinder(), width, height, densityDpi);
Michael Wright01e840f2014-06-26 16:03:25 -07002056 } finally {
2057 Binder.restoreCallingIdentity(token);
2058 }
2059 }
2060
2061 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07002062 public void setVirtualDisplaySurface(IVirtualDisplayCallback callback, Surface surface) {
Pablo Ceballoseb3370d2016-08-31 15:00:17 -07002063 if (surface != null && surface.isSingleBuffered()) {
2064 throw new IllegalArgumentException("Surface can't be single-buffered");
2065 }
Jeff Brown92207df2014-04-16 13:16:07 -07002066 final long token = Binder.clearCallingIdentity();
2067 try {
Michael Wright75ee9fc2014-09-01 19:55:22 -07002068 setVirtualDisplaySurfaceInternal(callback.asBinder(), surface);
Jeff Brown92207df2014-04-16 13:16:07 -07002069 } finally {
2070 Binder.restoreCallingIdentity(token);
2071 }
2072 }
2073
2074 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07002075 public void releaseVirtualDisplay(IVirtualDisplayCallback callback) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08002076 final long token = Binder.clearCallingIdentity();
2077 try {
Michael Wright75ee9fc2014-09-01 19:55:22 -07002078 releaseVirtualDisplayInternal(callback.asBinder());
Jeff Brown4ccb8232014-01-16 22:16:42 -08002079 } finally {
2080 Binder.restoreCallingIdentity(token);
2081 }
2082 }
2083
2084 @Override // Binder call
chaviwda4c6942018-11-07 15:52:56 -08002085 public void setVirtualDisplayState(IVirtualDisplayCallback callback, boolean isOn) {
2086 final long token = Binder.clearCallingIdentity();
2087 try {
2088 setVirtualDisplayStateInternal(callback.asBinder(), isOn);
2089 } finally {
2090 Binder.restoreCallingIdentity(token);
2091 }
2092 }
2093
2094 @Override // Binder call
Jeff Brown4ccb8232014-01-16 22:16:42 -08002095 public void dump(FileDescriptor fd, final PrintWriter pw, String[] args) {
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -06002096 if (!DumpUtils.checkDumpPermission(mContext, TAG, pw)) return;
Jeff Brown4ccb8232014-01-16 22:16:42 -08002097
2098 final long token = Binder.clearCallingIdentity();
2099 try {
2100 dumpInternal(pw);
2101 } finally {
2102 Binder.restoreCallingIdentity(token);
2103 }
2104 }
2105
Kenny Guy22bd0442017-10-26 00:15:54 +01002106 @Override // Binder call
Kenny Guy29aa30e2017-11-30 13:43:46 +00002107 public ParceledListSlice<BrightnessChangeEvent> getBrightnessEvents(String callingPackage) {
Kenny Guy22bd0442017-10-26 00:15:54 +01002108 mContext.enforceCallingOrSelfPermission(
2109 Manifest.permission.BRIGHTNESS_SLIDER_USAGE,
2110 "Permission to read brightness events.");
Kenny Guy29aa30e2017-11-30 13:43:46 +00002111
2112 final int callingUid = Binder.getCallingUid();
2113 AppOpsManager appOpsManager = mContext.getSystemService(AppOpsManager.class);
Jeff Sharkeyd9311192018-04-16 16:50:34 +00002114 final int mode = appOpsManager.noteOp(AppOpsManager.OP_GET_USAGE_STATS,
Kenny Guy29aa30e2017-11-30 13:43:46 +00002115 callingUid, callingPackage);
2116 final boolean hasUsageStats;
2117 if (mode == AppOpsManager.MODE_DEFAULT) {
2118 // The default behavior here is to check if PackageManager has given the app
2119 // permission.
2120 hasUsageStats = mContext.checkCallingPermission(
2121 Manifest.permission.PACKAGE_USAGE_STATS)
2122 == PackageManager.PERMISSION_GRANTED;
2123 } else {
2124 hasUsageStats = mode == AppOpsManager.MODE_ALLOWED;
2125 }
2126
2127 final int userId = UserHandle.getUserId(callingUid);
Kenny Guy22bd0442017-10-26 00:15:54 +01002128 final long token = Binder.clearCallingIdentity();
2129 try {
Michael Wright144aac92017-12-21 18:37:41 +00002130 synchronized (mSyncRoot) {
2131 return mDisplayPowerController.getBrightnessEvents(userId, hasUsageStats);
2132 }
Kenny Guy22bd0442017-10-26 00:15:54 +01002133 } finally {
2134 Binder.restoreCallingIdentity(token);
2135 }
2136 }
2137
Michael Wrighteef0e132017-11-21 17:57:52 +00002138 @Override // Binder call
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00002139 public ParceledListSlice<AmbientBrightnessDayStats> getAmbientBrightnessStats() {
2140 mContext.enforceCallingOrSelfPermission(
2141 Manifest.permission.ACCESS_AMBIENT_LIGHT_STATS,
2142 "Permission required to to access ambient light stats.");
2143 final int callingUid = Binder.getCallingUid();
2144 final int userId = UserHandle.getUserId(callingUid);
2145 final long token = Binder.clearCallingIdentity();
2146 try {
2147 synchronized (mSyncRoot) {
2148 return mDisplayPowerController.getAmbientBrightnessStats(userId);
2149 }
2150 } finally {
2151 Binder.restoreCallingIdentity(token);
2152 }
2153 }
2154
2155 @Override // Binder call
Michael Wrighteef0e132017-11-21 17:57:52 +00002156 public void setBrightnessConfigurationForUser(
Kenny Guy05ce8092018-01-17 13:44:20 +00002157 BrightnessConfiguration c, @UserIdInt int userId, String packageName) {
Michael Wrighteef0e132017-11-21 17:57:52 +00002158 mContext.enforceCallingOrSelfPermission(
2159 Manifest.permission.CONFIGURE_DISPLAY_BRIGHTNESS,
2160 "Permission required to change the display's brightness configuration");
2161 if (userId != UserHandle.getCallingUserId()) {
2162 mContext.enforceCallingOrSelfPermission(
2163 Manifest.permission.INTERACT_ACROSS_USERS,
2164 "Permission required to change the display brightness"
2165 + " configuration of another user");
2166 }
Kenny Guy05ce8092018-01-17 13:44:20 +00002167 if (packageName != null && !validatePackageName(getCallingUid(), packageName)) {
2168 packageName = null;
2169 }
Michael Wrighteef0e132017-11-21 17:57:52 +00002170 final long token = Binder.clearCallingIdentity();
2171 try {
Kenny Guy05ce8092018-01-17 13:44:20 +00002172 setBrightnessConfigurationForUserInternal(c, userId, packageName);
Michael Wrighteef0e132017-11-21 17:57:52 +00002173 } finally {
2174 Binder.restoreCallingIdentity(token);
2175 }
2176 }
2177
Michael Wrightd8460232018-01-16 18:04:59 +00002178 @Override // Binder call
Kenny Guy6d1009f2018-03-14 14:28:23 +00002179 public BrightnessConfiguration getBrightnessConfigurationForUser(int userId) {
2180 mContext.enforceCallingOrSelfPermission(
2181 Manifest.permission.CONFIGURE_DISPLAY_BRIGHTNESS,
2182 "Permission required to read the display's brightness configuration");
2183 if (userId != UserHandle.getCallingUserId()) {
2184 mContext.enforceCallingOrSelfPermission(
2185 Manifest.permission.INTERACT_ACROSS_USERS,
2186 "Permission required to read the display brightness"
2187 + " configuration of another user");
2188 }
2189 final long token = Binder.clearCallingIdentity();
2190 try {
2191 final int userSerial = getUserManager().getUserSerialNumber(userId);
2192 synchronized (mSyncRoot) {
2193 BrightnessConfiguration config =
2194 mPersistentDataStore.getBrightnessConfiguration(userSerial);
2195 if (config == null) {
2196 config = mDisplayPowerController.getDefaultBrightnessConfiguration();
2197 }
2198 return config;
2199 }
2200 } finally {
2201 Binder.restoreCallingIdentity(token);
2202 }
2203 }
2204
2205 @Override // Binder call
2206 public BrightnessConfiguration getDefaultBrightnessConfiguration() {
2207 mContext.enforceCallingOrSelfPermission(
2208 Manifest.permission.CONFIGURE_DISPLAY_BRIGHTNESS,
2209 "Permission required to read the display's default brightness configuration");
2210 final long token = Binder.clearCallingIdentity();
2211 try {
2212 synchronized (mSyncRoot) {
2213 return mDisplayPowerController.getDefaultBrightnessConfiguration();
2214 }
2215 } finally {
2216 Binder.restoreCallingIdentity(token);
2217 }
2218 }
2219
2220 @Override // Binder call
Michael Wrightd8460232018-01-16 18:04:59 +00002221 public void setTemporaryBrightness(int brightness) {
2222 mContext.enforceCallingOrSelfPermission(
2223 Manifest.permission.CONTROL_DISPLAY_BRIGHTNESS,
2224 "Permission required to set the display's brightness");
2225 final long token = Binder.clearCallingIdentity();
2226 try {
2227 synchronized (mSyncRoot) {
2228 mDisplayPowerController.setTemporaryBrightness(brightness);
2229 }
2230 } finally {
2231 Binder.restoreCallingIdentity(token);
2232 }
2233 }
2234
2235 @Override // Binder call
2236 public void setTemporaryAutoBrightnessAdjustment(float adjustment) {
2237 mContext.enforceCallingOrSelfPermission(
2238 Manifest.permission.CONTROL_DISPLAY_BRIGHTNESS,
2239 "Permission required to set the display's auto brightness adjustment");
2240 final long token = Binder.clearCallingIdentity();
2241 try {
2242 synchronized (mSyncRoot) {
2243 mDisplayPowerController.setTemporaryAutoBrightnessAdjustment(adjustment);
2244 }
2245 } finally {
2246 Binder.restoreCallingIdentity(token);
2247 }
2248 }
2249
Dan Gittik7a32fba2018-03-28 12:19:38 +01002250 @Override // Binder call
2251 public void onShellCommand(FileDescriptor in, FileDescriptor out,
2252 FileDescriptor err, String[] args, ShellCallback callback,
2253 ResultReceiver resultReceiver) {
2254 final long token = Binder.clearCallingIdentity();
2255 try {
2256 DisplayManagerShellCommand command = new DisplayManagerShellCommand(this);
2257 command.exec(this, in, out, err, args, callback, resultReceiver);
2258 } finally {
2259 Binder.restoreCallingIdentity(token);
2260 }
2261 }
2262
Dan Gittik122df862018-03-28 16:59:22 +01002263 @Override // Binder call
2264 public Curve getMinimumBrightnessCurve() {
2265 final long token = Binder.clearCallingIdentity();
2266 try {
2267 return getMinimumBrightnessCurveInternal();
2268 } finally {
2269 Binder.restoreCallingIdentity(token);
2270 }
2271 }
2272
Peiyong Lin277eaff2019-01-16 16:18:22 -08002273 @Override // Binder call
2274 public int getPreferredWideGamutColorSpaceId() {
2275 final long token = Binder.clearCallingIdentity();
2276 try {
2277 return getPreferredWideGamutColorSpaceIdInternal();
2278 } finally {
2279 Binder.restoreCallingIdentity(token);
2280 }
2281 }
2282
Dan Gittik7a32fba2018-03-28 12:19:38 +01002283 void setBrightness(int brightness) {
2284 Settings.System.putIntForUser(mContext.getContentResolver(),
2285 Settings.System.SCREEN_BRIGHTNESS, brightness, UserHandle.USER_CURRENT);
2286 }
2287
2288 void resetBrightnessConfiguration() {
2289 setBrightnessConfigurationForUserInternal(null, mContext.getUserId(),
2290 mContext.getPackageName());
2291 }
2292
Dan Gittika5a2d632019-01-09 14:25:29 +00002293 void setAutoBrightnessLoggingEnabled(boolean enabled) {
2294 if (mDisplayPowerController != null) {
2295 synchronized (mSyncRoot) {
2296 mDisplayPowerController.setAutoBrightnessLoggingEnabled(enabled);
2297 }
2298 }
2299 }
2300
Dan Gittik8dbd7e92018-12-03 15:35:53 +00002301 void setDisplayWhiteBalanceLoggingEnabled(boolean enabled) {
2302 if (mDisplayPowerController != null) {
2303 synchronized (mSyncRoot) {
2304 mDisplayPowerController.setDisplayWhiteBalanceLoggingEnabled(enabled);
2305 }
2306 }
2307 }
2308
2309 void setAmbientColorTemperatureOverride(float cct) {
2310 if (mDisplayPowerController != null) {
2311 synchronized (mSyncRoot) {
2312 mDisplayPowerController.setAmbientColorTemperatureOverride(cct);
2313 }
2314 }
2315 }
2316
Jeff Brown4ccb8232014-01-16 22:16:42 -08002317 private boolean validatePackageName(int uid, String packageName) {
2318 if (packageName != null) {
2319 String[] packageNames = mContext.getPackageManager().getPackagesForUid(uid);
2320 if (packageNames != null) {
2321 for (String n : packageNames) {
2322 if (n.equals(packageName)) {
2323 return true;
2324 }
2325 }
2326 }
2327 }
2328 return false;
2329 }
Michael Wrightc39d47a2014-07-08 18:07:36 -07002330
2331 private boolean canProjectVideo(IMediaProjection projection) {
2332 if (projection != null) {
2333 try {
2334 if (projection.canProjectVideo()) {
2335 return true;
2336 }
2337 } catch (RemoteException e) {
2338 Slog.e(TAG, "Unable to query projection service for permissions", e);
2339 }
2340 }
Chilun67a379b2019-04-11 19:49:42 +08002341 if (checkCallingPermission(CAPTURE_VIDEO_OUTPUT, "canProjectVideo()")) {
Michael Wrightc39d47a2014-07-08 18:07:36 -07002342 return true;
2343 }
2344 return canProjectSecureVideo(projection);
2345 }
2346
2347 private boolean canProjectSecureVideo(IMediaProjection projection) {
2348 if (projection != null) {
2349 try {
2350 if (projection.canProjectSecureVideo()){
2351 return true;
2352 }
2353 } catch (RemoteException e) {
2354 Slog.e(TAG, "Unable to query projection service for permissions", e);
2355 }
2356 }
Chilun67a379b2019-04-11 19:49:42 +08002357 return checkCallingPermission(CAPTURE_SECURE_VIDEO_OUTPUT, "canProjectSecureVideo()");
2358 }
2359
2360 private boolean checkCallingPermission(String permission, String func) {
2361 if (mContext.checkCallingPermission(permission) == PackageManager.PERMISSION_GRANTED) {
2362 return true;
2363 }
2364 final String msg = "Permission Denial: " + func + " from pid=" + Binder.getCallingPid()
2365 + ", uid=" + Binder.getCallingUid() + " requires " + permission;
2366 Slog.w(TAG, msg);
2367 return false;
Michael Wrightc39d47a2014-07-08 18:07:36 -07002368 }
Jeff Brown4ccb8232014-01-16 22:16:42 -08002369 }
2370
2371 private final class LocalService extends DisplayManagerInternal {
Galia Peychevaea945752019-06-26 14:05:12 +02002372
Jeff Brown4ccb8232014-01-16 22:16:42 -08002373 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07002374 public void initPowerManagement(final DisplayPowerCallbacks callbacks, Handler handler,
Jeff Brownad9ef192014-04-08 17:26:30 -07002375 SensorManager sensorManager) {
2376 synchronized (mSyncRoot) {
Jeff Brown037c33e2014-04-09 00:31:55 -07002377 DisplayBlanker blanker = new DisplayBlanker() {
2378 @Override
Jeff Brown5d6443b2015-04-10 20:15:01 -07002379 public void requestDisplayState(int state, int brightness) {
Jeff Brown037c33e2014-04-09 00:31:55 -07002380 // The order of operations is important for legacy reasons.
2381 if (state == Display.STATE_OFF) {
Jeff Brown5d6443b2015-04-10 20:15:01 -07002382 requestGlobalDisplayStateInternal(state, brightness);
Jeff Brown037c33e2014-04-09 00:31:55 -07002383 }
2384
2385 callbacks.onDisplayStateChange(state);
2386
2387 if (state != Display.STATE_OFF) {
Jeff Brown5d6443b2015-04-10 20:15:01 -07002388 requestGlobalDisplayStateInternal(state, brightness);
Jeff Brown037c33e2014-04-09 00:31:55 -07002389 }
2390 }
2391 };
Jeff Brownad9ef192014-04-08 17:26:30 -07002392 mDisplayPowerController = new DisplayPowerController(
Jeff Brown037c33e2014-04-09 00:31:55 -07002393 mContext, callbacks, handler, sensorManager, blanker);
Long Lingbc841b02019-07-03 16:43:15 -07002394 mSensorManager = sensorManager;
Jeff Brownad9ef192014-04-08 17:26:30 -07002395 }
Michael Wrighteef0e132017-11-21 17:57:52 +00002396
2397 mHandler.sendEmptyMessage(MSG_LOAD_BRIGHTNESS_CONFIGURATION);
Jeff Brownad9ef192014-04-08 17:26:30 -07002398 }
2399
2400 @Override
2401 public boolean requestPowerState(DisplayPowerRequest request,
2402 boolean waitForNegativeProximity) {
Michael Wrighteef0e132017-11-21 17:57:52 +00002403 synchronized (mSyncRoot) {
2404 return mDisplayPowerController.requestPowerState(request,
2405 waitForNegativeProximity);
2406 }
Jeff Brownad9ef192014-04-08 17:26:30 -07002407 }
2408
2409 @Override
2410 public boolean isProximitySensorAvailable() {
Michael Wrighteef0e132017-11-21 17:57:52 +00002411 synchronized (mSyncRoot) {
2412 return mDisplayPowerController.isProximitySensorAvailable();
2413 }
Jeff Brownad9ef192014-04-08 17:26:30 -07002414 }
2415
2416 @Override
Robert Carr66b5664f2019-04-02 14:18:56 -07002417 public SurfaceControl.ScreenshotGraphicBuffer screenshot(int displayId) {
2418 return screenshotInternal(displayId);
Riddle Hsu654a6f92018-07-13 22:59:36 +08002419 }
2420
2421 @Override
Jeff Brown4ccb8232014-01-16 22:16:42 -08002422 public DisplayInfo getDisplayInfo(int displayId) {
2423 return getDisplayInfoInternal(displayId, Process.myUid());
2424 }
2425
2426 @Override
2427 public void registerDisplayTransactionListener(DisplayTransactionListener listener) {
2428 if (listener == null) {
2429 throw new IllegalArgumentException("listener must not be null");
2430 }
2431
2432 registerDisplayTransactionListenerInternal(listener);
2433 }
2434
2435 @Override
2436 public void unregisterDisplayTransactionListener(DisplayTransactionListener listener) {
2437 if (listener == null) {
2438 throw new IllegalArgumentException("listener must not be null");
2439 }
2440
2441 unregisterDisplayTransactionListenerInternal(listener);
2442 }
2443
2444 @Override
2445 public void setDisplayInfoOverrideFromWindowManager(int displayId, DisplayInfo info) {
2446 setDisplayInfoOverrideFromWindowManagerInternal(displayId, info);
2447 }
2448
2449 @Override
Andrii Kuliancd097992017-03-23 18:31:59 -07002450 public void getNonOverrideDisplayInfo(int displayId, DisplayInfo outInfo) {
2451 getNonOverrideDisplayInfoInternal(displayId, outInfo);
2452 }
2453
2454 @Override
Robert Carrae606b42018-02-15 15:36:23 -08002455 public void performTraversal(SurfaceControl.Transaction t) {
2456 performTraversalInternal(t);
Jeff Brown4ccb8232014-01-16 22:16:42 -08002457 }
2458
2459 @Override
Michael Wright3f145a22014-07-22 19:46:03 -07002460 public void setDisplayProperties(int displayId, boolean hasContent,
Galia Peychevaea945752019-06-26 14:05:12 +02002461 float requestedRefreshRate, int requestedMode, boolean preferMinimalPostProcessing,
2462 boolean inTraversal) {
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002463 setDisplayPropertiesInternal(displayId, hasContent, requestedRefreshRate,
Galia Peychevaea945752019-06-26 14:05:12 +02002464 requestedMode, preferMinimalPostProcessing, inTraversal);
Jeff Brown4ccb8232014-01-16 22:16:42 -08002465 }
Filip Gruszczynskid2e86402015-02-19 13:05:03 -08002466
2467 @Override
2468 public void setDisplayOffsets(int displayId, int x, int y) {
2469 setDisplayOffsetsInternal(displayId, x, y);
2470 }
Andrii Kulianfb1bf692017-01-17 11:17:34 -08002471
2472 @Override
Sam Lin4c3ac2b2019-02-18 04:50:26 -08002473 public void setDisplayScalingDisabled(int displayId, boolean disableScaling) {
2474 setDisplayScalingDisabledInternal(displayId, disableScaling);
2475 }
2476
2477 @Override
Andrii Kulianfb1bf692017-01-17 11:17:34 -08002478 public void setDisplayAccessUIDs(SparseArray<IntArray> newDisplayAccessUIDs) {
2479 setDisplayAccessUIDsInternal(newDisplayAccessUIDs);
2480 }
2481
2482 @Override
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00002483 public void persistBrightnessTrackerState() {
Michael Wright144aac92017-12-21 18:37:41 +00002484 synchronized (mSyncRoot) {
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00002485 mDisplayPowerController.persistBrightnessTrackerState();
Michael Wright144aac92017-12-21 18:37:41 +00002486 }
Kenny Guycfe7b702017-11-14 21:04:58 +00002487 }
Adrian Roose1d68cd2018-01-17 12:54:50 +01002488
2489 @Override
2490 public void onOverlayChanged() {
2491 synchronized (mSyncRoot) {
Adrian Roos898ec382018-01-17 12:54:50 +01002492 for (int i = 0; i < mDisplayDevices.size(); i++) {
2493 mDisplayDevices.get(i).onOverlayChangedLocked();
Adrian Roose1d68cd2018-01-17 12:54:50 +01002494 }
2495 }
2496 }
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07002497
2498 @Override
2499 public DisplayedContentSamplingAttributes getDisplayedContentSamplingAttributes(
2500 int displayId) {
2501 return getDisplayedContentSamplingAttributesInternal(displayId);
2502 }
2503
2504 @Override
2505 public boolean setDisplayedContentSamplingEnabled(
2506 int displayId, boolean enable, int componentMask, int maxFrames) {
2507 return setDisplayedContentSamplingEnabledInternal(
2508 displayId, enable, componentMask, maxFrames);
2509 }
2510
2511 @Override
2512 public DisplayedContentSample getDisplayedContentSample(int displayId,
2513 long maxFrames, long timestamp) {
2514 return getDisplayedContentSampleInternal(displayId, maxFrames, timestamp);
2515 }
2516
Jeff Brown4ccb8232014-01-16 22:16:42 -08002517 }
Michael Wrighta3dab232019-02-22 16:54:21 +00002518
Ana Kruleca74a8642019-11-14 00:51:00 +01002519 class DesiredDisplayModeSpecsObserver
2520 implements DisplayModeDirector.DesiredDisplayModeSpecsListener {
2521 public void onDesiredDisplayModeSpecsChanged() {
2522 onDesiredDisplayModeSpecsChangedInternal();
Michael Wrighta3dab232019-02-22 16:54:21 +00002523 }
2524 }
Jeff Brownfa25bf52012-07-23 19:26:30 -07002525}