blob: 1058000e0b68fe12d833a5e05fc83e40406e50c1 [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
Charles Chenb28fb722020-05-21 17:19:32 +080019import static android.Manifest.permission.ADD_TRUSTED_DISPLAY;
Chilun67a379b2019-04-11 19:49:42 +080020import static android.Manifest.permission.CAPTURE_SECURE_VIDEO_OUTPUT;
21import static android.Manifest.permission.CAPTURE_VIDEO_OUTPUT;
22import static android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
Andrii Kulianfc8f82b2017-01-26 13:17:27 -080023import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR;
Chilun67a379b2019-04-11 19:49:42 +080024import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_CAN_SHOW_WITH_INSECURE_KEYGUARD;
Andrii Kulianfc8f82b2017-01-26 13:17:27 -080025import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_OWN_CONTENT_ONLY;
26import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_PUBLIC;
27import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_SECURE;
Chilun67a379b2019-04-11 19:49:42 +080028import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_SHOULD_SHOW_SYSTEM_DECORATIONS;
Charles Chenb28fb722020-05-21 17:19:32 +080029import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_TRUSTED;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +010030import static android.hardware.display.DisplayViewport.VIEWPORT_EXTERNAL;
31import static android.hardware.display.DisplayViewport.VIEWPORT_INTERNAL;
32import static android.hardware.display.DisplayViewport.VIEWPORT_VIRTUAL;
Jacky Kao333de4e2020-04-07 15:01:41 +080033import static android.view.Surface.ROTATION_270;
34import static android.view.Surface.ROTATION_90;
Jeff Brownbd6e1502012-08-28 03:27:37 -070035
Jeff Brownfa25bf52012-07-23 19:26:30 -070036import android.Manifest;
Santos Cordonee8931e2017-04-05 10:31:15 -070037import android.annotation.NonNull;
Kenny Guy05ce8092018-01-17 13:44:20 +000038import android.annotation.Nullable;
Michael Wrighteef0e132017-11-21 17:57:52 +000039import android.annotation.UserIdInt;
Kenny Guy29aa30e2017-11-30 13:43:46 +000040import android.app.AppOpsManager;
Jeff Brownfa25bf52012-07-23 19:26:30 -070041import android.content.Context;
42import android.content.pm.PackageManager;
Kenny Guy22bd0442017-10-26 00:15:54 +010043import android.content.pm.ParceledListSlice;
Michael Wrighteedcbf12017-08-16 23:14:54 +010044import android.content.res.Resources;
Dan Gittik122df862018-03-28 16:59:22 +010045import android.content.res.TypedArray;
Galia Peycheva088d7c02019-12-13 11:27:23 +010046import android.database.ContentObserver;
Peiyong Lin277eaff2019-01-16 16:18:22 -080047import android.graphics.ColorSpace;
Michael Wrighteedcbf12017-08-16 23:14:54 +010048import android.graphics.Point;
Robert Carr5c52b132019-02-15 15:48:11 -080049import android.graphics.Rect;
Jeff Brownad9ef192014-04-08 17:26:30 -070050import android.hardware.SensorManager;
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +000051import android.hardware.display.AmbientBrightnessDayStats;
Kenny Guy22bd0442017-10-26 00:15:54 +010052import android.hardware.display.BrightnessChangeEvent;
Michael Wrighteef0e132017-11-21 17:57:52 +000053import android.hardware.display.BrightnessConfiguration;
Dan Gittik122df862018-03-28 16:59:22 +010054import android.hardware.display.Curve;
Jeff Brownbd6e1502012-08-28 03:27:37 -070055import android.hardware.display.DisplayManagerGlobal;
Jeff Brown4ccb8232014-01-16 22:16:42 -080056import android.hardware.display.DisplayManagerInternal;
Jeff Brown4ccb8232014-01-16 22:16:42 -080057import android.hardware.display.DisplayManagerInternal.DisplayTransactionListener;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +010058import android.hardware.display.DisplayViewport;
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -070059import android.hardware.display.DisplayedContentSample;
60import android.hardware.display.DisplayedContentSamplingAttributes;
Jeff Brownfa25bf52012-07-23 19:26:30 -070061import android.hardware.display.IDisplayManager;
Jeff Brownbd6e1502012-08-28 03:27:37 -070062import android.hardware.display.IDisplayManagerCallback;
Michael Wright75ee9fc2014-09-01 19:55:22 -070063import android.hardware.display.IVirtualDisplayCallback;
b0202.jung925435c2020-01-08 18:46:59 +090064import android.hardware.display.VirtualDisplayConfig;
Jeff Browne08ae382012-09-07 20:36:36 -070065import android.hardware.display.WifiDisplayStatus;
Jeff Brown4ccb8232014-01-16 22:16:42 -080066import android.hardware.input.InputManagerInternal;
Michael Wrightc39d47a2014-07-08 18:07:36 -070067import android.media.projection.IMediaProjection;
68import android.media.projection.IMediaProjectionManager;
Galia Peycheva088d7c02019-12-13 11:27:23 +010069import android.net.Uri;
Jeff Brownfa25bf52012-07-23 19:26:30 -070070import android.os.Binder;
Jeff Brownbd6e1502012-08-28 03:27:37 -070071import android.os.Handler;
Jeff Brown64a55af2012-08-26 02:47:39 -070072import android.os.IBinder;
Jeff Brown4ccb8232014-01-16 22:16:42 -080073import android.os.IBinder.DeathRecipient;
Jeff Brownbd6e1502012-08-28 03:27:37 -070074import android.os.Looper;
75import android.os.Message;
Jeff Brown5d6443b2015-04-10 20:15:01 -070076import android.os.PowerManager;
Craig Mautner4504de52013-12-20 09:06:56 -080077import android.os.Process;
Jeff Brownbd6e1502012-08-28 03:27:37 -070078import android.os.RemoteException;
Dan Gittik7a32fba2018-03-28 12:19:38 +010079import android.os.ResultReceiver;
Michael Wrightc39d47a2014-07-08 18:07:36 -070080import android.os.ServiceManager;
Dan Gittik7a32fba2018-03-28 12:19:38 +010081import android.os.ShellCallback;
Jeff Brownbd6e1502012-08-28 03:27:37 -070082import android.os.SystemClock;
Jeff Brownfa25bf52012-07-23 19:26:30 -070083import android.os.SystemProperties;
Jeff Brown5d6443b2015-04-10 20:15:01 -070084import android.os.Trace;
Kenny Guy22bd0442017-10-26 00:15:54 +010085import android.os.UserHandle;
Michael Wrighteef0e132017-11-21 17:57:52 +000086import android.os.UserManager;
Galia Peycheva088d7c02019-12-13 11:27:23 +010087import android.provider.Settings;
Jeff Browna506a6e2013-06-04 00:02:38 -070088import android.text.TextUtils;
Andrii Kulianfb1bf692017-01-17 11:17:34 -080089import android.util.IntArray;
Dan Gittik122df862018-03-28 16:59:22 +010090import android.util.Pair;
Jeff Brownbd6e1502012-08-28 03:27:37 -070091import android.util.Slog;
92import android.util.SparseArray;
Dan Gittik122df862018-03-28 16:59:22 +010093import android.util.Spline;
Jeff Brownfa25bf52012-07-23 19:26:30 -070094import android.view.Display;
95import android.view.DisplayInfo;
Jeff Browna506a6e2013-06-04 00:02:38 -070096import android.view.Surface;
Robert Carrae606b42018-02-15 15:36:23 -080097import android.view.SurfaceControl;
Jeff Browna506a6e2013-06-04 00:02:38 -070098
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +010099import com.android.internal.annotations.GuardedBy;
100import com.android.internal.annotations.VisibleForTesting;
101import com.android.internal.util.DumpUtils;
102import com.android.internal.util.IndentingPrintWriter;
Jorim Jaggied7993b2017-03-28 18:50:01 +0100103import com.android.server.AnimationThread;
Jeff Brown4ccb8232014-01-16 22:16:42 -0800104import com.android.server.DisplayThread;
105import com.android.server.LocalServices;
106import com.android.server.SystemService;
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700107import com.android.server.UiThread;
Jorim Jaggi21c39a72017-10-20 15:47:51 +0200108import com.android.server.wm.SurfaceAnimationThread;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +0100109import com.android.server.wm.WindowManagerInternal;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700110
111import java.io.FileDescriptor;
112import java.io.PrintWriter;
113import java.util.ArrayList;
Jeff Browna506a6e2013-06-04 00:02:38 -0700114import java.util.Arrays;
Jeff Browne75926d2014-09-18 15:24:49 -0700115import java.util.List;
Chris Yed6d35592020-05-01 11:36:33 -0700116import java.util.Optional;
Jeff Brown7f3994e2012-12-04 14:04:28 -0800117import java.util.concurrent.CopyOnWriteArrayList;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700118
119/**
Jeff Brownbd6e1502012-08-28 03:27:37 -0700120 * Manages attached displays.
Jeff Brownfa25bf52012-07-23 19:26:30 -0700121 * <p>
Jeff Brownbd6e1502012-08-28 03:27:37 -0700122 * The {@link DisplayManagerService} manages the global lifecycle of displays,
123 * decides how to configure logical displays based on the physical display devices currently
124 * attached, sends notifications to the system and to applications when the state
125 * changes, and so on.
126 * </p><p>
127 * The display manager service relies on a collection of {@link DisplayAdapter} components,
128 * for discovering and configuring physical display devices attached to the system.
129 * There are separate display adapters for each manner that devices are attached:
Dominik Laskowski26290bb2020-01-15 16:09:55 -0800130 * one display adapter for physical displays, one for simulated non-functional
Jeff Brownbd6e1502012-08-28 03:27:37 -0700131 * displays when the system is headless, one for simulated overlay displays used for
132 * development, one for wifi displays, etc.
133 * </p><p>
134 * Display adapters are only weakly coupled to the display manager service.
135 * Display adapters communicate changes in display device state to the display manager
Craig Mautner722285e2012-09-07 13:55:58 -0700136 * service asynchronously via a {@link DisplayAdapter.Listener} registered
Jeff Brownbd6e1502012-08-28 03:27:37 -0700137 * by the display manager service. This separation of concerns is important for
138 * two main reasons. First, it neatly encapsulates the responsibilities of these
139 * two classes: display adapters handle individual display devices whereas
140 * the display manager service handles the global state. Second, it eliminates
141 * the potential for deadlocks resulting from asynchronous display device discovery.
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700142 * </p>
143 *
144 * <h3>Synchronization</h3>
145 * <p>
146 * Because the display manager may be accessed by multiple threads, the synchronization
147 * story gets a little complicated. In particular, the window manager may call into
148 * the display manager while holding a surface transaction with the expectation that
149 * it can apply changes immediately. Unfortunately, that means we can't just do
150 * everything asynchronously (*grump*).
Jeff Brownbd6e1502012-08-28 03:27:37 -0700151 * </p><p>
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700152 * To make this work, all of the objects that belong to the display manager must
153 * use the same lock. We call this lock the synchronization root and it has a unique
154 * type {@link DisplayManagerService.SyncRoot}. Methods that require this lock are
155 * named with the "Locked" suffix.
156 * </p><p>
157 * Where things get tricky is that the display manager is not allowed to make
158 * any potentially reentrant calls, especially into the window manager. We generally
159 * avoid this by making all potentially reentrant out-calls asynchronous.
Jeff Brownfa25bf52012-07-23 19:26:30 -0700160 * </p>
161 */
Jeff Brown4ccb8232014-01-16 22:16:42 -0800162public final class DisplayManagerService extends SystemService {
Jeff Brownfa25bf52012-07-23 19:26:30 -0700163 private static final String TAG = "DisplayManagerService";
Jeff Brownbd6e1502012-08-28 03:27:37 -0700164 private static final boolean DEBUG = false;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700165
Jeff Brownbbd28a22012-09-20 16:47:15 -0700166 // When this system property is set to 0, WFD is forcibly disabled on boot.
167 // When this system property is set to 1, WFD is forcibly enabled on boot.
168 // Otherwise WFD is enabled according to the value of config_enableWifiDisplay.
169 private static final String FORCE_WIFI_DISPLAY_ENABLE = "persist.debug.wfd.enable";
170
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200171 private static final String PROP_DEFAULT_DISPLAY_TOP_INSET = "persist.sys.displayinset.top";
172
Jeff Brownbd6e1502012-08-28 03:27:37 -0700173 private static final long WAIT_FOR_DEFAULT_DISPLAY_TIMEOUT = 10000;
174
Santos Cordonc22c5632017-06-21 16:03:49 -0700175 private static final int MSG_REGISTER_DEFAULT_DISPLAY_ADAPTERS = 1;
Jeff Brownbd6e1502012-08-28 03:27:37 -0700176 private static final int MSG_REGISTER_ADDITIONAL_DISPLAY_ADAPTERS = 2;
177 private static final int MSG_DELIVER_DISPLAY_EVENT = 3;
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700178 private static final int MSG_REQUEST_TRAVERSAL = 4;
Jeff Brownd728bf52012-09-08 18:05:28 -0700179 private static final int MSG_UPDATE_VIEWPORT = 5;
Michael Wrighta3dab232019-02-22 16:54:21 +0000180 private static final int MSG_LOAD_BRIGHTNESS_CONFIGURATION = 6;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700181
Jeff Brownb880d882014-02-10 19:47:07 -0800182 private final Context mContext;
Jeff Brownbd6e1502012-08-28 03:27:37 -0700183 private final DisplayManagerHandler mHandler;
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700184 private final Handler mUiHandler;
185 private final DisplayAdapterListener mDisplayAdapterListener;
Michael Wrighta3dab232019-02-22 16:54:21 +0000186 private final DisplayModeDirector mDisplayModeDirector;
Jeff Brown4ccb8232014-01-16 22:16:42 -0800187 private WindowManagerInternal mWindowManagerInternal;
188 private InputManagerInternal mInputManagerInternal;
Michael Wrightc39d47a2014-07-08 18:07:36 -0700189 private IMediaProjectionManager mProjectionService;
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700190
191 // The synchronization root for the display manager.
192 // This lock guards most of the display manager's state.
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800193 // NOTE: This is synchronized on while holding WindowManagerService.mWindowMap so never call
194 // into WindowManagerService methods that require mWindowMap while holding this unless you are
195 // very very sure that no deadlock can occur.
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700196 private final SyncRoot mSyncRoot = new SyncRoot();
197
198 // True if in safe mode.
199 // This option may disable certain display adapters.
200 public boolean mSafeMode;
201
202 // True if we are in a special boot mode where only core applications and
203 // services should be started. This option may disable certain display adapters.
204 public boolean mOnlyCore;
205
Jeff Brown27f1d672012-10-17 18:32:34 -0700206 // True if the display manager service should pretend there is only one display
207 // and only tell applications about the existence of the default logical display.
208 // The display manager can still mirror content to secondary displays but applications
209 // cannot present unique content on those displays.
210 // Used for demonstration purposes only.
211 private final boolean mSingleDisplayDemoMode;
212
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700213 // All callback records indexed by calling process id.
214 public final SparseArray<CallbackRecord> mCallbacks =
Jeff Brownbd6e1502012-08-28 03:27:37 -0700215 new SparseArray<CallbackRecord>();
Jeff Brownfa25bf52012-07-23 19:26:30 -0700216
Jeff Brownbd6e1502012-08-28 03:27:37 -0700217 // List of all currently registered display adapters.
218 private final ArrayList<DisplayAdapter> mDisplayAdapters = new ArrayList<DisplayAdapter>();
219
220 // List of all currently connected display devices.
221 private final ArrayList<DisplayDevice> mDisplayDevices = new ArrayList<DisplayDevice>();
222
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700223 // List of all logical displays indexed by logical display id.
Tim Murray890ceb52020-01-30 10:12:40 -0800224 // Any modification to mLogicalDisplays must invalidate the DisplayManagerGlobal cache.
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700225 private final SparseArray<LogicalDisplay> mLogicalDisplays =
226 new SparseArray<LogicalDisplay>();
Jeff Brownbd6e1502012-08-28 03:27:37 -0700227 private int mNextNonDefaultDisplayId = Display.DEFAULT_DISPLAY + 1;
228
Jeff Brown7f3994e2012-12-04 14:04:28 -0800229 // List of all display transaction listeners.
230 private final CopyOnWriteArrayList<DisplayTransactionListener> mDisplayTransactionListeners =
231 new CopyOnWriteArrayList<DisplayTransactionListener>();
232
Jeff Brownad9ef192014-04-08 17:26:30 -0700233 // Display power controller.
234 private DisplayPowerController mDisplayPowerController;
235
Jeff Brown037c33e2014-04-09 00:31:55 -0700236 // The overall display state, independent of changes that might influence one
237 // display or another in particular.
Jeff Brown5d6443b2015-04-10 20:15:01 -0700238 private int mGlobalDisplayState = Display.STATE_ON;
239
240 // The overall display brightness.
Dominik Laskowski26290bb2020-01-15 16:09:55 -0800241 // For now, this only applies to the default display but we may split it up eventually.
Fiona Campbelld4eb2952019-11-04 17:19:56 +0000242 private float mGlobalDisplayBrightness;
Jeff Brown9e316a12012-10-08 19:17:06 -0700243
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700244 // Set to true when there are pending display changes that have yet to be applied
245 // to the surface flinger state.
246 private boolean mPendingTraversal;
Jeff Brownbd6e1502012-08-28 03:27:37 -0700247
Jeff Browne08ae382012-09-07 20:36:36 -0700248 // The Wifi display adapter, or null if not registered.
249 private WifiDisplayAdapter mWifiDisplayAdapter;
250
Jeff Brownce468a32013-11-21 16:42:03 -0800251 // The number of active wifi display scan requests.
252 private int mWifiDisplayScanRequestCount;
253
Jeff Browna506a6e2013-06-04 00:02:38 -0700254 // The virtual display adapter, or null if not registered.
255 private VirtualDisplayAdapter mVirtualDisplayAdapter;
256
Michael Wrighteef0e132017-11-21 17:57:52 +0000257 // The User ID of the current user
258 private @UserIdInt int mCurrentUserId;
259
Michael Wrighteedcbf12017-08-16 23:14:54 +0100260 // The stable device screen height and width. These are not tied to a specific display, even
261 // the default display, because they need to be stable over the course of the device's entire
262 // life, even if the default display changes (e.g. a new monitor is plugged into a PC-like
263 // device).
264 private Point mStableDisplaySize = new Point();
265
Winson72dbe7e2019-04-29 14:55:30 -0700266 // Whether the system has finished booting or not.
267 private boolean mSystemReady;
268
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200269 // The top inset of the default display.
270 // This gets persisted so that the boot animation knows how to transition from the display's
271 // full size to the size configured by the user. Right now we only persist and animate the top
272 // inset, but theoretically we could do it for all of them.
273 private int mDefaultDisplayTopInset;
274
Jeff Brownd728bf52012-09-08 18:05:28 -0700275 // Viewports of the default display and the display that should receive touch
276 // input from an external source. Used by the input system.
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +0100277 @GuardedBy("mSyncRoot")
278 private final ArrayList<DisplayViewport> mViewports = new ArrayList<>();
Jeff Brownd728bf52012-09-08 18:05:28 -0700279
Jeff Brown89d55462012-09-19 11:33:42 -0700280 // Persistent data store for all internal settings maintained by the display manager service.
281 private final PersistentDataStore mPersistentDataStore = new PersistentDataStore();
282
Jeff Brownbd6e1502012-08-28 03:27:37 -0700283 // Temporary callback list, used when sending display events to applications.
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700284 // May be used outside of the lock but only on the handler thread.
285 private final ArrayList<CallbackRecord> mTempCallbacks = new ArrayList<CallbackRecord>();
Jeff Brownbd6e1502012-08-28 03:27:37 -0700286
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700287 // Temporary display info, used for comparing display configurations.
288 private final DisplayInfo mTempDisplayInfo = new DisplayInfo();
289
Jeff Brownd728bf52012-09-08 18:05:28 -0700290 // Temporary viewports, used when sending new viewport information to the
291 // input system. May be used outside of the lock but only on the handler thread.
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +0100292 private final ArrayList<DisplayViewport> mTempViewports = new ArrayList<>();
Jeff Brownd728bf52012-09-08 18:05:28 -0700293
Damien Bargiacchi4364bbf2016-11-01 21:44:20 -0700294 // The default color mode for default displays. Overrides the usual
295 // Display.Display.COLOR_MODE_DEFAULT for displays with the
296 // DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY flag set.
297 private final int mDefaultDisplayDefaultColorMode;
298
Jeff Browne75926d2014-09-18 15:24:49 -0700299 // Temporary list of deferred work to perform when setting the display state.
300 // Only used by requestDisplayState. The field is self-synchronized and only
301 // intended for use inside of the requestGlobalDisplayStateInternal function.
302 private final ArrayList<Runnable> mTempDisplayStateWorkQueue = new ArrayList<Runnable>();
303
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800304 // Lists of UIDs that are present on the displays. Maps displayId -> array of UIDs.
305 private final SparseArray<IntArray> mDisplayAccessUIDs = new SparseArray<>();
306
Santos Cordonee8931e2017-04-05 10:31:15 -0700307 private final Injector mInjector;
308
Dan Gittik122df862018-03-28 16:59:22 +0100309 // The minimum brightness curve, which guarantess that any brightness curve that dips below it
310 // is rejected by the system.
311 private final Curve mMinimumBrightnessCurve;
312 private final Spline mMinimumBrightnessSpline;
Peiyong Lin277eaff2019-01-16 16:18:22 -0800313 private final ColorSpace mWideColorSpace;
Dan Gittik122df862018-03-28 16:59:22 +0100314
Long Lingbc841b02019-07-03 16:43:15 -0700315 private SensorManager mSensorManager;
316
Galia Peycheva088d7c02019-12-13 11:27:23 +0100317 // Whether minimal post processing is allowed by the user.
318 @GuardedBy("mSyncRoot")
319 private boolean mMinimalPostProcessingAllowed;
320
321 // Receives notifications about changes to Settings.
322 private SettingsObserver mSettingsObserver;
323
Jeff Brownb880d882014-02-10 19:47:07 -0800324 public DisplayManagerService(Context context) {
Santos Cordonee8931e2017-04-05 10:31:15 -0700325 this(context, new Injector());
326 }
327
328 @VisibleForTesting
329 DisplayManagerService(Context context, Injector injector) {
Jeff Brownb880d882014-02-10 19:47:07 -0800330 super(context);
Santos Cordonee8931e2017-04-05 10:31:15 -0700331 mInjector = injector;
Jeff Brownb880d882014-02-10 19:47:07 -0800332 mContext = context;
Jeff Brown4ccb8232014-01-16 22:16:42 -0800333 mHandler = new DisplayManagerHandler(DisplayThread.get().getLooper());
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700334 mUiHandler = UiThread.getHandler();
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700335 mDisplayAdapterListener = new DisplayAdapterListener();
Michael Wrighta3dab232019-02-22 16:54:21 +0000336 mDisplayModeDirector = new DisplayModeDirector(context, mHandler);
Jeff Brown27f1d672012-10-17 18:32:34 -0700337 mSingleDisplayDemoMode = SystemProperties.getBoolean("persist.demo.singledisplay", false);
Dan Gittik122df862018-03-28 16:59:22 +0100338 Resources resources = mContext.getResources();
Damien Bargiacchi4364bbf2016-11-01 21:44:20 -0700339 mDefaultDisplayDefaultColorMode = mContext.getResources().getInteger(
Michael Wrighteef0e132017-11-21 17:57:52 +0000340 com.android.internal.R.integer.config_defaultDisplayDefaultColorMode);
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200341 mDefaultDisplayTopInset = SystemProperties.getInt(PROP_DEFAULT_DISPLAY_TOP_INSET, -1);
Dan Gittik122df862018-03-28 16:59:22 +0100342 float[] lux = getFloatArray(resources.obtainTypedArray(
343 com.android.internal.R.array.config_minimumBrightnessCurveLux));
344 float[] nits = getFloatArray(resources.obtainTypedArray(
345 com.android.internal.R.array.config_minimumBrightnessCurveNits));
346 mMinimumBrightnessCurve = new Curve(lux, nits);
347 mMinimumBrightnessSpline = Spline.createSpline(lux, nits);
Jeff Brown5d6443b2015-04-10 20:15:01 -0700348
Michael Wrighta3dab232019-02-22 16:54:21 +0000349 PowerManager pm = mContext.getSystemService(PowerManager.class);
Fiona Campbelld4eb2952019-11-04 17:19:56 +0000350 mGlobalDisplayBrightness = pm.getBrightnessConstraint(
351 PowerManager.BRIGHTNESS_CONSTRAINT_TYPE_DEFAULT);
Michael Wrighteef0e132017-11-21 17:57:52 +0000352 mCurrentUserId = UserHandle.USER_SYSTEM;
Peiyong Lin277eaff2019-01-16 16:18:22 -0800353 ColorSpace[] colorSpaces = SurfaceControl.getCompositionColorSpaces();
354 mWideColorSpace = colorSpaces[1];
Winson72dbe7e2019-04-29 14:55:30 -0700355
356 mSystemReady = false;
Joel Fernandes2d314e12017-04-04 16:32:15 -0700357 }
358
359 public void setupSchedulerPolicies() {
Jorim Jaggied7993b2017-03-28 18:50:01 +0100360 // android.display and android.anim is critical to user experience and we should make sure
Michael Wrighteef0e132017-11-21 17:57:52 +0000361 // it is not in the default foregroup groups, add it to top-app to make sure it uses all
362 // the cores and scheduling settings for top-app when it runs.
Jorim Jaggied7993b2017-03-28 18:50:01 +0100363 Process.setThreadGroupAndCpuset(DisplayThread.get().getThreadId(),
364 Process.THREAD_GROUP_TOP_APP);
365 Process.setThreadGroupAndCpuset(AnimationThread.get().getThreadId(),
366 Process.THREAD_GROUP_TOP_APP);
Jorim Jaggi21c39a72017-10-20 15:47:51 +0200367 Process.setThreadGroupAndCpuset(SurfaceAnimationThread.get().getThreadId(),
368 Process.THREAD_GROUP_TOP_APP);
Craig Mautner4f67ba62012-08-02 11:23:00 -0700369 }
370
Jeff Brown4ccb8232014-01-16 22:16:42 -0800371 @Override
Jeff Brown4ccb8232014-01-16 22:16:42 -0800372 public void onStart() {
Michael Wright1c9977b2016-07-12 13:30:10 -0700373 // We need to pre-load the persistent data store so it's ready before the default display
374 // adapter is up so that we have it's configuration. We could load it lazily, but since
375 // 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 -0700376 // we've waited for the display to register itself with us.
Michael Wrighta3dab232019-02-22 16:54:21 +0000377 synchronized (mSyncRoot) {
378 mPersistentDataStore.loadIfNeeded();
379 loadStableDisplayValuesLocked();
Michael Wrighteedcbf12017-08-16 23:14:54 +0100380 }
Santos Cordonc22c5632017-06-21 16:03:49 -0700381 mHandler.sendEmptyMessage(MSG_REGISTER_DEFAULT_DISPLAY_ADAPTERS);
Jeff Brown4ccb8232014-01-16 22:16:42 -0800382
Tim Murray890ceb52020-01-30 10:12:40 -0800383 // If there was a runtime restart then we may have stale caches left around, so we need to
384 // make sure to invalidate them upon every start.
385 DisplayManagerGlobal.invalidateLocalDisplayInfoCaches();
386
Jeff Brown4ccb8232014-01-16 22:16:42 -0800387 publishBinderService(Context.DISPLAY_SERVICE, new BinderService(),
388 true /*allowIsolated*/);
389 publishLocalService(DisplayManagerInternal.class, new LocalService());
390 }
391
392 @Override
393 public void onBootPhase(int phase) {
394 if (phase == PHASE_WAIT_FOR_DEFAULT_DISPLAY) {
395 synchronized (mSyncRoot) {
Santos Cordonc22c5632017-06-21 16:03:49 -0700396 long timeout = SystemClock.uptimeMillis()
397 + mInjector.getDefaultDisplayDelayTimeout();
398 while (mLogicalDisplays.get(Display.DEFAULT_DISPLAY) == null ||
399 mVirtualDisplayAdapter == null) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800400 long delay = timeout - SystemClock.uptimeMillis();
401 if (delay <= 0) {
402 throw new RuntimeException("Timeout waiting for default display "
Santos Cordonc22c5632017-06-21 16:03:49 -0700403 + "to be initialized. DefaultDisplay="
404 + mLogicalDisplays.get(Display.DEFAULT_DISPLAY)
405 + ", mVirtualDisplayAdapter=" + mVirtualDisplayAdapter);
Jeff Brown4ccb8232014-01-16 22:16:42 -0800406 }
407 if (DEBUG) {
408 Slog.d(TAG, "waitForDefaultDisplay: waiting, timeout=" + delay);
409 }
410 try {
411 mSyncRoot.wait(delay);
412 } catch (InterruptedException ex) {
413 }
Jeff Brownbd6e1502012-08-28 03:27:37 -0700414 }
415 }
416 }
Jeff Brownbd6e1502012-08-28 03:27:37 -0700417 }
418
Michael Wrighteef0e132017-11-21 17:57:52 +0000419 @Override
420 public void onSwitchUser(@UserIdInt int newUserId) {
421 final int userSerial = getUserManager().getUserSerialNumber(newUserId);
422 synchronized (mSyncRoot) {
423 if (mCurrentUserId != newUserId) {
424 mCurrentUserId = newUserId;
425 BrightnessConfiguration config =
426 mPersistentDataStore.getBrightnessConfiguration(userSerial);
427 mDisplayPowerController.setBrightnessConfiguration(config);
Galia Peycheva088d7c02019-12-13 11:27:23 +0100428 handleSettingsChange();
Michael Wrighteef0e132017-11-21 17:57:52 +0000429 }
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +0000430 mDisplayPowerController.onSwitchUser(newUserId);
Michael Wrighteef0e132017-11-21 17:57:52 +0000431 }
432 }
433
Jeff Brown4ccb8232014-01-16 22:16:42 -0800434 // TODO: Use dependencies or a boot phase
435 public void windowManagerAndInputReady() {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700436 synchronized (mSyncRoot) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800437 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
438 mInputManagerInternal = LocalServices.getService(InputManagerInternal.class);
Craig Mautner65d11b32012-10-01 13:59:52 -0700439 scheduleTraversalLocked(false);
Jeff Brownd728bf52012-09-08 18:05:28 -0700440 }
441 }
442
443 /**
Jeff Brownbd6e1502012-08-28 03:27:37 -0700444 * Called when the system is ready to go.
445 */
446 public void systemReady(boolean safeMode, boolean onlyCore) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700447 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -0700448 mSafeMode = safeMode;
449 mOnlyCore = onlyCore;
Winson72dbe7e2019-04-29 14:55:30 -0700450 mSystemReady = true;
451 // Just in case the top inset changed before the system was ready. At this point, any
452 // relevant configuration should be in place.
453 recordTopInsetLocked(mLogicalDisplays.get(Display.DEFAULT_DISPLAY));
Galia Peycheva088d7c02019-12-13 11:27:23 +0100454
455 updateSettingsLocked();
Jeff Brownbd6e1502012-08-28 03:27:37 -0700456 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700457
Ana Kruleca74a8642019-11-14 00:51:00 +0100458 mDisplayModeDirector.setDesiredDisplayModeSpecsListener(
459 new DesiredDisplayModeSpecsObserver());
Long Lingbc841b02019-07-03 16:43:15 -0700460 mDisplayModeDirector.start(mSensorManager);
Michael Wrighta3dab232019-02-22 16:54:21 +0000461
Jeff Brownbd6e1502012-08-28 03:27:37 -0700462 mHandler.sendEmptyMessage(MSG_REGISTER_ADDITIONAL_DISPLAY_ADAPTERS);
Galia Peycheva088d7c02019-12-13 11:27:23 +0100463
464 mSettingsObserver = new SettingsObserver();
Jeff Brownbd6e1502012-08-28 03:27:37 -0700465 }
466
Santos Cordonee8931e2017-04-05 10:31:15 -0700467 @VisibleForTesting
468 Handler getDisplayHandler() {
469 return mHandler;
470 }
471
Michael Wrighteedcbf12017-08-16 23:14:54 +0100472 private void loadStableDisplayValuesLocked() {
473 final Point size = mPersistentDataStore.getStableDisplaySize();
474 if (size.x > 0 && size.y > 0) {
475 // Just set these values directly so we don't write the display persistent data again
476 // unnecessarily
477 mStableDisplaySize.set(size.x, size.y);
478 } else {
479 final Resources res = mContext.getResources();
480 final int width = res.getInteger(
481 com.android.internal.R.integer.config_stableDeviceDisplayWidth);
482 final int height = res.getInteger(
483 com.android.internal.R.integer.config_stableDeviceDisplayHeight);
484 if (width > 0 && height > 0) {
485 setStableDisplaySizeLocked(width, height);
486 }
487 }
488 }
489
490 private Point getStableDisplaySizeInternal() {
491 Point r = new Point();
492 synchronized (mSyncRoot) {
493 if (mStableDisplaySize.x > 0 && mStableDisplaySize.y > 0) {
494 r.set(mStableDisplaySize.x, mStableDisplaySize.y);
495 }
496 }
497 return r;
498 }
499
Jeff Brown4ccb8232014-01-16 22:16:42 -0800500 private void registerDisplayTransactionListenerInternal(
501 DisplayTransactionListener listener) {
Jeff Brown7f3994e2012-12-04 14:04:28 -0800502 // List is self-synchronized copy-on-write.
503 mDisplayTransactionListeners.add(listener);
504 }
505
Jeff Brown4ccb8232014-01-16 22:16:42 -0800506 private void unregisterDisplayTransactionListenerInternal(
507 DisplayTransactionListener listener) {
Jeff Brown7f3994e2012-12-04 14:04:28 -0800508 // List is self-synchronized copy-on-write.
509 mDisplayTransactionListeners.remove(listener);
510 }
511
Jeff Brown4ccb8232014-01-16 22:16:42 -0800512 private void setDisplayInfoOverrideFromWindowManagerInternal(
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700513 int displayId, DisplayInfo info) {
514 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -0700515 LogicalDisplay display = mLogicalDisplays.get(displayId);
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700516 if (display != null) {
Jeff Brownef981a42013-08-07 14:13:37 -0700517 if (display.setDisplayInfoOverrideFromWindowManagerLocked(info)) {
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200518 handleLogicalDisplayChanged(displayId, display);
Craig Mautner65d11b32012-10-01 13:59:52 -0700519 scheduleTraversalLocked(false);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700520 }
Jeff Brownbd6e1502012-08-28 03:27:37 -0700521 }
522 }
523 }
524
Andrii Kuliancd097992017-03-23 18:31:59 -0700525 /**
526 * @see DisplayManagerInternal#getNonOverrideDisplayInfo(int, DisplayInfo)
527 */
528 private void getNonOverrideDisplayInfoInternal(int displayId, DisplayInfo outInfo) {
529 synchronized (mSyncRoot) {
530 final LogicalDisplay display = mLogicalDisplays.get(displayId);
531 if (display != null) {
532 display.getNonOverrideDisplayInfoLocked(outInfo);
533 }
534 }
535 }
536
Santos Cordonee8931e2017-04-05 10:31:15 -0700537 @VisibleForTesting
Robert Carrae606b42018-02-15 15:36:23 -0800538 void performTraversalInternal(SurfaceControl.Transaction t) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700539 synchronized (mSyncRoot) {
540 if (!mPendingTraversal) {
541 return;
Jeff Brownbd6e1502012-08-28 03:27:37 -0700542 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700543 mPendingTraversal = false;
544
Robert Carrae606b42018-02-15 15:36:23 -0800545 performTraversalLocked(t);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700546 }
Jeff Brown7f3994e2012-12-04 14:04:28 -0800547
548 // List is self-synchronized copy-on-write.
549 for (DisplayTransactionListener listener : mDisplayTransactionListeners) {
Vishnu Naire86bd982018-11-28 13:23:17 -0800550 listener.onDisplayTransaction(t);
Jeff Brown7f3994e2012-12-04 14:04:28 -0800551 }
Jeff Brownbd6e1502012-08-28 03:27:37 -0700552 }
553
Fiona Campbelld4eb2952019-11-04 17:19:56 +0000554 private void requestGlobalDisplayStateInternal(int state, float brightnessState) {
Jeff Brown5d6443b2015-04-10 20:15:01 -0700555 if (state == Display.STATE_UNKNOWN) {
556 state = Display.STATE_ON;
557 }
558 if (state == Display.STATE_OFF) {
Fiona Campbelld4eb2952019-11-04 17:19:56 +0000559 brightnessState = PowerManager.BRIGHTNESS_OFF_FLOAT;
Fiona Campbell57af7c82020-04-02 12:56:15 +0100560 } else if (brightnessState != PowerManager.BRIGHTNESS_OFF_FLOAT
561 && brightnessState < PowerManager.BRIGHTNESS_MIN) {
Fiona Campbelld4eb2952019-11-04 17:19:56 +0000562 brightnessState = PowerManager.BRIGHTNESS_INVALID_FLOAT;
563 } else if (brightnessState > PowerManager.BRIGHTNESS_MAX) {
564 brightnessState = PowerManager.BRIGHTNESS_MAX;
Jeff Brown5d6443b2015-04-10 20:15:01 -0700565 }
566
Jeff Browne75926d2014-09-18 15:24:49 -0700567 synchronized (mTempDisplayStateWorkQueue) {
568 try {
569 // Update the display state within the lock.
Jeff Brown8e5d33e2015-06-10 13:05:50 -0700570 // Note that we do not need to schedule traversals here although it
571 // may happen as a side-effect of displays changing state.
Jeff Browne75926d2014-09-18 15:24:49 -0700572 synchronized (mSyncRoot) {
Jeff Brown5d6443b2015-04-10 20:15:01 -0700573 if (mGlobalDisplayState == state
Fiona Campbelld4eb2952019-11-04 17:19:56 +0000574 && mGlobalDisplayBrightness == brightnessState) {
Jeff Brown5d6443b2015-04-10 20:15:01 -0700575 return; // no change
Jeff Browne75926d2014-09-18 15:24:49 -0700576 }
Jeff Brown5d6443b2015-04-10 20:15:01 -0700577
578 Trace.traceBegin(Trace.TRACE_TAG_POWER, "requestGlobalDisplayState("
579 + Display.stateToString(state)
Fiona Campbelld4eb2952019-11-04 17:19:56 +0000580 + ", brightness=" + brightnessState + ")");
Jeff Brown5d6443b2015-04-10 20:15:01 -0700581 mGlobalDisplayState = state;
Fiona Campbelld4eb2952019-11-04 17:19:56 +0000582 mGlobalDisplayBrightness = brightnessState;
Jeff Brown8e5d33e2015-06-10 13:05:50 -0700583 applyGlobalDisplayStateLocked(mTempDisplayStateWorkQueue);
Jeff Browne75926d2014-09-18 15:24:49 -0700584 }
585
586 // Setting the display power state can take hundreds of milliseconds
587 // to complete so we defer the most expensive part of the work until
588 // after we have exited the critical section to avoid blocking other
589 // threads for a long time.
590 for (int i = 0; i < mTempDisplayStateWorkQueue.size(); i++) {
591 mTempDisplayStateWorkQueue.get(i).run();
592 }
Jeff Brown5d6443b2015-04-10 20:15:01 -0700593 Trace.traceEnd(Trace.TRACE_TAG_POWER);
Jeff Browne75926d2014-09-18 15:24:49 -0700594 } finally {
595 mTempDisplayStateWorkQueue.clear();
Jeff Brown9e316a12012-10-08 19:17:06 -0700596 }
597 }
598 }
599
Galia Peycheva088d7c02019-12-13 11:27:23 +0100600 private class SettingsObserver extends ContentObserver {
601 SettingsObserver() {
602 super(mHandler);
603
604 mContext.getContentResolver().registerContentObserver(
605 Settings.Secure.getUriFor(
606 Settings.Secure.MINIMAL_POST_PROCESSING_ALLOWED), false, this);
607 }
608
609 @Override
610 public void onChange(boolean selfChange, Uri uri) {
611 handleSettingsChange();
612 }
613 }
614
615 private void handleSettingsChange() {
616 synchronized (mSyncRoot) {
617 updateSettingsLocked();
618 scheduleTraversalLocked(false);
619 }
620 }
621
622 private void updateSettingsLocked() {
623 mMinimalPostProcessingAllowed = Settings.Secure.getIntForUser(mContext.getContentResolver(),
624 Settings.Secure.MINIMAL_POST_PROCESSING_ALLOWED, 1, UserHandle.USER_CURRENT) != 0;
625 }
626
Jeff Brown4ccb8232014-01-16 22:16:42 -0800627 private DisplayInfo getDisplayInfoInternal(int displayId, int callingUid) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700628 synchronized (mSyncRoot) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800629 LogicalDisplay display = mLogicalDisplays.get(displayId);
630 if (display != null) {
631 DisplayInfo info = display.getDisplayInfoLocked();
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800632 if (info.hasAccess(callingUid)
633 || isUidPresentOnDisplayInternal(callingUid, displayId)) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800634 return info;
635 }
636 }
637 return null;
638 }
639 }
640
641 private int[] getDisplayIdsInternal(int callingUid) {
642 synchronized (mSyncRoot) {
643 final int count = mLogicalDisplays.size();
644 int[] displayIds = new int[count];
645 int n = 0;
646 for (int i = 0; i < count; i++) {
647 LogicalDisplay display = mLogicalDisplays.valueAt(i);
648 DisplayInfo info = display.getDisplayInfoLocked();
649 if (info.hasAccess(callingUid)) {
650 displayIds[n++] = mLogicalDisplays.keyAt(i);
651 }
652 }
653 if (n != count) {
654 displayIds = Arrays.copyOfRange(displayIds, 0, n);
655 }
656 return displayIds;
657 }
658 }
659
660 private void registerCallbackInternal(IDisplayManagerCallback callback, int callingPid) {
661 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -0700662 if (mCallbacks.get(callingPid) != null) {
663 throw new SecurityException("The calling process has already "
664 + "registered an IDisplayManagerCallback.");
Jeff Brown64a55af2012-08-26 02:47:39 -0700665 }
666
Jeff Brownbd6e1502012-08-28 03:27:37 -0700667 CallbackRecord record = new CallbackRecord(callingPid, callback);
668 try {
669 IBinder binder = callback.asBinder();
670 binder.linkToDeath(record, 0);
671 } catch (RemoteException ex) {
672 // give up
673 throw new RuntimeException(ex);
674 }
675
676 mCallbacks.put(callingPid, record);
677 }
678 }
679
Jeff Brownce468a32013-11-21 16:42:03 -0800680 private void onCallbackDied(CallbackRecord record) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700681 synchronized (mSyncRoot) {
Jeff Brownce468a32013-11-21 16:42:03 -0800682 mCallbacks.remove(record.mPid);
683 stopWifiDisplayScanLocked(record);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700684 }
685 }
686
Jeff Brown4ccb8232014-01-16 22:16:42 -0800687 private void startWifiDisplayScanInternal(int callingPid) {
688 synchronized (mSyncRoot) {
689 CallbackRecord record = mCallbacks.get(callingPid);
690 if (record == null) {
691 throw new IllegalStateException("The calling process has not "
692 + "registered an IDisplayManagerCallback.");
Jeff Browne08ae382012-09-07 20:36:36 -0700693 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800694 startWifiDisplayScanLocked(record);
Jeff Browne08ae382012-09-07 20:36:36 -0700695 }
696 }
697
Jeff Brownce468a32013-11-21 16:42:03 -0800698 private void startWifiDisplayScanLocked(CallbackRecord record) {
699 if (!record.mWifiDisplayScanRequested) {
700 record.mWifiDisplayScanRequested = true;
701 if (mWifiDisplayScanRequestCount++ == 0) {
702 if (mWifiDisplayAdapter != null) {
703 mWifiDisplayAdapter.requestStartScanLocked();
704 }
705 }
706 }
707 }
708
Jeff Brown4ccb8232014-01-16 22:16:42 -0800709 private void stopWifiDisplayScanInternal(int callingPid) {
710 synchronized (mSyncRoot) {
711 CallbackRecord record = mCallbacks.get(callingPid);
712 if (record == null) {
713 throw new IllegalStateException("The calling process has not "
714 + "registered an IDisplayManagerCallback.");
Jeff Brownce468a32013-11-21 16:42:03 -0800715 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800716 stopWifiDisplayScanLocked(record);
Jeff Brownce468a32013-11-21 16:42:03 -0800717 }
718 }
719
720 private void stopWifiDisplayScanLocked(CallbackRecord record) {
721 if (record.mWifiDisplayScanRequested) {
722 record.mWifiDisplayScanRequested = false;
723 if (--mWifiDisplayScanRequestCount == 0) {
724 if (mWifiDisplayAdapter != null) {
725 mWifiDisplayAdapter.requestStopScanLocked();
726 }
727 } else if (mWifiDisplayScanRequestCount < 0) {
Dianne Hackborn8d051722014-10-01 14:59:58 -0700728 Slog.wtf(TAG, "mWifiDisplayScanRequestCount became negative: "
Jeff Brownce468a32013-11-21 16:42:03 -0800729 + mWifiDisplayScanRequestCount);
730 mWifiDisplayScanRequestCount = 0;
731 }
732 }
733 }
734
Jeff Brown4ccb8232014-01-16 22:16:42 -0800735 private void connectWifiDisplayInternal(String address) {
736 synchronized (mSyncRoot) {
737 if (mWifiDisplayAdapter != null) {
738 mWifiDisplayAdapter.requestConnectLocked(address);
Jeff Browne08ae382012-09-07 20:36:36 -0700739 }
Jeff Browne08ae382012-09-07 20:36:36 -0700740 }
741 }
742
Jeff Brown4ccb8232014-01-16 22:16:42 -0800743 private void pauseWifiDisplayInternal() {
744 synchronized (mSyncRoot) {
745 if (mWifiDisplayAdapter != null) {
746 mWifiDisplayAdapter.requestPauseLocked();
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700747 }
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700748 }
749 }
750
Jeff Brown4ccb8232014-01-16 22:16:42 -0800751 private void resumeWifiDisplayInternal() {
752 synchronized (mSyncRoot) {
753 if (mWifiDisplayAdapter != null) {
754 mWifiDisplayAdapter.requestResumeLocked();
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700755 }
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700756 }
757 }
758
Jeff Brown4ccb8232014-01-16 22:16:42 -0800759 private void disconnectWifiDisplayInternal() {
760 synchronized (mSyncRoot) {
761 if (mWifiDisplayAdapter != null) {
762 mWifiDisplayAdapter.requestDisconnectLocked();
Jeff Browne08ae382012-09-07 20:36:36 -0700763 }
Jeff Browne08ae382012-09-07 20:36:36 -0700764 }
765 }
766
Jeff Brown4ccb8232014-01-16 22:16:42 -0800767 private void renameWifiDisplayInternal(String address, String alias) {
768 synchronized (mSyncRoot) {
769 if (mWifiDisplayAdapter != null) {
770 mWifiDisplayAdapter.requestRenameLocked(address, alias);
Jeff Brown89d55462012-09-19 11:33:42 -0700771 }
Jeff Brown89d55462012-09-19 11:33:42 -0700772 }
773 }
774
Jeff Brown4ccb8232014-01-16 22:16:42 -0800775 private void forgetWifiDisplayInternal(String address) {
776 synchronized (mSyncRoot) {
777 if (mWifiDisplayAdapter != null) {
778 mWifiDisplayAdapter.requestForgetLocked(address);
Jeff Brown89d55462012-09-19 11:33:42 -0700779 }
Jeff Brown89d55462012-09-19 11:33:42 -0700780 }
781 }
782
Jeff Brown4ccb8232014-01-16 22:16:42 -0800783 private WifiDisplayStatus getWifiDisplayStatusInternal() {
784 synchronized (mSyncRoot) {
785 if (mWifiDisplayAdapter != null) {
786 return mWifiDisplayAdapter.getWifiDisplayStatusLocked();
Jeff Browne08ae382012-09-07 20:36:36 -0700787 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800788 return new WifiDisplayStatus();
Jeff Browne08ae382012-09-07 20:36:36 -0700789 }
790 }
791
Michael Wright1c9977b2016-07-12 13:30:10 -0700792 private void requestColorModeInternal(int displayId, int colorMode) {
Michael Wright58e829f2015-09-15 00:13:26 +0100793 synchronized (mSyncRoot) {
794 LogicalDisplay display = mLogicalDisplays.get(displayId);
795 if (display != null &&
Michael Wright1c9977b2016-07-12 13:30:10 -0700796 display.getRequestedColorModeLocked() != colorMode) {
797 display.setRequestedColorModeLocked(colorMode);
Michael Wright58e829f2015-09-15 00:13:26 +0100798 scheduleTraversalLocked(false);
799 }
800 }
801 }
802
Michael Wright75ee9fc2014-09-01 19:55:22 -0700803 private int createVirtualDisplayInternal(IVirtualDisplayCallback callback,
b0202.jung925435c2020-01-08 18:46:59 +0900804 IMediaProjection projection, int callingUid, String packageName, Surface surface,
805 int flags, VirtualDisplayConfig virtualDisplayConfig) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800806 synchronized (mSyncRoot) {
807 if (mVirtualDisplayAdapter == null) {
808 Slog.w(TAG, "Rejecting request to create private virtual display "
809 + "because the virtual display adapter is not available.");
810 return -1;
Jeff Brown7d00aff2013-08-02 19:03:49 -0700811 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800812
813 DisplayDevice device = mVirtualDisplayAdapter.createVirtualDisplayLocked(
b0202.jung925435c2020-01-08 18:46:59 +0900814 callback, projection, callingUid, packageName, surface, flags,
815 virtualDisplayConfig);
Jeff Brown4ccb8232014-01-16 22:16:42 -0800816 if (device == null) {
817 return -1;
Jeff Brown7d00aff2013-08-02 19:03:49 -0700818 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700819
Jeff Brown4ccb8232014-01-16 22:16:42 -0800820 handleDisplayDeviceAddedLocked(device);
821 LogicalDisplay display = findLogicalDisplayForDeviceLocked(device);
822 if (display != null) {
823 return display.getDisplayIdLocked();
Jeff Browna506a6e2013-06-04 00:02:38 -0700824 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800825
826 // Something weird happened and the logical display was not created.
827 Slog.w(TAG, "Rejecting request to create virtual display "
828 + "because the logical display was not created.");
Michael Wright75ee9fc2014-09-01 19:55:22 -0700829 mVirtualDisplayAdapter.releaseVirtualDisplayLocked(callback.asBinder());
Jeff Brown4ccb8232014-01-16 22:16:42 -0800830 handleDisplayDeviceRemovedLocked(device);
Jeff Browna506a6e2013-06-04 00:02:38 -0700831 }
832 return -1;
833 }
834
Michael Wright01e840f2014-06-26 16:03:25 -0700835 private void resizeVirtualDisplayInternal(IBinder appToken,
836 int width, int height, int densityDpi) {
837 synchronized (mSyncRoot) {
838 if (mVirtualDisplayAdapter == null) {
839 return;
840 }
841
842 mVirtualDisplayAdapter.resizeVirtualDisplayLocked(appToken, width, height, densityDpi);
843 }
844 }
845
Jeff Brown92207df2014-04-16 13:16:07 -0700846 private void setVirtualDisplaySurfaceInternal(IBinder appToken, Surface surface) {
847 synchronized (mSyncRoot) {
848 if (mVirtualDisplayAdapter == null) {
849 return;
850 }
851
852 mVirtualDisplayAdapter.setVirtualDisplaySurfaceLocked(appToken, surface);
853 }
854 }
855
Jeff Brown4ccb8232014-01-16 22:16:42 -0800856 private void releaseVirtualDisplayInternal(IBinder appToken) {
857 synchronized (mSyncRoot) {
858 if (mVirtualDisplayAdapter == null) {
859 return;
Jeff Browna506a6e2013-06-04 00:02:38 -0700860 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700861
Jeff Brown4ccb8232014-01-16 22:16:42 -0800862 DisplayDevice device =
863 mVirtualDisplayAdapter.releaseVirtualDisplayLocked(appToken);
864 if (device != null) {
865 handleDisplayDeviceRemovedLocked(device);
Jeff Browna506a6e2013-06-04 00:02:38 -0700866 }
867 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700868 }
869
chaviwda4c6942018-11-07 15:52:56 -0800870 private void setVirtualDisplayStateInternal(IBinder appToken, boolean isOn) {
871 synchronized (mSyncRoot) {
872 if (mVirtualDisplayAdapter == null) {
873 return;
874 }
875
876 mVirtualDisplayAdapter.setVirtualDisplayStateLocked(appToken, isOn);
877 }
878 }
879
Santos Cordonc22c5632017-06-21 16:03:49 -0700880 private void registerDefaultDisplayAdapters() {
881 // Register default display adapters.
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700882 synchronized (mSyncRoot) {
Santos Cordonc22c5632017-06-21 16:03:49 -0700883 // main display adapter
Mike Lockwoode63f6f72013-11-15 11:01:47 -0800884 registerDisplayAdapterLocked(new LocalDisplayAdapter(
885 mSyncRoot, mContext, mHandler, mDisplayAdapterListener));
Santos Cordonc22c5632017-06-21 16:03:49 -0700886
887 // Standalone VR devices rely on a virtual display as their primary display for
888 // 2D UI. We register virtual display adapter along side the main display adapter
889 // here so that it is ready by the time the system sends the home Intent for
890 // early apps like SetupWizard/Launcher. In particular, SUW is displayed using
891 // the virtual display inside VR before any VR-specific apps even run.
892 mVirtualDisplayAdapter = mInjector.getVirtualDisplayAdapter(mSyncRoot, mContext,
893 mHandler, mDisplayAdapterListener);
894 if (mVirtualDisplayAdapter != null) {
895 registerDisplayAdapterLocked(mVirtualDisplayAdapter);
896 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700897 }
898 }
899
900 private void registerAdditionalDisplayAdapters() {
901 synchronized (mSyncRoot) {
902 if (shouldRegisterNonEssentialDisplayAdaptersLocked()) {
Jeff Brown89d55462012-09-19 11:33:42 -0700903 registerOverlayDisplayAdapterLocked();
904 registerWifiDisplayAdapterLocked();
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700905 }
906 }
907 }
908
Jeff Brown89d55462012-09-19 11:33:42 -0700909 private void registerOverlayDisplayAdapterLocked() {
910 registerDisplayAdapterLocked(new OverlayDisplayAdapter(
911 mSyncRoot, mContext, mHandler, mDisplayAdapterListener, mUiHandler));
912 }
913
914 private void registerWifiDisplayAdapterLocked() {
915 if (mContext.getResources().getBoolean(
Jeff Brownbbd28a22012-09-20 16:47:15 -0700916 com.android.internal.R.bool.config_enableWifiDisplay)
917 || SystemProperties.getInt(FORCE_WIFI_DISPLAY_ENABLE, -1) == 1) {
Jeff Brown89d55462012-09-19 11:33:42 -0700918 mWifiDisplayAdapter = new WifiDisplayAdapter(
919 mSyncRoot, mContext, mHandler, mDisplayAdapterListener,
920 mPersistentDataStore);
921 registerDisplayAdapterLocked(mWifiDisplayAdapter);
922 }
923 }
924
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700925 private boolean shouldRegisterNonEssentialDisplayAdaptersLocked() {
926 // In safe mode, we disable non-essential display adapters to give the user
927 // an opportunity to fix broken settings or other problems that might affect
928 // system stability.
929 // In only-core mode, we disable non-essential display adapters to minimize
930 // the number of dependencies that are started while in this mode and to
931 // prevent problems that might occur due to the device being encrypted.
932 return !mSafeMode && !mOnlyCore;
933 }
934
935 private void registerDisplayAdapterLocked(DisplayAdapter adapter) {
936 mDisplayAdapters.add(adapter);
937 adapter.registerLocked();
938 }
939
Jeff Brownbd6e1502012-08-28 03:27:37 -0700940 private void handleDisplayDeviceAdded(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700941 synchronized (mSyncRoot) {
Jeff Browna506a6e2013-06-04 00:02:38 -0700942 handleDisplayDeviceAddedLocked(device);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700943 }
944 }
945
Jeff Browna506a6e2013-06-04 00:02:38 -0700946 private void handleDisplayDeviceAddedLocked(DisplayDevice device) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700947 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
Jeff Browna506a6e2013-06-04 00:02:38 -0700948 if (mDisplayDevices.contains(device)) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700949 Slog.w(TAG, "Attempted to add already added display device: " + info);
Jeff Browna506a6e2013-06-04 00:02:38 -0700950 return;
951 }
952
Jeff Brown10acf6d2015-04-14 14:20:47 -0700953 Slog.i(TAG, "Display device added: " + info);
954 device.mDebugLastLoggedDeviceInfo = info;
Jeff Browna506a6e2013-06-04 00:02:38 -0700955
956 mDisplayDevices.add(device);
Michael Wright1c9977b2016-07-12 13:30:10 -0700957 LogicalDisplay display = addLogicalDisplayLocked(device);
Jeff Brown0033a862014-10-08 12:06:39 -0700958 Runnable work = updateDisplayStateLocked(device);
959 if (work != null) {
960 work.run();
961 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700962 scheduleTraversalLocked(false);
963 }
964
Jeff Brownbd6e1502012-08-28 03:27:37 -0700965 private void handleDisplayDeviceChanged(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700966 synchronized (mSyncRoot) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700967 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
Jeff Brownbd6e1502012-08-28 03:27:37 -0700968 if (!mDisplayDevices.contains(device)) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700969 Slog.w(TAG, "Attempted to change non-existent display device: " + info);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700970 return;
971 }
972
Jeff Brown10acf6d2015-04-14 14:20:47 -0700973 int diff = device.mDebugLastLoggedDeviceInfo.diff(info);
974 if (diff == DisplayDeviceInfo.DIFF_STATE) {
975 Slog.i(TAG, "Display device changed state: \"" + info.name
976 + "\", " + Display.stateToString(info.state));
Chris Yed6d35592020-05-01 11:36:33 -0700977 final Optional<Integer> viewportType = getViewportType(info);
978 if (viewportType.isPresent()) {
979 for (DisplayViewport d : mViewports) {
980 if (d.type == viewportType.get() && info.uniqueId.equals(d.uniqueId)) {
981 // Update display view port power state
982 d.isActive = Display.isActiveState(info.state);
983 }
984 }
985 if (mInputManagerInternal != null) {
986 mHandler.sendEmptyMessage(MSG_UPDATE_VIEWPORT);
987 }
988 }
Jeff Brown10acf6d2015-04-14 14:20:47 -0700989 } else if (diff != 0) {
990 Slog.i(TAG, "Display device changed: " + info);
991 }
Michael Wright1c9977b2016-07-12 13:30:10 -0700992 if ((diff & DisplayDeviceInfo.DIFF_COLOR_MODE) != 0) {
993 try {
994 mPersistentDataStore.setColorMode(device, info.colorMode);
995 } finally {
996 mPersistentDataStore.saveIfNeeded();
997 }
998 }
Jeff Brown10acf6d2015-04-14 14:20:47 -0700999 device.mDebugLastLoggedDeviceInfo = info;
Jeff Browne87bf032012-09-20 18:30:13 -07001000
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001001 device.applyPendingDisplayDeviceInfoChangesLocked();
1002 if (updateLogicalDisplaysLocked()) {
Craig Mautner65d11b32012-10-01 13:59:52 -07001003 scheduleTraversalLocked(false);
Jeff Brown64a55af2012-08-26 02:47:39 -07001004 }
1005 }
1006 }
1007
Jeff Brownbd6e1502012-08-28 03:27:37 -07001008 private void handleDisplayDeviceRemoved(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001009 synchronized (mSyncRoot) {
Jeff Browna506a6e2013-06-04 00:02:38 -07001010 handleDisplayDeviceRemovedLocked(device);
1011 }
1012 }
Jeff Brown8e5d33e2015-06-10 13:05:50 -07001013
Jeff Browna506a6e2013-06-04 00:02:38 -07001014 private void handleDisplayDeviceRemovedLocked(DisplayDevice device) {
Jeff Brown10acf6d2015-04-14 14:20:47 -07001015 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
Jeff Browna506a6e2013-06-04 00:02:38 -07001016 if (!mDisplayDevices.remove(device)) {
Jeff Brown10acf6d2015-04-14 14:20:47 -07001017 Slog.w(TAG, "Attempted to remove non-existent display device: " + info);
Jeff Browna506a6e2013-06-04 00:02:38 -07001018 return;
1019 }
1020
Jeff Brown10acf6d2015-04-14 14:20:47 -07001021 Slog.i(TAG, "Display device removed: " + info);
1022 device.mDebugLastLoggedDeviceInfo = info;
Jeff Browna506a6e2013-06-04 00:02:38 -07001023
Jeff Browna506a6e2013-06-04 00:02:38 -07001024 updateLogicalDisplaysLocked();
1025 scheduleTraversalLocked(false);
1026 }
1027
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001028 private void handleLogicalDisplayChanged(int displayId, @NonNull LogicalDisplay display) {
1029 if (displayId == Display.DEFAULT_DISPLAY) {
1030 recordTopInsetLocked(display);
1031 }
Tim Murray890ceb52020-01-30 10:12:40 -08001032 // We don't bother invalidating the display info caches here because any changes to the
1033 // display info will trigger a cache invalidation inside of LogicalDisplay before we hit
1034 // this point.
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001035 sendDisplayEventLocked(displayId, DisplayManagerGlobal.EVENT_DISPLAY_CHANGED);
1036 }
1037
Tim Murray890ceb52020-01-30 10:12:40 -08001038 private void handleLogicalDisplayRemoved(int displayId) {
1039 DisplayManagerGlobal.invalidateLocalDisplayInfoCaches();
1040 sendDisplayEventLocked(displayId, DisplayManagerGlobal.EVENT_DISPLAY_REMOVED);
1041 }
1042
Jeff Brown8e5d33e2015-06-10 13:05:50 -07001043 private void applyGlobalDisplayStateLocked(List<Runnable> workQueue) {
Jeff Browna506a6e2013-06-04 00:02:38 -07001044 final int count = mDisplayDevices.size();
1045 for (int i = 0; i < count; i++) {
1046 DisplayDevice device = mDisplayDevices.get(i);
Jeff Browne75926d2014-09-18 15:24:49 -07001047 Runnable runnable = updateDisplayStateLocked(device);
1048 if (runnable != null) {
1049 workQueue.add(runnable);
1050 }
Jeff Browna506a6e2013-06-04 00:02:38 -07001051 }
1052 }
1053
Jeff Browne75926d2014-09-18 15:24:49 -07001054 private Runnable updateDisplayStateLocked(DisplayDevice device) {
Jeff Browna506a6e2013-06-04 00:02:38 -07001055 // Blank or unblank the display immediately to match the state requested
Jeff Brown037c33e2014-04-09 00:31:55 -07001056 // by the display power controller (if known).
Jeff Browna506a6e2013-06-04 00:02:38 -07001057 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
1058 if ((info.flags & DisplayDeviceInfo.FLAG_NEVER_BLANK) == 0) {
Fiona Campbelld4eb2952019-11-04 17:19:56 +00001059 return device.requestDisplayStateLocked(
1060 mGlobalDisplayState, mGlobalDisplayBrightness);
Craig Mautner4f67ba62012-08-02 11:23:00 -07001061 }
Jeff Browne75926d2014-09-18 15:24:49 -07001062 return null;
Craig Mautner4f67ba62012-08-02 11:23:00 -07001063 }
1064
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001065 // Adds a new logical display based on the given display device.
1066 // Sends notifications if needed.
Michael Wright1c9977b2016-07-12 13:30:10 -07001067 private LogicalDisplay addLogicalDisplayLocked(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001068 DisplayDeviceInfo deviceInfo = device.getDisplayDeviceInfoLocked();
1069 boolean isDefault = (deviceInfo.flags
1070 & DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY) != 0;
1071 if (isDefault && mLogicalDisplays.get(Display.DEFAULT_DISPLAY) != null) {
1072 Slog.w(TAG, "Ignoring attempt to add a second default display: " + deviceInfo);
1073 isDefault = false;
1074 }
1075
Jeff Brown27f1d672012-10-17 18:32:34 -07001076 if (!isDefault && mSingleDisplayDemoMode) {
1077 Slog.i(TAG, "Not creating a logical display for a secondary display "
1078 + " because single display demo mode is enabled: " + deviceInfo);
Michael Wright1c9977b2016-07-12 13:30:10 -07001079 return null;
Jeff Brown27f1d672012-10-17 18:32:34 -07001080 }
1081
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001082 final int displayId = assignDisplayIdLocked(isDefault);
1083 final int layerStack = assignLayerStackLocked(displayId);
1084
Jeff Brownd728bf52012-09-08 18:05:28 -07001085 LogicalDisplay display = new LogicalDisplay(displayId, layerStack, device);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001086 display.updateLocked(mDisplayDevices);
1087 if (!display.isValidLocked()) {
1088 // This should never happen currently.
1089 Slog.w(TAG, "Ignoring display device because the logical display "
1090 + "created from it was not considered valid: " + deviceInfo);
Michael Wright1c9977b2016-07-12 13:30:10 -07001091 return null;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001092 }
1093
Michael Wrighteedcbf12017-08-16 23:14:54 +01001094 configureColorModeLocked(display, device);
1095 if (isDefault) {
1096 recordStableDisplayStatsIfNeededLocked(display);
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001097 recordTopInsetLocked(display);
Michael Wrighteedcbf12017-08-16 23:14:54 +01001098 }
1099
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001100 mLogicalDisplays.put(displayId, display);
Tim Murray890ceb52020-01-30 10:12:40 -08001101 DisplayManagerGlobal.invalidateLocalDisplayInfoCaches();
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001102
1103 // Wake up waitForDefaultDisplay.
1104 if (isDefault) {
1105 mSyncRoot.notifyAll();
1106 }
1107
1108 sendDisplayEventLocked(displayId, DisplayManagerGlobal.EVENT_DISPLAY_ADDED);
Michael Wright1c9977b2016-07-12 13:30:10 -07001109 return display;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001110 }
1111
1112 private int assignDisplayIdLocked(boolean isDefault) {
1113 return isDefault ? Display.DEFAULT_DISPLAY : mNextNonDefaultDisplayId++;
1114 }
1115
1116 private int assignLayerStackLocked(int displayId) {
1117 // Currently layer stacks and display ids are the same.
1118 // This need not be the case.
1119 return displayId;
1120 }
1121
Michael Wrighteedcbf12017-08-16 23:14:54 +01001122 private void configureColorModeLocked(LogicalDisplay display, DisplayDevice device) {
1123 if (display.getPrimaryDisplayDeviceLocked() == device) {
1124 int colorMode = mPersistentDataStore.getColorMode(device);
1125 if (colorMode == Display.COLOR_MODE_INVALID) {
1126 if ((device.getDisplayDeviceInfoLocked().flags
1127 & DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY) != 0) {
1128 colorMode = mDefaultDisplayDefaultColorMode;
1129 } else {
1130 colorMode = Display.COLOR_MODE_DEFAULT;
1131 }
1132 }
1133 display.setRequestedColorModeLocked(colorMode);
1134 }
1135 }
1136
1137 // If we've never recorded stable device stats for this device before and they aren't
1138 // explicitly configured, go ahead and record the stable device stats now based on the status
1139 // of the default display at first boot.
1140 private void recordStableDisplayStatsIfNeededLocked(LogicalDisplay d) {
1141 if (mStableDisplaySize.x <= 0 && mStableDisplaySize.y <= 0) {
1142 DisplayInfo info = d.getDisplayInfoLocked();
1143 setStableDisplaySizeLocked(info.getNaturalWidth(), info.getNaturalHeight());
1144 }
1145 }
1146
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001147 private void recordTopInsetLocked(@Nullable LogicalDisplay d) {
Winson72dbe7e2019-04-29 14:55:30 -07001148 // We must only persist the inset after boot has completed, otherwise we will end up
1149 // overwriting the persisted value before the masking flag has been loaded from the
1150 // resource overlay.
1151 if (!mSystemReady || d == null) {
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001152 return;
1153 }
1154 int topInset = d.getInsets().top;
1155 if (topInset == mDefaultDisplayTopInset) {
1156 return;
1157 }
1158 mDefaultDisplayTopInset = topInset;
1159 SystemProperties.set(PROP_DEFAULT_DISPLAY_TOP_INSET, Integer.toString(topInset));
1160 }
1161
Michael Wrighteedcbf12017-08-16 23:14:54 +01001162 private void setStableDisplaySizeLocked(int width, int height) {
1163 mStableDisplaySize = new Point(width, height);
1164 try {
1165 mPersistentDataStore.setStableDisplaySize(mStableDisplaySize);
1166 } finally {
1167 mPersistentDataStore.saveIfNeeded();
1168 }
1169 }
1170
Dan Gittik122df862018-03-28 16:59:22 +01001171 @VisibleForTesting
1172 Curve getMinimumBrightnessCurveInternal() {
1173 return mMinimumBrightnessCurve;
1174 }
1175
Peiyong Lin277eaff2019-01-16 16:18:22 -08001176 int getPreferredWideGamutColorSpaceIdInternal() {
1177 return mWideColorSpace.getId();
1178 }
1179
Michael Wrighteef0e132017-11-21 17:57:52 +00001180 private void setBrightnessConfigurationForUserInternal(
Dan Gittik7a32fba2018-03-28 12:19:38 +01001181 @Nullable BrightnessConfiguration c, @UserIdInt int userId,
Kenny Guy05ce8092018-01-17 13:44:20 +00001182 @Nullable String packageName) {
Dan Gittik122df862018-03-28 16:59:22 +01001183 validateBrightnessConfiguration(c);
Michael Wrighteef0e132017-11-21 17:57:52 +00001184 final int userSerial = getUserManager().getUserSerialNumber(userId);
1185 synchronized (mSyncRoot) {
1186 try {
Kenny Guy05ce8092018-01-17 13:44:20 +00001187 mPersistentDataStore.setBrightnessConfigurationForUser(c, userSerial,
1188 packageName);
Michael Wrighteef0e132017-11-21 17:57:52 +00001189 } finally {
1190 mPersistentDataStore.saveIfNeeded();
1191 }
1192 if (userId == mCurrentUserId) {
1193 mDisplayPowerController.setBrightnessConfiguration(c);
1194 }
1195 }
1196 }
1197
Dan Gittik122df862018-03-28 16:59:22 +01001198 @VisibleForTesting
1199 void validateBrightnessConfiguration(BrightnessConfiguration config) {
1200 if (config == null) {
1201 return;
1202 }
1203 if (isBrightnessConfigurationTooDark(config)) {
1204 throw new IllegalArgumentException("brightness curve is too dark");
1205 }
1206 }
1207
1208 private boolean isBrightnessConfigurationTooDark(BrightnessConfiguration config) {
1209 Pair<float[], float[]> curve = config.getCurve();
1210 float[] lux = curve.first;
1211 float[] nits = curve.second;
1212 for (int i = 0; i < lux.length; i++) {
1213 if (nits[i] < mMinimumBrightnessSpline.interpolate(lux[i])) {
1214 return true;
1215 }
1216 }
1217 return false;
1218 }
1219
Michael Wrighteef0e132017-11-21 17:57:52 +00001220 private void loadBrightnessConfiguration() {
1221 synchronized (mSyncRoot) {
1222 final int userSerial = getUserManager().getUserSerialNumber(mCurrentUserId);
1223 BrightnessConfiguration config =
1224 mPersistentDataStore.getBrightnessConfiguration(userSerial);
1225 mDisplayPowerController.setBrightnessConfiguration(config);
1226 }
1227 }
1228
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001229 // Updates all existing logical displays given the current set of display devices.
1230 // Removes invalid logical displays.
1231 // Sends notifications if needed.
1232 private boolean updateLogicalDisplaysLocked() {
1233 boolean changed = false;
1234 for (int i = mLogicalDisplays.size(); i-- > 0; ) {
1235 final int displayId = mLogicalDisplays.keyAt(i);
1236 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1237
1238 mTempDisplayInfo.copyFrom(display.getDisplayInfoLocked());
1239 display.updateLocked(mDisplayDevices);
1240 if (!display.isValidLocked()) {
1241 mLogicalDisplays.removeAt(i);
Tim Murray890ceb52020-01-30 10:12:40 -08001242 handleLogicalDisplayRemoved(displayId);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001243 changed = true;
1244 } else if (!mTempDisplayInfo.equals(display.getDisplayInfoLocked())) {
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001245 handleLogicalDisplayChanged(displayId, display);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001246 changed = true;
1247 }
1248 }
1249 return changed;
1250 }
1251
Robert Carrae606b42018-02-15 15:36:23 -08001252 private void performTraversalLocked(SurfaceControl.Transaction t) {
Jeff Brownd728bf52012-09-08 18:05:28 -07001253 // Clear all viewports before configuring displays so that we can keep
1254 // track of which ones we have configured.
1255 clearViewportsLocked();
1256
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001257 // Configure each display device.
1258 final int count = mDisplayDevices.size();
1259 for (int i = 0; i < count; i++) {
1260 DisplayDevice device = mDisplayDevices.get(i);
Robert Carrae606b42018-02-15 15:36:23 -08001261 configureDisplayLocked(t, device);
1262 device.performTraversalLocked(t);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001263 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001264
1265 // Tell the input system about these new viewports.
Jeff Brown4ccb8232014-01-16 22:16:42 -08001266 if (mInputManagerInternal != null) {
Jeff Brownd728bf52012-09-08 18:05:28 -07001267 mHandler.sendEmptyMessage(MSG_UPDATE_VIEWPORT);
1268 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001269 }
1270
Michael Wright3f145a22014-07-22 19:46:03 -07001271 private void setDisplayPropertiesInternal(int displayId, boolean hasContent,
Galia Peycheva088d7c02019-12-13 11:27:23 +01001272 float requestedRefreshRate, int requestedModeId, boolean preferMinimalPostProcessing,
Galia Peycheva056b3ee2019-06-26 14:05:12 +02001273 boolean inTraversal) {
Craig Mautner722285e2012-09-07 13:55:58 -07001274 synchronized (mSyncRoot) {
1275 LogicalDisplay display = mLogicalDisplays.get(displayId);
Michael Wright3f145a22014-07-22 19:46:03 -07001276 if (display == null) {
1277 return;
1278 }
Galia Peycheva056b3ee2019-06-26 14:05:12 +02001279
1280 boolean shouldScheduleTraversal = false;
1281
Michael Wright3f145a22014-07-22 19:46:03 -07001282 if (display.hasContentLocked() != hasContent) {
Jeff Brown33041bd2013-08-02 21:11:14 -07001283 if (DEBUG) {
1284 Slog.d(TAG, "Display " + displayId + " hasContent flag changed: "
1285 + "hasContent=" + hasContent + ", inTraversal=" + inTraversal);
1286 }
1287
Craig Mautner722285e2012-09-07 13:55:58 -07001288 display.setHasContentLocked(hasContent);
Galia Peycheva056b3ee2019-06-26 14:05:12 +02001289 shouldScheduleTraversal = true;
Craig Mautner722285e2012-09-07 13:55:58 -07001290 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001291 if (requestedModeId == 0 && requestedRefreshRate != 0) {
1292 // Scan supported modes returned by display.getInfo() to find a mode with the same
1293 // size as the default display mode but with the specified refresh rate instead.
1294 requestedModeId = display.getDisplayInfoLocked().findDefaultModeByRefreshRate(
1295 requestedRefreshRate);
1296 }
Michael Wrighta3dab232019-02-22 16:54:21 +00001297 mDisplayModeDirector.getAppRequestObserver().setAppRequestedMode(
1298 displayId, requestedModeId);
Galia Peycheva056b3ee2019-06-26 14:05:12 +02001299
Galia Peycheva088d7c02019-12-13 11:27:23 +01001300 if (display.getDisplayInfoLocked().minimalPostProcessingSupported) {
1301 boolean mppRequest = mMinimalPostProcessingAllowed && preferMinimalPostProcessing;
Galia Peycheva056b3ee2019-06-26 14:05:12 +02001302
Galia Peycheva088d7c02019-12-13 11:27:23 +01001303 if (display.getRequestedMinimalPostProcessingLocked() != mppRequest) {
1304 display.setRequestedMinimalPostProcessingLocked(mppRequest);
1305 shouldScheduleTraversal = true;
1306 }
Galia Peycheva056b3ee2019-06-26 14:05:12 +02001307 }
1308
1309 if (shouldScheduleTraversal) {
1310 scheduleTraversalLocked(inTraversal);
1311 }
Craig Mautner722285e2012-09-07 13:55:58 -07001312 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001313 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001314
Filip Gruszczynskid2e86402015-02-19 13:05:03 -08001315 private void setDisplayOffsetsInternal(int displayId, int x, int y) {
1316 synchronized (mSyncRoot) {
1317 LogicalDisplay display = mLogicalDisplays.get(displayId);
1318 if (display == null) {
1319 return;
1320 }
1321 if (display.getDisplayOffsetXLocked() != x
1322 || display.getDisplayOffsetYLocked() != y) {
1323 if (DEBUG) {
1324 Slog.d(TAG, "Display " + displayId + " burn-in offset set to ("
1325 + x + ", " + y + ")");
1326 }
1327 display.setDisplayOffsetsLocked(x, y);
1328 scheduleTraversalLocked(false);
1329 }
1330 }
1331 }
1332
Sam Lin4c3ac2b2019-02-18 04:50:26 -08001333 private void setDisplayScalingDisabledInternal(int displayId, boolean disable) {
1334 synchronized (mSyncRoot) {
1335 final LogicalDisplay display = mLogicalDisplays.get(displayId);
1336 if (display == null) {
1337 return;
1338 }
1339 if (display.isDisplayScalingDisabled() != disable) {
1340 if (DEBUG) {
1341 Slog.d(TAG, "Display " + displayId + " content scaling disabled = " + disable);
1342 }
1343 display.setDisplayScalingDisabledLocked(disable);
1344 scheduleTraversalLocked(false);
1345 }
1346 }
1347 }
1348
Andrii Kulianfb1bf692017-01-17 11:17:34 -08001349 // Updates the lists of UIDs that are present on displays.
1350 private void setDisplayAccessUIDsInternal(SparseArray<IntArray> newDisplayAccessUIDs) {
1351 synchronized (mSyncRoot) {
1352 mDisplayAccessUIDs.clear();
1353 for (int i = newDisplayAccessUIDs.size() - 1; i >= 0; i--) {
1354 mDisplayAccessUIDs.append(newDisplayAccessUIDs.keyAt(i),
1355 newDisplayAccessUIDs.valueAt(i));
1356 }
1357 }
1358 }
1359
1360 // Checks if provided UID's content is present on the display and UID has access to it.
1361 private boolean isUidPresentOnDisplayInternal(int uid, int displayId) {
1362 synchronized (mSyncRoot) {
1363 final IntArray displayUIDs = mDisplayAccessUIDs.get(displayId);
1364 return displayUIDs != null && displayUIDs.indexOf(uid) != -1;
1365 }
1366 }
1367
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001368 @Nullable
1369 private IBinder getDisplayToken(int displayId) {
1370 synchronized (mSyncRoot) {
1371 final LogicalDisplay display = mLogicalDisplays.get(displayId);
1372 if (display != null) {
1373 final DisplayDevice device = display.getPrimaryDisplayDeviceLocked();
1374 if (device != null) {
1375 return device.getDisplayTokenLocked();
1376 }
1377 }
1378 }
1379
1380 return null;
1381 }
1382
Jacky Kao333de4e2020-04-07 15:01:41 +08001383 private SurfaceControl.ScreenshotGraphicBuffer systemScreenshotInternal(int displayId) {
Vinit Nayak627ac302020-01-13 15:50:10 -08001384 synchronized (mSyncRoot) {
1385 final IBinder token = getDisplayToken(displayId);
1386 if (token == null) {
1387 return null;
1388 }
1389 final LogicalDisplay logicalDisplay = mLogicalDisplays.get(displayId);
1390 if (logicalDisplay == null) {
1391 return null;
1392 }
1393
1394 final DisplayInfo displayInfo = logicalDisplay.getDisplayInfoLocked();
Jacky Kao333de4e2020-04-07 15:01:41 +08001395 return SurfaceControl.screenshotToBufferWithSecureLayersUnsafe(token, new Rect(),
1396 displayInfo.getNaturalWidth(), displayInfo.getNaturalHeight(),
1397 false /* useIdentityTransform */, 0 /* rotation */);
1398 }
1399 }
1400
1401 private SurfaceControl.ScreenshotGraphicBuffer userScreenshotInternal(int displayId) {
1402 synchronized (mSyncRoot) {
1403 final IBinder token = getDisplayToken(displayId);
1404 if (token == null) {
1405 return null;
Jacky Kao316477c2020-03-23 16:30:04 +08001406 }
Jacky Kao333de4e2020-04-07 15:01:41 +08001407 final LogicalDisplay logicalDisplay = mLogicalDisplays.get(displayId);
1408 if (logicalDisplay == null) {
1409 return null;
1410 }
1411
1412 final DisplayInfo displayInfo = logicalDisplay.getDisplayInfoLocked();
1413 // Takes screenshot based on current device orientation.
1414 final Display display = DisplayManagerGlobal.getInstance()
1415 .getRealDisplay(displayId);
1416 if (display == null) {
1417 return null;
1418 }
1419 final Point displaySize = new Point();
1420 display.getRealSize(displaySize);
1421
1422 int rotation = displayInfo.rotation;
1423 // TODO (b/153382624) : This workaround solution would be removed after
1424 // SurfaceFlinger fixes the inconsistency with rotation direction issue.
1425 if (rotation == ROTATION_90 || rotation == ROTATION_270) {
1426 rotation = (rotation == ROTATION_90) ? ROTATION_270 : ROTATION_90;
1427 }
1428
1429 return SurfaceControl.screenshotToBuffer(token, new Rect(), displaySize.x,
1430 displaySize.y, false /* useIdentityTransform */, rotation /* rotation */);
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001431 }
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001432 }
1433
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001434 @VisibleForTesting
1435 DisplayedContentSamplingAttributes getDisplayedContentSamplingAttributesInternal(
1436 int displayId) {
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001437 final IBinder token = getDisplayToken(displayId);
1438 if (token == null) {
1439 return null;
1440 }
1441 return SurfaceControl.getDisplayedContentSamplingAttributes(token);
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001442 }
1443
1444 @VisibleForTesting
1445 boolean setDisplayedContentSamplingEnabledInternal(
1446 int displayId, boolean enable, int componentMask, int maxFrames) {
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001447 final IBinder token = getDisplayToken(displayId);
1448 if (token == null) {
1449 return false;
1450 }
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001451 return SurfaceControl.setDisplayedContentSamplingEnabled(
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001452 token, enable, componentMask, maxFrames);
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001453 }
1454
1455 @VisibleForTesting
1456 DisplayedContentSample getDisplayedContentSampleInternal(int displayId,
1457 long maxFrames, long timestamp) {
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001458 final IBinder token = getDisplayToken(displayId);
1459 if (token == null) {
1460 return null;
1461 }
1462 return SurfaceControl.getDisplayedContentSample(token, maxFrames, timestamp);
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001463 }
1464
Santos Cordonc4fd8e62019-12-18 13:01:05 +00001465 void resetBrightnessConfiguration() {
1466 setBrightnessConfigurationForUserInternal(null, mContext.getUserId(),
1467 mContext.getPackageName());
1468 }
1469
1470 void setAutoBrightnessLoggingEnabled(boolean enabled) {
1471 if (mDisplayPowerController != null) {
1472 synchronized (mSyncRoot) {
1473 mDisplayPowerController.setAutoBrightnessLoggingEnabled(enabled);
1474 }
1475 }
1476 }
1477
1478 void setDisplayWhiteBalanceLoggingEnabled(boolean enabled) {
1479 if (mDisplayPowerController != null) {
1480 synchronized (mSyncRoot) {
1481 mDisplayPowerController.setDisplayWhiteBalanceLoggingEnabled(enabled);
1482 }
1483 }
1484 }
1485
1486 void setAmbientColorTemperatureOverride(float cct) {
1487 if (mDisplayPowerController != null) {
1488 synchronized (mSyncRoot) {
1489 mDisplayPowerController.setAmbientColorTemperatureOverride(cct);
1490 }
1491 }
1492 }
1493
Ana Kruleca74a8642019-11-14 00:51:00 +01001494 private void onDesiredDisplayModeSpecsChangedInternal() {
Michael Wrighta3dab232019-02-22 16:54:21 +00001495 boolean changed = false;
1496 synchronized (mSyncRoot) {
1497 final int count = mLogicalDisplays.size();
1498 for (int i = 0; i < count; i++) {
1499 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1500 int displayId = mLogicalDisplays.keyAt(i);
Ana Kruleca74a8642019-11-14 00:51:00 +01001501 DisplayModeDirector.DesiredDisplayModeSpecs desiredDisplayModeSpecs =
1502 mDisplayModeDirector.getDesiredDisplayModeSpecs(displayId);
1503 DisplayModeDirector.DesiredDisplayModeSpecs existingDesiredDisplayModeSpecs =
1504 display.getDesiredDisplayModeSpecsLocked();
1505 if (DEBUG) {
1506 Slog.i(TAG,
1507 "Comparing display specs: " + desiredDisplayModeSpecs
1508 + ", existing: " + existingDesiredDisplayModeSpecs);
1509 }
1510 if (!desiredDisplayModeSpecs.equals(existingDesiredDisplayModeSpecs)) {
1511 display.setDesiredDisplayModeSpecsLocked(desiredDisplayModeSpecs);
Michael Wrighta3dab232019-02-22 16:54:21 +00001512 changed = true;
1513 }
1514 }
1515 if (changed) {
1516 scheduleTraversalLocked(false);
1517 }
1518 }
1519 }
1520
Jeff Brownd728bf52012-09-08 18:05:28 -07001521 private void clearViewportsLocked() {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001522 mViewports.clear();
Craig Mautner722285e2012-09-07 13:55:58 -07001523 }
1524
Chris Yed6d35592020-05-01 11:36:33 -07001525 private Optional<Integer> getViewportType(DisplayDeviceInfo info) {
1526 // Get the corresponding viewport type.
1527 if ((info.flags & DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY) != 0) {
1528 return Optional.of(VIEWPORT_INTERNAL);
1529 } else if (info.touch == DisplayDeviceInfo.TOUCH_EXTERNAL) {
1530 return Optional.of(VIEWPORT_EXTERNAL);
1531 } else if (info.touch == DisplayDeviceInfo.TOUCH_VIRTUAL
1532 && !TextUtils.isEmpty(info.uniqueId)) {
1533 return Optional.of(VIEWPORT_VIRTUAL);
1534 } else {
1535 if (DEBUG) {
1536 Slog.i(TAG, "Display " + info + " does not support input device matching.");
1537 }
1538 }
1539 return Optional.empty();
1540 }
1541
Robert Carrae606b42018-02-15 15:36:23 -08001542 private void configureDisplayLocked(SurfaceControl.Transaction t, DisplayDevice device) {
Jeff Brownd14c8c92014-01-07 18:13:09 -08001543 final DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
1544 final boolean ownContent = (info.flags & DisplayDeviceInfo.FLAG_OWN_CONTENT_ONLY) != 0;
Jeff Browna506a6e2013-06-04 00:02:38 -07001545
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001546 // Find the logical display that the display device is showing.
Jeff Brownd14c8c92014-01-07 18:13:09 -08001547 // Certain displays only ever show their own content.
Craig Mautner722285e2012-09-07 13:55:58 -07001548 LogicalDisplay display = findLogicalDisplayForDeviceLocked(device);
Jeff Brownd14c8c92014-01-07 18:13:09 -08001549 if (!ownContent) {
Jeff Browna506a6e2013-06-04 00:02:38 -07001550 if (display != null && !display.hasContentLocked()) {
1551 // If the display does not have any content of its own, then
b0202.jung925435c2020-01-08 18:46:59 +09001552 // automatically mirror the requested logical display contents if possible.
1553 display = mLogicalDisplays.get(device.getDisplayIdToMirrorLocked());
Jeff Browna506a6e2013-06-04 00:02:38 -07001554 }
1555 if (display == null) {
1556 display = mLogicalDisplays.get(Display.DEFAULT_DISPLAY);
1557 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001558 }
1559
1560 // Apply the logical display configuration to the display device.
1561 if (display == null) {
1562 // TODO: no logical display for the device, blank it
Jeff Brownd728bf52012-09-08 18:05:28 -07001563 Slog.w(TAG, "Missing logical display to use for physical display device: "
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001564 + device.getDisplayDeviceInfoLocked());
Jeff Brownd728bf52012-09-08 18:05:28 -07001565 return;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001566 }
Robert Carrae606b42018-02-15 15:36:23 -08001567 display.configureDisplayLocked(t, device, info.state == Display.STATE_OFF);
Chris Yed6d35592020-05-01 11:36:33 -07001568 final Optional<Integer> viewportType = getViewportType(info);
1569 if (viewportType.isPresent()) {
1570 populateViewportLocked(viewportType.get(), display.getDisplayIdLocked(), device, info);
Jeff Brownd728bf52012-09-08 18:05:28 -07001571 }
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001572 }
1573
1574 /**
1575 * Get internal or external viewport. Create it if does not currently exist.
1576 * @param viewportType - either INTERNAL or EXTERNAL
1577 * @return the viewport with the requested type
1578 */
Arthur Hung41e81e72018-10-31 18:04:56 +08001579 private DisplayViewport getViewportLocked(int viewportType, String uniqueId) {
1580 if (viewportType != VIEWPORT_INTERNAL && viewportType != VIEWPORT_EXTERNAL
1581 && viewportType != VIEWPORT_VIRTUAL) {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001582 Slog.wtf(TAG, "Cannot call getViewportByTypeLocked for type "
1583 + DisplayViewport.typeToString(viewportType));
1584 return null;
1585 }
Arthur Hung41e81e72018-10-31 18:04:56 +08001586
1587 // Only allow a single INTERNAL or EXTERNAL viewport by forcing their uniqueIds
1588 // to be identical (in particular, empty).
1589 // TODO (b/116824030) allow multiple EXTERNAL viewports and remove this function.
1590 if (viewportType != VIEWPORT_VIRTUAL) {
1591 uniqueId = "";
1592 }
1593
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001594 DisplayViewport viewport;
1595 final int count = mViewports.size();
1596 for (int i = 0; i < count; i++) {
1597 viewport = mViewports.get(i);
Arthur Hung41e81e72018-10-31 18:04:56 +08001598 if (viewport.type == viewportType && uniqueId.equals(viewport.uniqueId)) {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001599 return viewport;
1600 }
1601 }
1602
Arthur Hung41e81e72018-10-31 18:04:56 +08001603 // Creates the viewport if none exists.
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001604 viewport = new DisplayViewport();
1605 viewport.type = viewportType;
Arthur Hung41e81e72018-10-31 18:04:56 +08001606 viewport.uniqueId = uniqueId;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001607 mViewports.add(viewport);
1608 return viewport;
1609 }
1610
Chris Yed6d35592020-05-01 11:36:33 -07001611 private void populateViewportLocked(int viewportType, int displayId, DisplayDevice device,
1612 DisplayDeviceInfo info) {
1613 final DisplayViewport viewport = getViewportLocked(viewportType, info.uniqueId);
Jeff Brownd728bf52012-09-08 18:05:28 -07001614 device.populateViewportLocked(viewport);
Arthur Hung41e81e72018-10-31 18:04:56 +08001615 viewport.valid = true;
1616 viewport.displayId = displayId;
Chris Yed6d35592020-05-01 11:36:33 -07001617 viewport.isActive = Display.isActiveState(info.state);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001618 }
1619
1620 private LogicalDisplay findLogicalDisplayForDeviceLocked(DisplayDevice device) {
1621 final int count = mLogicalDisplays.size();
1622 for (int i = 0; i < count; i++) {
1623 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1624 if (display.getPrimaryDisplayDeviceLocked() == device) {
1625 return display;
1626 }
1627 }
1628 return null;
1629 }
1630
Jeff Brownbd6e1502012-08-28 03:27:37 -07001631 private void sendDisplayEventLocked(int displayId, int event) {
1632 Message msg = mHandler.obtainMessage(MSG_DELIVER_DISPLAY_EVENT, displayId, event);
1633 mHandler.sendMessage(msg);
1634 }
1635
Robert Carrae606b42018-02-15 15:36:23 -08001636 // Requests that performTraversals be called at a
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001637 // later time to apply changes to surfaces and displays.
Craig Mautner65d11b32012-10-01 13:59:52 -07001638 private void scheduleTraversalLocked(boolean inTraversal) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001639 if (!mPendingTraversal && mWindowManagerInternal != null) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001640 mPendingTraversal = true;
Craig Mautner65d11b32012-10-01 13:59:52 -07001641 if (!inTraversal) {
1642 mHandler.sendEmptyMessage(MSG_REQUEST_TRAVERSAL);
1643 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001644 }
1645 }
1646
1647 // Runs on Handler thread.
1648 // Delivers display event notifications to callbacks.
Jeff Brownbd6e1502012-08-28 03:27:37 -07001649 private void deliverDisplayEvent(int displayId, int event) {
1650 if (DEBUG) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001651 Slog.d(TAG, "Delivering display event: displayId="
1652 + displayId + ", event=" + event);
Jeff Brownfa25bf52012-07-23 19:26:30 -07001653 }
Jeff Brownfa25bf52012-07-23 19:26:30 -07001654
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001655 // Grab the lock and copy the callbacks.
Jeff Brownbd6e1502012-08-28 03:27:37 -07001656 final int count;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001657 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -07001658 count = mCallbacks.size();
1659 mTempCallbacks.clear();
1660 for (int i = 0; i < count; i++) {
1661 mTempCallbacks.add(mCallbacks.valueAt(i));
Craig Mautner4f67ba62012-08-02 11:23:00 -07001662 }
Jeff Brownbd6e1502012-08-28 03:27:37 -07001663 }
Craig Mautner4f67ba62012-08-02 11:23:00 -07001664
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001665 // After releasing the lock, send the notifications out.
Jeff Brownbd6e1502012-08-28 03:27:37 -07001666 for (int i = 0; i < count; i++) {
1667 mTempCallbacks.get(i).notifyDisplayEventAsync(displayId, event);
1668 }
1669 mTempCallbacks.clear();
Craig Mautner4f67ba62012-08-02 11:23:00 -07001670 }
1671
Michael Wrightc39d47a2014-07-08 18:07:36 -07001672 private IMediaProjectionManager getProjectionService() {
1673 if (mProjectionService == null) {
1674 IBinder b = ServiceManager.getService(Context.MEDIA_PROJECTION_SERVICE);
1675 mProjectionService = IMediaProjectionManager.Stub.asInterface(b);
1676 }
1677 return mProjectionService;
1678 }
1679
Michael Wrighteef0e132017-11-21 17:57:52 +00001680 private UserManager getUserManager() {
1681 return mContext.getSystemService(UserManager.class);
1682 }
1683
Jeff Brown4ccb8232014-01-16 22:16:42 -08001684 private void dumpInternal(PrintWriter pw) {
Jeff Brownbd6e1502012-08-28 03:27:37 -07001685 pw.println("DISPLAY MANAGER (dumpsys display)");
Jeff Brownfa25bf52012-07-23 19:26:30 -07001686
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001687 synchronized (mSyncRoot) {
Jeff Brown9e316a12012-10-08 19:17:06 -07001688 pw.println(" mOnlyCode=" + mOnlyCore);
1689 pw.println(" mSafeMode=" + mSafeMode);
1690 pw.println(" mPendingTraversal=" + mPendingTraversal);
Jeff Brown037c33e2014-04-09 00:31:55 -07001691 pw.println(" mGlobalDisplayState=" + Display.stateToString(mGlobalDisplayState));
Jeff Brown9e316a12012-10-08 19:17:06 -07001692 pw.println(" mNextNonDefaultDisplayId=" + mNextNonDefaultDisplayId);
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001693 pw.println(" mViewports=" + mViewports);
Damien Bargiacchi4364bbf2016-11-01 21:44:20 -07001694 pw.println(" mDefaultDisplayDefaultColorMode=" + mDefaultDisplayDefaultColorMode);
Jeff Brown27f1d672012-10-17 18:32:34 -07001695 pw.println(" mSingleDisplayDemoMode=" + mSingleDisplayDemoMode);
Jeff Brownce468a32013-11-21 16:42:03 -08001696 pw.println(" mWifiDisplayScanRequestCount=" + mWifiDisplayScanRequestCount);
Michael Wrighteedcbf12017-08-16 23:14:54 +01001697 pw.println(" mStableDisplaySize=" + mStableDisplaySize);
Kenny Guy2047db92019-02-21 13:04:05 +00001698 pw.println(" mMinimumBrightnessCurve=" + mMinimumBrightnessCurve);
Jeff Brown9e316a12012-10-08 19:17:06 -07001699
Jeff Brownbd6e1502012-08-28 03:27:37 -07001700 IndentingPrintWriter ipw = new IndentingPrintWriter(pw, " ");
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001701 ipw.increaseIndent();
Jeff Brownbd6e1502012-08-28 03:27:37 -07001702
1703 pw.println();
1704 pw.println("Display Adapters: size=" + mDisplayAdapters.size());
Jeff Brown848c2dc2012-08-19 20:18:08 -07001705 for (DisplayAdapter adapter : mDisplayAdapters) {
Jeff Brownbd6e1502012-08-28 03:27:37 -07001706 pw.println(" " + adapter.getName());
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001707 adapter.dumpLocked(ipw);
Jeff Brown848c2dc2012-08-19 20:18:08 -07001708 }
Craig Mautner9de49362012-08-02 14:30:30 -07001709
Jeff Brownbd6e1502012-08-28 03:27:37 -07001710 pw.println();
1711 pw.println("Display Devices: size=" + mDisplayDevices.size());
1712 for (DisplayDevice device : mDisplayDevices) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001713 pw.println(" " + device.getDisplayDeviceInfoLocked());
1714 device.dumpLocked(ipw);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001715 }
1716
1717 final int logicalDisplayCount = mLogicalDisplays.size();
1718 pw.println();
1719 pw.println("Logical Displays: size=" + logicalDisplayCount);
1720 for (int i = 0; i < logicalDisplayCount; i++) {
1721 int displayId = mLogicalDisplays.keyAt(i);
1722 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1723 pw.println(" Display " + displayId + ":");
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001724 display.dumpLocked(ipw);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001725 }
Jeff Brownce468a32013-11-21 16:42:03 -08001726
Michael Wrighta3dab232019-02-22 16:54:21 +00001727 pw.println();
1728 mDisplayModeDirector.dump(pw);
1729
Jeff Brownce468a32013-11-21 16:42:03 -08001730 final int callbackCount = mCallbacks.size();
1731 pw.println();
1732 pw.println("Callbacks: size=" + callbackCount);
1733 for (int i = 0; i < callbackCount; i++) {
1734 CallbackRecord callback = mCallbacks.valueAt(i);
1735 pw.println(" " + i + ": mPid=" + callback.mPid
1736 + ", mWifiDisplayScanRequested=" + callback.mWifiDisplayScanRequested);
1737 }
Jeff Brownad9ef192014-04-08 17:26:30 -07001738
1739 if (mDisplayPowerController != null) {
1740 mDisplayPowerController.dump(pw);
1741 }
Michael Wright1c9977b2016-07-12 13:30:10 -07001742
1743 pw.println();
1744 mPersistentDataStore.dump(pw);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001745 }
1746 }
1747
Dan Gittik122df862018-03-28 16:59:22 +01001748 private static float[] getFloatArray(TypedArray array) {
1749 int length = array.length();
1750 float[] floatArray = new float[length];
1751 for (int i = 0; i < length; i++) {
1752 floatArray[i] = array.getFloat(i, Float.NaN);
1753 }
1754 array.recycle();
1755 return floatArray;
1756 }
1757
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001758 /**
1759 * This is the object that everything in the display manager locks on.
1760 * We make it an inner class within the {@link DisplayManagerService} to so that it is
1761 * clear that the object belongs to the display manager service and that it is
1762 * a unique object with a special purpose.
1763 */
1764 public static final class SyncRoot {
1765 }
1766
Santos Cordonee8931e2017-04-05 10:31:15 -07001767 @VisibleForTesting
1768 static class Injector {
1769 VirtualDisplayAdapter getVirtualDisplayAdapter(SyncRoot syncRoot, Context context,
1770 Handler handler, DisplayAdapter.Listener displayAdapterListener) {
1771 return new VirtualDisplayAdapter(syncRoot, context, handler, displayAdapterListener);
1772 }
Santos Cordonc22c5632017-06-21 16:03:49 -07001773
1774 long getDefaultDisplayDelayTimeout() {
1775 return WAIT_FOR_DEFAULT_DISPLAY_TIMEOUT;
1776 }
Santos Cordonee8931e2017-04-05 10:31:15 -07001777 }
1778
Alex Sakhartchouk879d24f2017-06-20 22:01:19 -04001779 @VisibleForTesting
1780 DisplayDeviceInfo getDisplayDeviceInfoInternal(int displayId) {
1781 synchronized (mSyncRoot) {
1782 LogicalDisplay display = mLogicalDisplays.get(displayId);
1783 if (display != null) {
1784 DisplayDevice displayDevice = display.getPrimaryDisplayDeviceLocked();
1785 return displayDevice.getDisplayDeviceInfoLocked();
1786 }
1787 return null;
1788 }
1789 }
1790
b0202.jung925435c2020-01-08 18:46:59 +09001791 @VisibleForTesting
1792 int getDisplayIdToMirrorInternal(int displayId) {
1793 synchronized (mSyncRoot) {
1794 LogicalDisplay display = mLogicalDisplays.get(displayId);
1795 if (display != null) {
1796 DisplayDevice displayDevice = display.getPrimaryDisplayDeviceLocked();
1797 return displayDevice.getDisplayIdToMirrorLocked();
1798 }
1799 return Display.INVALID_DISPLAY;
1800 }
1801 }
1802
1803 @VisibleForTesting
1804 Surface getVirtualDisplaySurfaceInternal(IBinder appToken) {
1805 synchronized (mSyncRoot) {
1806 if (mVirtualDisplayAdapter == null) {
1807 return null;
1808 }
1809 return mVirtualDisplayAdapter.getVirtualDisplaySurfaceLocked(appToken);
1810 }
1811 }
1812
Jeff Brownbd6e1502012-08-28 03:27:37 -07001813 private final class DisplayManagerHandler extends Handler {
1814 public DisplayManagerHandler(Looper looper) {
1815 super(looper, null, true /*async*/);
Jeff Brown848c2dc2012-08-19 20:18:08 -07001816 }
Jeff Brownbf5740e2012-08-19 23:20:02 -07001817
Jeff Brownbd6e1502012-08-28 03:27:37 -07001818 @Override
1819 public void handleMessage(Message msg) {
1820 switch (msg.what) {
Santos Cordonc22c5632017-06-21 16:03:49 -07001821 case MSG_REGISTER_DEFAULT_DISPLAY_ADAPTERS:
1822 registerDefaultDisplayAdapters();
Jeff Brownbd6e1502012-08-28 03:27:37 -07001823 break;
1824
1825 case MSG_REGISTER_ADDITIONAL_DISPLAY_ADAPTERS:
1826 registerAdditionalDisplayAdapters();
1827 break;
1828
1829 case MSG_DELIVER_DISPLAY_EVENT:
1830 deliverDisplayEvent(msg.arg1, msg.arg2);
1831 break;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001832
1833 case MSG_REQUEST_TRAVERSAL:
Jeff Brown4ccb8232014-01-16 22:16:42 -08001834 mWindowManagerInternal.requestTraversalFromDisplayManager();
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001835 break;
Jeff Brownd728bf52012-09-08 18:05:28 -07001836
1837 case MSG_UPDATE_VIEWPORT: {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001838 final boolean changed;
Jeff Brownd728bf52012-09-08 18:05:28 -07001839 synchronized (mSyncRoot) {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001840 changed = !mTempViewports.equals(mViewports);
1841 if (changed) {
1842 mTempViewports.clear();
1843 for (DisplayViewport d : mViewports) {
1844 mTempViewports.add(d.makeCopy());
1845 }
Santos Cordonee8931e2017-04-05 10:31:15 -07001846 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001847 }
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001848 if (changed) {
1849 mInputManagerInternal.setDisplayViewports(mTempViewports);
1850 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001851 break;
1852 }
Kenny Guy22bd0442017-10-26 00:15:54 +01001853
Michael Wrighteef0e132017-11-21 17:57:52 +00001854 case MSG_LOAD_BRIGHTNESS_CONFIGURATION:
1855 loadBrightnessConfiguration();
1856 break;
Jeff Brownbd6e1502012-08-28 03:27:37 -07001857 }
1858 }
1859 }
1860
1861 private final class DisplayAdapterListener implements DisplayAdapter.Listener {
1862 @Override
1863 public void onDisplayDeviceEvent(DisplayDevice device, int event) {
1864 switch (event) {
1865 case DisplayAdapter.DISPLAY_DEVICE_EVENT_ADDED:
1866 handleDisplayDeviceAdded(device);
1867 break;
1868
1869 case DisplayAdapter.DISPLAY_DEVICE_EVENT_CHANGED:
1870 handleDisplayDeviceChanged(device);
1871 break;
1872
1873 case DisplayAdapter.DISPLAY_DEVICE_EVENT_REMOVED:
1874 handleDisplayDeviceRemoved(device);
1875 break;
1876 }
1877 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001878
1879 @Override
1880 public void onTraversalRequested() {
1881 synchronized (mSyncRoot) {
Craig Mautner65d11b32012-10-01 13:59:52 -07001882 scheduleTraversalLocked(false);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001883 }
1884 }
Jeff Brownbd6e1502012-08-28 03:27:37 -07001885 }
1886
1887 private final class CallbackRecord implements DeathRecipient {
Jeff Brownce468a32013-11-21 16:42:03 -08001888 public final int mPid;
Jeff Brownbd6e1502012-08-28 03:27:37 -07001889 private final IDisplayManagerCallback mCallback;
1890
Jeff Brownce468a32013-11-21 16:42:03 -08001891 public boolean mWifiDisplayScanRequested;
1892
Jeff Brownbd6e1502012-08-28 03:27:37 -07001893 public CallbackRecord(int pid, IDisplayManagerCallback callback) {
1894 mPid = pid;
1895 mCallback = callback;
1896 }
1897
1898 @Override
1899 public void binderDied() {
1900 if (DEBUG) {
1901 Slog.d(TAG, "Display listener for pid " + mPid + " died.");
1902 }
Jeff Brownce468a32013-11-21 16:42:03 -08001903 onCallbackDied(this);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001904 }
1905
1906 public void notifyDisplayEventAsync(int displayId, int event) {
1907 try {
1908 mCallback.onDisplayEvent(displayId, event);
1909 } catch (RemoteException ex) {
1910 Slog.w(TAG, "Failed to notify process "
1911 + mPid + " that displays changed, assuming it died.", ex);
1912 binderDied();
1913 }
1914 }
1915 }
Jeff Brown4ccb8232014-01-16 22:16:42 -08001916
Santos Cordonee8931e2017-04-05 10:31:15 -07001917 @VisibleForTesting
1918 final class BinderService extends IDisplayManager.Stub {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001919 /**
1920 * Returns information about the specified logical display.
1921 *
1922 * @param displayId The logical display id.
lumarkec75b422019-01-07 15:58:38 +08001923 * @return The logical display info, return {@code null} if the display does not exist or
1924 * the calling UID isn't present on the display. The returned object must be treated as
1925 * immutable.
Jeff Brown4ccb8232014-01-16 22:16:42 -08001926 */
1927 @Override // Binder call
1928 public DisplayInfo getDisplayInfo(int displayId) {
1929 final int callingUid = Binder.getCallingUid();
1930 final long token = Binder.clearCallingIdentity();
1931 try {
1932 return getDisplayInfoInternal(displayId, callingUid);
1933 } finally {
1934 Binder.restoreCallingIdentity(token);
1935 }
1936 }
1937
1938 /**
1939 * Returns the list of all display ids.
1940 */
1941 @Override // Binder call
1942 public int[] getDisplayIds() {
1943 final int callingUid = Binder.getCallingUid();
1944 final long token = Binder.clearCallingIdentity();
1945 try {
1946 return getDisplayIdsInternal(callingUid);
1947 } finally {
1948 Binder.restoreCallingIdentity(token);
1949 }
1950 }
1951
lumarkec75b422019-01-07 15:58:38 +08001952 @Override // Binder call
1953 public boolean isUidPresentOnDisplay(int uid, int displayId) {
1954 final long token = Binder.clearCallingIdentity();
1955 try {
1956 return isUidPresentOnDisplayInternal(uid, displayId);
1957 } finally {
1958 Binder.restoreCallingIdentity(token);
1959 }
1960 }
1961
Michael Wrighteedcbf12017-08-16 23:14:54 +01001962 /**
1963 * Returns the stable device display size, in pixels.
1964 */
1965 @Override // Binder call
1966 public Point getStableDisplaySize() {
1967 final long token = Binder.clearCallingIdentity();
1968 try {
1969 return getStableDisplaySizeInternal();
1970 } finally {
1971 Binder.restoreCallingIdentity(token);
1972 }
1973 }
1974
Jeff Brown4ccb8232014-01-16 22:16:42 -08001975 @Override // Binder call
1976 public void registerCallback(IDisplayManagerCallback callback) {
1977 if (callback == null) {
1978 throw new IllegalArgumentException("listener must not be null");
1979 }
1980
1981 final int callingPid = Binder.getCallingPid();
1982 final long token = Binder.clearCallingIdentity();
1983 try {
1984 registerCallbackInternal(callback, callingPid);
1985 } finally {
1986 Binder.restoreCallingIdentity(token);
1987 }
1988 }
1989
1990 @Override // Binder call
1991 public void startWifiDisplayScan() {
1992 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1993 "Permission required to start wifi display scans");
1994
1995 final int callingPid = Binder.getCallingPid();
1996 final long token = Binder.clearCallingIdentity();
1997 try {
1998 startWifiDisplayScanInternal(callingPid);
1999 } finally {
2000 Binder.restoreCallingIdentity(token);
2001 }
2002 }
2003
2004 @Override // Binder call
2005 public void stopWifiDisplayScan() {
2006 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
2007 "Permission required to stop wifi display scans");
2008
2009 final int callingPid = Binder.getCallingPid();
2010 final long token = Binder.clearCallingIdentity();
2011 try {
2012 stopWifiDisplayScanInternal(callingPid);
2013 } finally {
2014 Binder.restoreCallingIdentity(token);
2015 }
2016 }
2017
2018 @Override // Binder call
2019 public void connectWifiDisplay(String address) {
2020 if (address == null) {
2021 throw new IllegalArgumentException("address must not be null");
2022 }
2023 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
2024 "Permission required to connect to a wifi display");
2025
2026 final long token = Binder.clearCallingIdentity();
2027 try {
2028 connectWifiDisplayInternal(address);
2029 } finally {
2030 Binder.restoreCallingIdentity(token);
2031 }
2032 }
2033
2034 @Override // Binder call
2035 public void disconnectWifiDisplay() {
2036 // This request does not require special permissions.
2037 // Any app can request disconnection from the currently active wifi display.
2038 // This exception should no longer be needed once wifi display control moves
2039 // to the media router service.
2040
2041 final long token = Binder.clearCallingIdentity();
2042 try {
2043 disconnectWifiDisplayInternal();
2044 } finally {
2045 Binder.restoreCallingIdentity(token);
2046 }
2047 }
2048
2049 @Override // Binder call
2050 public void renameWifiDisplay(String address, String alias) {
2051 if (address == null) {
2052 throw new IllegalArgumentException("address must not be null");
2053 }
2054 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
2055 "Permission required to rename to a wifi display");
2056
2057 final long token = Binder.clearCallingIdentity();
2058 try {
2059 renameWifiDisplayInternal(address, alias);
2060 } finally {
2061 Binder.restoreCallingIdentity(token);
2062 }
2063 }
2064
2065 @Override // Binder call
2066 public void forgetWifiDisplay(String address) {
2067 if (address == null) {
2068 throw new IllegalArgumentException("address must not be null");
2069 }
2070 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
2071 "Permission required to forget to a wifi display");
2072
2073 final long token = Binder.clearCallingIdentity();
2074 try {
2075 forgetWifiDisplayInternal(address);
2076 } finally {
2077 Binder.restoreCallingIdentity(token);
2078 }
2079 }
2080
2081 @Override // Binder call
2082 public void pauseWifiDisplay() {
2083 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
2084 "Permission required to pause a wifi display session");
2085
2086 final long token = Binder.clearCallingIdentity();
2087 try {
2088 pauseWifiDisplayInternal();
2089 } finally {
2090 Binder.restoreCallingIdentity(token);
2091 }
2092 }
2093
2094 @Override // Binder call
2095 public void resumeWifiDisplay() {
2096 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
2097 "Permission required to resume a wifi display session");
2098
2099 final long token = Binder.clearCallingIdentity();
2100 try {
2101 resumeWifiDisplayInternal();
2102 } finally {
2103 Binder.restoreCallingIdentity(token);
2104 }
2105 }
2106
2107 @Override // Binder call
2108 public WifiDisplayStatus getWifiDisplayStatus() {
2109 // This request does not require special permissions.
2110 // Any app can get information about available wifi displays.
2111
2112 final long token = Binder.clearCallingIdentity();
2113 try {
2114 return getWifiDisplayStatusInternal();
2115 } finally {
2116 Binder.restoreCallingIdentity(token);
2117 }
2118 }
2119
2120 @Override // Binder call
Michael Wright1c9977b2016-07-12 13:30:10 -07002121 public void requestColorMode(int displayId, int colorMode) {
Michael Wright58e829f2015-09-15 00:13:26 +01002122 mContext.enforceCallingOrSelfPermission(
Michael Wright1c9977b2016-07-12 13:30:10 -07002123 Manifest.permission.CONFIGURE_DISPLAY_COLOR_MODE,
2124 "Permission required to change the display color mode");
Michael Wright58e829f2015-09-15 00:13:26 +01002125 final long token = Binder.clearCallingIdentity();
2126 try {
Michael Wright1c9977b2016-07-12 13:30:10 -07002127 requestColorModeInternal(displayId, colorMode);
Michael Wright58e829f2015-09-15 00:13:26 +01002128 } finally {
2129 Binder.restoreCallingIdentity(token);
2130 }
2131 }
2132
2133 @Override // Binder call
b0202.jung925435c2020-01-08 18:46:59 +09002134 public int createVirtualDisplay(VirtualDisplayConfig virtualDisplayConfig,
2135 IVirtualDisplayCallback callback, IMediaProjection projection, String packageName) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08002136 final int callingUid = Binder.getCallingUid();
2137 if (!validatePackageName(callingUid, packageName)) {
2138 throw new SecurityException("packageName must match the calling uid");
2139 }
Michael Wright75ee9fc2014-09-01 19:55:22 -07002140 if (callback == null) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08002141 throw new IllegalArgumentException("appToken must not be null");
2142 }
b0202.jung925435c2020-01-08 18:46:59 +09002143 if (virtualDisplayConfig == null) {
2144 throw new IllegalArgumentException("virtualDisplayConfig must not be null");
Jeff Brown4ccb8232014-01-16 22:16:42 -08002145 }
b0202.jung925435c2020-01-08 18:46:59 +09002146 final Surface surface = virtualDisplayConfig.getSurface();
2147 int flags = virtualDisplayConfig.getFlags();
2148
Pablo Ceballoseb3370d2016-08-31 15:00:17 -07002149 if (surface != null && surface.isSingleBuffered()) {
Pablo Ceballosaff2f942016-07-29 14:49:55 -07002150 throw new IllegalArgumentException("Surface can't be single-buffered");
2151 }
Michael Wrightc39d47a2014-07-08 18:07:36 -07002152
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08002153 if ((flags & VIRTUAL_DISPLAY_FLAG_PUBLIC) != 0) {
2154 flags |= VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR;
2155
2156 // Public displays can't be allowed to show content when locked.
Andrii Kulian7211d2e2017-01-27 15:58:05 -08002157 if ((flags & VIRTUAL_DISPLAY_FLAG_CAN_SHOW_WITH_INSECURE_KEYGUARD) != 0) {
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08002158 throw new IllegalArgumentException(
2159 "Public display must not be marked as SHOW_WHEN_LOCKED_INSECURE");
2160 }
Michael Wright6720be42014-07-29 19:14:16 -07002161 }
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08002162 if ((flags & VIRTUAL_DISPLAY_FLAG_OWN_CONTENT_ONLY) != 0) {
2163 flags &= ~VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR;
Michael Wright6720be42014-07-29 19:14:16 -07002164 }
2165
Michael Wrightc39d47a2014-07-08 18:07:36 -07002166 if (projection != null) {
2167 try {
2168 if (!getProjectionService().isValidMediaProjection(projection)) {
2169 throw new SecurityException("Invalid media projection");
2170 }
Michael Wright6720be42014-07-29 19:14:16 -07002171 flags = projection.applyVirtualDisplayFlags(flags);
Michael Wrightc39d47a2014-07-08 18:07:36 -07002172 } catch (RemoteException e) {
Michael Wright6720be42014-07-29 19:14:16 -07002173 throw new SecurityException("unable to validate media projection or flags");
Michael Wrightc39d47a2014-07-08 18:07:36 -07002174 }
2175 }
2176
Michael Wright6720be42014-07-29 19:14:16 -07002177 if (callingUid != Process.SYSTEM_UID &&
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08002178 (flags & VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR) != 0) {
Michael Wrightc39d47a2014-07-08 18:07:36 -07002179 if (!canProjectVideo(projection)) {
2180 throw new SecurityException("Requires CAPTURE_VIDEO_OUTPUT or "
2181 + "CAPTURE_SECURE_VIDEO_OUTPUT permission, or an appropriate "
2182 + "MediaProjection token in order to create a screen sharing virtual "
2183 + "display.");
2184 }
2185 }
Santos Cordonb6992f22018-01-30 14:51:20 -08002186 if (callingUid != Process.SYSTEM_UID && (flags & VIRTUAL_DISPLAY_FLAG_SECURE) != 0) {
Michael Wrightc39d47a2014-07-08 18:07:36 -07002187 if (!canProjectSecureVideo(projection)) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08002188 throw new SecurityException("Requires CAPTURE_SECURE_VIDEO_OUTPUT "
Michael Wrightc39d47a2014-07-08 18:07:36 -07002189 + "or an appropriate MediaProjection token to create a "
2190 + "secure virtual display.");
Jeff Brown4ccb8232014-01-16 22:16:42 -08002191 }
2192 }
2193
Charles Chenb28fb722020-05-21 17:19:32 +08002194 if (callingUid == Process.SYSTEM_UID
2195 || checkCallingPermission(ADD_TRUSTED_DISPLAY, "createVirtualDisplay()")) {
2196 flags |= VIRTUAL_DISPLAY_FLAG_TRUSTED;
2197 } else {
2198 flags &= ~VIRTUAL_DISPLAY_FLAG_SHOULD_SHOW_SYSTEM_DECORATIONS;
2199 }
2200
Chilun67a379b2019-04-11 19:49:42 +08002201 // Sometimes users can have sensitive information in system decoration windows. An app
2202 // could create a virtual display with system decorations support and read the user info
2203 // from the surface.
2204 // We should only allow adding flag VIRTUAL_DISPLAY_FLAG_SHOULD_SHOW_SYSTEM_DECORATIONS
Charles Chenb28fb722020-05-21 17:19:32 +08002205 // to trusted virtual displays.
2206 final int trustedDisplayWithSysDecorFlag =
2207 (VIRTUAL_DISPLAY_FLAG_SHOULD_SHOW_SYSTEM_DECORATIONS
2208 | VIRTUAL_DISPLAY_FLAG_TRUSTED);
2209 if ((flags & trustedDisplayWithSysDecorFlag)
2210 == VIRTUAL_DISPLAY_FLAG_SHOULD_SHOW_SYSTEM_DECORATIONS
2211 && !checkCallingPermission(INTERNAL_SYSTEM_WINDOW, "createVirtualDisplay()")) {
Chilun67a379b2019-04-11 19:49:42 +08002212 throw new SecurityException("Requires INTERNAL_SYSTEM_WINDOW permission");
Chilun67a379b2019-04-11 19:49:42 +08002213 }
2214
Jeff Brown4ccb8232014-01-16 22:16:42 -08002215 final long token = Binder.clearCallingIdentity();
2216 try {
Santos Cordonee8931e2017-04-05 10:31:15 -07002217 return createVirtualDisplayInternal(callback, projection, callingUid, packageName,
b0202.jung925435c2020-01-08 18:46:59 +09002218 surface, flags, virtualDisplayConfig);
Jeff Brown4ccb8232014-01-16 22:16:42 -08002219 } finally {
2220 Binder.restoreCallingIdentity(token);
2221 }
2222 }
2223
2224 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07002225 public void resizeVirtualDisplay(IVirtualDisplayCallback callback,
Michael Wright01e840f2014-06-26 16:03:25 -07002226 int width, int height, int densityDpi) {
Jeff Chang01baf6c2019-08-20 16:21:25 +08002227 if (width <= 0 || height <= 0 || densityDpi <= 0) {
2228 throw new IllegalArgumentException("width, height, and densityDpi must be "
2229 + "greater than 0");
2230 }
Michael Wright01e840f2014-06-26 16:03:25 -07002231 final long token = Binder.clearCallingIdentity();
2232 try {
Michael Wright75ee9fc2014-09-01 19:55:22 -07002233 resizeVirtualDisplayInternal(callback.asBinder(), width, height, densityDpi);
Michael Wright01e840f2014-06-26 16:03:25 -07002234 } finally {
2235 Binder.restoreCallingIdentity(token);
2236 }
2237 }
2238
2239 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07002240 public void setVirtualDisplaySurface(IVirtualDisplayCallback callback, Surface surface) {
Pablo Ceballoseb3370d2016-08-31 15:00:17 -07002241 if (surface != null && surface.isSingleBuffered()) {
2242 throw new IllegalArgumentException("Surface can't be single-buffered");
2243 }
Jeff Brown92207df2014-04-16 13:16:07 -07002244 final long token = Binder.clearCallingIdentity();
2245 try {
Michael Wright75ee9fc2014-09-01 19:55:22 -07002246 setVirtualDisplaySurfaceInternal(callback.asBinder(), surface);
Jeff Brown92207df2014-04-16 13:16:07 -07002247 } finally {
2248 Binder.restoreCallingIdentity(token);
2249 }
2250 }
2251
2252 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07002253 public void releaseVirtualDisplay(IVirtualDisplayCallback callback) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08002254 final long token = Binder.clearCallingIdentity();
2255 try {
Michael Wright75ee9fc2014-09-01 19:55:22 -07002256 releaseVirtualDisplayInternal(callback.asBinder());
Jeff Brown4ccb8232014-01-16 22:16:42 -08002257 } finally {
2258 Binder.restoreCallingIdentity(token);
2259 }
2260 }
2261
2262 @Override // Binder call
chaviwda4c6942018-11-07 15:52:56 -08002263 public void setVirtualDisplayState(IVirtualDisplayCallback callback, boolean isOn) {
2264 final long token = Binder.clearCallingIdentity();
2265 try {
2266 setVirtualDisplayStateInternal(callback.asBinder(), isOn);
2267 } finally {
2268 Binder.restoreCallingIdentity(token);
2269 }
2270 }
2271
2272 @Override // Binder call
Jeff Brown4ccb8232014-01-16 22:16:42 -08002273 public void dump(FileDescriptor fd, final PrintWriter pw, String[] args) {
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -06002274 if (!DumpUtils.checkDumpPermission(mContext, TAG, pw)) return;
Jeff Brown4ccb8232014-01-16 22:16:42 -08002275
2276 final long token = Binder.clearCallingIdentity();
2277 try {
2278 dumpInternal(pw);
2279 } finally {
2280 Binder.restoreCallingIdentity(token);
2281 }
2282 }
2283
Kenny Guy22bd0442017-10-26 00:15:54 +01002284 @Override // Binder call
Kenny Guy29aa30e2017-11-30 13:43:46 +00002285 public ParceledListSlice<BrightnessChangeEvent> getBrightnessEvents(String callingPackage) {
Kenny Guy22bd0442017-10-26 00:15:54 +01002286 mContext.enforceCallingOrSelfPermission(
2287 Manifest.permission.BRIGHTNESS_SLIDER_USAGE,
2288 "Permission to read brightness events.");
Kenny Guy29aa30e2017-11-30 13:43:46 +00002289
2290 final int callingUid = Binder.getCallingUid();
2291 AppOpsManager appOpsManager = mContext.getSystemService(AppOpsManager.class);
Jeff Sharkeyd9311192018-04-16 16:50:34 +00002292 final int mode = appOpsManager.noteOp(AppOpsManager.OP_GET_USAGE_STATS,
Kenny Guy29aa30e2017-11-30 13:43:46 +00002293 callingUid, callingPackage);
2294 final boolean hasUsageStats;
2295 if (mode == AppOpsManager.MODE_DEFAULT) {
2296 // The default behavior here is to check if PackageManager has given the app
2297 // permission.
2298 hasUsageStats = mContext.checkCallingPermission(
2299 Manifest.permission.PACKAGE_USAGE_STATS)
2300 == PackageManager.PERMISSION_GRANTED;
2301 } else {
2302 hasUsageStats = mode == AppOpsManager.MODE_ALLOWED;
2303 }
2304
2305 final int userId = UserHandle.getUserId(callingUid);
Kenny Guy22bd0442017-10-26 00:15:54 +01002306 final long token = Binder.clearCallingIdentity();
2307 try {
Michael Wright144aac92017-12-21 18:37:41 +00002308 synchronized (mSyncRoot) {
2309 return mDisplayPowerController.getBrightnessEvents(userId, hasUsageStats);
2310 }
Kenny Guy22bd0442017-10-26 00:15:54 +01002311 } finally {
2312 Binder.restoreCallingIdentity(token);
2313 }
2314 }
2315
Michael Wrighteef0e132017-11-21 17:57:52 +00002316 @Override // Binder call
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00002317 public ParceledListSlice<AmbientBrightnessDayStats> getAmbientBrightnessStats() {
2318 mContext.enforceCallingOrSelfPermission(
2319 Manifest.permission.ACCESS_AMBIENT_LIGHT_STATS,
2320 "Permission required to to access ambient light stats.");
2321 final int callingUid = Binder.getCallingUid();
2322 final int userId = UserHandle.getUserId(callingUid);
2323 final long token = Binder.clearCallingIdentity();
2324 try {
2325 synchronized (mSyncRoot) {
2326 return mDisplayPowerController.getAmbientBrightnessStats(userId);
2327 }
2328 } finally {
2329 Binder.restoreCallingIdentity(token);
2330 }
2331 }
2332
2333 @Override // Binder call
Michael Wrighteef0e132017-11-21 17:57:52 +00002334 public void setBrightnessConfigurationForUser(
Kenny Guy05ce8092018-01-17 13:44:20 +00002335 BrightnessConfiguration c, @UserIdInt int userId, String packageName) {
Michael Wrighteef0e132017-11-21 17:57:52 +00002336 mContext.enforceCallingOrSelfPermission(
2337 Manifest.permission.CONFIGURE_DISPLAY_BRIGHTNESS,
2338 "Permission required to change the display's brightness configuration");
2339 if (userId != UserHandle.getCallingUserId()) {
2340 mContext.enforceCallingOrSelfPermission(
2341 Manifest.permission.INTERACT_ACROSS_USERS,
2342 "Permission required to change the display brightness"
2343 + " configuration of another user");
2344 }
Kenny Guy05ce8092018-01-17 13:44:20 +00002345 if (packageName != null && !validatePackageName(getCallingUid(), packageName)) {
2346 packageName = null;
2347 }
Michael Wrighteef0e132017-11-21 17:57:52 +00002348 final long token = Binder.clearCallingIdentity();
2349 try {
Kenny Guy05ce8092018-01-17 13:44:20 +00002350 setBrightnessConfigurationForUserInternal(c, userId, packageName);
Michael Wrighteef0e132017-11-21 17:57:52 +00002351 } finally {
2352 Binder.restoreCallingIdentity(token);
2353 }
2354 }
2355
Michael Wrightd8460232018-01-16 18:04:59 +00002356 @Override // Binder call
Kenny Guy6d1009f2018-03-14 14:28:23 +00002357 public BrightnessConfiguration getBrightnessConfigurationForUser(int userId) {
2358 mContext.enforceCallingOrSelfPermission(
2359 Manifest.permission.CONFIGURE_DISPLAY_BRIGHTNESS,
2360 "Permission required to read the display's brightness configuration");
2361 if (userId != UserHandle.getCallingUserId()) {
2362 mContext.enforceCallingOrSelfPermission(
2363 Manifest.permission.INTERACT_ACROSS_USERS,
2364 "Permission required to read the display brightness"
2365 + " configuration of another user");
2366 }
2367 final long token = Binder.clearCallingIdentity();
2368 try {
2369 final int userSerial = getUserManager().getUserSerialNumber(userId);
2370 synchronized (mSyncRoot) {
2371 BrightnessConfiguration config =
2372 mPersistentDataStore.getBrightnessConfiguration(userSerial);
2373 if (config == null) {
2374 config = mDisplayPowerController.getDefaultBrightnessConfiguration();
2375 }
2376 return config;
2377 }
2378 } finally {
2379 Binder.restoreCallingIdentity(token);
2380 }
2381 }
2382
2383 @Override // Binder call
2384 public BrightnessConfiguration getDefaultBrightnessConfiguration() {
2385 mContext.enforceCallingOrSelfPermission(
2386 Manifest.permission.CONFIGURE_DISPLAY_BRIGHTNESS,
2387 "Permission required to read the display's default brightness configuration");
2388 final long token = Binder.clearCallingIdentity();
2389 try {
2390 synchronized (mSyncRoot) {
2391 return mDisplayPowerController.getDefaultBrightnessConfiguration();
2392 }
2393 } finally {
2394 Binder.restoreCallingIdentity(token);
2395 }
2396 }
2397
2398 @Override // Binder call
Galia Peycheva35f900a2020-01-09 14:31:05 +01002399 public boolean isMinimalPostProcessingRequested(int displayId) {
2400 synchronized (mSyncRoot) {
2401 return mLogicalDisplays.get(displayId).getRequestedMinimalPostProcessingLocked();
2402 }
2403 }
2404
2405 @Override // Binder call
Fiona Campbelld4eb2952019-11-04 17:19:56 +00002406 public void setTemporaryBrightness(float brightness) {
Michael Wrightd8460232018-01-16 18:04:59 +00002407 mContext.enforceCallingOrSelfPermission(
2408 Manifest.permission.CONTROL_DISPLAY_BRIGHTNESS,
2409 "Permission required to set the display's brightness");
2410 final long token = Binder.clearCallingIdentity();
2411 try {
2412 synchronized (mSyncRoot) {
2413 mDisplayPowerController.setTemporaryBrightness(brightness);
2414 }
2415 } finally {
2416 Binder.restoreCallingIdentity(token);
2417 }
2418 }
2419
2420 @Override // Binder call
2421 public void setTemporaryAutoBrightnessAdjustment(float adjustment) {
2422 mContext.enforceCallingOrSelfPermission(
2423 Manifest.permission.CONTROL_DISPLAY_BRIGHTNESS,
2424 "Permission required to set the display's auto brightness adjustment");
2425 final long token = Binder.clearCallingIdentity();
2426 try {
2427 synchronized (mSyncRoot) {
2428 mDisplayPowerController.setTemporaryAutoBrightnessAdjustment(adjustment);
2429 }
2430 } finally {
2431 Binder.restoreCallingIdentity(token);
2432 }
2433 }
2434
Dan Gittik7a32fba2018-03-28 12:19:38 +01002435 @Override // Binder call
2436 public void onShellCommand(FileDescriptor in, FileDescriptor out,
2437 FileDescriptor err, String[] args, ShellCallback callback,
2438 ResultReceiver resultReceiver) {
Santos Cordonc4fd8e62019-12-18 13:01:05 +00002439 new DisplayManagerShellCommand(DisplayManagerService.this).exec(this, in, out, err,
2440 args, callback, resultReceiver);
Dan Gittik7a32fba2018-03-28 12:19:38 +01002441 }
2442
Dan Gittik122df862018-03-28 16:59:22 +01002443 @Override // Binder call
2444 public Curve getMinimumBrightnessCurve() {
2445 final long token = Binder.clearCallingIdentity();
2446 try {
2447 return getMinimumBrightnessCurveInternal();
2448 } finally {
2449 Binder.restoreCallingIdentity(token);
2450 }
2451 }
2452
Peiyong Lin277eaff2019-01-16 16:18:22 -08002453 @Override // Binder call
2454 public int getPreferredWideGamutColorSpaceId() {
2455 final long token = Binder.clearCallingIdentity();
2456 try {
2457 return getPreferredWideGamutColorSpaceIdInternal();
2458 } finally {
2459 Binder.restoreCallingIdentity(token);
2460 }
2461 }
2462
Jeff Brown4ccb8232014-01-16 22:16:42 -08002463 private boolean validatePackageName(int uid, String packageName) {
2464 if (packageName != null) {
2465 String[] packageNames = mContext.getPackageManager().getPackagesForUid(uid);
2466 if (packageNames != null) {
2467 for (String n : packageNames) {
2468 if (n.equals(packageName)) {
2469 return true;
2470 }
2471 }
2472 }
2473 }
2474 return false;
2475 }
Michael Wrightc39d47a2014-07-08 18:07:36 -07002476
2477 private boolean canProjectVideo(IMediaProjection projection) {
2478 if (projection != null) {
2479 try {
2480 if (projection.canProjectVideo()) {
2481 return true;
2482 }
2483 } catch (RemoteException e) {
2484 Slog.e(TAG, "Unable to query projection service for permissions", e);
2485 }
2486 }
Chilun67a379b2019-04-11 19:49:42 +08002487 if (checkCallingPermission(CAPTURE_VIDEO_OUTPUT, "canProjectVideo()")) {
Michael Wrightc39d47a2014-07-08 18:07:36 -07002488 return true;
2489 }
2490 return canProjectSecureVideo(projection);
2491 }
2492
2493 private boolean canProjectSecureVideo(IMediaProjection projection) {
2494 if (projection != null) {
2495 try {
2496 if (projection.canProjectSecureVideo()){
2497 return true;
2498 }
2499 } catch (RemoteException e) {
2500 Slog.e(TAG, "Unable to query projection service for permissions", e);
2501 }
2502 }
Chilun67a379b2019-04-11 19:49:42 +08002503 return checkCallingPermission(CAPTURE_SECURE_VIDEO_OUTPUT, "canProjectSecureVideo()");
2504 }
2505
2506 private boolean checkCallingPermission(String permission, String func) {
2507 if (mContext.checkCallingPermission(permission) == PackageManager.PERMISSION_GRANTED) {
2508 return true;
2509 }
2510 final String msg = "Permission Denial: " + func + " from pid=" + Binder.getCallingPid()
2511 + ", uid=" + Binder.getCallingUid() + " requires " + permission;
2512 Slog.w(TAG, msg);
2513 return false;
Michael Wrightc39d47a2014-07-08 18:07:36 -07002514 }
Jeff Brown4ccb8232014-01-16 22:16:42 -08002515 }
2516
2517 private final class LocalService extends DisplayManagerInternal {
Galia Peycheva056b3ee2019-06-26 14:05:12 +02002518
Jeff Brown4ccb8232014-01-16 22:16:42 -08002519 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07002520 public void initPowerManagement(final DisplayPowerCallbacks callbacks, Handler handler,
Jeff Brownad9ef192014-04-08 17:26:30 -07002521 SensorManager sensorManager) {
2522 synchronized (mSyncRoot) {
Jeff Brown037c33e2014-04-09 00:31:55 -07002523 DisplayBlanker blanker = new DisplayBlanker() {
2524 @Override
Fiona Campbelld4eb2952019-11-04 17:19:56 +00002525 public void requestDisplayState(int state, float brightness) {
Jeff Brown037c33e2014-04-09 00:31:55 -07002526 // The order of operations is important for legacy reasons.
2527 if (state == Display.STATE_OFF) {
Jeff Brown5d6443b2015-04-10 20:15:01 -07002528 requestGlobalDisplayStateInternal(state, brightness);
Jeff Brown037c33e2014-04-09 00:31:55 -07002529 }
2530
2531 callbacks.onDisplayStateChange(state);
2532
2533 if (state != Display.STATE_OFF) {
Jeff Brown5d6443b2015-04-10 20:15:01 -07002534 requestGlobalDisplayStateInternal(state, brightness);
Jeff Brown037c33e2014-04-09 00:31:55 -07002535 }
2536 }
2537 };
Jeff Brownad9ef192014-04-08 17:26:30 -07002538 mDisplayPowerController = new DisplayPowerController(
Fiona Campbell172fd4a2020-03-13 16:34:30 +00002539 mContext, callbacks, handler, sensorManager, blanker,
2540 mDisplayDevices.get(Display.DEFAULT_DISPLAY));
Long Lingbc841b02019-07-03 16:43:15 -07002541 mSensorManager = sensorManager;
Jeff Brownad9ef192014-04-08 17:26:30 -07002542 }
Michael Wrighteef0e132017-11-21 17:57:52 +00002543
2544 mHandler.sendEmptyMessage(MSG_LOAD_BRIGHTNESS_CONFIGURATION);
Jeff Brownad9ef192014-04-08 17:26:30 -07002545 }
2546
2547 @Override
2548 public boolean requestPowerState(DisplayPowerRequest request,
2549 boolean waitForNegativeProximity) {
Michael Wrighteef0e132017-11-21 17:57:52 +00002550 synchronized (mSyncRoot) {
2551 return mDisplayPowerController.requestPowerState(request,
2552 waitForNegativeProximity);
2553 }
Jeff Brownad9ef192014-04-08 17:26:30 -07002554 }
2555
2556 @Override
2557 public boolean isProximitySensorAvailable() {
Michael Wrighteef0e132017-11-21 17:57:52 +00002558 synchronized (mSyncRoot) {
2559 return mDisplayPowerController.isProximitySensorAvailable();
2560 }
Jeff Brownad9ef192014-04-08 17:26:30 -07002561 }
2562
2563 @Override
Jacky Kao333de4e2020-04-07 15:01:41 +08002564 public SurfaceControl.ScreenshotGraphicBuffer systemScreenshot(int displayId) {
2565 return systemScreenshotInternal(displayId);
Jacky Kao316477c2020-03-23 16:30:04 +08002566 }
2567
2568 @Override
Jacky Kao333de4e2020-04-07 15:01:41 +08002569 public SurfaceControl.ScreenshotGraphicBuffer userScreenshot(int displayId) {
2570 return userScreenshotInternal(displayId);
Riddle Hsu654a6f92018-07-13 22:59:36 +08002571 }
2572
2573 @Override
Jeff Brown4ccb8232014-01-16 22:16:42 -08002574 public DisplayInfo getDisplayInfo(int displayId) {
2575 return getDisplayInfoInternal(displayId, Process.myUid());
2576 }
2577
2578 @Override
chaviw945f7302020-02-24 14:35:33 -08002579 public Point getDisplayPosition(int displayId) {
2580 synchronized (mSyncRoot) {
2581 LogicalDisplay display = mLogicalDisplays.get(displayId);
2582 if (display != null) {
2583 return display.getDisplayPosition();
2584 }
2585 return null;
2586 }
2587 }
2588
2589 @Override
Jeff Brown4ccb8232014-01-16 22:16:42 -08002590 public void registerDisplayTransactionListener(DisplayTransactionListener listener) {
2591 if (listener == null) {
2592 throw new IllegalArgumentException("listener must not be null");
2593 }
2594
2595 registerDisplayTransactionListenerInternal(listener);
2596 }
2597
2598 @Override
2599 public void unregisterDisplayTransactionListener(DisplayTransactionListener listener) {
2600 if (listener == null) {
2601 throw new IllegalArgumentException("listener must not be null");
2602 }
2603
2604 unregisterDisplayTransactionListenerInternal(listener);
2605 }
2606
2607 @Override
2608 public void setDisplayInfoOverrideFromWindowManager(int displayId, DisplayInfo info) {
2609 setDisplayInfoOverrideFromWindowManagerInternal(displayId, info);
2610 }
2611
2612 @Override
Andrii Kuliancd097992017-03-23 18:31:59 -07002613 public void getNonOverrideDisplayInfo(int displayId, DisplayInfo outInfo) {
2614 getNonOverrideDisplayInfoInternal(displayId, outInfo);
2615 }
2616
2617 @Override
Robert Carrae606b42018-02-15 15:36:23 -08002618 public void performTraversal(SurfaceControl.Transaction t) {
2619 performTraversalInternal(t);
Jeff Brown4ccb8232014-01-16 22:16:42 -08002620 }
2621
2622 @Override
Michael Wright3f145a22014-07-22 19:46:03 -07002623 public void setDisplayProperties(int displayId, boolean hasContent,
Galia Peycheva056b3ee2019-06-26 14:05:12 +02002624 float requestedRefreshRate, int requestedMode,
2625 boolean requestedMinimalPostProcessing, boolean inTraversal) {
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002626 setDisplayPropertiesInternal(displayId, hasContent, requestedRefreshRate,
Galia Peycheva056b3ee2019-06-26 14:05:12 +02002627 requestedMode, requestedMinimalPostProcessing, inTraversal);
Jeff Brown4ccb8232014-01-16 22:16:42 -08002628 }
Filip Gruszczynskid2e86402015-02-19 13:05:03 -08002629
2630 @Override
2631 public void setDisplayOffsets(int displayId, int x, int y) {
2632 setDisplayOffsetsInternal(displayId, x, y);
2633 }
Andrii Kulianfb1bf692017-01-17 11:17:34 -08002634
2635 @Override
Sam Lin4c3ac2b2019-02-18 04:50:26 -08002636 public void setDisplayScalingDisabled(int displayId, boolean disableScaling) {
2637 setDisplayScalingDisabledInternal(displayId, disableScaling);
2638 }
2639
2640 @Override
Andrii Kulianfb1bf692017-01-17 11:17:34 -08002641 public void setDisplayAccessUIDs(SparseArray<IntArray> newDisplayAccessUIDs) {
2642 setDisplayAccessUIDsInternal(newDisplayAccessUIDs);
2643 }
2644
2645 @Override
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00002646 public void persistBrightnessTrackerState() {
Michael Wright144aac92017-12-21 18:37:41 +00002647 synchronized (mSyncRoot) {
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00002648 mDisplayPowerController.persistBrightnessTrackerState();
Michael Wright144aac92017-12-21 18:37:41 +00002649 }
Kenny Guycfe7b702017-11-14 21:04:58 +00002650 }
Adrian Roose1d68cd2018-01-17 12:54:50 +01002651
2652 @Override
2653 public void onOverlayChanged() {
2654 synchronized (mSyncRoot) {
Adrian Roos898ec382018-01-17 12:54:50 +01002655 for (int i = 0; i < mDisplayDevices.size(); i++) {
2656 mDisplayDevices.get(i).onOverlayChangedLocked();
Adrian Roose1d68cd2018-01-17 12:54:50 +01002657 }
2658 }
2659 }
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07002660
2661 @Override
2662 public DisplayedContentSamplingAttributes getDisplayedContentSamplingAttributes(
2663 int displayId) {
2664 return getDisplayedContentSamplingAttributesInternal(displayId);
2665 }
2666
2667 @Override
2668 public boolean setDisplayedContentSamplingEnabled(
2669 int displayId, boolean enable, int componentMask, int maxFrames) {
2670 return setDisplayedContentSamplingEnabledInternal(
2671 displayId, enable, componentMask, maxFrames);
2672 }
2673
2674 @Override
2675 public DisplayedContentSample getDisplayedContentSample(int displayId,
2676 long maxFrames, long timestamp) {
2677 return getDisplayedContentSampleInternal(displayId, maxFrames, timestamp);
2678 }
2679
Jeff Brown4ccb8232014-01-16 22:16:42 -08002680 }
Michael Wrighta3dab232019-02-22 16:54:21 +00002681
Ana Kruleca74a8642019-11-14 00:51:00 +01002682 class DesiredDisplayModeSpecsObserver
2683 implements DisplayModeDirector.DesiredDisplayModeSpecsListener {
2684 public void onDesiredDisplayModeSpecsChanged() {
2685 onDesiredDisplayModeSpecsChangedInternal();
Michael Wrighta3dab232019-02-22 16:54:21 +00002686 }
2687 }
Jeff Brownfa25bf52012-07-23 19:26:30 -07002688}