blob: c466640e658b7a3c7b086edffd002f8b08cf325f [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
Michael Wrighta3dab232019-02-22 16:54:21 +0000434 mDisplayModeDirector.setListener(new AllowedDisplayModeObserver());
Long Lingbc841b02019-07-03 16:43:15 -0700435 mDisplayModeDirector.start(mSensorManager);
Michael Wrighta3dab232019-02-22 16:54:21 +0000436
Jeff Brownbd6e1502012-08-28 03:27:37 -0700437 mHandler.sendEmptyMessage(MSG_REGISTER_ADDITIONAL_DISPLAY_ADAPTERS);
438 }
439
Santos Cordonee8931e2017-04-05 10:31:15 -0700440 @VisibleForTesting
441 Handler getDisplayHandler() {
442 return mHandler;
443 }
444
Michael Wrighteedcbf12017-08-16 23:14:54 +0100445 private void loadStableDisplayValuesLocked() {
446 final Point size = mPersistentDataStore.getStableDisplaySize();
447 if (size.x > 0 && size.y > 0) {
448 // Just set these values directly so we don't write the display persistent data again
449 // unnecessarily
450 mStableDisplaySize.set(size.x, size.y);
451 } else {
452 final Resources res = mContext.getResources();
453 final int width = res.getInteger(
454 com.android.internal.R.integer.config_stableDeviceDisplayWidth);
455 final int height = res.getInteger(
456 com.android.internal.R.integer.config_stableDeviceDisplayHeight);
457 if (width > 0 && height > 0) {
458 setStableDisplaySizeLocked(width, height);
459 }
460 }
461 }
462
463 private Point getStableDisplaySizeInternal() {
464 Point r = new Point();
465 synchronized (mSyncRoot) {
466 if (mStableDisplaySize.x > 0 && mStableDisplaySize.y > 0) {
467 r.set(mStableDisplaySize.x, mStableDisplaySize.y);
468 }
469 }
470 return r;
471 }
472
Jeff Brown4ccb8232014-01-16 22:16:42 -0800473 private void registerDisplayTransactionListenerInternal(
474 DisplayTransactionListener listener) {
Jeff Brown7f3994e2012-12-04 14:04:28 -0800475 // List is self-synchronized copy-on-write.
476 mDisplayTransactionListeners.add(listener);
477 }
478
Jeff Brown4ccb8232014-01-16 22:16:42 -0800479 private void unregisterDisplayTransactionListenerInternal(
480 DisplayTransactionListener listener) {
Jeff Brown7f3994e2012-12-04 14:04:28 -0800481 // List is self-synchronized copy-on-write.
482 mDisplayTransactionListeners.remove(listener);
483 }
484
Jeff Brown4ccb8232014-01-16 22:16:42 -0800485 private void setDisplayInfoOverrideFromWindowManagerInternal(
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700486 int displayId, DisplayInfo info) {
487 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -0700488 LogicalDisplay display = mLogicalDisplays.get(displayId);
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700489 if (display != null) {
Jeff Brownef981a42013-08-07 14:13:37 -0700490 if (display.setDisplayInfoOverrideFromWindowManagerLocked(info)) {
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200491 handleLogicalDisplayChanged(displayId, display);
Craig Mautner65d11b32012-10-01 13:59:52 -0700492 scheduleTraversalLocked(false);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700493 }
Jeff Brownbd6e1502012-08-28 03:27:37 -0700494 }
495 }
496 }
497
Andrii Kuliancd097992017-03-23 18:31:59 -0700498 /**
499 * @see DisplayManagerInternal#getNonOverrideDisplayInfo(int, DisplayInfo)
500 */
501 private void getNonOverrideDisplayInfoInternal(int displayId, DisplayInfo outInfo) {
502 synchronized (mSyncRoot) {
503 final LogicalDisplay display = mLogicalDisplays.get(displayId);
504 if (display != null) {
505 display.getNonOverrideDisplayInfoLocked(outInfo);
506 }
507 }
508 }
509
Santos Cordonee8931e2017-04-05 10:31:15 -0700510 @VisibleForTesting
Robert Carrae606b42018-02-15 15:36:23 -0800511 void performTraversalInternal(SurfaceControl.Transaction t) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700512 synchronized (mSyncRoot) {
513 if (!mPendingTraversal) {
514 return;
Jeff Brownbd6e1502012-08-28 03:27:37 -0700515 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700516 mPendingTraversal = false;
517
Robert Carrae606b42018-02-15 15:36:23 -0800518 performTraversalLocked(t);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700519 }
Jeff Brown7f3994e2012-12-04 14:04:28 -0800520
521 // List is self-synchronized copy-on-write.
522 for (DisplayTransactionListener listener : mDisplayTransactionListeners) {
Vishnu Naire86bd982018-11-28 13:23:17 -0800523 listener.onDisplayTransaction(t);
Jeff Brown7f3994e2012-12-04 14:04:28 -0800524 }
Jeff Brownbd6e1502012-08-28 03:27:37 -0700525 }
526
Jeff Brown5d6443b2015-04-10 20:15:01 -0700527 private void requestGlobalDisplayStateInternal(int state, int brightness) {
528 if (state == Display.STATE_UNKNOWN) {
529 state = Display.STATE_ON;
530 }
531 if (state == Display.STATE_OFF) {
532 brightness = PowerManager.BRIGHTNESS_OFF;
533 } else if (brightness < 0) {
534 brightness = PowerManager.BRIGHTNESS_DEFAULT;
535 } else if (brightness > PowerManager.BRIGHTNESS_ON) {
536 brightness = PowerManager.BRIGHTNESS_ON;
537 }
538
Jeff Browne75926d2014-09-18 15:24:49 -0700539 synchronized (mTempDisplayStateWorkQueue) {
540 try {
541 // Update the display state within the lock.
Jeff Brown8e5d33e2015-06-10 13:05:50 -0700542 // Note that we do not need to schedule traversals here although it
543 // may happen as a side-effect of displays changing state.
Jeff Browne75926d2014-09-18 15:24:49 -0700544 synchronized (mSyncRoot) {
Jeff Brown5d6443b2015-04-10 20:15:01 -0700545 if (mGlobalDisplayState == state
546 && mGlobalDisplayBrightness == brightness) {
547 return; // no change
Jeff Browne75926d2014-09-18 15:24:49 -0700548 }
Jeff Brown5d6443b2015-04-10 20:15:01 -0700549
550 Trace.traceBegin(Trace.TRACE_TAG_POWER, "requestGlobalDisplayState("
551 + Display.stateToString(state)
552 + ", brightness=" + brightness + ")");
553 mGlobalDisplayState = state;
554 mGlobalDisplayBrightness = brightness;
Jeff Brown8e5d33e2015-06-10 13:05:50 -0700555 applyGlobalDisplayStateLocked(mTempDisplayStateWorkQueue);
Jeff Browne75926d2014-09-18 15:24:49 -0700556 }
557
558 // Setting the display power state can take hundreds of milliseconds
559 // to complete so we defer the most expensive part of the work until
560 // after we have exited the critical section to avoid blocking other
561 // threads for a long time.
562 for (int i = 0; i < mTempDisplayStateWorkQueue.size(); i++) {
563 mTempDisplayStateWorkQueue.get(i).run();
564 }
Jeff Brown5d6443b2015-04-10 20:15:01 -0700565 Trace.traceEnd(Trace.TRACE_TAG_POWER);
Jeff Browne75926d2014-09-18 15:24:49 -0700566 } finally {
567 mTempDisplayStateWorkQueue.clear();
Jeff Brown9e316a12012-10-08 19:17:06 -0700568 }
569 }
570 }
571
Jeff Brown4ccb8232014-01-16 22:16:42 -0800572 private DisplayInfo getDisplayInfoInternal(int displayId, int callingUid) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700573 synchronized (mSyncRoot) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800574 LogicalDisplay display = mLogicalDisplays.get(displayId);
575 if (display != null) {
576 DisplayInfo info = display.getDisplayInfoLocked();
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800577 if (info.hasAccess(callingUid)
578 || isUidPresentOnDisplayInternal(callingUid, displayId)) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800579 return info;
580 }
581 }
582 return null;
583 }
584 }
585
586 private int[] getDisplayIdsInternal(int callingUid) {
587 synchronized (mSyncRoot) {
588 final int count = mLogicalDisplays.size();
589 int[] displayIds = new int[count];
590 int n = 0;
591 for (int i = 0; i < count; i++) {
592 LogicalDisplay display = mLogicalDisplays.valueAt(i);
593 DisplayInfo info = display.getDisplayInfoLocked();
594 if (info.hasAccess(callingUid)) {
595 displayIds[n++] = mLogicalDisplays.keyAt(i);
596 }
597 }
598 if (n != count) {
599 displayIds = Arrays.copyOfRange(displayIds, 0, n);
600 }
601 return displayIds;
602 }
603 }
604
605 private void registerCallbackInternal(IDisplayManagerCallback callback, int callingPid) {
606 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -0700607 if (mCallbacks.get(callingPid) != null) {
608 throw new SecurityException("The calling process has already "
609 + "registered an IDisplayManagerCallback.");
Jeff Brown64a55af2012-08-26 02:47:39 -0700610 }
611
Jeff Brownbd6e1502012-08-28 03:27:37 -0700612 CallbackRecord record = new CallbackRecord(callingPid, callback);
613 try {
614 IBinder binder = callback.asBinder();
615 binder.linkToDeath(record, 0);
616 } catch (RemoteException ex) {
617 // give up
618 throw new RuntimeException(ex);
619 }
620
621 mCallbacks.put(callingPid, record);
622 }
623 }
624
Jeff Brownce468a32013-11-21 16:42:03 -0800625 private void onCallbackDied(CallbackRecord record) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700626 synchronized (mSyncRoot) {
Jeff Brownce468a32013-11-21 16:42:03 -0800627 mCallbacks.remove(record.mPid);
628 stopWifiDisplayScanLocked(record);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700629 }
630 }
631
Jeff Brown4ccb8232014-01-16 22:16:42 -0800632 private void startWifiDisplayScanInternal(int callingPid) {
633 synchronized (mSyncRoot) {
634 CallbackRecord record = mCallbacks.get(callingPid);
635 if (record == null) {
636 throw new IllegalStateException("The calling process has not "
637 + "registered an IDisplayManagerCallback.");
Jeff Browne08ae382012-09-07 20:36:36 -0700638 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800639 startWifiDisplayScanLocked(record);
Jeff Browne08ae382012-09-07 20:36:36 -0700640 }
641 }
642
Jeff Brownce468a32013-11-21 16:42:03 -0800643 private void startWifiDisplayScanLocked(CallbackRecord record) {
644 if (!record.mWifiDisplayScanRequested) {
645 record.mWifiDisplayScanRequested = true;
646 if (mWifiDisplayScanRequestCount++ == 0) {
647 if (mWifiDisplayAdapter != null) {
648 mWifiDisplayAdapter.requestStartScanLocked();
649 }
650 }
651 }
652 }
653
Jeff Brown4ccb8232014-01-16 22:16:42 -0800654 private void stopWifiDisplayScanInternal(int callingPid) {
655 synchronized (mSyncRoot) {
656 CallbackRecord record = mCallbacks.get(callingPid);
657 if (record == null) {
658 throw new IllegalStateException("The calling process has not "
659 + "registered an IDisplayManagerCallback.");
Jeff Brownce468a32013-11-21 16:42:03 -0800660 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800661 stopWifiDisplayScanLocked(record);
Jeff Brownce468a32013-11-21 16:42:03 -0800662 }
663 }
664
665 private void stopWifiDisplayScanLocked(CallbackRecord record) {
666 if (record.mWifiDisplayScanRequested) {
667 record.mWifiDisplayScanRequested = false;
668 if (--mWifiDisplayScanRequestCount == 0) {
669 if (mWifiDisplayAdapter != null) {
670 mWifiDisplayAdapter.requestStopScanLocked();
671 }
672 } else if (mWifiDisplayScanRequestCount < 0) {
Dianne Hackborn8d051722014-10-01 14:59:58 -0700673 Slog.wtf(TAG, "mWifiDisplayScanRequestCount became negative: "
Jeff Brownce468a32013-11-21 16:42:03 -0800674 + mWifiDisplayScanRequestCount);
675 mWifiDisplayScanRequestCount = 0;
676 }
677 }
678 }
679
Jeff Brown4ccb8232014-01-16 22:16:42 -0800680 private void connectWifiDisplayInternal(String address) {
681 synchronized (mSyncRoot) {
682 if (mWifiDisplayAdapter != null) {
683 mWifiDisplayAdapter.requestConnectLocked(address);
Jeff Browne08ae382012-09-07 20:36:36 -0700684 }
Jeff Browne08ae382012-09-07 20:36:36 -0700685 }
686 }
687
Jeff Brown4ccb8232014-01-16 22:16:42 -0800688 private void pauseWifiDisplayInternal() {
689 synchronized (mSyncRoot) {
690 if (mWifiDisplayAdapter != null) {
691 mWifiDisplayAdapter.requestPauseLocked();
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700692 }
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700693 }
694 }
695
Jeff Brown4ccb8232014-01-16 22:16:42 -0800696 private void resumeWifiDisplayInternal() {
697 synchronized (mSyncRoot) {
698 if (mWifiDisplayAdapter != null) {
699 mWifiDisplayAdapter.requestResumeLocked();
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700700 }
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700701 }
702 }
703
Jeff Brown4ccb8232014-01-16 22:16:42 -0800704 private void disconnectWifiDisplayInternal() {
705 synchronized (mSyncRoot) {
706 if (mWifiDisplayAdapter != null) {
707 mWifiDisplayAdapter.requestDisconnectLocked();
Jeff Browne08ae382012-09-07 20:36:36 -0700708 }
Jeff Browne08ae382012-09-07 20:36:36 -0700709 }
710 }
711
Jeff Brown4ccb8232014-01-16 22:16:42 -0800712 private void renameWifiDisplayInternal(String address, String alias) {
713 synchronized (mSyncRoot) {
714 if (mWifiDisplayAdapter != null) {
715 mWifiDisplayAdapter.requestRenameLocked(address, alias);
Jeff Brown89d55462012-09-19 11:33:42 -0700716 }
Jeff Brown89d55462012-09-19 11:33:42 -0700717 }
718 }
719
Jeff Brown4ccb8232014-01-16 22:16:42 -0800720 private void forgetWifiDisplayInternal(String address) {
721 synchronized (mSyncRoot) {
722 if (mWifiDisplayAdapter != null) {
723 mWifiDisplayAdapter.requestForgetLocked(address);
Jeff Brown89d55462012-09-19 11:33:42 -0700724 }
Jeff Brown89d55462012-09-19 11:33:42 -0700725 }
726 }
727
Jeff Brown4ccb8232014-01-16 22:16:42 -0800728 private WifiDisplayStatus getWifiDisplayStatusInternal() {
729 synchronized (mSyncRoot) {
730 if (mWifiDisplayAdapter != null) {
731 return mWifiDisplayAdapter.getWifiDisplayStatusLocked();
Jeff Browne08ae382012-09-07 20:36:36 -0700732 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800733 return new WifiDisplayStatus();
Jeff Browne08ae382012-09-07 20:36:36 -0700734 }
735 }
736
Michael Wright1c9977b2016-07-12 13:30:10 -0700737 private void requestColorModeInternal(int displayId, int colorMode) {
Michael Wright58e829f2015-09-15 00:13:26 +0100738 synchronized (mSyncRoot) {
739 LogicalDisplay display = mLogicalDisplays.get(displayId);
740 if (display != null &&
Michael Wright1c9977b2016-07-12 13:30:10 -0700741 display.getRequestedColorModeLocked() != colorMode) {
742 display.setRequestedColorModeLocked(colorMode);
Michael Wright58e829f2015-09-15 00:13:26 +0100743 scheduleTraversalLocked(false);
744 }
745 }
746 }
747
Michael Wright75ee9fc2014-09-01 19:55:22 -0700748 private int createVirtualDisplayInternal(IVirtualDisplayCallback callback,
Santos Cordonee8931e2017-04-05 10:31:15 -0700749 IMediaProjection projection, int callingUid, String packageName, String name, int width,
750 int height, int densityDpi, Surface surface, int flags, String uniqueId) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800751 synchronized (mSyncRoot) {
752 if (mVirtualDisplayAdapter == null) {
753 Slog.w(TAG, "Rejecting request to create private virtual display "
754 + "because the virtual display adapter is not available.");
755 return -1;
Jeff Brown7d00aff2013-08-02 19:03:49 -0700756 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800757
758 DisplayDevice device = mVirtualDisplayAdapter.createVirtualDisplayLocked(
Santos Cordonee8931e2017-04-05 10:31:15 -0700759 callback, projection, callingUid, packageName, name, width, height, densityDpi,
760 surface, flags, uniqueId);
Jeff Brown4ccb8232014-01-16 22:16:42 -0800761 if (device == null) {
762 return -1;
Jeff Brown7d00aff2013-08-02 19:03:49 -0700763 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700764
Jeff Brown4ccb8232014-01-16 22:16:42 -0800765 handleDisplayDeviceAddedLocked(device);
766 LogicalDisplay display = findLogicalDisplayForDeviceLocked(device);
767 if (display != null) {
768 return display.getDisplayIdLocked();
Jeff Browna506a6e2013-06-04 00:02:38 -0700769 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800770
771 // Something weird happened and the logical display was not created.
772 Slog.w(TAG, "Rejecting request to create virtual display "
773 + "because the logical display was not created.");
Michael Wright75ee9fc2014-09-01 19:55:22 -0700774 mVirtualDisplayAdapter.releaseVirtualDisplayLocked(callback.asBinder());
Jeff Brown4ccb8232014-01-16 22:16:42 -0800775 handleDisplayDeviceRemovedLocked(device);
Jeff Browna506a6e2013-06-04 00:02:38 -0700776 }
777 return -1;
778 }
779
Michael Wright01e840f2014-06-26 16:03:25 -0700780 private void resizeVirtualDisplayInternal(IBinder appToken,
781 int width, int height, int densityDpi) {
782 synchronized (mSyncRoot) {
783 if (mVirtualDisplayAdapter == null) {
784 return;
785 }
786
787 mVirtualDisplayAdapter.resizeVirtualDisplayLocked(appToken, width, height, densityDpi);
788 }
789 }
790
Jeff Brown92207df2014-04-16 13:16:07 -0700791 private void setVirtualDisplaySurfaceInternal(IBinder appToken, Surface surface) {
792 synchronized (mSyncRoot) {
793 if (mVirtualDisplayAdapter == null) {
794 return;
795 }
796
797 mVirtualDisplayAdapter.setVirtualDisplaySurfaceLocked(appToken, surface);
798 }
799 }
800
Jeff Brown4ccb8232014-01-16 22:16:42 -0800801 private void releaseVirtualDisplayInternal(IBinder appToken) {
802 synchronized (mSyncRoot) {
803 if (mVirtualDisplayAdapter == null) {
804 return;
Jeff Browna506a6e2013-06-04 00:02:38 -0700805 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700806
Jeff Brown4ccb8232014-01-16 22:16:42 -0800807 DisplayDevice device =
808 mVirtualDisplayAdapter.releaseVirtualDisplayLocked(appToken);
809 if (device != null) {
810 handleDisplayDeviceRemovedLocked(device);
Jeff Browna506a6e2013-06-04 00:02:38 -0700811 }
812 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700813 }
814
chaviwda4c6942018-11-07 15:52:56 -0800815 private void setVirtualDisplayStateInternal(IBinder appToken, boolean isOn) {
816 synchronized (mSyncRoot) {
817 if (mVirtualDisplayAdapter == null) {
818 return;
819 }
820
821 mVirtualDisplayAdapter.setVirtualDisplayStateLocked(appToken, isOn);
822 }
823 }
824
Santos Cordonc22c5632017-06-21 16:03:49 -0700825 private void registerDefaultDisplayAdapters() {
826 // Register default display adapters.
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700827 synchronized (mSyncRoot) {
Santos Cordonc22c5632017-06-21 16:03:49 -0700828 // main display adapter
Mike Lockwoode63f6f72013-11-15 11:01:47 -0800829 registerDisplayAdapterLocked(new LocalDisplayAdapter(
830 mSyncRoot, mContext, mHandler, mDisplayAdapterListener));
Santos Cordonc22c5632017-06-21 16:03:49 -0700831
832 // Standalone VR devices rely on a virtual display as their primary display for
833 // 2D UI. We register virtual display adapter along side the main display adapter
834 // here so that it is ready by the time the system sends the home Intent for
835 // early apps like SetupWizard/Launcher. In particular, SUW is displayed using
836 // the virtual display inside VR before any VR-specific apps even run.
837 mVirtualDisplayAdapter = mInjector.getVirtualDisplayAdapter(mSyncRoot, mContext,
838 mHandler, mDisplayAdapterListener);
839 if (mVirtualDisplayAdapter != null) {
840 registerDisplayAdapterLocked(mVirtualDisplayAdapter);
841 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700842 }
843 }
844
845 private void registerAdditionalDisplayAdapters() {
846 synchronized (mSyncRoot) {
847 if (shouldRegisterNonEssentialDisplayAdaptersLocked()) {
Jeff Brown89d55462012-09-19 11:33:42 -0700848 registerOverlayDisplayAdapterLocked();
849 registerWifiDisplayAdapterLocked();
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700850 }
851 }
852 }
853
Jeff Brown89d55462012-09-19 11:33:42 -0700854 private void registerOverlayDisplayAdapterLocked() {
855 registerDisplayAdapterLocked(new OverlayDisplayAdapter(
856 mSyncRoot, mContext, mHandler, mDisplayAdapterListener, mUiHandler));
857 }
858
859 private void registerWifiDisplayAdapterLocked() {
860 if (mContext.getResources().getBoolean(
Jeff Brownbbd28a22012-09-20 16:47:15 -0700861 com.android.internal.R.bool.config_enableWifiDisplay)
862 || SystemProperties.getInt(FORCE_WIFI_DISPLAY_ENABLE, -1) == 1) {
Jeff Brown89d55462012-09-19 11:33:42 -0700863 mWifiDisplayAdapter = new WifiDisplayAdapter(
864 mSyncRoot, mContext, mHandler, mDisplayAdapterListener,
865 mPersistentDataStore);
866 registerDisplayAdapterLocked(mWifiDisplayAdapter);
867 }
868 }
869
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700870 private boolean shouldRegisterNonEssentialDisplayAdaptersLocked() {
871 // In safe mode, we disable non-essential display adapters to give the user
872 // an opportunity to fix broken settings or other problems that might affect
873 // system stability.
874 // In only-core mode, we disable non-essential display adapters to minimize
875 // the number of dependencies that are started while in this mode and to
876 // prevent problems that might occur due to the device being encrypted.
877 return !mSafeMode && !mOnlyCore;
878 }
879
880 private void registerDisplayAdapterLocked(DisplayAdapter adapter) {
881 mDisplayAdapters.add(adapter);
882 adapter.registerLocked();
883 }
884
Jeff Brownbd6e1502012-08-28 03:27:37 -0700885 private void handleDisplayDeviceAdded(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700886 synchronized (mSyncRoot) {
Jeff Browna506a6e2013-06-04 00:02:38 -0700887 handleDisplayDeviceAddedLocked(device);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700888 }
889 }
890
Jeff Browna506a6e2013-06-04 00:02:38 -0700891 private void handleDisplayDeviceAddedLocked(DisplayDevice device) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700892 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
Jeff Browna506a6e2013-06-04 00:02:38 -0700893 if (mDisplayDevices.contains(device)) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700894 Slog.w(TAG, "Attempted to add already added display device: " + info);
Jeff Browna506a6e2013-06-04 00:02:38 -0700895 return;
896 }
897
Jeff Brown10acf6d2015-04-14 14:20:47 -0700898 Slog.i(TAG, "Display device added: " + info);
899 device.mDebugLastLoggedDeviceInfo = info;
Jeff Browna506a6e2013-06-04 00:02:38 -0700900
901 mDisplayDevices.add(device);
Michael Wright1c9977b2016-07-12 13:30:10 -0700902 LogicalDisplay display = addLogicalDisplayLocked(device);
Jeff Brown0033a862014-10-08 12:06:39 -0700903 Runnable work = updateDisplayStateLocked(device);
904 if (work != null) {
905 work.run();
906 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700907 scheduleTraversalLocked(false);
908 }
909
Jeff Brownbd6e1502012-08-28 03:27:37 -0700910 private void handleDisplayDeviceChanged(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700911 synchronized (mSyncRoot) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700912 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
Jeff Brownbd6e1502012-08-28 03:27:37 -0700913 if (!mDisplayDevices.contains(device)) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700914 Slog.w(TAG, "Attempted to change non-existent display device: " + info);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700915 return;
916 }
917
Jeff Brown10acf6d2015-04-14 14:20:47 -0700918 int diff = device.mDebugLastLoggedDeviceInfo.diff(info);
919 if (diff == DisplayDeviceInfo.DIFF_STATE) {
920 Slog.i(TAG, "Display device changed state: \"" + info.name
921 + "\", " + Display.stateToString(info.state));
922 } else if (diff != 0) {
923 Slog.i(TAG, "Display device changed: " + info);
924 }
Michael Wright1c9977b2016-07-12 13:30:10 -0700925 if ((diff & DisplayDeviceInfo.DIFF_COLOR_MODE) != 0) {
926 try {
927 mPersistentDataStore.setColorMode(device, info.colorMode);
928 } finally {
929 mPersistentDataStore.saveIfNeeded();
930 }
931 }
Jeff Brown10acf6d2015-04-14 14:20:47 -0700932 device.mDebugLastLoggedDeviceInfo = info;
Jeff Browne87bf032012-09-20 18:30:13 -0700933
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700934 device.applyPendingDisplayDeviceInfoChangesLocked();
935 if (updateLogicalDisplaysLocked()) {
Craig Mautner65d11b32012-10-01 13:59:52 -0700936 scheduleTraversalLocked(false);
Jeff Brown64a55af2012-08-26 02:47:39 -0700937 }
938 }
939 }
940
Jeff Brownbd6e1502012-08-28 03:27:37 -0700941 private void handleDisplayDeviceRemoved(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700942 synchronized (mSyncRoot) {
Jeff Browna506a6e2013-06-04 00:02:38 -0700943 handleDisplayDeviceRemovedLocked(device);
944 }
945 }
Jeff Brown8e5d33e2015-06-10 13:05:50 -0700946
Jeff Browna506a6e2013-06-04 00:02:38 -0700947 private void handleDisplayDeviceRemovedLocked(DisplayDevice device) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700948 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
Jeff Browna506a6e2013-06-04 00:02:38 -0700949 if (!mDisplayDevices.remove(device)) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700950 Slog.w(TAG, "Attempted to remove non-existent display device: " + info);
Jeff Browna506a6e2013-06-04 00:02:38 -0700951 return;
952 }
953
Jeff Brown10acf6d2015-04-14 14:20:47 -0700954 Slog.i(TAG, "Display device removed: " + info);
955 device.mDebugLastLoggedDeviceInfo = info;
Jeff Browna506a6e2013-06-04 00:02:38 -0700956
Jeff Browna506a6e2013-06-04 00:02:38 -0700957 updateLogicalDisplaysLocked();
958 scheduleTraversalLocked(false);
959 }
960
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200961 private void handleLogicalDisplayChanged(int displayId, @NonNull LogicalDisplay display) {
962 if (displayId == Display.DEFAULT_DISPLAY) {
963 recordTopInsetLocked(display);
964 }
965 sendDisplayEventLocked(displayId, DisplayManagerGlobal.EVENT_DISPLAY_CHANGED);
966 }
967
Jeff Brown8e5d33e2015-06-10 13:05:50 -0700968 private void applyGlobalDisplayStateLocked(List<Runnable> workQueue) {
Jeff Browna506a6e2013-06-04 00:02:38 -0700969 final int count = mDisplayDevices.size();
970 for (int i = 0; i < count; i++) {
971 DisplayDevice device = mDisplayDevices.get(i);
Jeff Browne75926d2014-09-18 15:24:49 -0700972 Runnable runnable = updateDisplayStateLocked(device);
973 if (runnable != null) {
974 workQueue.add(runnable);
975 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700976 }
977 }
978
Jeff Browne75926d2014-09-18 15:24:49 -0700979 private Runnable updateDisplayStateLocked(DisplayDevice device) {
Jeff Browna506a6e2013-06-04 00:02:38 -0700980 // Blank or unblank the display immediately to match the state requested
Jeff Brown037c33e2014-04-09 00:31:55 -0700981 // by the display power controller (if known).
Jeff Browna506a6e2013-06-04 00:02:38 -0700982 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
983 if ((info.flags & DisplayDeviceInfo.FLAG_NEVER_BLANK) == 0) {
Jeff Brown5d6443b2015-04-10 20:15:01 -0700984 return device.requestDisplayStateLocked(mGlobalDisplayState, mGlobalDisplayBrightness);
Craig Mautner4f67ba62012-08-02 11:23:00 -0700985 }
Jeff Browne75926d2014-09-18 15:24:49 -0700986 return null;
Craig Mautner4f67ba62012-08-02 11:23:00 -0700987 }
988
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700989 // Adds a new logical display based on the given display device.
990 // Sends notifications if needed.
Michael Wright1c9977b2016-07-12 13:30:10 -0700991 private LogicalDisplay addLogicalDisplayLocked(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700992 DisplayDeviceInfo deviceInfo = device.getDisplayDeviceInfoLocked();
993 boolean isDefault = (deviceInfo.flags
994 & DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY) != 0;
995 if (isDefault && mLogicalDisplays.get(Display.DEFAULT_DISPLAY) != null) {
996 Slog.w(TAG, "Ignoring attempt to add a second default display: " + deviceInfo);
997 isDefault = false;
998 }
999
Jeff Brown27f1d672012-10-17 18:32:34 -07001000 if (!isDefault && mSingleDisplayDemoMode) {
1001 Slog.i(TAG, "Not creating a logical display for a secondary display "
1002 + " because single display demo mode is enabled: " + deviceInfo);
Michael Wright1c9977b2016-07-12 13:30:10 -07001003 return null;
Jeff Brown27f1d672012-10-17 18:32:34 -07001004 }
1005
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001006 final int displayId = assignDisplayIdLocked(isDefault);
1007 final int layerStack = assignLayerStackLocked(displayId);
1008
Jeff Brownd728bf52012-09-08 18:05:28 -07001009 LogicalDisplay display = new LogicalDisplay(displayId, layerStack, device);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001010 display.updateLocked(mDisplayDevices);
1011 if (!display.isValidLocked()) {
1012 // This should never happen currently.
1013 Slog.w(TAG, "Ignoring display device because the logical display "
1014 + "created from it was not considered valid: " + deviceInfo);
Michael Wright1c9977b2016-07-12 13:30:10 -07001015 return null;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001016 }
1017
Michael Wrighteedcbf12017-08-16 23:14:54 +01001018 configureColorModeLocked(display, device);
1019 if (isDefault) {
1020 recordStableDisplayStatsIfNeededLocked(display);
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001021 recordTopInsetLocked(display);
Michael Wrighteedcbf12017-08-16 23:14:54 +01001022 }
1023
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001024 mLogicalDisplays.put(displayId, display);
1025
1026 // Wake up waitForDefaultDisplay.
1027 if (isDefault) {
1028 mSyncRoot.notifyAll();
1029 }
1030
1031 sendDisplayEventLocked(displayId, DisplayManagerGlobal.EVENT_DISPLAY_ADDED);
Michael Wright1c9977b2016-07-12 13:30:10 -07001032 return display;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001033 }
1034
1035 private int assignDisplayIdLocked(boolean isDefault) {
1036 return isDefault ? Display.DEFAULT_DISPLAY : mNextNonDefaultDisplayId++;
1037 }
1038
1039 private int assignLayerStackLocked(int displayId) {
1040 // Currently layer stacks and display ids are the same.
1041 // This need not be the case.
1042 return displayId;
1043 }
1044
Michael Wrighteedcbf12017-08-16 23:14:54 +01001045 private void configureColorModeLocked(LogicalDisplay display, DisplayDevice device) {
1046 if (display.getPrimaryDisplayDeviceLocked() == device) {
1047 int colorMode = mPersistentDataStore.getColorMode(device);
1048 if (colorMode == Display.COLOR_MODE_INVALID) {
1049 if ((device.getDisplayDeviceInfoLocked().flags
1050 & DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY) != 0) {
1051 colorMode = mDefaultDisplayDefaultColorMode;
1052 } else {
1053 colorMode = Display.COLOR_MODE_DEFAULT;
1054 }
1055 }
1056 display.setRequestedColorModeLocked(colorMode);
1057 }
1058 }
1059
1060 // If we've never recorded stable device stats for this device before and they aren't
1061 // explicitly configured, go ahead and record the stable device stats now based on the status
1062 // of the default display at first boot.
1063 private void recordStableDisplayStatsIfNeededLocked(LogicalDisplay d) {
1064 if (mStableDisplaySize.x <= 0 && mStableDisplaySize.y <= 0) {
1065 DisplayInfo info = d.getDisplayInfoLocked();
1066 setStableDisplaySizeLocked(info.getNaturalWidth(), info.getNaturalHeight());
1067 }
1068 }
1069
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001070 private void recordTopInsetLocked(@Nullable LogicalDisplay d) {
Winson72dbe7e2019-04-29 14:55:30 -07001071 // We must only persist the inset after boot has completed, otherwise we will end up
1072 // overwriting the persisted value before the masking flag has been loaded from the
1073 // resource overlay.
1074 if (!mSystemReady || d == null) {
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001075 return;
1076 }
1077 int topInset = d.getInsets().top;
1078 if (topInset == mDefaultDisplayTopInset) {
1079 return;
1080 }
1081 mDefaultDisplayTopInset = topInset;
1082 SystemProperties.set(PROP_DEFAULT_DISPLAY_TOP_INSET, Integer.toString(topInset));
1083 }
1084
Michael Wrighteedcbf12017-08-16 23:14:54 +01001085 private void setStableDisplaySizeLocked(int width, int height) {
1086 mStableDisplaySize = new Point(width, height);
1087 try {
1088 mPersistentDataStore.setStableDisplaySize(mStableDisplaySize);
1089 } finally {
1090 mPersistentDataStore.saveIfNeeded();
1091 }
1092 }
1093
Dan Gittik122df862018-03-28 16:59:22 +01001094 @VisibleForTesting
1095 Curve getMinimumBrightnessCurveInternal() {
1096 return mMinimumBrightnessCurve;
1097 }
1098
Peiyong Lin277eaff2019-01-16 16:18:22 -08001099 int getPreferredWideGamutColorSpaceIdInternal() {
1100 return mWideColorSpace.getId();
1101 }
1102
Michael Wrighteef0e132017-11-21 17:57:52 +00001103 private void setBrightnessConfigurationForUserInternal(
Dan Gittik7a32fba2018-03-28 12:19:38 +01001104 @Nullable BrightnessConfiguration c, @UserIdInt int userId,
Kenny Guy05ce8092018-01-17 13:44:20 +00001105 @Nullable String packageName) {
Dan Gittik122df862018-03-28 16:59:22 +01001106 validateBrightnessConfiguration(c);
Michael Wrighteef0e132017-11-21 17:57:52 +00001107 final int userSerial = getUserManager().getUserSerialNumber(userId);
1108 synchronized (mSyncRoot) {
1109 try {
Kenny Guy05ce8092018-01-17 13:44:20 +00001110 mPersistentDataStore.setBrightnessConfigurationForUser(c, userSerial,
1111 packageName);
Michael Wrighteef0e132017-11-21 17:57:52 +00001112 } finally {
1113 mPersistentDataStore.saveIfNeeded();
1114 }
1115 if (userId == mCurrentUserId) {
1116 mDisplayPowerController.setBrightnessConfiguration(c);
1117 }
1118 }
1119 }
1120
Dan Gittik122df862018-03-28 16:59:22 +01001121 @VisibleForTesting
1122 void validateBrightnessConfiguration(BrightnessConfiguration config) {
1123 if (config == null) {
1124 return;
1125 }
1126 if (isBrightnessConfigurationTooDark(config)) {
1127 throw new IllegalArgumentException("brightness curve is too dark");
1128 }
1129 }
1130
1131 private boolean isBrightnessConfigurationTooDark(BrightnessConfiguration config) {
1132 Pair<float[], float[]> curve = config.getCurve();
1133 float[] lux = curve.first;
1134 float[] nits = curve.second;
1135 for (int i = 0; i < lux.length; i++) {
1136 if (nits[i] < mMinimumBrightnessSpline.interpolate(lux[i])) {
1137 return true;
1138 }
1139 }
1140 return false;
1141 }
1142
Michael Wrighteef0e132017-11-21 17:57:52 +00001143 private void loadBrightnessConfiguration() {
1144 synchronized (mSyncRoot) {
1145 final int userSerial = getUserManager().getUserSerialNumber(mCurrentUserId);
1146 BrightnessConfiguration config =
1147 mPersistentDataStore.getBrightnessConfiguration(userSerial);
1148 mDisplayPowerController.setBrightnessConfiguration(config);
1149 }
1150 }
1151
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001152 // Updates all existing logical displays given the current set of display devices.
1153 // Removes invalid logical displays.
1154 // Sends notifications if needed.
1155 private boolean updateLogicalDisplaysLocked() {
1156 boolean changed = false;
1157 for (int i = mLogicalDisplays.size(); i-- > 0; ) {
1158 final int displayId = mLogicalDisplays.keyAt(i);
1159 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1160
1161 mTempDisplayInfo.copyFrom(display.getDisplayInfoLocked());
1162 display.updateLocked(mDisplayDevices);
1163 if (!display.isValidLocked()) {
1164 mLogicalDisplays.removeAt(i);
1165 sendDisplayEventLocked(displayId, DisplayManagerGlobal.EVENT_DISPLAY_REMOVED);
1166 changed = true;
1167 } else if (!mTempDisplayInfo.equals(display.getDisplayInfoLocked())) {
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001168 handleLogicalDisplayChanged(displayId, display);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001169 changed = true;
1170 }
1171 }
1172 return changed;
1173 }
1174
Robert Carrae606b42018-02-15 15:36:23 -08001175 private void performTraversalLocked(SurfaceControl.Transaction t) {
Jeff Brownd728bf52012-09-08 18:05:28 -07001176 // Clear all viewports before configuring displays so that we can keep
1177 // track of which ones we have configured.
1178 clearViewportsLocked();
1179
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001180 // Configure each display device.
1181 final int count = mDisplayDevices.size();
1182 for (int i = 0; i < count; i++) {
1183 DisplayDevice device = mDisplayDevices.get(i);
Robert Carrae606b42018-02-15 15:36:23 -08001184 configureDisplayLocked(t, device);
1185 device.performTraversalLocked(t);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001186 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001187
1188 // Tell the input system about these new viewports.
Jeff Brown4ccb8232014-01-16 22:16:42 -08001189 if (mInputManagerInternal != null) {
Jeff Brownd728bf52012-09-08 18:05:28 -07001190 mHandler.sendEmptyMessage(MSG_UPDATE_VIEWPORT);
1191 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001192 }
1193
Michael Wright3f145a22014-07-22 19:46:03 -07001194 private void setDisplayPropertiesInternal(int displayId, boolean hasContent,
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001195 float requestedRefreshRate, int requestedModeId, boolean inTraversal) {
Craig Mautner722285e2012-09-07 13:55:58 -07001196 synchronized (mSyncRoot) {
1197 LogicalDisplay display = mLogicalDisplays.get(displayId);
Michael Wright3f145a22014-07-22 19:46:03 -07001198 if (display == null) {
1199 return;
1200 }
1201 if (display.hasContentLocked() != hasContent) {
Jeff Brown33041bd2013-08-02 21:11:14 -07001202 if (DEBUG) {
1203 Slog.d(TAG, "Display " + displayId + " hasContent flag changed: "
1204 + "hasContent=" + hasContent + ", inTraversal=" + inTraversal);
1205 }
1206
Craig Mautner722285e2012-09-07 13:55:58 -07001207 display.setHasContentLocked(hasContent);
Craig Mautner65d11b32012-10-01 13:59:52 -07001208 scheduleTraversalLocked(inTraversal);
Craig Mautner722285e2012-09-07 13:55:58 -07001209 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001210 if (requestedModeId == 0 && requestedRefreshRate != 0) {
1211 // Scan supported modes returned by display.getInfo() to find a mode with the same
1212 // size as the default display mode but with the specified refresh rate instead.
1213 requestedModeId = display.getDisplayInfoLocked().findDefaultModeByRefreshRate(
1214 requestedRefreshRate);
1215 }
Michael Wrighta3dab232019-02-22 16:54:21 +00001216 mDisplayModeDirector.getAppRequestObserver().setAppRequestedMode(
1217 displayId, requestedModeId);
Craig Mautner722285e2012-09-07 13:55:58 -07001218 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001219 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001220
Filip Gruszczynskid2e86402015-02-19 13:05:03 -08001221 private void setDisplayOffsetsInternal(int displayId, int x, int y) {
1222 synchronized (mSyncRoot) {
1223 LogicalDisplay display = mLogicalDisplays.get(displayId);
1224 if (display == null) {
1225 return;
1226 }
1227 if (display.getDisplayOffsetXLocked() != x
1228 || display.getDisplayOffsetYLocked() != y) {
1229 if (DEBUG) {
1230 Slog.d(TAG, "Display " + displayId + " burn-in offset set to ("
1231 + x + ", " + y + ")");
1232 }
1233 display.setDisplayOffsetsLocked(x, y);
1234 scheduleTraversalLocked(false);
1235 }
1236 }
1237 }
1238
Sam Lin4c3ac2b2019-02-18 04:50:26 -08001239 private void setDisplayScalingDisabledInternal(int displayId, boolean disable) {
1240 synchronized (mSyncRoot) {
1241 final LogicalDisplay display = mLogicalDisplays.get(displayId);
1242 if (display == null) {
1243 return;
1244 }
1245 if (display.isDisplayScalingDisabled() != disable) {
1246 if (DEBUG) {
1247 Slog.d(TAG, "Display " + displayId + " content scaling disabled = " + disable);
1248 }
1249 display.setDisplayScalingDisabledLocked(disable);
1250 scheduleTraversalLocked(false);
1251 }
1252 }
1253 }
1254
Andrii Kulianfb1bf692017-01-17 11:17:34 -08001255 // Updates the lists of UIDs that are present on displays.
1256 private void setDisplayAccessUIDsInternal(SparseArray<IntArray> newDisplayAccessUIDs) {
1257 synchronized (mSyncRoot) {
1258 mDisplayAccessUIDs.clear();
1259 for (int i = newDisplayAccessUIDs.size() - 1; i >= 0; i--) {
1260 mDisplayAccessUIDs.append(newDisplayAccessUIDs.keyAt(i),
1261 newDisplayAccessUIDs.valueAt(i));
1262 }
1263 }
1264 }
1265
1266 // Checks if provided UID's content is present on the display and UID has access to it.
1267 private boolean isUidPresentOnDisplayInternal(int uid, int displayId) {
1268 synchronized (mSyncRoot) {
1269 final IntArray displayUIDs = mDisplayAccessUIDs.get(displayId);
1270 return displayUIDs != null && displayUIDs.indexOf(uid) != -1;
1271 }
1272 }
1273
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001274 @Nullable
1275 private IBinder getDisplayToken(int displayId) {
1276 synchronized (mSyncRoot) {
1277 final LogicalDisplay display = mLogicalDisplays.get(displayId);
1278 if (display != null) {
1279 final DisplayDevice device = display.getPrimaryDisplayDeviceLocked();
1280 if (device != null) {
1281 return device.getDisplayTokenLocked();
1282 }
1283 }
1284 }
1285
1286 return null;
1287 }
1288
Robert Carr66b5664f2019-04-02 14:18:56 -07001289 private SurfaceControl.ScreenshotGraphicBuffer screenshotInternal(int displayId) {
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001290 final IBinder token = getDisplayToken(displayId);
1291 if (token == null) {
Robert Carr66b5664f2019-04-02 14:18:56 -07001292 return null;
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001293 }
Robert Carr66b5664f2019-04-02 14:18:56 -07001294 return SurfaceControl.screenshotToBufferWithSecureLayersUnsafe(
Peiyong Line3e5efd2019-03-21 20:59:47 +00001295 token, new Rect(), 0 /* width */, 0 /* height */,
1296 false /* useIdentityTransform */, 0 /* rotation */);
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001297 }
1298
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001299 @VisibleForTesting
1300 DisplayedContentSamplingAttributes getDisplayedContentSamplingAttributesInternal(
1301 int displayId) {
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001302 final IBinder token = getDisplayToken(displayId);
1303 if (token == null) {
1304 return null;
1305 }
1306 return SurfaceControl.getDisplayedContentSamplingAttributes(token);
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001307 }
1308
1309 @VisibleForTesting
1310 boolean setDisplayedContentSamplingEnabledInternal(
1311 int displayId, boolean enable, int componentMask, int maxFrames) {
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001312 final IBinder token = getDisplayToken(displayId);
1313 if (token == null) {
1314 return false;
1315 }
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001316 return SurfaceControl.setDisplayedContentSamplingEnabled(
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001317 token, enable, componentMask, maxFrames);
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001318 }
1319
1320 @VisibleForTesting
1321 DisplayedContentSample getDisplayedContentSampleInternal(int displayId,
1322 long maxFrames, long timestamp) {
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001323 final IBinder token = getDisplayToken(displayId);
1324 if (token == null) {
1325 return null;
1326 }
1327 return SurfaceControl.getDisplayedContentSample(token, maxFrames, timestamp);
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001328 }
1329
Michael Wrighta3dab232019-02-22 16:54:21 +00001330 private void onAllowedDisplayModesChangedInternal() {
1331 boolean changed = false;
1332 synchronized (mSyncRoot) {
1333 final int count = mLogicalDisplays.size();
1334 for (int i = 0; i < count; i++) {
1335 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1336 int displayId = mLogicalDisplays.keyAt(i);
1337 int[] allowedModes = mDisplayModeDirector.getAllowedModes(displayId);
1338 // Note that order is important here since not all display devices are capable of
1339 // automatically switching, so we do actually want to check for equality and not
1340 // just equivalent contents (regardless of order).
1341 if (!Arrays.equals(allowedModes, display.getAllowedDisplayModesLocked())) {
1342 display.setAllowedDisplayModesLocked(allowedModes);
1343 changed = true;
1344 }
1345 }
1346 if (changed) {
1347 scheduleTraversalLocked(false);
1348 }
1349 }
1350 }
1351
Jeff Brownd728bf52012-09-08 18:05:28 -07001352 private void clearViewportsLocked() {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001353 mViewports.clear();
Craig Mautner722285e2012-09-07 13:55:58 -07001354 }
1355
Robert Carrae606b42018-02-15 15:36:23 -08001356 private void configureDisplayLocked(SurfaceControl.Transaction t, DisplayDevice device) {
Jeff Brownd14c8c92014-01-07 18:13:09 -08001357 final DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
1358 final boolean ownContent = (info.flags & DisplayDeviceInfo.FLAG_OWN_CONTENT_ONLY) != 0;
Jeff Browna506a6e2013-06-04 00:02:38 -07001359
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001360 // Find the logical display that the display device is showing.
Jeff Brownd14c8c92014-01-07 18:13:09 -08001361 // Certain displays only ever show their own content.
Craig Mautner722285e2012-09-07 13:55:58 -07001362 LogicalDisplay display = findLogicalDisplayForDeviceLocked(device);
Jeff Brownd14c8c92014-01-07 18:13:09 -08001363 if (!ownContent) {
Jeff Browna506a6e2013-06-04 00:02:38 -07001364 if (display != null && !display.hasContentLocked()) {
1365 // If the display does not have any content of its own, then
1366 // automatically mirror the default logical display contents.
1367 display = null;
1368 }
1369 if (display == null) {
1370 display = mLogicalDisplays.get(Display.DEFAULT_DISPLAY);
1371 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001372 }
1373
1374 // Apply the logical display configuration to the display device.
1375 if (display == null) {
1376 // TODO: no logical display for the device, blank it
Jeff Brownd728bf52012-09-08 18:05:28 -07001377 Slog.w(TAG, "Missing logical display to use for physical display device: "
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001378 + device.getDisplayDeviceInfoLocked());
Jeff Brownd728bf52012-09-08 18:05:28 -07001379 return;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001380 }
Robert Carrae606b42018-02-15 15:36:23 -08001381 display.configureDisplayLocked(t, device, info.state == Display.STATE_OFF);
Arthur Hung41e81e72018-10-31 18:04:56 +08001382 final int viewportType;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001383 // Update the corresponding viewport.
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001384 if ((info.flags & DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY) != 0) {
Arthur Hung41e81e72018-10-31 18:04:56 +08001385 viewportType = VIEWPORT_INTERNAL;
1386 } else if (info.touch == DisplayDeviceInfo.TOUCH_EXTERNAL) {
1387 viewportType = VIEWPORT_EXTERNAL;
1388 } else if (info.touch == DisplayDeviceInfo.TOUCH_VIRTUAL
1389 && !TextUtils.isEmpty(info.uniqueId)) {
1390 viewportType = VIEWPORT_VIRTUAL;
1391 } else {
Arthur Hung46c4e582019-02-12 15:55:28 +08001392 Slog.i(TAG, "Display " + info + " does not support input device matching.");
Arthur Hung41e81e72018-10-31 18:04:56 +08001393 return;
Jeff Brownd728bf52012-09-08 18:05:28 -07001394 }
Santos Cordonee8931e2017-04-05 10:31:15 -07001395
Arthur Hung41e81e72018-10-31 18:04:56 +08001396 populateViewportLocked(viewportType, display.getDisplayIdLocked(), device, info.uniqueId);
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001397 }
1398
1399 /**
1400 * Get internal or external viewport. Create it if does not currently exist.
1401 * @param viewportType - either INTERNAL or EXTERNAL
1402 * @return the viewport with the requested type
1403 */
Arthur Hung41e81e72018-10-31 18:04:56 +08001404 private DisplayViewport getViewportLocked(int viewportType, String uniqueId) {
1405 if (viewportType != VIEWPORT_INTERNAL && viewportType != VIEWPORT_EXTERNAL
1406 && viewportType != VIEWPORT_VIRTUAL) {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001407 Slog.wtf(TAG, "Cannot call getViewportByTypeLocked for type "
1408 + DisplayViewport.typeToString(viewportType));
1409 return null;
1410 }
Arthur Hung41e81e72018-10-31 18:04:56 +08001411
1412 // Only allow a single INTERNAL or EXTERNAL viewport by forcing their uniqueIds
1413 // to be identical (in particular, empty).
1414 // TODO (b/116824030) allow multiple EXTERNAL viewports and remove this function.
1415 if (viewportType != VIEWPORT_VIRTUAL) {
1416 uniqueId = "";
1417 }
1418
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001419 DisplayViewport viewport;
1420 final int count = mViewports.size();
1421 for (int i = 0; i < count; i++) {
1422 viewport = mViewports.get(i);
Arthur Hung41e81e72018-10-31 18:04:56 +08001423 if (viewport.type == viewportType && uniqueId.equals(viewport.uniqueId)) {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001424 return viewport;
1425 }
1426 }
1427
Arthur Hung41e81e72018-10-31 18:04:56 +08001428 // Creates the viewport if none exists.
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001429 viewport = new DisplayViewport();
1430 viewport.type = viewportType;
Arthur Hung41e81e72018-10-31 18:04:56 +08001431 viewport.uniqueId = uniqueId;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001432 mViewports.add(viewport);
1433 return viewport;
1434 }
1435
Arthur Hung41e81e72018-10-31 18:04:56 +08001436 private void populateViewportLocked(int viewportType,
1437 int displayId, DisplayDevice device, String uniqueId) {
1438 final DisplayViewport viewport = getViewportLocked(viewportType, uniqueId);
Jeff Brownd728bf52012-09-08 18:05:28 -07001439 device.populateViewportLocked(viewport);
Arthur Hung41e81e72018-10-31 18:04:56 +08001440 viewport.valid = true;
1441 viewport.displayId = displayId;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001442 }
1443
1444 private LogicalDisplay findLogicalDisplayForDeviceLocked(DisplayDevice device) {
1445 final int count = mLogicalDisplays.size();
1446 for (int i = 0; i < count; i++) {
1447 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1448 if (display.getPrimaryDisplayDeviceLocked() == device) {
1449 return display;
1450 }
1451 }
1452 return null;
1453 }
1454
Jeff Brownbd6e1502012-08-28 03:27:37 -07001455 private void sendDisplayEventLocked(int displayId, int event) {
1456 Message msg = mHandler.obtainMessage(MSG_DELIVER_DISPLAY_EVENT, displayId, event);
1457 mHandler.sendMessage(msg);
1458 }
1459
Robert Carrae606b42018-02-15 15:36:23 -08001460 // Requests that performTraversals be called at a
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001461 // later time to apply changes to surfaces and displays.
Craig Mautner65d11b32012-10-01 13:59:52 -07001462 private void scheduleTraversalLocked(boolean inTraversal) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001463 if (!mPendingTraversal && mWindowManagerInternal != null) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001464 mPendingTraversal = true;
Craig Mautner65d11b32012-10-01 13:59:52 -07001465 if (!inTraversal) {
1466 mHandler.sendEmptyMessage(MSG_REQUEST_TRAVERSAL);
1467 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001468 }
1469 }
1470
1471 // Runs on Handler thread.
1472 // Delivers display event notifications to callbacks.
Jeff Brownbd6e1502012-08-28 03:27:37 -07001473 private void deliverDisplayEvent(int displayId, int event) {
1474 if (DEBUG) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001475 Slog.d(TAG, "Delivering display event: displayId="
1476 + displayId + ", event=" + event);
Jeff Brownfa25bf52012-07-23 19:26:30 -07001477 }
Jeff Brownfa25bf52012-07-23 19:26:30 -07001478
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001479 // Grab the lock and copy the callbacks.
Jeff Brownbd6e1502012-08-28 03:27:37 -07001480 final int count;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001481 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -07001482 count = mCallbacks.size();
1483 mTempCallbacks.clear();
1484 for (int i = 0; i < count; i++) {
1485 mTempCallbacks.add(mCallbacks.valueAt(i));
Craig Mautner4f67ba62012-08-02 11:23:00 -07001486 }
Jeff Brownbd6e1502012-08-28 03:27:37 -07001487 }
Craig Mautner4f67ba62012-08-02 11:23:00 -07001488
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001489 // After releasing the lock, send the notifications out.
Jeff Brownbd6e1502012-08-28 03:27:37 -07001490 for (int i = 0; i < count; i++) {
1491 mTempCallbacks.get(i).notifyDisplayEventAsync(displayId, event);
1492 }
1493 mTempCallbacks.clear();
Craig Mautner4f67ba62012-08-02 11:23:00 -07001494 }
1495
Michael Wrightc39d47a2014-07-08 18:07:36 -07001496 private IMediaProjectionManager getProjectionService() {
1497 if (mProjectionService == null) {
1498 IBinder b = ServiceManager.getService(Context.MEDIA_PROJECTION_SERVICE);
1499 mProjectionService = IMediaProjectionManager.Stub.asInterface(b);
1500 }
1501 return mProjectionService;
1502 }
1503
Michael Wrighteef0e132017-11-21 17:57:52 +00001504 private UserManager getUserManager() {
1505 return mContext.getSystemService(UserManager.class);
1506 }
1507
Jeff Brown4ccb8232014-01-16 22:16:42 -08001508 private void dumpInternal(PrintWriter pw) {
Jeff Brownbd6e1502012-08-28 03:27:37 -07001509 pw.println("DISPLAY MANAGER (dumpsys display)");
Jeff Brownfa25bf52012-07-23 19:26:30 -07001510
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001511 synchronized (mSyncRoot) {
Jeff Brown9e316a12012-10-08 19:17:06 -07001512 pw.println(" mOnlyCode=" + mOnlyCore);
1513 pw.println(" mSafeMode=" + mSafeMode);
1514 pw.println(" mPendingTraversal=" + mPendingTraversal);
Jeff Brown037c33e2014-04-09 00:31:55 -07001515 pw.println(" mGlobalDisplayState=" + Display.stateToString(mGlobalDisplayState));
Jeff Brown9e316a12012-10-08 19:17:06 -07001516 pw.println(" mNextNonDefaultDisplayId=" + mNextNonDefaultDisplayId);
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001517 pw.println(" mViewports=" + mViewports);
Damien Bargiacchi4364bbf2016-11-01 21:44:20 -07001518 pw.println(" mDefaultDisplayDefaultColorMode=" + mDefaultDisplayDefaultColorMode);
Jeff Brown27f1d672012-10-17 18:32:34 -07001519 pw.println(" mSingleDisplayDemoMode=" + mSingleDisplayDemoMode);
Jeff Brownce468a32013-11-21 16:42:03 -08001520 pw.println(" mWifiDisplayScanRequestCount=" + mWifiDisplayScanRequestCount);
Michael Wrighteedcbf12017-08-16 23:14:54 +01001521 pw.println(" mStableDisplaySize=" + mStableDisplaySize);
Kenny Guy2047db92019-02-21 13:04:05 +00001522 pw.println(" mMinimumBrightnessCurve=" + mMinimumBrightnessCurve);
Jeff Brown9e316a12012-10-08 19:17:06 -07001523
Jeff Brownbd6e1502012-08-28 03:27:37 -07001524 IndentingPrintWriter ipw = new IndentingPrintWriter(pw, " ");
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001525 ipw.increaseIndent();
Jeff Brownbd6e1502012-08-28 03:27:37 -07001526
1527 pw.println();
1528 pw.println("Display Adapters: size=" + mDisplayAdapters.size());
Jeff Brown848c2dc2012-08-19 20:18:08 -07001529 for (DisplayAdapter adapter : mDisplayAdapters) {
Jeff Brownbd6e1502012-08-28 03:27:37 -07001530 pw.println(" " + adapter.getName());
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001531 adapter.dumpLocked(ipw);
Jeff Brown848c2dc2012-08-19 20:18:08 -07001532 }
Craig Mautner9de49362012-08-02 14:30:30 -07001533
Jeff Brownbd6e1502012-08-28 03:27:37 -07001534 pw.println();
1535 pw.println("Display Devices: size=" + mDisplayDevices.size());
1536 for (DisplayDevice device : mDisplayDevices) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001537 pw.println(" " + device.getDisplayDeviceInfoLocked());
1538 device.dumpLocked(ipw);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001539 }
1540
1541 final int logicalDisplayCount = mLogicalDisplays.size();
1542 pw.println();
1543 pw.println("Logical Displays: size=" + logicalDisplayCount);
1544 for (int i = 0; i < logicalDisplayCount; i++) {
1545 int displayId = mLogicalDisplays.keyAt(i);
1546 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1547 pw.println(" Display " + displayId + ":");
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001548 display.dumpLocked(ipw);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001549 }
Jeff Brownce468a32013-11-21 16:42:03 -08001550
Michael Wrighta3dab232019-02-22 16:54:21 +00001551 pw.println();
1552 mDisplayModeDirector.dump(pw);
1553
Jeff Brownce468a32013-11-21 16:42:03 -08001554 final int callbackCount = mCallbacks.size();
1555 pw.println();
1556 pw.println("Callbacks: size=" + callbackCount);
1557 for (int i = 0; i < callbackCount; i++) {
1558 CallbackRecord callback = mCallbacks.valueAt(i);
1559 pw.println(" " + i + ": mPid=" + callback.mPid
1560 + ", mWifiDisplayScanRequested=" + callback.mWifiDisplayScanRequested);
1561 }
Jeff Brownad9ef192014-04-08 17:26:30 -07001562
1563 if (mDisplayPowerController != null) {
1564 mDisplayPowerController.dump(pw);
1565 }
Michael Wright1c9977b2016-07-12 13:30:10 -07001566
1567 pw.println();
1568 mPersistentDataStore.dump(pw);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001569 }
1570 }
1571
Dan Gittik122df862018-03-28 16:59:22 +01001572 private static float[] getFloatArray(TypedArray array) {
1573 int length = array.length();
1574 float[] floatArray = new float[length];
1575 for (int i = 0; i < length; i++) {
1576 floatArray[i] = array.getFloat(i, Float.NaN);
1577 }
1578 array.recycle();
1579 return floatArray;
1580 }
1581
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001582 /**
1583 * This is the object that everything in the display manager locks on.
1584 * We make it an inner class within the {@link DisplayManagerService} to so that it is
1585 * clear that the object belongs to the display manager service and that it is
1586 * a unique object with a special purpose.
1587 */
1588 public static final class SyncRoot {
1589 }
1590
Santos Cordonee8931e2017-04-05 10:31:15 -07001591 @VisibleForTesting
1592 static class Injector {
1593 VirtualDisplayAdapter getVirtualDisplayAdapter(SyncRoot syncRoot, Context context,
1594 Handler handler, DisplayAdapter.Listener displayAdapterListener) {
1595 return new VirtualDisplayAdapter(syncRoot, context, handler, displayAdapterListener);
1596 }
Santos Cordonc22c5632017-06-21 16:03:49 -07001597
1598 long getDefaultDisplayDelayTimeout() {
1599 return WAIT_FOR_DEFAULT_DISPLAY_TIMEOUT;
1600 }
Santos Cordonee8931e2017-04-05 10:31:15 -07001601 }
1602
Alex Sakhartchouk879d24f2017-06-20 22:01:19 -04001603 @VisibleForTesting
1604 DisplayDeviceInfo getDisplayDeviceInfoInternal(int displayId) {
1605 synchronized (mSyncRoot) {
1606 LogicalDisplay display = mLogicalDisplays.get(displayId);
1607 if (display != null) {
1608 DisplayDevice displayDevice = display.getPrimaryDisplayDeviceLocked();
1609 return displayDevice.getDisplayDeviceInfoLocked();
1610 }
1611 return null;
1612 }
1613 }
1614
Jeff Brownbd6e1502012-08-28 03:27:37 -07001615 private final class DisplayManagerHandler extends Handler {
1616 public DisplayManagerHandler(Looper looper) {
1617 super(looper, null, true /*async*/);
Jeff Brown848c2dc2012-08-19 20:18:08 -07001618 }
Jeff Brownbf5740e2012-08-19 23:20:02 -07001619
Jeff Brownbd6e1502012-08-28 03:27:37 -07001620 @Override
1621 public void handleMessage(Message msg) {
1622 switch (msg.what) {
Santos Cordonc22c5632017-06-21 16:03:49 -07001623 case MSG_REGISTER_DEFAULT_DISPLAY_ADAPTERS:
1624 registerDefaultDisplayAdapters();
Jeff Brownbd6e1502012-08-28 03:27:37 -07001625 break;
1626
1627 case MSG_REGISTER_ADDITIONAL_DISPLAY_ADAPTERS:
1628 registerAdditionalDisplayAdapters();
1629 break;
1630
1631 case MSG_DELIVER_DISPLAY_EVENT:
1632 deliverDisplayEvent(msg.arg1, msg.arg2);
1633 break;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001634
1635 case MSG_REQUEST_TRAVERSAL:
Jeff Brown4ccb8232014-01-16 22:16:42 -08001636 mWindowManagerInternal.requestTraversalFromDisplayManager();
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001637 break;
Jeff Brownd728bf52012-09-08 18:05:28 -07001638
1639 case MSG_UPDATE_VIEWPORT: {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001640 final boolean changed;
Jeff Brownd728bf52012-09-08 18:05:28 -07001641 synchronized (mSyncRoot) {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001642 changed = !mTempViewports.equals(mViewports);
1643 if (changed) {
1644 mTempViewports.clear();
1645 for (DisplayViewport d : mViewports) {
1646 mTempViewports.add(d.makeCopy());
1647 }
Santos Cordonee8931e2017-04-05 10:31:15 -07001648 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001649 }
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001650 if (changed) {
1651 mInputManagerInternal.setDisplayViewports(mTempViewports);
1652 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001653 break;
1654 }
Kenny Guy22bd0442017-10-26 00:15:54 +01001655
Michael Wrighteef0e132017-11-21 17:57:52 +00001656 case MSG_LOAD_BRIGHTNESS_CONFIGURATION:
1657 loadBrightnessConfiguration();
1658 break;
Jeff Brownbd6e1502012-08-28 03:27:37 -07001659 }
1660 }
1661 }
1662
1663 private final class DisplayAdapterListener implements DisplayAdapter.Listener {
1664 @Override
1665 public void onDisplayDeviceEvent(DisplayDevice device, int event) {
1666 switch (event) {
1667 case DisplayAdapter.DISPLAY_DEVICE_EVENT_ADDED:
1668 handleDisplayDeviceAdded(device);
1669 break;
1670
1671 case DisplayAdapter.DISPLAY_DEVICE_EVENT_CHANGED:
1672 handleDisplayDeviceChanged(device);
1673 break;
1674
1675 case DisplayAdapter.DISPLAY_DEVICE_EVENT_REMOVED:
1676 handleDisplayDeviceRemoved(device);
1677 break;
1678 }
1679 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001680
1681 @Override
1682 public void onTraversalRequested() {
1683 synchronized (mSyncRoot) {
Craig Mautner65d11b32012-10-01 13:59:52 -07001684 scheduleTraversalLocked(false);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001685 }
1686 }
Jeff Brownbd6e1502012-08-28 03:27:37 -07001687 }
1688
1689 private final class CallbackRecord implements DeathRecipient {
Jeff Brownce468a32013-11-21 16:42:03 -08001690 public final int mPid;
Jeff Brownbd6e1502012-08-28 03:27:37 -07001691 private final IDisplayManagerCallback mCallback;
1692
Jeff Brownce468a32013-11-21 16:42:03 -08001693 public boolean mWifiDisplayScanRequested;
1694
Jeff Brownbd6e1502012-08-28 03:27:37 -07001695 public CallbackRecord(int pid, IDisplayManagerCallback callback) {
1696 mPid = pid;
1697 mCallback = callback;
1698 }
1699
1700 @Override
1701 public void binderDied() {
1702 if (DEBUG) {
1703 Slog.d(TAG, "Display listener for pid " + mPid + " died.");
1704 }
Jeff Brownce468a32013-11-21 16:42:03 -08001705 onCallbackDied(this);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001706 }
1707
1708 public void notifyDisplayEventAsync(int displayId, int event) {
1709 try {
1710 mCallback.onDisplayEvent(displayId, event);
1711 } catch (RemoteException ex) {
1712 Slog.w(TAG, "Failed to notify process "
1713 + mPid + " that displays changed, assuming it died.", ex);
1714 binderDied();
1715 }
1716 }
1717 }
Jeff Brown4ccb8232014-01-16 22:16:42 -08001718
Santos Cordonee8931e2017-04-05 10:31:15 -07001719 @VisibleForTesting
1720 final class BinderService extends IDisplayManager.Stub {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001721 /**
1722 * Returns information about the specified logical display.
1723 *
1724 * @param displayId The logical display id.
lumarkec75b422019-01-07 15:58:38 +08001725 * @return The logical display info, return {@code null} if the display does not exist or
1726 * the calling UID isn't present on the display. The returned object must be treated as
1727 * immutable.
Jeff Brown4ccb8232014-01-16 22:16:42 -08001728 */
1729 @Override // Binder call
1730 public DisplayInfo getDisplayInfo(int displayId) {
1731 final int callingUid = Binder.getCallingUid();
1732 final long token = Binder.clearCallingIdentity();
1733 try {
1734 return getDisplayInfoInternal(displayId, callingUid);
1735 } finally {
1736 Binder.restoreCallingIdentity(token);
1737 }
1738 }
1739
1740 /**
1741 * Returns the list of all display ids.
1742 */
1743 @Override // Binder call
1744 public int[] getDisplayIds() {
1745 final int callingUid = Binder.getCallingUid();
1746 final long token = Binder.clearCallingIdentity();
1747 try {
1748 return getDisplayIdsInternal(callingUid);
1749 } finally {
1750 Binder.restoreCallingIdentity(token);
1751 }
1752 }
1753
lumarkec75b422019-01-07 15:58:38 +08001754 @Override // Binder call
1755 public boolean isUidPresentOnDisplay(int uid, int displayId) {
1756 final long token = Binder.clearCallingIdentity();
1757 try {
1758 return isUidPresentOnDisplayInternal(uid, displayId);
1759 } finally {
1760 Binder.restoreCallingIdentity(token);
1761 }
1762 }
1763
Michael Wrighteedcbf12017-08-16 23:14:54 +01001764 /**
1765 * Returns the stable device display size, in pixels.
1766 */
1767 @Override // Binder call
1768 public Point getStableDisplaySize() {
1769 final long token = Binder.clearCallingIdentity();
1770 try {
1771 return getStableDisplaySizeInternal();
1772 } finally {
1773 Binder.restoreCallingIdentity(token);
1774 }
1775 }
1776
Jeff Brown4ccb8232014-01-16 22:16:42 -08001777 @Override // Binder call
1778 public void registerCallback(IDisplayManagerCallback callback) {
1779 if (callback == null) {
1780 throw new IllegalArgumentException("listener must not be null");
1781 }
1782
1783 final int callingPid = Binder.getCallingPid();
1784 final long token = Binder.clearCallingIdentity();
1785 try {
1786 registerCallbackInternal(callback, callingPid);
1787 } finally {
1788 Binder.restoreCallingIdentity(token);
1789 }
1790 }
1791
1792 @Override // Binder call
1793 public void startWifiDisplayScan() {
1794 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1795 "Permission required to start wifi display scans");
1796
1797 final int callingPid = Binder.getCallingPid();
1798 final long token = Binder.clearCallingIdentity();
1799 try {
1800 startWifiDisplayScanInternal(callingPid);
1801 } finally {
1802 Binder.restoreCallingIdentity(token);
1803 }
1804 }
1805
1806 @Override // Binder call
1807 public void stopWifiDisplayScan() {
1808 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1809 "Permission required to stop wifi display scans");
1810
1811 final int callingPid = Binder.getCallingPid();
1812 final long token = Binder.clearCallingIdentity();
1813 try {
1814 stopWifiDisplayScanInternal(callingPid);
1815 } finally {
1816 Binder.restoreCallingIdentity(token);
1817 }
1818 }
1819
1820 @Override // Binder call
1821 public void connectWifiDisplay(String address) {
1822 if (address == null) {
1823 throw new IllegalArgumentException("address must not be null");
1824 }
1825 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1826 "Permission required to connect to a wifi display");
1827
1828 final long token = Binder.clearCallingIdentity();
1829 try {
1830 connectWifiDisplayInternal(address);
1831 } finally {
1832 Binder.restoreCallingIdentity(token);
1833 }
1834 }
1835
1836 @Override // Binder call
1837 public void disconnectWifiDisplay() {
1838 // This request does not require special permissions.
1839 // Any app can request disconnection from the currently active wifi display.
1840 // This exception should no longer be needed once wifi display control moves
1841 // to the media router service.
1842
1843 final long token = Binder.clearCallingIdentity();
1844 try {
1845 disconnectWifiDisplayInternal();
1846 } finally {
1847 Binder.restoreCallingIdentity(token);
1848 }
1849 }
1850
1851 @Override // Binder call
1852 public void renameWifiDisplay(String address, String alias) {
1853 if (address == null) {
1854 throw new IllegalArgumentException("address must not be null");
1855 }
1856 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1857 "Permission required to rename to a wifi display");
1858
1859 final long token = Binder.clearCallingIdentity();
1860 try {
1861 renameWifiDisplayInternal(address, alias);
1862 } finally {
1863 Binder.restoreCallingIdentity(token);
1864 }
1865 }
1866
1867 @Override // Binder call
1868 public void forgetWifiDisplay(String address) {
1869 if (address == null) {
1870 throw new IllegalArgumentException("address must not be null");
1871 }
1872 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1873 "Permission required to forget to a wifi display");
1874
1875 final long token = Binder.clearCallingIdentity();
1876 try {
1877 forgetWifiDisplayInternal(address);
1878 } finally {
1879 Binder.restoreCallingIdentity(token);
1880 }
1881 }
1882
1883 @Override // Binder call
1884 public void pauseWifiDisplay() {
1885 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1886 "Permission required to pause a wifi display session");
1887
1888 final long token = Binder.clearCallingIdentity();
1889 try {
1890 pauseWifiDisplayInternal();
1891 } finally {
1892 Binder.restoreCallingIdentity(token);
1893 }
1894 }
1895
1896 @Override // Binder call
1897 public void resumeWifiDisplay() {
1898 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1899 "Permission required to resume a wifi display session");
1900
1901 final long token = Binder.clearCallingIdentity();
1902 try {
1903 resumeWifiDisplayInternal();
1904 } finally {
1905 Binder.restoreCallingIdentity(token);
1906 }
1907 }
1908
1909 @Override // Binder call
1910 public WifiDisplayStatus getWifiDisplayStatus() {
1911 // This request does not require special permissions.
1912 // Any app can get information about available wifi displays.
1913
1914 final long token = Binder.clearCallingIdentity();
1915 try {
1916 return getWifiDisplayStatusInternal();
1917 } finally {
1918 Binder.restoreCallingIdentity(token);
1919 }
1920 }
1921
1922 @Override // Binder call
Michael Wright1c9977b2016-07-12 13:30:10 -07001923 public void requestColorMode(int displayId, int colorMode) {
Michael Wright58e829f2015-09-15 00:13:26 +01001924 mContext.enforceCallingOrSelfPermission(
Michael Wright1c9977b2016-07-12 13:30:10 -07001925 Manifest.permission.CONFIGURE_DISPLAY_COLOR_MODE,
1926 "Permission required to change the display color mode");
Michael Wright58e829f2015-09-15 00:13:26 +01001927 final long token = Binder.clearCallingIdentity();
1928 try {
Michael Wright1c9977b2016-07-12 13:30:10 -07001929 requestColorModeInternal(displayId, colorMode);
Michael Wright58e829f2015-09-15 00:13:26 +01001930 } finally {
1931 Binder.restoreCallingIdentity(token);
1932 }
1933 }
1934
1935 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07001936 public int createVirtualDisplay(IVirtualDisplayCallback callback,
Michael Wrightc39d47a2014-07-08 18:07:36 -07001937 IMediaProjection projection, String packageName, String name,
Santos Cordonee8931e2017-04-05 10:31:15 -07001938 int width, int height, int densityDpi, Surface surface, int flags,
1939 String uniqueId) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001940 final int callingUid = Binder.getCallingUid();
1941 if (!validatePackageName(callingUid, packageName)) {
1942 throw new SecurityException("packageName must match the calling uid");
1943 }
Michael Wright75ee9fc2014-09-01 19:55:22 -07001944 if (callback == null) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001945 throw new IllegalArgumentException("appToken must not be null");
1946 }
1947 if (TextUtils.isEmpty(name)) {
1948 throw new IllegalArgumentException("name must be non-null and non-empty");
1949 }
1950 if (width <= 0 || height <= 0 || densityDpi <= 0) {
1951 throw new IllegalArgumentException("width, height, and densityDpi must be "
1952 + "greater than 0");
1953 }
Pablo Ceballoseb3370d2016-08-31 15:00:17 -07001954 if (surface != null && surface.isSingleBuffered()) {
Pablo Ceballosaff2f942016-07-29 14:49:55 -07001955 throw new IllegalArgumentException("Surface can't be single-buffered");
1956 }
Michael Wrightc39d47a2014-07-08 18:07:36 -07001957
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001958 if ((flags & VIRTUAL_DISPLAY_FLAG_PUBLIC) != 0) {
1959 flags |= VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR;
1960
1961 // Public displays can't be allowed to show content when locked.
Andrii Kulian7211d2e2017-01-27 15:58:05 -08001962 if ((flags & VIRTUAL_DISPLAY_FLAG_CAN_SHOW_WITH_INSECURE_KEYGUARD) != 0) {
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001963 throw new IllegalArgumentException(
1964 "Public display must not be marked as SHOW_WHEN_LOCKED_INSECURE");
1965 }
Michael Wright6720be42014-07-29 19:14:16 -07001966 }
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001967 if ((flags & VIRTUAL_DISPLAY_FLAG_OWN_CONTENT_ONLY) != 0) {
1968 flags &= ~VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR;
Michael Wright6720be42014-07-29 19:14:16 -07001969 }
1970
Michael Wrightc39d47a2014-07-08 18:07:36 -07001971 if (projection != null) {
1972 try {
1973 if (!getProjectionService().isValidMediaProjection(projection)) {
1974 throw new SecurityException("Invalid media projection");
1975 }
Michael Wright6720be42014-07-29 19:14:16 -07001976 flags = projection.applyVirtualDisplayFlags(flags);
Michael Wrightc39d47a2014-07-08 18:07:36 -07001977 } catch (RemoteException e) {
Michael Wright6720be42014-07-29 19:14:16 -07001978 throw new SecurityException("unable to validate media projection or flags");
Michael Wrightc39d47a2014-07-08 18:07:36 -07001979 }
1980 }
1981
Michael Wright6720be42014-07-29 19:14:16 -07001982 if (callingUid != Process.SYSTEM_UID &&
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001983 (flags & VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR) != 0) {
Michael Wrightc39d47a2014-07-08 18:07:36 -07001984 if (!canProjectVideo(projection)) {
1985 throw new SecurityException("Requires CAPTURE_VIDEO_OUTPUT or "
1986 + "CAPTURE_SECURE_VIDEO_OUTPUT permission, or an appropriate "
1987 + "MediaProjection token in order to create a screen sharing virtual "
1988 + "display.");
1989 }
1990 }
Santos Cordonb6992f22018-01-30 14:51:20 -08001991 if (callingUid != Process.SYSTEM_UID && (flags & VIRTUAL_DISPLAY_FLAG_SECURE) != 0) {
Michael Wrightc39d47a2014-07-08 18:07:36 -07001992 if (!canProjectSecureVideo(projection)) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001993 throw new SecurityException("Requires CAPTURE_SECURE_VIDEO_OUTPUT "
Michael Wrightc39d47a2014-07-08 18:07:36 -07001994 + "or an appropriate MediaProjection token to create a "
1995 + "secure virtual display.");
Jeff Brown4ccb8232014-01-16 22:16:42 -08001996 }
1997 }
1998
Chilun67a379b2019-04-11 19:49:42 +08001999 // Sometimes users can have sensitive information in system decoration windows. An app
2000 // could create a virtual display with system decorations support and read the user info
2001 // from the surface.
2002 // We should only allow adding flag VIRTUAL_DISPLAY_FLAG_SHOULD_SHOW_SYSTEM_DECORATIONS
2003 // to virtual displays that are owned by the system.
2004 if (callingUid != Process.SYSTEM_UID
2005 && (flags & VIRTUAL_DISPLAY_FLAG_SHOULD_SHOW_SYSTEM_DECORATIONS) != 0) {
2006 if (!checkCallingPermission(INTERNAL_SYSTEM_WINDOW, "createVirtualDisplay()")) {
2007 throw new SecurityException("Requires INTERNAL_SYSTEM_WINDOW permission");
2008 }
2009 }
2010
Jeff Brown4ccb8232014-01-16 22:16:42 -08002011 final long token = Binder.clearCallingIdentity();
2012 try {
Santos Cordonee8931e2017-04-05 10:31:15 -07002013 return createVirtualDisplayInternal(callback, projection, callingUid, packageName,
2014 name, width, height, densityDpi, surface, flags, uniqueId);
Jeff Brown4ccb8232014-01-16 22:16:42 -08002015 } finally {
2016 Binder.restoreCallingIdentity(token);
2017 }
2018 }
2019
2020 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07002021 public void resizeVirtualDisplay(IVirtualDisplayCallback callback,
Michael Wright01e840f2014-06-26 16:03:25 -07002022 int width, int height, int densityDpi) {
Jeff Chang01baf6c2019-08-20 16:21:25 +08002023 if (width <= 0 || height <= 0 || densityDpi <= 0) {
2024 throw new IllegalArgumentException("width, height, and densityDpi must be "
2025 + "greater than 0");
2026 }
Michael Wright01e840f2014-06-26 16:03:25 -07002027 final long token = Binder.clearCallingIdentity();
2028 try {
Michael Wright75ee9fc2014-09-01 19:55:22 -07002029 resizeVirtualDisplayInternal(callback.asBinder(), width, height, densityDpi);
Michael Wright01e840f2014-06-26 16:03:25 -07002030 } finally {
2031 Binder.restoreCallingIdentity(token);
2032 }
2033 }
2034
2035 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07002036 public void setVirtualDisplaySurface(IVirtualDisplayCallback callback, Surface surface) {
Pablo Ceballoseb3370d2016-08-31 15:00:17 -07002037 if (surface != null && surface.isSingleBuffered()) {
2038 throw new IllegalArgumentException("Surface can't be single-buffered");
2039 }
Jeff Brown92207df2014-04-16 13:16:07 -07002040 final long token = Binder.clearCallingIdentity();
2041 try {
Michael Wright75ee9fc2014-09-01 19:55:22 -07002042 setVirtualDisplaySurfaceInternal(callback.asBinder(), surface);
Jeff Brown92207df2014-04-16 13:16:07 -07002043 } finally {
2044 Binder.restoreCallingIdentity(token);
2045 }
2046 }
2047
2048 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07002049 public void releaseVirtualDisplay(IVirtualDisplayCallback callback) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08002050 final long token = Binder.clearCallingIdentity();
2051 try {
Michael Wright75ee9fc2014-09-01 19:55:22 -07002052 releaseVirtualDisplayInternal(callback.asBinder());
Jeff Brown4ccb8232014-01-16 22:16:42 -08002053 } finally {
2054 Binder.restoreCallingIdentity(token);
2055 }
2056 }
2057
2058 @Override // Binder call
chaviwda4c6942018-11-07 15:52:56 -08002059 public void setVirtualDisplayState(IVirtualDisplayCallback callback, boolean isOn) {
2060 final long token = Binder.clearCallingIdentity();
2061 try {
2062 setVirtualDisplayStateInternal(callback.asBinder(), isOn);
2063 } finally {
2064 Binder.restoreCallingIdentity(token);
2065 }
2066 }
2067
2068 @Override // Binder call
Jeff Brown4ccb8232014-01-16 22:16:42 -08002069 public void dump(FileDescriptor fd, final PrintWriter pw, String[] args) {
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -06002070 if (!DumpUtils.checkDumpPermission(mContext, TAG, pw)) return;
Jeff Brown4ccb8232014-01-16 22:16:42 -08002071
2072 final long token = Binder.clearCallingIdentity();
2073 try {
2074 dumpInternal(pw);
2075 } finally {
2076 Binder.restoreCallingIdentity(token);
2077 }
2078 }
2079
Kenny Guy22bd0442017-10-26 00:15:54 +01002080 @Override // Binder call
Kenny Guy29aa30e2017-11-30 13:43:46 +00002081 public ParceledListSlice<BrightnessChangeEvent> getBrightnessEvents(String callingPackage) {
Kenny Guy22bd0442017-10-26 00:15:54 +01002082 mContext.enforceCallingOrSelfPermission(
2083 Manifest.permission.BRIGHTNESS_SLIDER_USAGE,
2084 "Permission to read brightness events.");
Kenny Guy29aa30e2017-11-30 13:43:46 +00002085
2086 final int callingUid = Binder.getCallingUid();
2087 AppOpsManager appOpsManager = mContext.getSystemService(AppOpsManager.class);
Jeff Sharkeyd9311192018-04-16 16:50:34 +00002088 final int mode = appOpsManager.noteOp(AppOpsManager.OP_GET_USAGE_STATS,
Kenny Guy29aa30e2017-11-30 13:43:46 +00002089 callingUid, callingPackage);
2090 final boolean hasUsageStats;
2091 if (mode == AppOpsManager.MODE_DEFAULT) {
2092 // The default behavior here is to check if PackageManager has given the app
2093 // permission.
2094 hasUsageStats = mContext.checkCallingPermission(
2095 Manifest.permission.PACKAGE_USAGE_STATS)
2096 == PackageManager.PERMISSION_GRANTED;
2097 } else {
2098 hasUsageStats = mode == AppOpsManager.MODE_ALLOWED;
2099 }
2100
2101 final int userId = UserHandle.getUserId(callingUid);
Kenny Guy22bd0442017-10-26 00:15:54 +01002102 final long token = Binder.clearCallingIdentity();
2103 try {
Michael Wright144aac92017-12-21 18:37:41 +00002104 synchronized (mSyncRoot) {
2105 return mDisplayPowerController.getBrightnessEvents(userId, hasUsageStats);
2106 }
Kenny Guy22bd0442017-10-26 00:15:54 +01002107 } finally {
2108 Binder.restoreCallingIdentity(token);
2109 }
2110 }
2111
Michael Wrighteef0e132017-11-21 17:57:52 +00002112 @Override // Binder call
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00002113 public ParceledListSlice<AmbientBrightnessDayStats> getAmbientBrightnessStats() {
2114 mContext.enforceCallingOrSelfPermission(
2115 Manifest.permission.ACCESS_AMBIENT_LIGHT_STATS,
2116 "Permission required to to access ambient light stats.");
2117 final int callingUid = Binder.getCallingUid();
2118 final int userId = UserHandle.getUserId(callingUid);
2119 final long token = Binder.clearCallingIdentity();
2120 try {
2121 synchronized (mSyncRoot) {
2122 return mDisplayPowerController.getAmbientBrightnessStats(userId);
2123 }
2124 } finally {
2125 Binder.restoreCallingIdentity(token);
2126 }
2127 }
2128
2129 @Override // Binder call
Michael Wrighteef0e132017-11-21 17:57:52 +00002130 public void setBrightnessConfigurationForUser(
Kenny Guy05ce8092018-01-17 13:44:20 +00002131 BrightnessConfiguration c, @UserIdInt int userId, String packageName) {
Michael Wrighteef0e132017-11-21 17:57:52 +00002132 mContext.enforceCallingOrSelfPermission(
2133 Manifest.permission.CONFIGURE_DISPLAY_BRIGHTNESS,
2134 "Permission required to change the display's brightness configuration");
2135 if (userId != UserHandle.getCallingUserId()) {
2136 mContext.enforceCallingOrSelfPermission(
2137 Manifest.permission.INTERACT_ACROSS_USERS,
2138 "Permission required to change the display brightness"
2139 + " configuration of another user");
2140 }
Kenny Guy05ce8092018-01-17 13:44:20 +00002141 if (packageName != null && !validatePackageName(getCallingUid(), packageName)) {
2142 packageName = null;
2143 }
Michael Wrighteef0e132017-11-21 17:57:52 +00002144 final long token = Binder.clearCallingIdentity();
2145 try {
Kenny Guy05ce8092018-01-17 13:44:20 +00002146 setBrightnessConfigurationForUserInternal(c, userId, packageName);
Michael Wrighteef0e132017-11-21 17:57:52 +00002147 } finally {
2148 Binder.restoreCallingIdentity(token);
2149 }
2150 }
2151
Michael Wrightd8460232018-01-16 18:04:59 +00002152 @Override // Binder call
Kenny Guy6d1009f2018-03-14 14:28:23 +00002153 public BrightnessConfiguration getBrightnessConfigurationForUser(int userId) {
2154 mContext.enforceCallingOrSelfPermission(
2155 Manifest.permission.CONFIGURE_DISPLAY_BRIGHTNESS,
2156 "Permission required to read the display's brightness configuration");
2157 if (userId != UserHandle.getCallingUserId()) {
2158 mContext.enforceCallingOrSelfPermission(
2159 Manifest.permission.INTERACT_ACROSS_USERS,
2160 "Permission required to read the display brightness"
2161 + " configuration of another user");
2162 }
2163 final long token = Binder.clearCallingIdentity();
2164 try {
2165 final int userSerial = getUserManager().getUserSerialNumber(userId);
2166 synchronized (mSyncRoot) {
2167 BrightnessConfiguration config =
2168 mPersistentDataStore.getBrightnessConfiguration(userSerial);
2169 if (config == null) {
2170 config = mDisplayPowerController.getDefaultBrightnessConfiguration();
2171 }
2172 return config;
2173 }
2174 } finally {
2175 Binder.restoreCallingIdentity(token);
2176 }
2177 }
2178
2179 @Override // Binder call
2180 public BrightnessConfiguration getDefaultBrightnessConfiguration() {
2181 mContext.enforceCallingOrSelfPermission(
2182 Manifest.permission.CONFIGURE_DISPLAY_BRIGHTNESS,
2183 "Permission required to read the display's default brightness configuration");
2184 final long token = Binder.clearCallingIdentity();
2185 try {
2186 synchronized (mSyncRoot) {
2187 return mDisplayPowerController.getDefaultBrightnessConfiguration();
2188 }
2189 } finally {
2190 Binder.restoreCallingIdentity(token);
2191 }
2192 }
2193
2194 @Override // Binder call
Michael Wrightd8460232018-01-16 18:04:59 +00002195 public void setTemporaryBrightness(int brightness) {
2196 mContext.enforceCallingOrSelfPermission(
2197 Manifest.permission.CONTROL_DISPLAY_BRIGHTNESS,
2198 "Permission required to set the display's brightness");
2199 final long token = Binder.clearCallingIdentity();
2200 try {
2201 synchronized (mSyncRoot) {
2202 mDisplayPowerController.setTemporaryBrightness(brightness);
2203 }
2204 } finally {
2205 Binder.restoreCallingIdentity(token);
2206 }
2207 }
2208
2209 @Override // Binder call
2210 public void setTemporaryAutoBrightnessAdjustment(float adjustment) {
2211 mContext.enforceCallingOrSelfPermission(
2212 Manifest.permission.CONTROL_DISPLAY_BRIGHTNESS,
2213 "Permission required to set the display's auto brightness adjustment");
2214 final long token = Binder.clearCallingIdentity();
2215 try {
2216 synchronized (mSyncRoot) {
2217 mDisplayPowerController.setTemporaryAutoBrightnessAdjustment(adjustment);
2218 }
2219 } finally {
2220 Binder.restoreCallingIdentity(token);
2221 }
2222 }
2223
Dan Gittik7a32fba2018-03-28 12:19:38 +01002224 @Override // Binder call
2225 public void onShellCommand(FileDescriptor in, FileDescriptor out,
2226 FileDescriptor err, String[] args, ShellCallback callback,
2227 ResultReceiver resultReceiver) {
2228 final long token = Binder.clearCallingIdentity();
2229 try {
2230 DisplayManagerShellCommand command = new DisplayManagerShellCommand(this);
2231 command.exec(this, in, out, err, args, callback, resultReceiver);
2232 } finally {
2233 Binder.restoreCallingIdentity(token);
2234 }
2235 }
2236
Dan Gittik122df862018-03-28 16:59:22 +01002237 @Override // Binder call
2238 public Curve getMinimumBrightnessCurve() {
2239 final long token = Binder.clearCallingIdentity();
2240 try {
2241 return getMinimumBrightnessCurveInternal();
2242 } finally {
2243 Binder.restoreCallingIdentity(token);
2244 }
2245 }
2246
Peiyong Lin277eaff2019-01-16 16:18:22 -08002247 @Override // Binder call
2248 public int getPreferredWideGamutColorSpaceId() {
2249 final long token = Binder.clearCallingIdentity();
2250 try {
2251 return getPreferredWideGamutColorSpaceIdInternal();
2252 } finally {
2253 Binder.restoreCallingIdentity(token);
2254 }
2255 }
2256
Dan Gittik7a32fba2018-03-28 12:19:38 +01002257 void setBrightness(int brightness) {
2258 Settings.System.putIntForUser(mContext.getContentResolver(),
2259 Settings.System.SCREEN_BRIGHTNESS, brightness, UserHandle.USER_CURRENT);
2260 }
2261
2262 void resetBrightnessConfiguration() {
2263 setBrightnessConfigurationForUserInternal(null, mContext.getUserId(),
2264 mContext.getPackageName());
2265 }
2266
Dan Gittika5a2d632019-01-09 14:25:29 +00002267 void setAutoBrightnessLoggingEnabled(boolean enabled) {
2268 if (mDisplayPowerController != null) {
2269 synchronized (mSyncRoot) {
2270 mDisplayPowerController.setAutoBrightnessLoggingEnabled(enabled);
2271 }
2272 }
2273 }
2274
Dan Gittik8dbd7e92018-12-03 15:35:53 +00002275 void setDisplayWhiteBalanceLoggingEnabled(boolean enabled) {
2276 if (mDisplayPowerController != null) {
2277 synchronized (mSyncRoot) {
2278 mDisplayPowerController.setDisplayWhiteBalanceLoggingEnabled(enabled);
2279 }
2280 }
2281 }
2282
2283 void setAmbientColorTemperatureOverride(float cct) {
2284 if (mDisplayPowerController != null) {
2285 synchronized (mSyncRoot) {
2286 mDisplayPowerController.setAmbientColorTemperatureOverride(cct);
2287 }
2288 }
2289 }
2290
Jeff Brown4ccb8232014-01-16 22:16:42 -08002291 private boolean validatePackageName(int uid, String packageName) {
2292 if (packageName != null) {
2293 String[] packageNames = mContext.getPackageManager().getPackagesForUid(uid);
2294 if (packageNames != null) {
2295 for (String n : packageNames) {
2296 if (n.equals(packageName)) {
2297 return true;
2298 }
2299 }
2300 }
2301 }
2302 return false;
2303 }
Michael Wrightc39d47a2014-07-08 18:07:36 -07002304
2305 private boolean canProjectVideo(IMediaProjection projection) {
2306 if (projection != null) {
2307 try {
2308 if (projection.canProjectVideo()) {
2309 return true;
2310 }
2311 } catch (RemoteException e) {
2312 Slog.e(TAG, "Unable to query projection service for permissions", e);
2313 }
2314 }
Chilun67a379b2019-04-11 19:49:42 +08002315 if (checkCallingPermission(CAPTURE_VIDEO_OUTPUT, "canProjectVideo()")) {
Michael Wrightc39d47a2014-07-08 18:07:36 -07002316 return true;
2317 }
2318 return canProjectSecureVideo(projection);
2319 }
2320
2321 private boolean canProjectSecureVideo(IMediaProjection projection) {
2322 if (projection != null) {
2323 try {
2324 if (projection.canProjectSecureVideo()){
2325 return true;
2326 }
2327 } catch (RemoteException e) {
2328 Slog.e(TAG, "Unable to query projection service for permissions", e);
2329 }
2330 }
Chilun67a379b2019-04-11 19:49:42 +08002331 return checkCallingPermission(CAPTURE_SECURE_VIDEO_OUTPUT, "canProjectSecureVideo()");
2332 }
2333
2334 private boolean checkCallingPermission(String permission, String func) {
2335 if (mContext.checkCallingPermission(permission) == PackageManager.PERMISSION_GRANTED) {
2336 return true;
2337 }
2338 final String msg = "Permission Denial: " + func + " from pid=" + Binder.getCallingPid()
2339 + ", uid=" + Binder.getCallingUid() + " requires " + permission;
2340 Slog.w(TAG, msg);
2341 return false;
Michael Wrightc39d47a2014-07-08 18:07:36 -07002342 }
Jeff Brown4ccb8232014-01-16 22:16:42 -08002343 }
2344
2345 private final class LocalService extends DisplayManagerInternal {
2346 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07002347 public void initPowerManagement(final DisplayPowerCallbacks callbacks, Handler handler,
Jeff Brownad9ef192014-04-08 17:26:30 -07002348 SensorManager sensorManager) {
2349 synchronized (mSyncRoot) {
Jeff Brown037c33e2014-04-09 00:31:55 -07002350 DisplayBlanker blanker = new DisplayBlanker() {
2351 @Override
Jeff Brown5d6443b2015-04-10 20:15:01 -07002352 public void requestDisplayState(int state, int brightness) {
Jeff Brown037c33e2014-04-09 00:31:55 -07002353 // The order of operations is important for legacy reasons.
2354 if (state == Display.STATE_OFF) {
Jeff Brown5d6443b2015-04-10 20:15:01 -07002355 requestGlobalDisplayStateInternal(state, brightness);
Jeff Brown037c33e2014-04-09 00:31:55 -07002356 }
2357
2358 callbacks.onDisplayStateChange(state);
2359
2360 if (state != Display.STATE_OFF) {
Jeff Brown5d6443b2015-04-10 20:15:01 -07002361 requestGlobalDisplayStateInternal(state, brightness);
Jeff Brown037c33e2014-04-09 00:31:55 -07002362 }
2363 }
2364 };
Jeff Brownad9ef192014-04-08 17:26:30 -07002365 mDisplayPowerController = new DisplayPowerController(
Jeff Brown037c33e2014-04-09 00:31:55 -07002366 mContext, callbacks, handler, sensorManager, blanker);
Long Lingbc841b02019-07-03 16:43:15 -07002367 mSensorManager = sensorManager;
Jeff Brownad9ef192014-04-08 17:26:30 -07002368 }
Michael Wrighteef0e132017-11-21 17:57:52 +00002369
2370 mHandler.sendEmptyMessage(MSG_LOAD_BRIGHTNESS_CONFIGURATION);
Jeff Brownad9ef192014-04-08 17:26:30 -07002371 }
2372
2373 @Override
2374 public boolean requestPowerState(DisplayPowerRequest request,
2375 boolean waitForNegativeProximity) {
Michael Wrighteef0e132017-11-21 17:57:52 +00002376 synchronized (mSyncRoot) {
2377 return mDisplayPowerController.requestPowerState(request,
2378 waitForNegativeProximity);
2379 }
Jeff Brownad9ef192014-04-08 17:26:30 -07002380 }
2381
2382 @Override
2383 public boolean isProximitySensorAvailable() {
Michael Wrighteef0e132017-11-21 17:57:52 +00002384 synchronized (mSyncRoot) {
2385 return mDisplayPowerController.isProximitySensorAvailable();
2386 }
Jeff Brownad9ef192014-04-08 17:26:30 -07002387 }
2388
2389 @Override
Robert Carr66b5664f2019-04-02 14:18:56 -07002390 public SurfaceControl.ScreenshotGraphicBuffer screenshot(int displayId) {
2391 return screenshotInternal(displayId);
Riddle Hsu654a6f92018-07-13 22:59:36 +08002392 }
2393
2394 @Override
Jeff Brown4ccb8232014-01-16 22:16:42 -08002395 public DisplayInfo getDisplayInfo(int displayId) {
2396 return getDisplayInfoInternal(displayId, Process.myUid());
2397 }
2398
2399 @Override
2400 public void registerDisplayTransactionListener(DisplayTransactionListener listener) {
2401 if (listener == null) {
2402 throw new IllegalArgumentException("listener must not be null");
2403 }
2404
2405 registerDisplayTransactionListenerInternal(listener);
2406 }
2407
2408 @Override
2409 public void unregisterDisplayTransactionListener(DisplayTransactionListener listener) {
2410 if (listener == null) {
2411 throw new IllegalArgumentException("listener must not be null");
2412 }
2413
2414 unregisterDisplayTransactionListenerInternal(listener);
2415 }
2416
2417 @Override
2418 public void setDisplayInfoOverrideFromWindowManager(int displayId, DisplayInfo info) {
2419 setDisplayInfoOverrideFromWindowManagerInternal(displayId, info);
2420 }
2421
2422 @Override
Andrii Kuliancd097992017-03-23 18:31:59 -07002423 public void getNonOverrideDisplayInfo(int displayId, DisplayInfo outInfo) {
2424 getNonOverrideDisplayInfoInternal(displayId, outInfo);
2425 }
2426
2427 @Override
Robert Carrae606b42018-02-15 15:36:23 -08002428 public void performTraversal(SurfaceControl.Transaction t) {
2429 performTraversalInternal(t);
Jeff Brown4ccb8232014-01-16 22:16:42 -08002430 }
2431
2432 @Override
Michael Wright3f145a22014-07-22 19:46:03 -07002433 public void setDisplayProperties(int displayId, boolean hasContent,
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002434 float requestedRefreshRate, int requestedMode, boolean inTraversal) {
2435 setDisplayPropertiesInternal(displayId, hasContent, requestedRefreshRate,
2436 requestedMode, inTraversal);
Jeff Brown4ccb8232014-01-16 22:16:42 -08002437 }
Filip Gruszczynskid2e86402015-02-19 13:05:03 -08002438
2439 @Override
2440 public void setDisplayOffsets(int displayId, int x, int y) {
2441 setDisplayOffsetsInternal(displayId, x, y);
2442 }
Andrii Kulianfb1bf692017-01-17 11:17:34 -08002443
2444 @Override
Sam Lin4c3ac2b2019-02-18 04:50:26 -08002445 public void setDisplayScalingDisabled(int displayId, boolean disableScaling) {
2446 setDisplayScalingDisabledInternal(displayId, disableScaling);
2447 }
2448
2449 @Override
Andrii Kulianfb1bf692017-01-17 11:17:34 -08002450 public void setDisplayAccessUIDs(SparseArray<IntArray> newDisplayAccessUIDs) {
2451 setDisplayAccessUIDsInternal(newDisplayAccessUIDs);
2452 }
2453
2454 @Override
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00002455 public void persistBrightnessTrackerState() {
Michael Wright144aac92017-12-21 18:37:41 +00002456 synchronized (mSyncRoot) {
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00002457 mDisplayPowerController.persistBrightnessTrackerState();
Michael Wright144aac92017-12-21 18:37:41 +00002458 }
Kenny Guycfe7b702017-11-14 21:04:58 +00002459 }
Adrian Roose1d68cd2018-01-17 12:54:50 +01002460
2461 @Override
2462 public void onOverlayChanged() {
2463 synchronized (mSyncRoot) {
Adrian Roos898ec382018-01-17 12:54:50 +01002464 for (int i = 0; i < mDisplayDevices.size(); i++) {
2465 mDisplayDevices.get(i).onOverlayChangedLocked();
Adrian Roose1d68cd2018-01-17 12:54:50 +01002466 }
2467 }
2468 }
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07002469
2470 @Override
2471 public DisplayedContentSamplingAttributes getDisplayedContentSamplingAttributes(
2472 int displayId) {
2473 return getDisplayedContentSamplingAttributesInternal(displayId);
2474 }
2475
2476 @Override
2477 public boolean setDisplayedContentSamplingEnabled(
2478 int displayId, boolean enable, int componentMask, int maxFrames) {
2479 return setDisplayedContentSamplingEnabledInternal(
2480 displayId, enable, componentMask, maxFrames);
2481 }
2482
2483 @Override
2484 public DisplayedContentSample getDisplayedContentSample(int displayId,
2485 long maxFrames, long timestamp) {
2486 return getDisplayedContentSampleInternal(displayId, maxFrames, timestamp);
2487 }
2488
Jeff Brown4ccb8232014-01-16 22:16:42 -08002489 }
Michael Wrighta3dab232019-02-22 16:54:21 +00002490
2491 class AllowedDisplayModeObserver implements DisplayModeDirector.Listener {
2492 public void onAllowedDisplayModesChanged() {
2493 onAllowedDisplayModesChangedInternal();
2494 }
2495 }
Jeff Brownfa25bf52012-07-23 19:26:30 -07002496}