blob: b89768ac4b68f0651b067674f5ac909238babed3 [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
Andrii Kulianfc8f82b2017-01-26 13:17:27 -080019import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +010020import static android.hardware.display.DisplayManager
21 .VIRTUAL_DISPLAY_FLAG_CAN_SHOW_WITH_INSECURE_KEYGUARD;
Andrii Kulianfc8f82b2017-01-26 13:17:27 -080022import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_OWN_CONTENT_ONLY;
23import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_PUBLIC;
24import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_SECURE;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +010025import static android.hardware.display.DisplayViewport.VIEWPORT_EXTERNAL;
26import static android.hardware.display.DisplayViewport.VIEWPORT_INTERNAL;
27import static android.hardware.display.DisplayViewport.VIEWPORT_VIRTUAL;
Jeff Brownbd6e1502012-08-28 03:27:37 -070028
Jeff Brownfa25bf52012-07-23 19:26:30 -070029import android.Manifest;
Santos Cordonee8931e2017-04-05 10:31:15 -070030import android.annotation.NonNull;
Kenny Guy05ce8092018-01-17 13:44:20 +000031import android.annotation.Nullable;
Michael Wrighteef0e132017-11-21 17:57:52 +000032import android.annotation.UserIdInt;
Kenny Guy29aa30e2017-11-30 13:43:46 +000033import android.app.AppOpsManager;
Jeff Brownfa25bf52012-07-23 19:26:30 -070034import android.content.Context;
35import android.content.pm.PackageManager;
Kenny Guy22bd0442017-10-26 00:15:54 +010036import android.content.pm.ParceledListSlice;
Michael Wrighteedcbf12017-08-16 23:14:54 +010037import android.content.res.Resources;
Dan Gittik122df862018-03-28 16:59:22 +010038import android.content.res.TypedArray;
Peiyong Lin277eaff2019-01-16 16:18:22 -080039import android.graphics.ColorSpace;
Michael Wrighteedcbf12017-08-16 23:14:54 +010040import android.graphics.Point;
Jeff Brownad9ef192014-04-08 17:26:30 -070041import android.hardware.SensorManager;
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +000042import android.hardware.display.AmbientBrightnessDayStats;
Kenny Guy22bd0442017-10-26 00:15:54 +010043import android.hardware.display.BrightnessChangeEvent;
Michael Wrighteef0e132017-11-21 17:57:52 +000044import android.hardware.display.BrightnessConfiguration;
Dan Gittik122df862018-03-28 16:59:22 +010045import android.hardware.display.Curve;
Jeff Brownbd6e1502012-08-28 03:27:37 -070046import android.hardware.display.DisplayManagerGlobal;
Jeff Brown4ccb8232014-01-16 22:16:42 -080047import android.hardware.display.DisplayManagerInternal;
Jeff Brown4ccb8232014-01-16 22:16:42 -080048import android.hardware.display.DisplayManagerInternal.DisplayTransactionListener;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +010049import android.hardware.display.DisplayViewport;
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -070050import android.hardware.display.DisplayedContentSample;
51import android.hardware.display.DisplayedContentSamplingAttributes;
Jeff Brownfa25bf52012-07-23 19:26:30 -070052import android.hardware.display.IDisplayManager;
Jeff Brownbd6e1502012-08-28 03:27:37 -070053import android.hardware.display.IDisplayManagerCallback;
Michael Wright75ee9fc2014-09-01 19:55:22 -070054import android.hardware.display.IVirtualDisplayCallback;
Jeff Browne08ae382012-09-07 20:36:36 -070055import android.hardware.display.WifiDisplayStatus;
Jeff Brown4ccb8232014-01-16 22:16:42 -080056import android.hardware.input.InputManagerInternal;
Michael Wrightc39d47a2014-07-08 18:07:36 -070057import android.media.projection.IMediaProjection;
58import android.media.projection.IMediaProjectionManager;
Jeff Brownfa25bf52012-07-23 19:26:30 -070059import android.os.Binder;
Jeff Brownbd6e1502012-08-28 03:27:37 -070060import android.os.Handler;
Jeff Brown64a55af2012-08-26 02:47:39 -070061import android.os.IBinder;
Jeff Brown4ccb8232014-01-16 22:16:42 -080062import android.os.IBinder.DeathRecipient;
Jeff Brownbd6e1502012-08-28 03:27:37 -070063import android.os.Looper;
64import android.os.Message;
Jeff Brown5d6443b2015-04-10 20:15:01 -070065import android.os.PowerManager;
Craig Mautner4504de52013-12-20 09:06:56 -080066import android.os.Process;
Jeff Brownbd6e1502012-08-28 03:27:37 -070067import android.os.RemoteException;
Dan Gittik7a32fba2018-03-28 12:19:38 +010068import android.os.ResultReceiver;
Michael Wrightc39d47a2014-07-08 18:07:36 -070069import android.os.ServiceManager;
Dan Gittik7a32fba2018-03-28 12:19:38 +010070import android.os.ShellCallback;
Jeff Brownbd6e1502012-08-28 03:27:37 -070071import android.os.SystemClock;
Jeff Brownfa25bf52012-07-23 19:26:30 -070072import android.os.SystemProperties;
Jeff Brown5d6443b2015-04-10 20:15:01 -070073import android.os.Trace;
Kenny Guy22bd0442017-10-26 00:15:54 +010074import android.os.UserHandle;
Michael Wrighteef0e132017-11-21 17:57:52 +000075import android.os.UserManager;
Dan Gittik7a32fba2018-03-28 12:19:38 +010076import android.provider.Settings;
Jeff Browna506a6e2013-06-04 00:02:38 -070077import android.text.TextUtils;
Andrii Kulianfb1bf692017-01-17 11:17:34 -080078import android.util.IntArray;
Dan Gittik122df862018-03-28 16:59:22 +010079import android.util.Pair;
Jeff Brownbd6e1502012-08-28 03:27:37 -070080import android.util.Slog;
81import android.util.SparseArray;
Dan Gittik122df862018-03-28 16:59:22 +010082import android.util.Spline;
Jeff Brownfa25bf52012-07-23 19:26:30 -070083import android.view.Display;
84import android.view.DisplayInfo;
Jeff Browna506a6e2013-06-04 00:02:38 -070085import android.view.Surface;
Robert Carrae606b42018-02-15 15:36:23 -080086import android.view.SurfaceControl;
Jeff Browna506a6e2013-06-04 00:02:38 -070087
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +010088import com.android.internal.annotations.GuardedBy;
89import com.android.internal.annotations.VisibleForTesting;
90import com.android.internal.util.DumpUtils;
91import com.android.internal.util.IndentingPrintWriter;
Jorim Jaggied7993b2017-03-28 18:50:01 +010092import com.android.server.AnimationThread;
Jeff Brown4ccb8232014-01-16 22:16:42 -080093import com.android.server.DisplayThread;
94import com.android.server.LocalServices;
95import com.android.server.SystemService;
Dianne Hackborn8d044e82013-04-30 17:24:15 -070096import com.android.server.UiThread;
Peiyong Lin277eaff2019-01-16 16:18:22 -080097import com.android.server.display.ColorDisplayService.ColorDisplayServiceInternal;
Jorim Jaggi21c39a72017-10-20 15:47:51 +020098import com.android.server.wm.SurfaceAnimationThread;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +010099import com.android.server.wm.WindowManagerInternal;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700100
101import java.io.FileDescriptor;
102import java.io.PrintWriter;
103import java.util.ArrayList;
Jeff Browna506a6e2013-06-04 00:02:38 -0700104import java.util.Arrays;
Jeff Browne75926d2014-09-18 15:24:49 -0700105import java.util.List;
Jeff Brown7f3994e2012-12-04 14:04:28 -0800106import java.util.concurrent.CopyOnWriteArrayList;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700107
108/**
Jeff Brownbd6e1502012-08-28 03:27:37 -0700109 * Manages attached displays.
Jeff Brownfa25bf52012-07-23 19:26:30 -0700110 * <p>
Jeff Brownbd6e1502012-08-28 03:27:37 -0700111 * The {@link DisplayManagerService} manages the global lifecycle of displays,
112 * decides how to configure logical displays based on the physical display devices currently
113 * attached, sends notifications to the system and to applications when the state
114 * changes, and so on.
115 * </p><p>
116 * The display manager service relies on a collection of {@link DisplayAdapter} components,
117 * for discovering and configuring physical display devices attached to the system.
118 * There are separate display adapters for each manner that devices are attached:
119 * one display adapter for built-in local displays, one for simulated non-functional
120 * displays when the system is headless, one for simulated overlay displays used for
121 * development, one for wifi displays, etc.
122 * </p><p>
123 * Display adapters are only weakly coupled to the display manager service.
124 * Display adapters communicate changes in display device state to the display manager
Craig Mautner722285e2012-09-07 13:55:58 -0700125 * service asynchronously via a {@link DisplayAdapter.Listener} registered
Jeff Brownbd6e1502012-08-28 03:27:37 -0700126 * by the display manager service. This separation of concerns is important for
127 * two main reasons. First, it neatly encapsulates the responsibilities of these
128 * two classes: display adapters handle individual display devices whereas
129 * the display manager service handles the global state. Second, it eliminates
130 * the potential for deadlocks resulting from asynchronous display device discovery.
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700131 * </p>
132 *
133 * <h3>Synchronization</h3>
134 * <p>
135 * Because the display manager may be accessed by multiple threads, the synchronization
136 * story gets a little complicated. In particular, the window manager may call into
137 * the display manager while holding a surface transaction with the expectation that
138 * it can apply changes immediately. Unfortunately, that means we can't just do
139 * everything asynchronously (*grump*).
Jeff Brownbd6e1502012-08-28 03:27:37 -0700140 * </p><p>
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700141 * To make this work, all of the objects that belong to the display manager must
142 * use the same lock. We call this lock the synchronization root and it has a unique
143 * type {@link DisplayManagerService.SyncRoot}. Methods that require this lock are
144 * named with the "Locked" suffix.
145 * </p><p>
146 * Where things get tricky is that the display manager is not allowed to make
147 * any potentially reentrant calls, especially into the window manager. We generally
148 * avoid this by making all potentially reentrant out-calls asynchronous.
Jeff Brownfa25bf52012-07-23 19:26:30 -0700149 * </p>
150 */
Jeff Brown4ccb8232014-01-16 22:16:42 -0800151public final class DisplayManagerService extends SystemService {
Jeff Brownfa25bf52012-07-23 19:26:30 -0700152 private static final String TAG = "DisplayManagerService";
Jeff Brownbd6e1502012-08-28 03:27:37 -0700153 private static final boolean DEBUG = false;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700154
Jeff Brownbbd28a22012-09-20 16:47:15 -0700155 // When this system property is set to 0, WFD is forcibly disabled on boot.
156 // When this system property is set to 1, WFD is forcibly enabled on boot.
157 // Otherwise WFD is enabled according to the value of config_enableWifiDisplay.
158 private static final String FORCE_WIFI_DISPLAY_ENABLE = "persist.debug.wfd.enable";
159
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200160 private static final String PROP_DEFAULT_DISPLAY_TOP_INSET = "persist.sys.displayinset.top";
161
Jeff Brownbd6e1502012-08-28 03:27:37 -0700162 private static final long WAIT_FOR_DEFAULT_DISPLAY_TIMEOUT = 10000;
163
Santos Cordonc22c5632017-06-21 16:03:49 -0700164 private static final int MSG_REGISTER_DEFAULT_DISPLAY_ADAPTERS = 1;
Jeff Brownbd6e1502012-08-28 03:27:37 -0700165 private static final int MSG_REGISTER_ADDITIONAL_DISPLAY_ADAPTERS = 2;
166 private static final int MSG_DELIVER_DISPLAY_EVENT = 3;
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700167 private static final int MSG_REQUEST_TRAVERSAL = 4;
Jeff Brownd728bf52012-09-08 18:05:28 -0700168 private static final int MSG_UPDATE_VIEWPORT = 5;
Kenny Guy22bd0442017-10-26 00:15:54 +0100169 private static final int MSG_REGISTER_BRIGHTNESS_TRACKER = 6;
Michael Wrighteef0e132017-11-21 17:57:52 +0000170 private static final int MSG_LOAD_BRIGHTNESS_CONFIGURATION = 7;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700171
Jeff Brownb880d882014-02-10 19:47:07 -0800172 private final Context mContext;
Jeff Brownbd6e1502012-08-28 03:27:37 -0700173 private final DisplayManagerHandler mHandler;
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700174 private final Handler mUiHandler;
175 private final DisplayAdapterListener mDisplayAdapterListener;
Jeff Brown4ccb8232014-01-16 22:16:42 -0800176 private WindowManagerInternal mWindowManagerInternal;
177 private InputManagerInternal mInputManagerInternal;
Michael Wrightc39d47a2014-07-08 18:07:36 -0700178 private IMediaProjectionManager mProjectionService;
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700179
180 // The synchronization root for the display manager.
181 // This lock guards most of the display manager's state.
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800182 // NOTE: This is synchronized on while holding WindowManagerService.mWindowMap so never call
183 // into WindowManagerService methods that require mWindowMap while holding this unless you are
184 // very very sure that no deadlock can occur.
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700185 private final SyncRoot mSyncRoot = new SyncRoot();
186
187 // True if in safe mode.
188 // This option may disable certain display adapters.
189 public boolean mSafeMode;
190
191 // True if we are in a special boot mode where only core applications and
192 // services should be started. This option may disable certain display adapters.
193 public boolean mOnlyCore;
194
Jeff Brown27f1d672012-10-17 18:32:34 -0700195 // True if the display manager service should pretend there is only one display
196 // and only tell applications about the existence of the default logical display.
197 // The display manager can still mirror content to secondary displays but applications
198 // cannot present unique content on those displays.
199 // Used for demonstration purposes only.
200 private final boolean mSingleDisplayDemoMode;
201
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700202 // All callback records indexed by calling process id.
203 public final SparseArray<CallbackRecord> mCallbacks =
Jeff Brownbd6e1502012-08-28 03:27:37 -0700204 new SparseArray<CallbackRecord>();
Jeff Brownfa25bf52012-07-23 19:26:30 -0700205
Jeff Brownbd6e1502012-08-28 03:27:37 -0700206 // List of all currently registered display adapters.
207 private final ArrayList<DisplayAdapter> mDisplayAdapters = new ArrayList<DisplayAdapter>();
208
209 // List of all currently connected display devices.
210 private final ArrayList<DisplayDevice> mDisplayDevices = new ArrayList<DisplayDevice>();
211
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700212 // List of all logical displays indexed by logical display id.
213 private final SparseArray<LogicalDisplay> mLogicalDisplays =
214 new SparseArray<LogicalDisplay>();
Jeff Brownbd6e1502012-08-28 03:27:37 -0700215 private int mNextNonDefaultDisplayId = Display.DEFAULT_DISPLAY + 1;
216
Jeff Brown7f3994e2012-12-04 14:04:28 -0800217 // List of all display transaction listeners.
218 private final CopyOnWriteArrayList<DisplayTransactionListener> mDisplayTransactionListeners =
219 new CopyOnWriteArrayList<DisplayTransactionListener>();
220
Jeff Brownad9ef192014-04-08 17:26:30 -0700221 // Display power controller.
222 private DisplayPowerController mDisplayPowerController;
223
Jeff Brown037c33e2014-04-09 00:31:55 -0700224 // The overall display state, independent of changes that might influence one
225 // display or another in particular.
Jeff Brown5d6443b2015-04-10 20:15:01 -0700226 private int mGlobalDisplayState = Display.STATE_ON;
227
228 // The overall display brightness.
229 // For now, this only applies to the built-in display but we may split it up eventually.
230 private int mGlobalDisplayBrightness = PowerManager.BRIGHTNESS_DEFAULT;
Jeff Brown9e316a12012-10-08 19:17:06 -0700231
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700232 // Set to true when there are pending display changes that have yet to be applied
233 // to the surface flinger state.
234 private boolean mPendingTraversal;
Jeff Brownbd6e1502012-08-28 03:27:37 -0700235
Jeff Browne08ae382012-09-07 20:36:36 -0700236 // The Wifi display adapter, or null if not registered.
237 private WifiDisplayAdapter mWifiDisplayAdapter;
238
Jeff Brownce468a32013-11-21 16:42:03 -0800239 // The number of active wifi display scan requests.
240 private int mWifiDisplayScanRequestCount;
241
Jeff Browna506a6e2013-06-04 00:02:38 -0700242 // The virtual display adapter, or null if not registered.
243 private VirtualDisplayAdapter mVirtualDisplayAdapter;
244
Michael Wrighteef0e132017-11-21 17:57:52 +0000245 // The User ID of the current user
246 private @UserIdInt int mCurrentUserId;
247
Michael Wrighteedcbf12017-08-16 23:14:54 +0100248 // The stable device screen height and width. These are not tied to a specific display, even
249 // the default display, because they need to be stable over the course of the device's entire
250 // life, even if the default display changes (e.g. a new monitor is plugged into a PC-like
251 // device).
252 private Point mStableDisplaySize = new Point();
253
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200254 // The top inset of the default display.
255 // This gets persisted so that the boot animation knows how to transition from the display's
256 // full size to the size configured by the user. Right now we only persist and animate the top
257 // inset, but theoretically we could do it for all of them.
258 private int mDefaultDisplayTopInset;
259
Jeff Brownd728bf52012-09-08 18:05:28 -0700260 // Viewports of the default display and the display that should receive touch
261 // input from an external source. Used by the input system.
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +0100262 @GuardedBy("mSyncRoot")
263 private final ArrayList<DisplayViewport> mViewports = new ArrayList<>();
Jeff Brownd728bf52012-09-08 18:05:28 -0700264
Jeff Brown89d55462012-09-19 11:33:42 -0700265 // Persistent data store for all internal settings maintained by the display manager service.
266 private final PersistentDataStore mPersistentDataStore = new PersistentDataStore();
267
Jeff Brownbd6e1502012-08-28 03:27:37 -0700268 // Temporary callback list, used when sending display events to applications.
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700269 // May be used outside of the lock but only on the handler thread.
270 private final ArrayList<CallbackRecord> mTempCallbacks = new ArrayList<CallbackRecord>();
Jeff Brownbd6e1502012-08-28 03:27:37 -0700271
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700272 // Temporary display info, used for comparing display configurations.
273 private final DisplayInfo mTempDisplayInfo = new DisplayInfo();
274
Jeff Brownd728bf52012-09-08 18:05:28 -0700275 // Temporary viewports, used when sending new viewport information to the
276 // input system. May be used outside of the lock but only on the handler thread.
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +0100277 private final ArrayList<DisplayViewport> mTempViewports = new ArrayList<>();
Jeff Brownd728bf52012-09-08 18:05:28 -0700278
Damien Bargiacchi4364bbf2016-11-01 21:44:20 -0700279 // The default color mode for default displays. Overrides the usual
280 // Display.Display.COLOR_MODE_DEFAULT for displays with the
281 // DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY flag set.
282 private final int mDefaultDisplayDefaultColorMode;
283
Jeff Browne75926d2014-09-18 15:24:49 -0700284 // Temporary list of deferred work to perform when setting the display state.
285 // Only used by requestDisplayState. The field is self-synchronized and only
286 // intended for use inside of the requestGlobalDisplayStateInternal function.
287 private final ArrayList<Runnable> mTempDisplayStateWorkQueue = new ArrayList<Runnable>();
288
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800289 // Lists of UIDs that are present on the displays. Maps displayId -> array of UIDs.
290 private final SparseArray<IntArray> mDisplayAccessUIDs = new SparseArray<>();
291
Santos Cordonee8931e2017-04-05 10:31:15 -0700292 private final Injector mInjector;
293
Dan Gittik122df862018-03-28 16:59:22 +0100294 // The minimum brightness curve, which guarantess that any brightness curve that dips below it
295 // is rejected by the system.
296 private final Curve mMinimumBrightnessCurve;
297 private final Spline mMinimumBrightnessSpline;
Peiyong Lin277eaff2019-01-16 16:18:22 -0800298 private final ColorSpace mWideColorSpace;
Dan Gittik122df862018-03-28 16:59:22 +0100299
Jeff Brownb880d882014-02-10 19:47:07 -0800300 public DisplayManagerService(Context context) {
Santos Cordonee8931e2017-04-05 10:31:15 -0700301 this(context, new Injector());
302 }
303
304 @VisibleForTesting
305 DisplayManagerService(Context context, Injector injector) {
Jeff Brownb880d882014-02-10 19:47:07 -0800306 super(context);
Santos Cordonee8931e2017-04-05 10:31:15 -0700307 mInjector = injector;
Jeff Brownb880d882014-02-10 19:47:07 -0800308 mContext = context;
Jeff Brown4ccb8232014-01-16 22:16:42 -0800309 mHandler = new DisplayManagerHandler(DisplayThread.get().getLooper());
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700310 mUiHandler = UiThread.getHandler();
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700311 mDisplayAdapterListener = new DisplayAdapterListener();
Jeff Brown27f1d672012-10-17 18:32:34 -0700312 mSingleDisplayDemoMode = SystemProperties.getBoolean("persist.demo.singledisplay", false);
Dan Gittik122df862018-03-28 16:59:22 +0100313 Resources resources = mContext.getResources();
Damien Bargiacchi4364bbf2016-11-01 21:44:20 -0700314 mDefaultDisplayDefaultColorMode = mContext.getResources().getInteger(
Michael Wrighteef0e132017-11-21 17:57:52 +0000315 com.android.internal.R.integer.config_defaultDisplayDefaultColorMode);
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200316 mDefaultDisplayTopInset = SystemProperties.getInt(PROP_DEFAULT_DISPLAY_TOP_INSET, -1);
Dan Gittik122df862018-03-28 16:59:22 +0100317 float[] lux = getFloatArray(resources.obtainTypedArray(
318 com.android.internal.R.array.config_minimumBrightnessCurveLux));
319 float[] nits = getFloatArray(resources.obtainTypedArray(
320 com.android.internal.R.array.config_minimumBrightnessCurveNits));
321 mMinimumBrightnessCurve = new Curve(lux, nits);
322 mMinimumBrightnessSpline = Spline.createSpline(lux, nits);
Jeff Brown5d6443b2015-04-10 20:15:01 -0700323
324 PowerManager pm = (PowerManager) mContext.getSystemService(Context.POWER_SERVICE);
325 mGlobalDisplayBrightness = pm.getDefaultScreenBrightnessSetting();
Michael Wrighteef0e132017-11-21 17:57:52 +0000326 mCurrentUserId = UserHandle.USER_SYSTEM;
Peiyong Lin277eaff2019-01-16 16:18:22 -0800327 ColorSpace[] colorSpaces = SurfaceControl.getCompositionColorSpaces();
328 mWideColorSpace = colorSpaces[1];
Joel Fernandes2d314e12017-04-04 16:32:15 -0700329 }
330
331 public void setupSchedulerPolicies() {
Jorim Jaggied7993b2017-03-28 18:50:01 +0100332 // android.display and android.anim is critical to user experience and we should make sure
Michael Wrighteef0e132017-11-21 17:57:52 +0000333 // it is not in the default foregroup groups, add it to top-app to make sure it uses all
334 // the cores and scheduling settings for top-app when it runs.
Jorim Jaggied7993b2017-03-28 18:50:01 +0100335 Process.setThreadGroupAndCpuset(DisplayThread.get().getThreadId(),
336 Process.THREAD_GROUP_TOP_APP);
337 Process.setThreadGroupAndCpuset(AnimationThread.get().getThreadId(),
338 Process.THREAD_GROUP_TOP_APP);
Jorim Jaggi21c39a72017-10-20 15:47:51 +0200339 Process.setThreadGroupAndCpuset(SurfaceAnimationThread.get().getThreadId(),
340 Process.THREAD_GROUP_TOP_APP);
Craig Mautner4f67ba62012-08-02 11:23:00 -0700341 }
342
Jeff Brown4ccb8232014-01-16 22:16:42 -0800343 @Override
Jeff Brown4ccb8232014-01-16 22:16:42 -0800344 public void onStart() {
Michael Wright1c9977b2016-07-12 13:30:10 -0700345 // We need to pre-load the persistent data store so it's ready before the default display
346 // adapter is up so that we have it's configuration. We could load it lazily, but since
347 // 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 -0700348 // we've waited for the display to register itself with us.
Michael Wrighteedcbf12017-08-16 23:14:54 +0100349 synchronized(mSyncRoot) {
350 mPersistentDataStore.loadIfNeeded();
351 loadStableDisplayValuesLocked();
352 }
Santos Cordonc22c5632017-06-21 16:03:49 -0700353 mHandler.sendEmptyMessage(MSG_REGISTER_DEFAULT_DISPLAY_ADAPTERS);
Jeff Brown4ccb8232014-01-16 22:16:42 -0800354
355 publishBinderService(Context.DISPLAY_SERVICE, new BinderService(),
356 true /*allowIsolated*/);
357 publishLocalService(DisplayManagerInternal.class, new LocalService());
Justin Klaassen22eb1992016-07-11 20:52:23 -0700358 publishLocalService(DisplayTransformManager.class, new DisplayTransformManager());
Jeff Brown4ccb8232014-01-16 22:16:42 -0800359 }
360
361 @Override
362 public void onBootPhase(int phase) {
363 if (phase == PHASE_WAIT_FOR_DEFAULT_DISPLAY) {
364 synchronized (mSyncRoot) {
Santos Cordonc22c5632017-06-21 16:03:49 -0700365 long timeout = SystemClock.uptimeMillis()
366 + mInjector.getDefaultDisplayDelayTimeout();
367 while (mLogicalDisplays.get(Display.DEFAULT_DISPLAY) == null ||
368 mVirtualDisplayAdapter == null) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800369 long delay = timeout - SystemClock.uptimeMillis();
370 if (delay <= 0) {
371 throw new RuntimeException("Timeout waiting for default display "
Santos Cordonc22c5632017-06-21 16:03:49 -0700372 + "to be initialized. DefaultDisplay="
373 + mLogicalDisplays.get(Display.DEFAULT_DISPLAY)
374 + ", mVirtualDisplayAdapter=" + mVirtualDisplayAdapter);
Jeff Brown4ccb8232014-01-16 22:16:42 -0800375 }
376 if (DEBUG) {
377 Slog.d(TAG, "waitForDefaultDisplay: waiting, timeout=" + delay);
378 }
379 try {
380 mSyncRoot.wait(delay);
381 } catch (InterruptedException ex) {
382 }
Jeff Brownbd6e1502012-08-28 03:27:37 -0700383 }
384 }
385 }
Jeff Brownbd6e1502012-08-28 03:27:37 -0700386 }
387
Michael Wrighteef0e132017-11-21 17:57:52 +0000388 @Override
389 public void onSwitchUser(@UserIdInt int newUserId) {
390 final int userSerial = getUserManager().getUserSerialNumber(newUserId);
391 synchronized (mSyncRoot) {
392 if (mCurrentUserId != newUserId) {
393 mCurrentUserId = newUserId;
394 BrightnessConfiguration config =
395 mPersistentDataStore.getBrightnessConfiguration(userSerial);
396 mDisplayPowerController.setBrightnessConfiguration(config);
397 }
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +0000398 mDisplayPowerController.onSwitchUser(newUserId);
Michael Wrighteef0e132017-11-21 17:57:52 +0000399 }
400 }
401
Jeff Brown4ccb8232014-01-16 22:16:42 -0800402 // TODO: Use dependencies or a boot phase
403 public void windowManagerAndInputReady() {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700404 synchronized (mSyncRoot) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800405 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
406 mInputManagerInternal = LocalServices.getService(InputManagerInternal.class);
Craig Mautner65d11b32012-10-01 13:59:52 -0700407 scheduleTraversalLocked(false);
Jeff Brownd728bf52012-09-08 18:05:28 -0700408 }
409 }
410
411 /**
Jeff Brownbd6e1502012-08-28 03:27:37 -0700412 * Called when the system is ready to go.
413 */
414 public void systemReady(boolean safeMode, boolean onlyCore) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700415 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -0700416 mSafeMode = safeMode;
417 mOnlyCore = onlyCore;
418 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700419
Jeff Brownbd6e1502012-08-28 03:27:37 -0700420 mHandler.sendEmptyMessage(MSG_REGISTER_ADDITIONAL_DISPLAY_ADAPTERS);
Kenny Guy22bd0442017-10-26 00:15:54 +0100421 mHandler.sendEmptyMessage(MSG_REGISTER_BRIGHTNESS_TRACKER);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700422 }
423
Santos Cordonee8931e2017-04-05 10:31:15 -0700424 @VisibleForTesting
425 Handler getDisplayHandler() {
426 return mHandler;
427 }
428
Michael Wrighteedcbf12017-08-16 23:14:54 +0100429 private void loadStableDisplayValuesLocked() {
430 final Point size = mPersistentDataStore.getStableDisplaySize();
431 if (size.x > 0 && size.y > 0) {
432 // Just set these values directly so we don't write the display persistent data again
433 // unnecessarily
434 mStableDisplaySize.set(size.x, size.y);
435 } else {
436 final Resources res = mContext.getResources();
437 final int width = res.getInteger(
438 com.android.internal.R.integer.config_stableDeviceDisplayWidth);
439 final int height = res.getInteger(
440 com.android.internal.R.integer.config_stableDeviceDisplayHeight);
441 if (width > 0 && height > 0) {
442 setStableDisplaySizeLocked(width, height);
443 }
444 }
445 }
446
447 private Point getStableDisplaySizeInternal() {
448 Point r = new Point();
449 synchronized (mSyncRoot) {
450 if (mStableDisplaySize.x > 0 && mStableDisplaySize.y > 0) {
451 r.set(mStableDisplaySize.x, mStableDisplaySize.y);
452 }
453 }
454 return r;
455 }
456
Jeff Brown4ccb8232014-01-16 22:16:42 -0800457 private void registerDisplayTransactionListenerInternal(
458 DisplayTransactionListener listener) {
Jeff Brown7f3994e2012-12-04 14:04:28 -0800459 // List is self-synchronized copy-on-write.
460 mDisplayTransactionListeners.add(listener);
461 }
462
Jeff Brown4ccb8232014-01-16 22:16:42 -0800463 private void unregisterDisplayTransactionListenerInternal(
464 DisplayTransactionListener listener) {
Jeff Brown7f3994e2012-12-04 14:04:28 -0800465 // List is self-synchronized copy-on-write.
466 mDisplayTransactionListeners.remove(listener);
467 }
468
Jeff Brown4ccb8232014-01-16 22:16:42 -0800469 private void setDisplayInfoOverrideFromWindowManagerInternal(
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700470 int displayId, DisplayInfo info) {
471 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -0700472 LogicalDisplay display = mLogicalDisplays.get(displayId);
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700473 if (display != null) {
Jeff Brownef981a42013-08-07 14:13:37 -0700474 if (display.setDisplayInfoOverrideFromWindowManagerLocked(info)) {
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200475 handleLogicalDisplayChanged(displayId, display);
Craig Mautner65d11b32012-10-01 13:59:52 -0700476 scheduleTraversalLocked(false);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700477 }
Jeff Brownbd6e1502012-08-28 03:27:37 -0700478 }
479 }
480 }
481
Andrii Kuliancd097992017-03-23 18:31:59 -0700482 /**
483 * @see DisplayManagerInternal#getNonOverrideDisplayInfo(int, DisplayInfo)
484 */
485 private void getNonOverrideDisplayInfoInternal(int displayId, DisplayInfo outInfo) {
486 synchronized (mSyncRoot) {
487 final LogicalDisplay display = mLogicalDisplays.get(displayId);
488 if (display != null) {
489 display.getNonOverrideDisplayInfoLocked(outInfo);
490 }
491 }
492 }
493
Santos Cordonee8931e2017-04-05 10:31:15 -0700494 @VisibleForTesting
Robert Carrae606b42018-02-15 15:36:23 -0800495 void performTraversalInternal(SurfaceControl.Transaction t) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700496 synchronized (mSyncRoot) {
497 if (!mPendingTraversal) {
498 return;
Jeff Brownbd6e1502012-08-28 03:27:37 -0700499 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700500 mPendingTraversal = false;
501
Robert Carrae606b42018-02-15 15:36:23 -0800502 performTraversalLocked(t);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700503 }
Jeff Brown7f3994e2012-12-04 14:04:28 -0800504
505 // List is self-synchronized copy-on-write.
506 for (DisplayTransactionListener listener : mDisplayTransactionListeners) {
Vishnu Naire86bd982018-11-28 13:23:17 -0800507 listener.onDisplayTransaction(t);
Jeff Brown7f3994e2012-12-04 14:04:28 -0800508 }
Jeff Brownbd6e1502012-08-28 03:27:37 -0700509 }
510
Jeff Brown5d6443b2015-04-10 20:15:01 -0700511 private void requestGlobalDisplayStateInternal(int state, int brightness) {
512 if (state == Display.STATE_UNKNOWN) {
513 state = Display.STATE_ON;
514 }
515 if (state == Display.STATE_OFF) {
516 brightness = PowerManager.BRIGHTNESS_OFF;
517 } else if (brightness < 0) {
518 brightness = PowerManager.BRIGHTNESS_DEFAULT;
519 } else if (brightness > PowerManager.BRIGHTNESS_ON) {
520 brightness = PowerManager.BRIGHTNESS_ON;
521 }
522
Jeff Browne75926d2014-09-18 15:24:49 -0700523 synchronized (mTempDisplayStateWorkQueue) {
524 try {
525 // Update the display state within the lock.
Jeff Brown8e5d33e2015-06-10 13:05:50 -0700526 // Note that we do not need to schedule traversals here although it
527 // may happen as a side-effect of displays changing state.
Jeff Browne75926d2014-09-18 15:24:49 -0700528 synchronized (mSyncRoot) {
Jeff Brown5d6443b2015-04-10 20:15:01 -0700529 if (mGlobalDisplayState == state
530 && mGlobalDisplayBrightness == brightness) {
531 return; // no change
Jeff Browne75926d2014-09-18 15:24:49 -0700532 }
Jeff Brown5d6443b2015-04-10 20:15:01 -0700533
534 Trace.traceBegin(Trace.TRACE_TAG_POWER, "requestGlobalDisplayState("
535 + Display.stateToString(state)
536 + ", brightness=" + brightness + ")");
537 mGlobalDisplayState = state;
538 mGlobalDisplayBrightness = brightness;
Jeff Brown8e5d33e2015-06-10 13:05:50 -0700539 applyGlobalDisplayStateLocked(mTempDisplayStateWorkQueue);
Jeff Browne75926d2014-09-18 15:24:49 -0700540 }
541
542 // Setting the display power state can take hundreds of milliseconds
543 // to complete so we defer the most expensive part of the work until
544 // after we have exited the critical section to avoid blocking other
545 // threads for a long time.
546 for (int i = 0; i < mTempDisplayStateWorkQueue.size(); i++) {
547 mTempDisplayStateWorkQueue.get(i).run();
548 }
Jeff Brown5d6443b2015-04-10 20:15:01 -0700549 Trace.traceEnd(Trace.TRACE_TAG_POWER);
Jeff Browne75926d2014-09-18 15:24:49 -0700550 } finally {
551 mTempDisplayStateWorkQueue.clear();
Jeff Brown9e316a12012-10-08 19:17:06 -0700552 }
553 }
554 }
555
Jeff Brown4ccb8232014-01-16 22:16:42 -0800556 private DisplayInfo getDisplayInfoInternal(int displayId, int callingUid) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700557 synchronized (mSyncRoot) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800558 LogicalDisplay display = mLogicalDisplays.get(displayId);
559 if (display != null) {
560 DisplayInfo info = display.getDisplayInfoLocked();
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800561 if (info.hasAccess(callingUid)
562 || isUidPresentOnDisplayInternal(callingUid, displayId)) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800563 return info;
564 }
565 }
566 return null;
567 }
568 }
569
570 private int[] getDisplayIdsInternal(int callingUid) {
571 synchronized (mSyncRoot) {
572 final int count = mLogicalDisplays.size();
573 int[] displayIds = new int[count];
574 int n = 0;
575 for (int i = 0; i < count; i++) {
576 LogicalDisplay display = mLogicalDisplays.valueAt(i);
577 DisplayInfo info = display.getDisplayInfoLocked();
578 if (info.hasAccess(callingUid)) {
579 displayIds[n++] = mLogicalDisplays.keyAt(i);
580 }
581 }
582 if (n != count) {
583 displayIds = Arrays.copyOfRange(displayIds, 0, n);
584 }
585 return displayIds;
586 }
587 }
588
589 private void registerCallbackInternal(IDisplayManagerCallback callback, int callingPid) {
590 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -0700591 if (mCallbacks.get(callingPid) != null) {
592 throw new SecurityException("The calling process has already "
593 + "registered an IDisplayManagerCallback.");
Jeff Brown64a55af2012-08-26 02:47:39 -0700594 }
595
Jeff Brownbd6e1502012-08-28 03:27:37 -0700596 CallbackRecord record = new CallbackRecord(callingPid, callback);
597 try {
598 IBinder binder = callback.asBinder();
599 binder.linkToDeath(record, 0);
600 } catch (RemoteException ex) {
601 // give up
602 throw new RuntimeException(ex);
603 }
604
605 mCallbacks.put(callingPid, record);
606 }
607 }
608
Jeff Brownce468a32013-11-21 16:42:03 -0800609 private void onCallbackDied(CallbackRecord record) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700610 synchronized (mSyncRoot) {
Jeff Brownce468a32013-11-21 16:42:03 -0800611 mCallbacks.remove(record.mPid);
612 stopWifiDisplayScanLocked(record);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700613 }
614 }
615
Jeff Brown4ccb8232014-01-16 22:16:42 -0800616 private void startWifiDisplayScanInternal(int callingPid) {
617 synchronized (mSyncRoot) {
618 CallbackRecord record = mCallbacks.get(callingPid);
619 if (record == null) {
620 throw new IllegalStateException("The calling process has not "
621 + "registered an IDisplayManagerCallback.");
Jeff Browne08ae382012-09-07 20:36:36 -0700622 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800623 startWifiDisplayScanLocked(record);
Jeff Browne08ae382012-09-07 20:36:36 -0700624 }
625 }
626
Jeff Brownce468a32013-11-21 16:42:03 -0800627 private void startWifiDisplayScanLocked(CallbackRecord record) {
628 if (!record.mWifiDisplayScanRequested) {
629 record.mWifiDisplayScanRequested = true;
630 if (mWifiDisplayScanRequestCount++ == 0) {
631 if (mWifiDisplayAdapter != null) {
632 mWifiDisplayAdapter.requestStartScanLocked();
633 }
634 }
635 }
636 }
637
Jeff Brown4ccb8232014-01-16 22:16:42 -0800638 private void stopWifiDisplayScanInternal(int callingPid) {
639 synchronized (mSyncRoot) {
640 CallbackRecord record = mCallbacks.get(callingPid);
641 if (record == null) {
642 throw new IllegalStateException("The calling process has not "
643 + "registered an IDisplayManagerCallback.");
Jeff Brownce468a32013-11-21 16:42:03 -0800644 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800645 stopWifiDisplayScanLocked(record);
Jeff Brownce468a32013-11-21 16:42:03 -0800646 }
647 }
648
649 private void stopWifiDisplayScanLocked(CallbackRecord record) {
650 if (record.mWifiDisplayScanRequested) {
651 record.mWifiDisplayScanRequested = false;
652 if (--mWifiDisplayScanRequestCount == 0) {
653 if (mWifiDisplayAdapter != null) {
654 mWifiDisplayAdapter.requestStopScanLocked();
655 }
656 } else if (mWifiDisplayScanRequestCount < 0) {
Dianne Hackborn8d051722014-10-01 14:59:58 -0700657 Slog.wtf(TAG, "mWifiDisplayScanRequestCount became negative: "
Jeff Brownce468a32013-11-21 16:42:03 -0800658 + mWifiDisplayScanRequestCount);
659 mWifiDisplayScanRequestCount = 0;
660 }
661 }
662 }
663
Jeff Brown4ccb8232014-01-16 22:16:42 -0800664 private void connectWifiDisplayInternal(String address) {
665 synchronized (mSyncRoot) {
666 if (mWifiDisplayAdapter != null) {
667 mWifiDisplayAdapter.requestConnectLocked(address);
Jeff Browne08ae382012-09-07 20:36:36 -0700668 }
Jeff Browne08ae382012-09-07 20:36:36 -0700669 }
670 }
671
Jeff Brown4ccb8232014-01-16 22:16:42 -0800672 private void pauseWifiDisplayInternal() {
673 synchronized (mSyncRoot) {
674 if (mWifiDisplayAdapter != null) {
675 mWifiDisplayAdapter.requestPauseLocked();
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700676 }
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700677 }
678 }
679
Jeff Brown4ccb8232014-01-16 22:16:42 -0800680 private void resumeWifiDisplayInternal() {
681 synchronized (mSyncRoot) {
682 if (mWifiDisplayAdapter != null) {
683 mWifiDisplayAdapter.requestResumeLocked();
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700684 }
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700685 }
686 }
687
Jeff Brown4ccb8232014-01-16 22:16:42 -0800688 private void disconnectWifiDisplayInternal() {
689 synchronized (mSyncRoot) {
690 if (mWifiDisplayAdapter != null) {
691 mWifiDisplayAdapter.requestDisconnectLocked();
Jeff Browne08ae382012-09-07 20:36:36 -0700692 }
Jeff Browne08ae382012-09-07 20:36:36 -0700693 }
694 }
695
Jeff Brown4ccb8232014-01-16 22:16:42 -0800696 private void renameWifiDisplayInternal(String address, String alias) {
697 synchronized (mSyncRoot) {
698 if (mWifiDisplayAdapter != null) {
699 mWifiDisplayAdapter.requestRenameLocked(address, alias);
Jeff Brown89d55462012-09-19 11:33:42 -0700700 }
Jeff Brown89d55462012-09-19 11:33:42 -0700701 }
702 }
703
Jeff Brown4ccb8232014-01-16 22:16:42 -0800704 private void forgetWifiDisplayInternal(String address) {
705 synchronized (mSyncRoot) {
706 if (mWifiDisplayAdapter != null) {
707 mWifiDisplayAdapter.requestForgetLocked(address);
Jeff Brown89d55462012-09-19 11:33:42 -0700708 }
Jeff Brown89d55462012-09-19 11:33:42 -0700709 }
710 }
711
Jeff Brown4ccb8232014-01-16 22:16:42 -0800712 private WifiDisplayStatus getWifiDisplayStatusInternal() {
713 synchronized (mSyncRoot) {
714 if (mWifiDisplayAdapter != null) {
715 return mWifiDisplayAdapter.getWifiDisplayStatusLocked();
Jeff Browne08ae382012-09-07 20:36:36 -0700716 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800717 return new WifiDisplayStatus();
Jeff Browne08ae382012-09-07 20:36:36 -0700718 }
719 }
720
Michael Wright1c9977b2016-07-12 13:30:10 -0700721 private void requestColorModeInternal(int displayId, int colorMode) {
Michael Wright58e829f2015-09-15 00:13:26 +0100722 synchronized (mSyncRoot) {
723 LogicalDisplay display = mLogicalDisplays.get(displayId);
724 if (display != null &&
Michael Wright1c9977b2016-07-12 13:30:10 -0700725 display.getRequestedColorModeLocked() != colorMode) {
726 display.setRequestedColorModeLocked(colorMode);
Michael Wright58e829f2015-09-15 00:13:26 +0100727 scheduleTraversalLocked(false);
728 }
729 }
730 }
731
Michael Wright75ee9fc2014-09-01 19:55:22 -0700732 private int createVirtualDisplayInternal(IVirtualDisplayCallback callback,
Santos Cordonee8931e2017-04-05 10:31:15 -0700733 IMediaProjection projection, int callingUid, String packageName, String name, int width,
734 int height, int densityDpi, Surface surface, int flags, String uniqueId) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800735 synchronized (mSyncRoot) {
736 if (mVirtualDisplayAdapter == null) {
737 Slog.w(TAG, "Rejecting request to create private virtual display "
738 + "because the virtual display adapter is not available.");
739 return -1;
Jeff Brown7d00aff2013-08-02 19:03:49 -0700740 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800741
742 DisplayDevice device = mVirtualDisplayAdapter.createVirtualDisplayLocked(
Santos Cordonee8931e2017-04-05 10:31:15 -0700743 callback, projection, callingUid, packageName, name, width, height, densityDpi,
744 surface, flags, uniqueId);
Jeff Brown4ccb8232014-01-16 22:16:42 -0800745 if (device == null) {
746 return -1;
Jeff Brown7d00aff2013-08-02 19:03:49 -0700747 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700748
Jeff Brown4ccb8232014-01-16 22:16:42 -0800749 handleDisplayDeviceAddedLocked(device);
750 LogicalDisplay display = findLogicalDisplayForDeviceLocked(device);
751 if (display != null) {
752 return display.getDisplayIdLocked();
Jeff Browna506a6e2013-06-04 00:02:38 -0700753 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800754
755 // Something weird happened and the logical display was not created.
756 Slog.w(TAG, "Rejecting request to create virtual display "
757 + "because the logical display was not created.");
Michael Wright75ee9fc2014-09-01 19:55:22 -0700758 mVirtualDisplayAdapter.releaseVirtualDisplayLocked(callback.asBinder());
Jeff Brown4ccb8232014-01-16 22:16:42 -0800759 handleDisplayDeviceRemovedLocked(device);
Jeff Browna506a6e2013-06-04 00:02:38 -0700760 }
761 return -1;
762 }
763
Michael Wright01e840f2014-06-26 16:03:25 -0700764 private void resizeVirtualDisplayInternal(IBinder appToken,
765 int width, int height, int densityDpi) {
766 synchronized (mSyncRoot) {
767 if (mVirtualDisplayAdapter == null) {
768 return;
769 }
770
771 mVirtualDisplayAdapter.resizeVirtualDisplayLocked(appToken, width, height, densityDpi);
772 }
773 }
774
Jeff Brown92207df2014-04-16 13:16:07 -0700775 private void setVirtualDisplaySurfaceInternal(IBinder appToken, Surface surface) {
776 synchronized (mSyncRoot) {
777 if (mVirtualDisplayAdapter == null) {
778 return;
779 }
780
781 mVirtualDisplayAdapter.setVirtualDisplaySurfaceLocked(appToken, surface);
782 }
783 }
784
Jeff Brown4ccb8232014-01-16 22:16:42 -0800785 private void releaseVirtualDisplayInternal(IBinder appToken) {
786 synchronized (mSyncRoot) {
787 if (mVirtualDisplayAdapter == null) {
788 return;
Jeff Browna506a6e2013-06-04 00:02:38 -0700789 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700790
Jeff Brown4ccb8232014-01-16 22:16:42 -0800791 DisplayDevice device =
792 mVirtualDisplayAdapter.releaseVirtualDisplayLocked(appToken);
793 if (device != null) {
794 handleDisplayDeviceRemovedLocked(device);
Jeff Browna506a6e2013-06-04 00:02:38 -0700795 }
796 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700797 }
798
chaviwda4c6942018-11-07 15:52:56 -0800799 private void setVirtualDisplayStateInternal(IBinder appToken, boolean isOn) {
800 synchronized (mSyncRoot) {
801 if (mVirtualDisplayAdapter == null) {
802 return;
803 }
804
805 mVirtualDisplayAdapter.setVirtualDisplayStateLocked(appToken, isOn);
806 }
807 }
808
Santos Cordonc22c5632017-06-21 16:03:49 -0700809 private void registerDefaultDisplayAdapters() {
810 // Register default display adapters.
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700811 synchronized (mSyncRoot) {
Santos Cordonc22c5632017-06-21 16:03:49 -0700812 // main display adapter
Mike Lockwoode63f6f72013-11-15 11:01:47 -0800813 registerDisplayAdapterLocked(new LocalDisplayAdapter(
814 mSyncRoot, mContext, mHandler, mDisplayAdapterListener));
Santos Cordonc22c5632017-06-21 16:03:49 -0700815
816 // Standalone VR devices rely on a virtual display as their primary display for
817 // 2D UI. We register virtual display adapter along side the main display adapter
818 // here so that it is ready by the time the system sends the home Intent for
819 // early apps like SetupWizard/Launcher. In particular, SUW is displayed using
820 // the virtual display inside VR before any VR-specific apps even run.
821 mVirtualDisplayAdapter = mInjector.getVirtualDisplayAdapter(mSyncRoot, mContext,
822 mHandler, mDisplayAdapterListener);
823 if (mVirtualDisplayAdapter != null) {
824 registerDisplayAdapterLocked(mVirtualDisplayAdapter);
825 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700826 }
827 }
828
829 private void registerAdditionalDisplayAdapters() {
830 synchronized (mSyncRoot) {
831 if (shouldRegisterNonEssentialDisplayAdaptersLocked()) {
Jeff Brown89d55462012-09-19 11:33:42 -0700832 registerOverlayDisplayAdapterLocked();
833 registerWifiDisplayAdapterLocked();
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700834 }
835 }
836 }
837
Jeff Brown89d55462012-09-19 11:33:42 -0700838 private void registerOverlayDisplayAdapterLocked() {
839 registerDisplayAdapterLocked(new OverlayDisplayAdapter(
840 mSyncRoot, mContext, mHandler, mDisplayAdapterListener, mUiHandler));
841 }
842
843 private void registerWifiDisplayAdapterLocked() {
844 if (mContext.getResources().getBoolean(
Jeff Brownbbd28a22012-09-20 16:47:15 -0700845 com.android.internal.R.bool.config_enableWifiDisplay)
846 || SystemProperties.getInt(FORCE_WIFI_DISPLAY_ENABLE, -1) == 1) {
Jeff Brown89d55462012-09-19 11:33:42 -0700847 mWifiDisplayAdapter = new WifiDisplayAdapter(
848 mSyncRoot, mContext, mHandler, mDisplayAdapterListener,
849 mPersistentDataStore);
850 registerDisplayAdapterLocked(mWifiDisplayAdapter);
851 }
852 }
853
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700854 private boolean shouldRegisterNonEssentialDisplayAdaptersLocked() {
855 // In safe mode, we disable non-essential display adapters to give the user
856 // an opportunity to fix broken settings or other problems that might affect
857 // system stability.
858 // In only-core mode, we disable non-essential display adapters to minimize
859 // the number of dependencies that are started while in this mode and to
860 // prevent problems that might occur due to the device being encrypted.
861 return !mSafeMode && !mOnlyCore;
862 }
863
864 private void registerDisplayAdapterLocked(DisplayAdapter adapter) {
865 mDisplayAdapters.add(adapter);
866 adapter.registerLocked();
867 }
868
Jeff Brownbd6e1502012-08-28 03:27:37 -0700869 private void handleDisplayDeviceAdded(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700870 synchronized (mSyncRoot) {
Jeff Browna506a6e2013-06-04 00:02:38 -0700871 handleDisplayDeviceAddedLocked(device);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700872 }
873 }
874
Jeff Browna506a6e2013-06-04 00:02:38 -0700875 private void handleDisplayDeviceAddedLocked(DisplayDevice device) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700876 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
Jeff Browna506a6e2013-06-04 00:02:38 -0700877 if (mDisplayDevices.contains(device)) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700878 Slog.w(TAG, "Attempted to add already added display device: " + info);
Jeff Browna506a6e2013-06-04 00:02:38 -0700879 return;
880 }
881
Jeff Brown10acf6d2015-04-14 14:20:47 -0700882 Slog.i(TAG, "Display device added: " + info);
883 device.mDebugLastLoggedDeviceInfo = info;
Jeff Browna506a6e2013-06-04 00:02:38 -0700884
885 mDisplayDevices.add(device);
Michael Wright1c9977b2016-07-12 13:30:10 -0700886 LogicalDisplay display = addLogicalDisplayLocked(device);
Jeff Brown0033a862014-10-08 12:06:39 -0700887 Runnable work = updateDisplayStateLocked(device);
888 if (work != null) {
889 work.run();
890 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700891 scheduleTraversalLocked(false);
892 }
893
Jeff Brownbd6e1502012-08-28 03:27:37 -0700894 private void handleDisplayDeviceChanged(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700895 synchronized (mSyncRoot) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700896 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
Jeff Brownbd6e1502012-08-28 03:27:37 -0700897 if (!mDisplayDevices.contains(device)) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700898 Slog.w(TAG, "Attempted to change non-existent display device: " + info);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700899 return;
900 }
901
Jeff Brown10acf6d2015-04-14 14:20:47 -0700902 int diff = device.mDebugLastLoggedDeviceInfo.diff(info);
903 if (diff == DisplayDeviceInfo.DIFF_STATE) {
904 Slog.i(TAG, "Display device changed state: \"" + info.name
905 + "\", " + Display.stateToString(info.state));
906 } else if (diff != 0) {
907 Slog.i(TAG, "Display device changed: " + info);
908 }
Michael Wright1c9977b2016-07-12 13:30:10 -0700909 if ((diff & DisplayDeviceInfo.DIFF_COLOR_MODE) != 0) {
910 try {
911 mPersistentDataStore.setColorMode(device, info.colorMode);
912 } finally {
913 mPersistentDataStore.saveIfNeeded();
914 }
915 }
Jeff Brown10acf6d2015-04-14 14:20:47 -0700916 device.mDebugLastLoggedDeviceInfo = info;
Jeff Browne87bf032012-09-20 18:30:13 -0700917
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700918 device.applyPendingDisplayDeviceInfoChangesLocked();
919 if (updateLogicalDisplaysLocked()) {
Craig Mautner65d11b32012-10-01 13:59:52 -0700920 scheduleTraversalLocked(false);
Jeff Brown64a55af2012-08-26 02:47:39 -0700921 }
922 }
923 }
924
Jeff Brownbd6e1502012-08-28 03:27:37 -0700925 private void handleDisplayDeviceRemoved(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700926 synchronized (mSyncRoot) {
Jeff Browna506a6e2013-06-04 00:02:38 -0700927 handleDisplayDeviceRemovedLocked(device);
928 }
929 }
Jeff Brown8e5d33e2015-06-10 13:05:50 -0700930
Jeff Browna506a6e2013-06-04 00:02:38 -0700931 private void handleDisplayDeviceRemovedLocked(DisplayDevice device) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700932 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
Jeff Browna506a6e2013-06-04 00:02:38 -0700933 if (!mDisplayDevices.remove(device)) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700934 Slog.w(TAG, "Attempted to remove non-existent display device: " + info);
Jeff Browna506a6e2013-06-04 00:02:38 -0700935 return;
936 }
937
Jeff Brown10acf6d2015-04-14 14:20:47 -0700938 Slog.i(TAG, "Display device removed: " + info);
939 device.mDebugLastLoggedDeviceInfo = info;
Jeff Browna506a6e2013-06-04 00:02:38 -0700940
Jeff Browna506a6e2013-06-04 00:02:38 -0700941 updateLogicalDisplaysLocked();
942 scheduleTraversalLocked(false);
943 }
944
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200945 private void handleLogicalDisplayChanged(int displayId, @NonNull LogicalDisplay display) {
946 if (displayId == Display.DEFAULT_DISPLAY) {
947 recordTopInsetLocked(display);
948 }
949 sendDisplayEventLocked(displayId, DisplayManagerGlobal.EVENT_DISPLAY_CHANGED);
950 }
951
Jeff Brown8e5d33e2015-06-10 13:05:50 -0700952 private void applyGlobalDisplayStateLocked(List<Runnable> workQueue) {
Jeff Browna506a6e2013-06-04 00:02:38 -0700953 final int count = mDisplayDevices.size();
954 for (int i = 0; i < count; i++) {
955 DisplayDevice device = mDisplayDevices.get(i);
Jeff Browne75926d2014-09-18 15:24:49 -0700956 Runnable runnable = updateDisplayStateLocked(device);
957 if (runnable != null) {
958 workQueue.add(runnable);
959 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700960 }
961 }
962
Jeff Browne75926d2014-09-18 15:24:49 -0700963 private Runnable updateDisplayStateLocked(DisplayDevice device) {
Jeff Browna506a6e2013-06-04 00:02:38 -0700964 // Blank or unblank the display immediately to match the state requested
Jeff Brown037c33e2014-04-09 00:31:55 -0700965 // by the display power controller (if known).
Jeff Browna506a6e2013-06-04 00:02:38 -0700966 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
967 if ((info.flags & DisplayDeviceInfo.FLAG_NEVER_BLANK) == 0) {
Jeff Brown5d6443b2015-04-10 20:15:01 -0700968 return device.requestDisplayStateLocked(mGlobalDisplayState, mGlobalDisplayBrightness);
Craig Mautner4f67ba62012-08-02 11:23:00 -0700969 }
Jeff Browne75926d2014-09-18 15:24:49 -0700970 return null;
Craig Mautner4f67ba62012-08-02 11:23:00 -0700971 }
972
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700973 // Adds a new logical display based on the given display device.
974 // Sends notifications if needed.
Michael Wright1c9977b2016-07-12 13:30:10 -0700975 private LogicalDisplay addLogicalDisplayLocked(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700976 DisplayDeviceInfo deviceInfo = device.getDisplayDeviceInfoLocked();
977 boolean isDefault = (deviceInfo.flags
978 & DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY) != 0;
979 if (isDefault && mLogicalDisplays.get(Display.DEFAULT_DISPLAY) != null) {
980 Slog.w(TAG, "Ignoring attempt to add a second default display: " + deviceInfo);
981 isDefault = false;
982 }
983
Jeff Brown27f1d672012-10-17 18:32:34 -0700984 if (!isDefault && mSingleDisplayDemoMode) {
985 Slog.i(TAG, "Not creating a logical display for a secondary display "
986 + " because single display demo mode is enabled: " + deviceInfo);
Michael Wright1c9977b2016-07-12 13:30:10 -0700987 return null;
Jeff Brown27f1d672012-10-17 18:32:34 -0700988 }
989
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700990 final int displayId = assignDisplayIdLocked(isDefault);
991 final int layerStack = assignLayerStackLocked(displayId);
992
Jeff Brownd728bf52012-09-08 18:05:28 -0700993 LogicalDisplay display = new LogicalDisplay(displayId, layerStack, device);
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700994 display.updateLocked(mDisplayDevices);
995 if (!display.isValidLocked()) {
996 // This should never happen currently.
997 Slog.w(TAG, "Ignoring display device because the logical display "
998 + "created from it was not considered valid: " + deviceInfo);
Michael Wright1c9977b2016-07-12 13:30:10 -0700999 return null;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001000 }
1001
Michael Wrighteedcbf12017-08-16 23:14:54 +01001002 configureColorModeLocked(display, device);
1003 if (isDefault) {
1004 recordStableDisplayStatsIfNeededLocked(display);
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001005 recordTopInsetLocked(display);
Michael Wrighteedcbf12017-08-16 23:14:54 +01001006 }
1007
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001008 mLogicalDisplays.put(displayId, display);
1009
1010 // Wake up waitForDefaultDisplay.
1011 if (isDefault) {
1012 mSyncRoot.notifyAll();
1013 }
1014
1015 sendDisplayEventLocked(displayId, DisplayManagerGlobal.EVENT_DISPLAY_ADDED);
Michael Wright1c9977b2016-07-12 13:30:10 -07001016 return display;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001017 }
1018
1019 private int assignDisplayIdLocked(boolean isDefault) {
1020 return isDefault ? Display.DEFAULT_DISPLAY : mNextNonDefaultDisplayId++;
1021 }
1022
1023 private int assignLayerStackLocked(int displayId) {
1024 // Currently layer stacks and display ids are the same.
1025 // This need not be the case.
1026 return displayId;
1027 }
1028
Michael Wrighteedcbf12017-08-16 23:14:54 +01001029 private void configureColorModeLocked(LogicalDisplay display, DisplayDevice device) {
1030 if (display.getPrimaryDisplayDeviceLocked() == device) {
1031 int colorMode = mPersistentDataStore.getColorMode(device);
1032 if (colorMode == Display.COLOR_MODE_INVALID) {
1033 if ((device.getDisplayDeviceInfoLocked().flags
1034 & DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY) != 0) {
1035 colorMode = mDefaultDisplayDefaultColorMode;
1036 } else {
1037 colorMode = Display.COLOR_MODE_DEFAULT;
1038 }
1039 }
1040 display.setRequestedColorModeLocked(colorMode);
1041 }
1042 }
1043
1044 // If we've never recorded stable device stats for this device before and they aren't
1045 // explicitly configured, go ahead and record the stable device stats now based on the status
1046 // of the default display at first boot.
1047 private void recordStableDisplayStatsIfNeededLocked(LogicalDisplay d) {
1048 if (mStableDisplaySize.x <= 0 && mStableDisplaySize.y <= 0) {
1049 DisplayInfo info = d.getDisplayInfoLocked();
1050 setStableDisplaySizeLocked(info.getNaturalWidth(), info.getNaturalHeight());
1051 }
1052 }
1053
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001054 private void recordTopInsetLocked(@Nullable LogicalDisplay d) {
MÃ¥rten Kongstad250cb2b2018-11-02 11:01:44 +01001055 if (d == null) {
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001056 return;
1057 }
1058 int topInset = d.getInsets().top;
1059 if (topInset == mDefaultDisplayTopInset) {
1060 return;
1061 }
1062 mDefaultDisplayTopInset = topInset;
1063 SystemProperties.set(PROP_DEFAULT_DISPLAY_TOP_INSET, Integer.toString(topInset));
1064 }
1065
Michael Wrighteedcbf12017-08-16 23:14:54 +01001066 private void setStableDisplaySizeLocked(int width, int height) {
1067 mStableDisplaySize = new Point(width, height);
1068 try {
1069 mPersistentDataStore.setStableDisplaySize(mStableDisplaySize);
1070 } finally {
1071 mPersistentDataStore.saveIfNeeded();
1072 }
1073 }
1074
Dan Gittik122df862018-03-28 16:59:22 +01001075 @VisibleForTesting
1076 Curve getMinimumBrightnessCurveInternal() {
1077 return mMinimumBrightnessCurve;
1078 }
1079
Peiyong Lin277eaff2019-01-16 16:18:22 -08001080 int getPreferredWideGamutColorSpaceIdInternal() {
1081 return mWideColorSpace.getId();
1082 }
1083
Michael Wrighteef0e132017-11-21 17:57:52 +00001084 private void setBrightnessConfigurationForUserInternal(
Dan Gittik7a32fba2018-03-28 12:19:38 +01001085 @Nullable BrightnessConfiguration c, @UserIdInt int userId,
Kenny Guy05ce8092018-01-17 13:44:20 +00001086 @Nullable String packageName) {
Dan Gittik122df862018-03-28 16:59:22 +01001087 validateBrightnessConfiguration(c);
Michael Wrighteef0e132017-11-21 17:57:52 +00001088 final int userSerial = getUserManager().getUserSerialNumber(userId);
1089 synchronized (mSyncRoot) {
1090 try {
Kenny Guy05ce8092018-01-17 13:44:20 +00001091 mPersistentDataStore.setBrightnessConfigurationForUser(c, userSerial,
1092 packageName);
Michael Wrighteef0e132017-11-21 17:57:52 +00001093 } finally {
1094 mPersistentDataStore.saveIfNeeded();
1095 }
1096 if (userId == mCurrentUserId) {
1097 mDisplayPowerController.setBrightnessConfiguration(c);
1098 }
1099 }
1100 }
1101
Dan Gittik122df862018-03-28 16:59:22 +01001102 @VisibleForTesting
1103 void validateBrightnessConfiguration(BrightnessConfiguration config) {
1104 if (config == null) {
1105 return;
1106 }
1107 if (isBrightnessConfigurationTooDark(config)) {
1108 throw new IllegalArgumentException("brightness curve is too dark");
1109 }
1110 }
1111
1112 private boolean isBrightnessConfigurationTooDark(BrightnessConfiguration config) {
1113 Pair<float[], float[]> curve = config.getCurve();
1114 float[] lux = curve.first;
1115 float[] nits = curve.second;
1116 for (int i = 0; i < lux.length; i++) {
1117 if (nits[i] < mMinimumBrightnessSpline.interpolate(lux[i])) {
1118 return true;
1119 }
1120 }
1121 return false;
1122 }
1123
Michael Wrighteef0e132017-11-21 17:57:52 +00001124 private void loadBrightnessConfiguration() {
1125 synchronized (mSyncRoot) {
1126 final int userSerial = getUserManager().getUserSerialNumber(mCurrentUserId);
1127 BrightnessConfiguration config =
1128 mPersistentDataStore.getBrightnessConfiguration(userSerial);
1129 mDisplayPowerController.setBrightnessConfiguration(config);
1130 }
1131 }
1132
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001133 // Updates all existing logical displays given the current set of display devices.
1134 // Removes invalid logical displays.
1135 // Sends notifications if needed.
1136 private boolean updateLogicalDisplaysLocked() {
1137 boolean changed = false;
1138 for (int i = mLogicalDisplays.size(); i-- > 0; ) {
1139 final int displayId = mLogicalDisplays.keyAt(i);
1140 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1141
1142 mTempDisplayInfo.copyFrom(display.getDisplayInfoLocked());
1143 display.updateLocked(mDisplayDevices);
1144 if (!display.isValidLocked()) {
1145 mLogicalDisplays.removeAt(i);
1146 sendDisplayEventLocked(displayId, DisplayManagerGlobal.EVENT_DISPLAY_REMOVED);
1147 changed = true;
1148 } else if (!mTempDisplayInfo.equals(display.getDisplayInfoLocked())) {
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001149 handleLogicalDisplayChanged(displayId, display);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001150 changed = true;
1151 }
1152 }
1153 return changed;
1154 }
1155
Robert Carrae606b42018-02-15 15:36:23 -08001156 private void performTraversalLocked(SurfaceControl.Transaction t) {
Jeff Brownd728bf52012-09-08 18:05:28 -07001157 // Clear all viewports before configuring displays so that we can keep
1158 // track of which ones we have configured.
1159 clearViewportsLocked();
1160
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001161 // Configure each display device.
1162 final int count = mDisplayDevices.size();
1163 for (int i = 0; i < count; i++) {
1164 DisplayDevice device = mDisplayDevices.get(i);
Robert Carrae606b42018-02-15 15:36:23 -08001165 configureDisplayLocked(t, device);
1166 device.performTraversalLocked(t);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001167 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001168
1169 // Tell the input system about these new viewports.
Jeff Brown4ccb8232014-01-16 22:16:42 -08001170 if (mInputManagerInternal != null) {
Jeff Brownd728bf52012-09-08 18:05:28 -07001171 mHandler.sendEmptyMessage(MSG_UPDATE_VIEWPORT);
1172 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001173 }
1174
Michael Wright3f145a22014-07-22 19:46:03 -07001175 private void setDisplayPropertiesInternal(int displayId, boolean hasContent,
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001176 float requestedRefreshRate, int requestedModeId, boolean inTraversal) {
Craig Mautner722285e2012-09-07 13:55:58 -07001177 synchronized (mSyncRoot) {
1178 LogicalDisplay display = mLogicalDisplays.get(displayId);
Michael Wright3f145a22014-07-22 19:46:03 -07001179 if (display == null) {
1180 return;
1181 }
1182 if (display.hasContentLocked() != hasContent) {
Jeff Brown33041bd2013-08-02 21:11:14 -07001183 if (DEBUG) {
1184 Slog.d(TAG, "Display " + displayId + " hasContent flag changed: "
1185 + "hasContent=" + hasContent + ", inTraversal=" + inTraversal);
1186 }
1187
Craig Mautner722285e2012-09-07 13:55:58 -07001188 display.setHasContentLocked(hasContent);
Craig Mautner65d11b32012-10-01 13:59:52 -07001189 scheduleTraversalLocked(inTraversal);
Craig Mautner722285e2012-09-07 13:55:58 -07001190 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001191 if (requestedModeId == 0 && requestedRefreshRate != 0) {
1192 // Scan supported modes returned by display.getInfo() to find a mode with the same
1193 // size as the default display mode but with the specified refresh rate instead.
1194 requestedModeId = display.getDisplayInfoLocked().findDefaultModeByRefreshRate(
1195 requestedRefreshRate);
1196 }
1197 if (display.getRequestedModeIdLocked() != requestedModeId) {
Michael Wright3f145a22014-07-22 19:46:03 -07001198 if (DEBUG) {
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001199 Slog.d(TAG, "Display " + displayId + " switching to mode " + requestedModeId);
Michael Wright3f145a22014-07-22 19:46:03 -07001200 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001201 display.setRequestedModeIdLocked(requestedModeId);
Michael Wright3f145a22014-07-22 19:46:03 -07001202 scheduleTraversalLocked(inTraversal);
1203 }
Craig Mautner722285e2012-09-07 13:55:58 -07001204 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001205 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001206
Filip Gruszczynskid2e86402015-02-19 13:05:03 -08001207 private void setDisplayOffsetsInternal(int displayId, int x, int y) {
1208 synchronized (mSyncRoot) {
1209 LogicalDisplay display = mLogicalDisplays.get(displayId);
1210 if (display == null) {
1211 return;
1212 }
1213 if (display.getDisplayOffsetXLocked() != x
1214 || display.getDisplayOffsetYLocked() != y) {
1215 if (DEBUG) {
1216 Slog.d(TAG, "Display " + displayId + " burn-in offset set to ("
1217 + x + ", " + y + ")");
1218 }
1219 display.setDisplayOffsetsLocked(x, y);
1220 scheduleTraversalLocked(false);
1221 }
1222 }
1223 }
1224
Andrii Kulianfb1bf692017-01-17 11:17:34 -08001225 // Updates the lists of UIDs that are present on displays.
1226 private void setDisplayAccessUIDsInternal(SparseArray<IntArray> newDisplayAccessUIDs) {
1227 synchronized (mSyncRoot) {
1228 mDisplayAccessUIDs.clear();
1229 for (int i = newDisplayAccessUIDs.size() - 1; i >= 0; i--) {
1230 mDisplayAccessUIDs.append(newDisplayAccessUIDs.keyAt(i),
1231 newDisplayAccessUIDs.valueAt(i));
1232 }
1233 }
1234 }
1235
1236 // Checks if provided UID's content is present on the display and UID has access to it.
1237 private boolean isUidPresentOnDisplayInternal(int uid, int displayId) {
1238 synchronized (mSyncRoot) {
1239 final IntArray displayUIDs = mDisplayAccessUIDs.get(displayId);
1240 return displayUIDs != null && displayUIDs.indexOf(uid) != -1;
1241 }
1242 }
1243
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001244 @VisibleForTesting
1245 DisplayedContentSamplingAttributes getDisplayedContentSamplingAttributesInternal(
1246 int displayId) {
1247 IBinder displayToken = SurfaceControl.getBuiltInDisplay(displayId);
1248 return SurfaceControl.getDisplayedContentSamplingAttributes(displayToken);
1249 }
1250
1251 @VisibleForTesting
1252 boolean setDisplayedContentSamplingEnabledInternal(
1253 int displayId, boolean enable, int componentMask, int maxFrames) {
1254 IBinder displayToken = SurfaceControl.getBuiltInDisplay(displayId);
1255 return SurfaceControl.setDisplayedContentSamplingEnabled(
1256 displayToken, enable, componentMask, maxFrames);
1257 }
1258
1259 @VisibleForTesting
1260 DisplayedContentSample getDisplayedContentSampleInternal(int displayId,
1261 long maxFrames, long timestamp) {
1262 IBinder displayToken = SurfaceControl.getBuiltInDisplay(displayId);
1263 return SurfaceControl.getDisplayedContentSample(
1264 displayToken, maxFrames, timestamp);
1265 }
1266
Jeff Brownd728bf52012-09-08 18:05:28 -07001267 private void clearViewportsLocked() {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001268 mViewports.clear();
Craig Mautner722285e2012-09-07 13:55:58 -07001269 }
1270
Robert Carrae606b42018-02-15 15:36:23 -08001271 private void configureDisplayLocked(SurfaceControl.Transaction t, DisplayDevice device) {
Jeff Brownd14c8c92014-01-07 18:13:09 -08001272 final DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
1273 final boolean ownContent = (info.flags & DisplayDeviceInfo.FLAG_OWN_CONTENT_ONLY) != 0;
Jeff Browna506a6e2013-06-04 00:02:38 -07001274
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001275 // Find the logical display that the display device is showing.
Jeff Brownd14c8c92014-01-07 18:13:09 -08001276 // Certain displays only ever show their own content.
Craig Mautner722285e2012-09-07 13:55:58 -07001277 LogicalDisplay display = findLogicalDisplayForDeviceLocked(device);
Jeff Brownd14c8c92014-01-07 18:13:09 -08001278 if (!ownContent) {
Jeff Browna506a6e2013-06-04 00:02:38 -07001279 if (display != null && !display.hasContentLocked()) {
1280 // If the display does not have any content of its own, then
1281 // automatically mirror the default logical display contents.
1282 display = null;
1283 }
1284 if (display == null) {
1285 display = mLogicalDisplays.get(Display.DEFAULT_DISPLAY);
1286 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001287 }
1288
1289 // Apply the logical display configuration to the display device.
1290 if (display == null) {
1291 // TODO: no logical display for the device, blank it
Jeff Brownd728bf52012-09-08 18:05:28 -07001292 Slog.w(TAG, "Missing logical display to use for physical display device: "
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001293 + device.getDisplayDeviceInfoLocked());
Jeff Brownd728bf52012-09-08 18:05:28 -07001294 return;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001295 }
Robert Carrae606b42018-02-15 15:36:23 -08001296 display.configureDisplayLocked(t, device, info.state == Display.STATE_OFF);
Arthur Hung41e81e72018-10-31 18:04:56 +08001297 final int viewportType;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001298 // Update the corresponding viewport.
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001299 if ((info.flags & DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY) != 0) {
Arthur Hung41e81e72018-10-31 18:04:56 +08001300 viewportType = VIEWPORT_INTERNAL;
1301 } else if (info.touch == DisplayDeviceInfo.TOUCH_EXTERNAL) {
1302 viewportType = VIEWPORT_EXTERNAL;
1303 } else if (info.touch == DisplayDeviceInfo.TOUCH_VIRTUAL
1304 && !TextUtils.isEmpty(info.uniqueId)) {
1305 viewportType = VIEWPORT_VIRTUAL;
1306 } else {
1307 Slog.wtf(TAG, "Unable to populate viewport for display device: " + info);
1308 return;
Jeff Brownd728bf52012-09-08 18:05:28 -07001309 }
Santos Cordonee8931e2017-04-05 10:31:15 -07001310
Arthur Hung41e81e72018-10-31 18:04:56 +08001311 populateViewportLocked(viewportType, display.getDisplayIdLocked(), device, info.uniqueId);
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001312 }
1313
1314 /**
1315 * Get internal or external viewport. Create it if does not currently exist.
1316 * @param viewportType - either INTERNAL or EXTERNAL
1317 * @return the viewport with the requested type
1318 */
Arthur Hung41e81e72018-10-31 18:04:56 +08001319 private DisplayViewport getViewportLocked(int viewportType, String uniqueId) {
1320 if (viewportType != VIEWPORT_INTERNAL && viewportType != VIEWPORT_EXTERNAL
1321 && viewportType != VIEWPORT_VIRTUAL) {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001322 Slog.wtf(TAG, "Cannot call getViewportByTypeLocked for type "
1323 + DisplayViewport.typeToString(viewportType));
1324 return null;
1325 }
Arthur Hung41e81e72018-10-31 18:04:56 +08001326
1327 // Only allow a single INTERNAL or EXTERNAL viewport by forcing their uniqueIds
1328 // to be identical (in particular, empty).
1329 // TODO (b/116824030) allow multiple EXTERNAL viewports and remove this function.
1330 if (viewportType != VIEWPORT_VIRTUAL) {
1331 uniqueId = "";
1332 }
1333
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001334 DisplayViewport viewport;
1335 final int count = mViewports.size();
1336 for (int i = 0; i < count; i++) {
1337 viewport = mViewports.get(i);
Arthur Hung41e81e72018-10-31 18:04:56 +08001338 if (viewport.type == viewportType && uniqueId.equals(viewport.uniqueId)) {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001339 return viewport;
1340 }
1341 }
1342
Arthur Hung41e81e72018-10-31 18:04:56 +08001343 // Creates the viewport if none exists.
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001344 viewport = new DisplayViewport();
1345 viewport.type = viewportType;
Arthur Hung41e81e72018-10-31 18:04:56 +08001346 viewport.uniqueId = uniqueId;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001347 mViewports.add(viewport);
1348 return viewport;
1349 }
1350
Arthur Hung41e81e72018-10-31 18:04:56 +08001351 private void populateViewportLocked(int viewportType,
1352 int displayId, DisplayDevice device, String uniqueId) {
1353 final DisplayViewport viewport = getViewportLocked(viewportType, uniqueId);
Jeff Brownd728bf52012-09-08 18:05:28 -07001354 device.populateViewportLocked(viewport);
Arthur Hung41e81e72018-10-31 18:04:56 +08001355 viewport.valid = true;
1356 viewport.displayId = displayId;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001357 }
1358
1359 private LogicalDisplay findLogicalDisplayForDeviceLocked(DisplayDevice device) {
1360 final int count = mLogicalDisplays.size();
1361 for (int i = 0; i < count; i++) {
1362 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1363 if (display.getPrimaryDisplayDeviceLocked() == device) {
1364 return display;
1365 }
1366 }
1367 return null;
1368 }
1369
Jeff Brownbd6e1502012-08-28 03:27:37 -07001370 private void sendDisplayEventLocked(int displayId, int event) {
1371 Message msg = mHandler.obtainMessage(MSG_DELIVER_DISPLAY_EVENT, displayId, event);
1372 mHandler.sendMessage(msg);
1373 }
1374
Robert Carrae606b42018-02-15 15:36:23 -08001375 // Requests that performTraversals be called at a
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001376 // later time to apply changes to surfaces and displays.
Craig Mautner65d11b32012-10-01 13:59:52 -07001377 private void scheduleTraversalLocked(boolean inTraversal) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001378 if (!mPendingTraversal && mWindowManagerInternal != null) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001379 mPendingTraversal = true;
Craig Mautner65d11b32012-10-01 13:59:52 -07001380 if (!inTraversal) {
1381 mHandler.sendEmptyMessage(MSG_REQUEST_TRAVERSAL);
1382 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001383 }
1384 }
1385
1386 // Runs on Handler thread.
1387 // Delivers display event notifications to callbacks.
Jeff Brownbd6e1502012-08-28 03:27:37 -07001388 private void deliverDisplayEvent(int displayId, int event) {
1389 if (DEBUG) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001390 Slog.d(TAG, "Delivering display event: displayId="
1391 + displayId + ", event=" + event);
Jeff Brownfa25bf52012-07-23 19:26:30 -07001392 }
Jeff Brownfa25bf52012-07-23 19:26:30 -07001393
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001394 // Grab the lock and copy the callbacks.
Jeff Brownbd6e1502012-08-28 03:27:37 -07001395 final int count;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001396 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -07001397 count = mCallbacks.size();
1398 mTempCallbacks.clear();
1399 for (int i = 0; i < count; i++) {
1400 mTempCallbacks.add(mCallbacks.valueAt(i));
Craig Mautner4f67ba62012-08-02 11:23:00 -07001401 }
Jeff Brownbd6e1502012-08-28 03:27:37 -07001402 }
Craig Mautner4f67ba62012-08-02 11:23:00 -07001403
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001404 // After releasing the lock, send the notifications out.
Jeff Brownbd6e1502012-08-28 03:27:37 -07001405 for (int i = 0; i < count; i++) {
1406 mTempCallbacks.get(i).notifyDisplayEventAsync(displayId, event);
1407 }
1408 mTempCallbacks.clear();
Craig Mautner4f67ba62012-08-02 11:23:00 -07001409 }
1410
Michael Wrightc39d47a2014-07-08 18:07:36 -07001411 private IMediaProjectionManager getProjectionService() {
1412 if (mProjectionService == null) {
1413 IBinder b = ServiceManager.getService(Context.MEDIA_PROJECTION_SERVICE);
1414 mProjectionService = IMediaProjectionManager.Stub.asInterface(b);
1415 }
1416 return mProjectionService;
1417 }
1418
Michael Wrighteef0e132017-11-21 17:57:52 +00001419 private UserManager getUserManager() {
1420 return mContext.getSystemService(UserManager.class);
1421 }
1422
Jeff Brown4ccb8232014-01-16 22:16:42 -08001423 private void dumpInternal(PrintWriter pw) {
Jeff Brownbd6e1502012-08-28 03:27:37 -07001424 pw.println("DISPLAY MANAGER (dumpsys display)");
Jeff Brownfa25bf52012-07-23 19:26:30 -07001425
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001426 synchronized (mSyncRoot) {
Jeff Brown9e316a12012-10-08 19:17:06 -07001427 pw.println(" mOnlyCode=" + mOnlyCore);
1428 pw.println(" mSafeMode=" + mSafeMode);
1429 pw.println(" mPendingTraversal=" + mPendingTraversal);
Jeff Brown037c33e2014-04-09 00:31:55 -07001430 pw.println(" mGlobalDisplayState=" + Display.stateToString(mGlobalDisplayState));
Jeff Brown9e316a12012-10-08 19:17:06 -07001431 pw.println(" mNextNonDefaultDisplayId=" + mNextNonDefaultDisplayId);
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001432 pw.println(" mViewports=" + mViewports);
Damien Bargiacchi4364bbf2016-11-01 21:44:20 -07001433 pw.println(" mDefaultDisplayDefaultColorMode=" + mDefaultDisplayDefaultColorMode);
Jeff Brown27f1d672012-10-17 18:32:34 -07001434 pw.println(" mSingleDisplayDemoMode=" + mSingleDisplayDemoMode);
Jeff Brownce468a32013-11-21 16:42:03 -08001435 pw.println(" mWifiDisplayScanRequestCount=" + mWifiDisplayScanRequestCount);
Michael Wrighteedcbf12017-08-16 23:14:54 +01001436 pw.println(" mStableDisplaySize=" + mStableDisplaySize);
1437
Jeff Brown9e316a12012-10-08 19:17:06 -07001438
Jeff Brownbd6e1502012-08-28 03:27:37 -07001439 IndentingPrintWriter ipw = new IndentingPrintWriter(pw, " ");
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001440 ipw.increaseIndent();
Jeff Brownbd6e1502012-08-28 03:27:37 -07001441
1442 pw.println();
1443 pw.println("Display Adapters: size=" + mDisplayAdapters.size());
Jeff Brown848c2dc2012-08-19 20:18:08 -07001444 for (DisplayAdapter adapter : mDisplayAdapters) {
Jeff Brownbd6e1502012-08-28 03:27:37 -07001445 pw.println(" " + adapter.getName());
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001446 adapter.dumpLocked(ipw);
Jeff Brown848c2dc2012-08-19 20:18:08 -07001447 }
Craig Mautner9de49362012-08-02 14:30:30 -07001448
Jeff Brownbd6e1502012-08-28 03:27:37 -07001449 pw.println();
1450 pw.println("Display Devices: size=" + mDisplayDevices.size());
1451 for (DisplayDevice device : mDisplayDevices) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001452 pw.println(" " + device.getDisplayDeviceInfoLocked());
1453 device.dumpLocked(ipw);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001454 }
1455
1456 final int logicalDisplayCount = mLogicalDisplays.size();
1457 pw.println();
1458 pw.println("Logical Displays: size=" + logicalDisplayCount);
1459 for (int i = 0; i < logicalDisplayCount; i++) {
1460 int displayId = mLogicalDisplays.keyAt(i);
1461 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1462 pw.println(" Display " + displayId + ":");
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001463 display.dumpLocked(ipw);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001464 }
Jeff Brownce468a32013-11-21 16:42:03 -08001465
1466 final int callbackCount = mCallbacks.size();
1467 pw.println();
1468 pw.println("Callbacks: size=" + callbackCount);
1469 for (int i = 0; i < callbackCount; i++) {
1470 CallbackRecord callback = mCallbacks.valueAt(i);
1471 pw.println(" " + i + ": mPid=" + callback.mPid
1472 + ", mWifiDisplayScanRequested=" + callback.mWifiDisplayScanRequested);
1473 }
Jeff Brownad9ef192014-04-08 17:26:30 -07001474
1475 if (mDisplayPowerController != null) {
1476 mDisplayPowerController.dump(pw);
1477 }
Michael Wright1c9977b2016-07-12 13:30:10 -07001478
1479 pw.println();
1480 mPersistentDataStore.dump(pw);
Daniel Solomon8b72c5b2018-11-25 11:07:13 -08001481
1482 final ColorDisplayServiceInternal cds = LocalServices.getService(
1483 ColorDisplayServiceInternal.class);
1484 if (cds != null) {
1485 pw.println();
1486 cds.dump(pw);
1487 }
Jeff Brownbd6e1502012-08-28 03:27:37 -07001488 }
1489 }
1490
Dan Gittik122df862018-03-28 16:59:22 +01001491 private static float[] getFloatArray(TypedArray array) {
1492 int length = array.length();
1493 float[] floatArray = new float[length];
1494 for (int i = 0; i < length; i++) {
1495 floatArray[i] = array.getFloat(i, Float.NaN);
1496 }
1497 array.recycle();
1498 return floatArray;
1499 }
1500
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001501 /**
1502 * This is the object that everything in the display manager locks on.
1503 * We make it an inner class within the {@link DisplayManagerService} to so that it is
1504 * clear that the object belongs to the display manager service and that it is
1505 * a unique object with a special purpose.
1506 */
1507 public static final class SyncRoot {
1508 }
1509
Santos Cordonee8931e2017-04-05 10:31:15 -07001510 @VisibleForTesting
1511 static class Injector {
1512 VirtualDisplayAdapter getVirtualDisplayAdapter(SyncRoot syncRoot, Context context,
1513 Handler handler, DisplayAdapter.Listener displayAdapterListener) {
1514 return new VirtualDisplayAdapter(syncRoot, context, handler, displayAdapterListener);
1515 }
Santos Cordonc22c5632017-06-21 16:03:49 -07001516
1517 long getDefaultDisplayDelayTimeout() {
1518 return WAIT_FOR_DEFAULT_DISPLAY_TIMEOUT;
1519 }
Santos Cordonee8931e2017-04-05 10:31:15 -07001520 }
1521
Alex Sakhartchouk879d24f2017-06-20 22:01:19 -04001522 @VisibleForTesting
1523 DisplayDeviceInfo getDisplayDeviceInfoInternal(int displayId) {
1524 synchronized (mSyncRoot) {
1525 LogicalDisplay display = mLogicalDisplays.get(displayId);
1526 if (display != null) {
1527 DisplayDevice displayDevice = display.getPrimaryDisplayDeviceLocked();
1528 return displayDevice.getDisplayDeviceInfoLocked();
1529 }
1530 return null;
1531 }
1532 }
1533
Jeff Brownbd6e1502012-08-28 03:27:37 -07001534 private final class DisplayManagerHandler extends Handler {
1535 public DisplayManagerHandler(Looper looper) {
1536 super(looper, null, true /*async*/);
Jeff Brown848c2dc2012-08-19 20:18:08 -07001537 }
Jeff Brownbf5740e2012-08-19 23:20:02 -07001538
Jeff Brownbd6e1502012-08-28 03:27:37 -07001539 @Override
1540 public void handleMessage(Message msg) {
1541 switch (msg.what) {
Santos Cordonc22c5632017-06-21 16:03:49 -07001542 case MSG_REGISTER_DEFAULT_DISPLAY_ADAPTERS:
1543 registerDefaultDisplayAdapters();
Jeff Brownbd6e1502012-08-28 03:27:37 -07001544 break;
1545
1546 case MSG_REGISTER_ADDITIONAL_DISPLAY_ADAPTERS:
1547 registerAdditionalDisplayAdapters();
1548 break;
1549
1550 case MSG_DELIVER_DISPLAY_EVENT:
1551 deliverDisplayEvent(msg.arg1, msg.arg2);
1552 break;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001553
1554 case MSG_REQUEST_TRAVERSAL:
Jeff Brown4ccb8232014-01-16 22:16:42 -08001555 mWindowManagerInternal.requestTraversalFromDisplayManager();
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001556 break;
Jeff Brownd728bf52012-09-08 18:05:28 -07001557
1558 case MSG_UPDATE_VIEWPORT: {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001559 final boolean changed;
Jeff Brownd728bf52012-09-08 18:05:28 -07001560 synchronized (mSyncRoot) {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001561 changed = !mTempViewports.equals(mViewports);
1562 if (changed) {
1563 mTempViewports.clear();
1564 for (DisplayViewport d : mViewports) {
1565 mTempViewports.add(d.makeCopy());
1566 }
Santos Cordonee8931e2017-04-05 10:31:15 -07001567 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001568 }
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001569 if (changed) {
1570 mInputManagerInternal.setDisplayViewports(mTempViewports);
1571 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001572 break;
1573 }
Kenny Guy22bd0442017-10-26 00:15:54 +01001574
Michael Wrighteef0e132017-11-21 17:57:52 +00001575 case MSG_LOAD_BRIGHTNESS_CONFIGURATION:
1576 loadBrightnessConfiguration();
1577 break;
Jeff Brownbd6e1502012-08-28 03:27:37 -07001578 }
1579 }
1580 }
1581
1582 private final class DisplayAdapterListener implements DisplayAdapter.Listener {
1583 @Override
1584 public void onDisplayDeviceEvent(DisplayDevice device, int event) {
1585 switch (event) {
1586 case DisplayAdapter.DISPLAY_DEVICE_EVENT_ADDED:
1587 handleDisplayDeviceAdded(device);
1588 break;
1589
1590 case DisplayAdapter.DISPLAY_DEVICE_EVENT_CHANGED:
1591 handleDisplayDeviceChanged(device);
1592 break;
1593
1594 case DisplayAdapter.DISPLAY_DEVICE_EVENT_REMOVED:
1595 handleDisplayDeviceRemoved(device);
1596 break;
1597 }
1598 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001599
1600 @Override
1601 public void onTraversalRequested() {
1602 synchronized (mSyncRoot) {
Craig Mautner65d11b32012-10-01 13:59:52 -07001603 scheduleTraversalLocked(false);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001604 }
1605 }
Jeff Brownbd6e1502012-08-28 03:27:37 -07001606 }
1607
1608 private final class CallbackRecord implements DeathRecipient {
Jeff Brownce468a32013-11-21 16:42:03 -08001609 public final int mPid;
Jeff Brownbd6e1502012-08-28 03:27:37 -07001610 private final IDisplayManagerCallback mCallback;
1611
Jeff Brownce468a32013-11-21 16:42:03 -08001612 public boolean mWifiDisplayScanRequested;
1613
Jeff Brownbd6e1502012-08-28 03:27:37 -07001614 public CallbackRecord(int pid, IDisplayManagerCallback callback) {
1615 mPid = pid;
1616 mCallback = callback;
1617 }
1618
1619 @Override
1620 public void binderDied() {
1621 if (DEBUG) {
1622 Slog.d(TAG, "Display listener for pid " + mPid + " died.");
1623 }
Jeff Brownce468a32013-11-21 16:42:03 -08001624 onCallbackDied(this);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001625 }
1626
1627 public void notifyDisplayEventAsync(int displayId, int event) {
1628 try {
1629 mCallback.onDisplayEvent(displayId, event);
1630 } catch (RemoteException ex) {
1631 Slog.w(TAG, "Failed to notify process "
1632 + mPid + " that displays changed, assuming it died.", ex);
1633 binderDied();
1634 }
1635 }
1636 }
Jeff Brown4ccb8232014-01-16 22:16:42 -08001637
Santos Cordonee8931e2017-04-05 10:31:15 -07001638 @VisibleForTesting
1639 final class BinderService extends IDisplayManager.Stub {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001640 /**
1641 * Returns information about the specified logical display.
1642 *
1643 * @param displayId The logical display id.
1644 * @return The logical display info, or null if the display does not exist. The
1645 * returned object must be treated as immutable.
1646 */
1647 @Override // Binder call
1648 public DisplayInfo getDisplayInfo(int displayId) {
1649 final int callingUid = Binder.getCallingUid();
1650 final long token = Binder.clearCallingIdentity();
1651 try {
1652 return getDisplayInfoInternal(displayId, callingUid);
1653 } finally {
1654 Binder.restoreCallingIdentity(token);
1655 }
1656 }
1657
1658 /**
1659 * Returns the list of all display ids.
1660 */
1661 @Override // Binder call
1662 public int[] getDisplayIds() {
1663 final int callingUid = Binder.getCallingUid();
1664 final long token = Binder.clearCallingIdentity();
1665 try {
1666 return getDisplayIdsInternal(callingUid);
1667 } finally {
1668 Binder.restoreCallingIdentity(token);
1669 }
1670 }
1671
Michael Wrighteedcbf12017-08-16 23:14:54 +01001672 /**
1673 * Returns the stable device display size, in pixels.
1674 */
1675 @Override // Binder call
1676 public Point getStableDisplaySize() {
1677 final long token = Binder.clearCallingIdentity();
1678 try {
1679 return getStableDisplaySizeInternal();
1680 } finally {
1681 Binder.restoreCallingIdentity(token);
1682 }
1683 }
1684
Jeff Brown4ccb8232014-01-16 22:16:42 -08001685 @Override // Binder call
1686 public void registerCallback(IDisplayManagerCallback callback) {
1687 if (callback == null) {
1688 throw new IllegalArgumentException("listener must not be null");
1689 }
1690
1691 final int callingPid = Binder.getCallingPid();
1692 final long token = Binder.clearCallingIdentity();
1693 try {
1694 registerCallbackInternal(callback, callingPid);
1695 } finally {
1696 Binder.restoreCallingIdentity(token);
1697 }
1698 }
1699
1700 @Override // Binder call
1701 public void startWifiDisplayScan() {
1702 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1703 "Permission required to start wifi display scans");
1704
1705 final int callingPid = Binder.getCallingPid();
1706 final long token = Binder.clearCallingIdentity();
1707 try {
1708 startWifiDisplayScanInternal(callingPid);
1709 } finally {
1710 Binder.restoreCallingIdentity(token);
1711 }
1712 }
1713
1714 @Override // Binder call
1715 public void stopWifiDisplayScan() {
1716 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1717 "Permission required to stop wifi display scans");
1718
1719 final int callingPid = Binder.getCallingPid();
1720 final long token = Binder.clearCallingIdentity();
1721 try {
1722 stopWifiDisplayScanInternal(callingPid);
1723 } finally {
1724 Binder.restoreCallingIdentity(token);
1725 }
1726 }
1727
1728 @Override // Binder call
1729 public void connectWifiDisplay(String address) {
1730 if (address == null) {
1731 throw new IllegalArgumentException("address must not be null");
1732 }
1733 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1734 "Permission required to connect to a wifi display");
1735
1736 final long token = Binder.clearCallingIdentity();
1737 try {
1738 connectWifiDisplayInternal(address);
1739 } finally {
1740 Binder.restoreCallingIdentity(token);
1741 }
1742 }
1743
1744 @Override // Binder call
1745 public void disconnectWifiDisplay() {
1746 // This request does not require special permissions.
1747 // Any app can request disconnection from the currently active wifi display.
1748 // This exception should no longer be needed once wifi display control moves
1749 // to the media router service.
1750
1751 final long token = Binder.clearCallingIdentity();
1752 try {
1753 disconnectWifiDisplayInternal();
1754 } finally {
1755 Binder.restoreCallingIdentity(token);
1756 }
1757 }
1758
1759 @Override // Binder call
1760 public void renameWifiDisplay(String address, String alias) {
1761 if (address == null) {
1762 throw new IllegalArgumentException("address must not be null");
1763 }
1764 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1765 "Permission required to rename to a wifi display");
1766
1767 final long token = Binder.clearCallingIdentity();
1768 try {
1769 renameWifiDisplayInternal(address, alias);
1770 } finally {
1771 Binder.restoreCallingIdentity(token);
1772 }
1773 }
1774
1775 @Override // Binder call
1776 public void forgetWifiDisplay(String address) {
1777 if (address == null) {
1778 throw new IllegalArgumentException("address must not be null");
1779 }
1780 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1781 "Permission required to forget to a wifi display");
1782
1783 final long token = Binder.clearCallingIdentity();
1784 try {
1785 forgetWifiDisplayInternal(address);
1786 } finally {
1787 Binder.restoreCallingIdentity(token);
1788 }
1789 }
1790
1791 @Override // Binder call
1792 public void pauseWifiDisplay() {
1793 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1794 "Permission required to pause a wifi display session");
1795
1796 final long token = Binder.clearCallingIdentity();
1797 try {
1798 pauseWifiDisplayInternal();
1799 } finally {
1800 Binder.restoreCallingIdentity(token);
1801 }
1802 }
1803
1804 @Override // Binder call
1805 public void resumeWifiDisplay() {
1806 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1807 "Permission required to resume a wifi display session");
1808
1809 final long token = Binder.clearCallingIdentity();
1810 try {
1811 resumeWifiDisplayInternal();
1812 } finally {
1813 Binder.restoreCallingIdentity(token);
1814 }
1815 }
1816
1817 @Override // Binder call
1818 public WifiDisplayStatus getWifiDisplayStatus() {
1819 // This request does not require special permissions.
1820 // Any app can get information about available wifi displays.
1821
1822 final long token = Binder.clearCallingIdentity();
1823 try {
1824 return getWifiDisplayStatusInternal();
1825 } finally {
1826 Binder.restoreCallingIdentity(token);
1827 }
1828 }
1829
1830 @Override // Binder call
Michael Wright1c9977b2016-07-12 13:30:10 -07001831 public void requestColorMode(int displayId, int colorMode) {
Michael Wright58e829f2015-09-15 00:13:26 +01001832 mContext.enforceCallingOrSelfPermission(
Michael Wright1c9977b2016-07-12 13:30:10 -07001833 Manifest.permission.CONFIGURE_DISPLAY_COLOR_MODE,
1834 "Permission required to change the display color mode");
Michael Wright58e829f2015-09-15 00:13:26 +01001835 final long token = Binder.clearCallingIdentity();
1836 try {
Michael Wright1c9977b2016-07-12 13:30:10 -07001837 requestColorModeInternal(displayId, colorMode);
Michael Wright58e829f2015-09-15 00:13:26 +01001838 } finally {
1839 Binder.restoreCallingIdentity(token);
1840 }
1841 }
1842
1843 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07001844 public int createVirtualDisplay(IVirtualDisplayCallback callback,
Michael Wrightc39d47a2014-07-08 18:07:36 -07001845 IMediaProjection projection, String packageName, String name,
Santos Cordonee8931e2017-04-05 10:31:15 -07001846 int width, int height, int densityDpi, Surface surface, int flags,
1847 String uniqueId) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001848 final int callingUid = Binder.getCallingUid();
1849 if (!validatePackageName(callingUid, packageName)) {
1850 throw new SecurityException("packageName must match the calling uid");
1851 }
Michael Wright75ee9fc2014-09-01 19:55:22 -07001852 if (callback == null) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001853 throw new IllegalArgumentException("appToken must not be null");
1854 }
1855 if (TextUtils.isEmpty(name)) {
1856 throw new IllegalArgumentException("name must be non-null and non-empty");
1857 }
1858 if (width <= 0 || height <= 0 || densityDpi <= 0) {
1859 throw new IllegalArgumentException("width, height, and densityDpi must be "
1860 + "greater than 0");
1861 }
Pablo Ceballoseb3370d2016-08-31 15:00:17 -07001862 if (surface != null && surface.isSingleBuffered()) {
Pablo Ceballosaff2f942016-07-29 14:49:55 -07001863 throw new IllegalArgumentException("Surface can't be single-buffered");
1864 }
Michael Wrightc39d47a2014-07-08 18:07:36 -07001865
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001866 if ((flags & VIRTUAL_DISPLAY_FLAG_PUBLIC) != 0) {
1867 flags |= VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR;
1868
1869 // Public displays can't be allowed to show content when locked.
Andrii Kulian7211d2e2017-01-27 15:58:05 -08001870 if ((flags & VIRTUAL_DISPLAY_FLAG_CAN_SHOW_WITH_INSECURE_KEYGUARD) != 0) {
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001871 throw new IllegalArgumentException(
1872 "Public display must not be marked as SHOW_WHEN_LOCKED_INSECURE");
1873 }
Michael Wright6720be42014-07-29 19:14:16 -07001874 }
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001875 if ((flags & VIRTUAL_DISPLAY_FLAG_OWN_CONTENT_ONLY) != 0) {
1876 flags &= ~VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR;
Michael Wright6720be42014-07-29 19:14:16 -07001877 }
1878
Michael Wrightc39d47a2014-07-08 18:07:36 -07001879 if (projection != null) {
1880 try {
1881 if (!getProjectionService().isValidMediaProjection(projection)) {
1882 throw new SecurityException("Invalid media projection");
1883 }
Michael Wright6720be42014-07-29 19:14:16 -07001884 flags = projection.applyVirtualDisplayFlags(flags);
Michael Wrightc39d47a2014-07-08 18:07:36 -07001885 } catch (RemoteException e) {
Michael Wright6720be42014-07-29 19:14:16 -07001886 throw new SecurityException("unable to validate media projection or flags");
Michael Wrightc39d47a2014-07-08 18:07:36 -07001887 }
1888 }
1889
Michael Wright6720be42014-07-29 19:14:16 -07001890 if (callingUid != Process.SYSTEM_UID &&
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001891 (flags & VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR) != 0) {
Michael Wrightc39d47a2014-07-08 18:07:36 -07001892 if (!canProjectVideo(projection)) {
1893 throw new SecurityException("Requires CAPTURE_VIDEO_OUTPUT or "
1894 + "CAPTURE_SECURE_VIDEO_OUTPUT permission, or an appropriate "
1895 + "MediaProjection token in order to create a screen sharing virtual "
1896 + "display.");
1897 }
1898 }
Santos Cordonb6992f22018-01-30 14:51:20 -08001899 if (callingUid != Process.SYSTEM_UID && (flags & VIRTUAL_DISPLAY_FLAG_SECURE) != 0) {
Michael Wrightc39d47a2014-07-08 18:07:36 -07001900 if (!canProjectSecureVideo(projection)) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001901 throw new SecurityException("Requires CAPTURE_SECURE_VIDEO_OUTPUT "
Michael Wrightc39d47a2014-07-08 18:07:36 -07001902 + "or an appropriate MediaProjection token to create a "
1903 + "secure virtual display.");
Jeff Brown4ccb8232014-01-16 22:16:42 -08001904 }
1905 }
1906
1907 final long token = Binder.clearCallingIdentity();
1908 try {
Santos Cordonee8931e2017-04-05 10:31:15 -07001909 return createVirtualDisplayInternal(callback, projection, callingUid, packageName,
1910 name, width, height, densityDpi, surface, flags, uniqueId);
Jeff Brown4ccb8232014-01-16 22:16:42 -08001911 } finally {
1912 Binder.restoreCallingIdentity(token);
1913 }
1914 }
1915
1916 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07001917 public void resizeVirtualDisplay(IVirtualDisplayCallback callback,
Michael Wright01e840f2014-06-26 16:03:25 -07001918 int width, int height, int densityDpi) {
1919 final long token = Binder.clearCallingIdentity();
1920 try {
Michael Wright75ee9fc2014-09-01 19:55:22 -07001921 resizeVirtualDisplayInternal(callback.asBinder(), width, height, densityDpi);
Michael Wright01e840f2014-06-26 16:03:25 -07001922 } finally {
1923 Binder.restoreCallingIdentity(token);
1924 }
1925 }
1926
1927 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07001928 public void setVirtualDisplaySurface(IVirtualDisplayCallback callback, Surface surface) {
Pablo Ceballoseb3370d2016-08-31 15:00:17 -07001929 if (surface != null && surface.isSingleBuffered()) {
1930 throw new IllegalArgumentException("Surface can't be single-buffered");
1931 }
Jeff Brown92207df2014-04-16 13:16:07 -07001932 final long token = Binder.clearCallingIdentity();
1933 try {
Michael Wright75ee9fc2014-09-01 19:55:22 -07001934 setVirtualDisplaySurfaceInternal(callback.asBinder(), surface);
Jeff Brown92207df2014-04-16 13:16:07 -07001935 } finally {
1936 Binder.restoreCallingIdentity(token);
1937 }
1938 }
1939
1940 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07001941 public void releaseVirtualDisplay(IVirtualDisplayCallback callback) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001942 final long token = Binder.clearCallingIdentity();
1943 try {
Michael Wright75ee9fc2014-09-01 19:55:22 -07001944 releaseVirtualDisplayInternal(callback.asBinder());
Jeff Brown4ccb8232014-01-16 22:16:42 -08001945 } finally {
1946 Binder.restoreCallingIdentity(token);
1947 }
1948 }
1949
1950 @Override // Binder call
chaviwda4c6942018-11-07 15:52:56 -08001951 public void setVirtualDisplayState(IVirtualDisplayCallback callback, boolean isOn) {
1952 final long token = Binder.clearCallingIdentity();
1953 try {
1954 setVirtualDisplayStateInternal(callback.asBinder(), isOn);
1955 } finally {
1956 Binder.restoreCallingIdentity(token);
1957 }
1958 }
1959
1960 @Override // Binder call
Jeff Brown4ccb8232014-01-16 22:16:42 -08001961 public void dump(FileDescriptor fd, final PrintWriter pw, String[] args) {
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -06001962 if (!DumpUtils.checkDumpPermission(mContext, TAG, pw)) return;
Jeff Brown4ccb8232014-01-16 22:16:42 -08001963
1964 final long token = Binder.clearCallingIdentity();
1965 try {
1966 dumpInternal(pw);
1967 } finally {
1968 Binder.restoreCallingIdentity(token);
1969 }
1970 }
1971
Kenny Guy22bd0442017-10-26 00:15:54 +01001972 @Override // Binder call
Kenny Guy29aa30e2017-11-30 13:43:46 +00001973 public ParceledListSlice<BrightnessChangeEvent> getBrightnessEvents(String callingPackage) {
Kenny Guy22bd0442017-10-26 00:15:54 +01001974 mContext.enforceCallingOrSelfPermission(
1975 Manifest.permission.BRIGHTNESS_SLIDER_USAGE,
1976 "Permission to read brightness events.");
Kenny Guy29aa30e2017-11-30 13:43:46 +00001977
1978 final int callingUid = Binder.getCallingUid();
1979 AppOpsManager appOpsManager = mContext.getSystemService(AppOpsManager.class);
Jeff Sharkeyd9311192018-04-16 16:50:34 +00001980 final int mode = appOpsManager.noteOp(AppOpsManager.OP_GET_USAGE_STATS,
Kenny Guy29aa30e2017-11-30 13:43:46 +00001981 callingUid, callingPackage);
1982 final boolean hasUsageStats;
1983 if (mode == AppOpsManager.MODE_DEFAULT) {
1984 // The default behavior here is to check if PackageManager has given the app
1985 // permission.
1986 hasUsageStats = mContext.checkCallingPermission(
1987 Manifest.permission.PACKAGE_USAGE_STATS)
1988 == PackageManager.PERMISSION_GRANTED;
1989 } else {
1990 hasUsageStats = mode == AppOpsManager.MODE_ALLOWED;
1991 }
1992
1993 final int userId = UserHandle.getUserId(callingUid);
Kenny Guy22bd0442017-10-26 00:15:54 +01001994 final long token = Binder.clearCallingIdentity();
1995 try {
Michael Wright144aac92017-12-21 18:37:41 +00001996 synchronized (mSyncRoot) {
1997 return mDisplayPowerController.getBrightnessEvents(userId, hasUsageStats);
1998 }
Kenny Guy22bd0442017-10-26 00:15:54 +01001999 } finally {
2000 Binder.restoreCallingIdentity(token);
2001 }
2002 }
2003
Michael Wrighteef0e132017-11-21 17:57:52 +00002004 @Override // Binder call
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00002005 public ParceledListSlice<AmbientBrightnessDayStats> getAmbientBrightnessStats() {
2006 mContext.enforceCallingOrSelfPermission(
2007 Manifest.permission.ACCESS_AMBIENT_LIGHT_STATS,
2008 "Permission required to to access ambient light stats.");
2009 final int callingUid = Binder.getCallingUid();
2010 final int userId = UserHandle.getUserId(callingUid);
2011 final long token = Binder.clearCallingIdentity();
2012 try {
2013 synchronized (mSyncRoot) {
2014 return mDisplayPowerController.getAmbientBrightnessStats(userId);
2015 }
2016 } finally {
2017 Binder.restoreCallingIdentity(token);
2018 }
2019 }
2020
2021 @Override // Binder call
Michael Wrighteef0e132017-11-21 17:57:52 +00002022 public void setBrightnessConfigurationForUser(
Kenny Guy05ce8092018-01-17 13:44:20 +00002023 BrightnessConfiguration c, @UserIdInt int userId, String packageName) {
Michael Wrighteef0e132017-11-21 17:57:52 +00002024 mContext.enforceCallingOrSelfPermission(
2025 Manifest.permission.CONFIGURE_DISPLAY_BRIGHTNESS,
2026 "Permission required to change the display's brightness configuration");
2027 if (userId != UserHandle.getCallingUserId()) {
2028 mContext.enforceCallingOrSelfPermission(
2029 Manifest.permission.INTERACT_ACROSS_USERS,
2030 "Permission required to change the display brightness"
2031 + " configuration of another user");
2032 }
Kenny Guy05ce8092018-01-17 13:44:20 +00002033 if (packageName != null && !validatePackageName(getCallingUid(), packageName)) {
2034 packageName = null;
2035 }
Michael Wrighteef0e132017-11-21 17:57:52 +00002036 final long token = Binder.clearCallingIdentity();
2037 try {
Kenny Guy05ce8092018-01-17 13:44:20 +00002038 setBrightnessConfigurationForUserInternal(c, userId, packageName);
Michael Wrighteef0e132017-11-21 17:57:52 +00002039 } finally {
2040 Binder.restoreCallingIdentity(token);
2041 }
2042 }
2043
Michael Wrightd8460232018-01-16 18:04:59 +00002044 @Override // Binder call
Kenny Guy6d1009f2018-03-14 14:28:23 +00002045 public BrightnessConfiguration getBrightnessConfigurationForUser(int userId) {
2046 mContext.enforceCallingOrSelfPermission(
2047 Manifest.permission.CONFIGURE_DISPLAY_BRIGHTNESS,
2048 "Permission required to read the display's brightness configuration");
2049 if (userId != UserHandle.getCallingUserId()) {
2050 mContext.enforceCallingOrSelfPermission(
2051 Manifest.permission.INTERACT_ACROSS_USERS,
2052 "Permission required to read the display brightness"
2053 + " configuration of another user");
2054 }
2055 final long token = Binder.clearCallingIdentity();
2056 try {
2057 final int userSerial = getUserManager().getUserSerialNumber(userId);
2058 synchronized (mSyncRoot) {
2059 BrightnessConfiguration config =
2060 mPersistentDataStore.getBrightnessConfiguration(userSerial);
2061 if (config == null) {
2062 config = mDisplayPowerController.getDefaultBrightnessConfiguration();
2063 }
2064 return config;
2065 }
2066 } finally {
2067 Binder.restoreCallingIdentity(token);
2068 }
2069 }
2070
2071 @Override // Binder call
2072 public BrightnessConfiguration getDefaultBrightnessConfiguration() {
2073 mContext.enforceCallingOrSelfPermission(
2074 Manifest.permission.CONFIGURE_DISPLAY_BRIGHTNESS,
2075 "Permission required to read the display's default brightness configuration");
2076 final long token = Binder.clearCallingIdentity();
2077 try {
2078 synchronized (mSyncRoot) {
2079 return mDisplayPowerController.getDefaultBrightnessConfiguration();
2080 }
2081 } finally {
2082 Binder.restoreCallingIdentity(token);
2083 }
2084 }
2085
2086 @Override // Binder call
Michael Wrightd8460232018-01-16 18:04:59 +00002087 public void setTemporaryBrightness(int brightness) {
2088 mContext.enforceCallingOrSelfPermission(
2089 Manifest.permission.CONTROL_DISPLAY_BRIGHTNESS,
2090 "Permission required to set the display's brightness");
2091 final long token = Binder.clearCallingIdentity();
2092 try {
2093 synchronized (mSyncRoot) {
2094 mDisplayPowerController.setTemporaryBrightness(brightness);
2095 }
2096 } finally {
2097 Binder.restoreCallingIdentity(token);
2098 }
2099 }
2100
2101 @Override // Binder call
2102 public void setTemporaryAutoBrightnessAdjustment(float adjustment) {
2103 mContext.enforceCallingOrSelfPermission(
2104 Manifest.permission.CONTROL_DISPLAY_BRIGHTNESS,
2105 "Permission required to set the display's auto brightness adjustment");
2106 final long token = Binder.clearCallingIdentity();
2107 try {
2108 synchronized (mSyncRoot) {
2109 mDisplayPowerController.setTemporaryAutoBrightnessAdjustment(adjustment);
2110 }
2111 } finally {
2112 Binder.restoreCallingIdentity(token);
2113 }
2114 }
2115
Dan Gittik7a32fba2018-03-28 12:19:38 +01002116 @Override // Binder call
2117 public void onShellCommand(FileDescriptor in, FileDescriptor out,
2118 FileDescriptor err, String[] args, ShellCallback callback,
2119 ResultReceiver resultReceiver) {
2120 final long token = Binder.clearCallingIdentity();
2121 try {
2122 DisplayManagerShellCommand command = new DisplayManagerShellCommand(this);
2123 command.exec(this, in, out, err, args, callback, resultReceiver);
2124 } finally {
2125 Binder.restoreCallingIdentity(token);
2126 }
2127 }
2128
Dan Gittik122df862018-03-28 16:59:22 +01002129 @Override // Binder call
2130 public Curve getMinimumBrightnessCurve() {
2131 final long token = Binder.clearCallingIdentity();
2132 try {
2133 return getMinimumBrightnessCurveInternal();
2134 } finally {
2135 Binder.restoreCallingIdentity(token);
2136 }
2137 }
2138
Peiyong Lin277eaff2019-01-16 16:18:22 -08002139 @Override // Binder call
2140 public int getPreferredWideGamutColorSpaceId() {
2141 final long token = Binder.clearCallingIdentity();
2142 try {
2143 return getPreferredWideGamutColorSpaceIdInternal();
2144 } finally {
2145 Binder.restoreCallingIdentity(token);
2146 }
2147 }
2148
Dan Gittik7a32fba2018-03-28 12:19:38 +01002149 void setBrightness(int brightness) {
2150 Settings.System.putIntForUser(mContext.getContentResolver(),
2151 Settings.System.SCREEN_BRIGHTNESS, brightness, UserHandle.USER_CURRENT);
2152 }
2153
2154 void resetBrightnessConfiguration() {
2155 setBrightnessConfigurationForUserInternal(null, mContext.getUserId(),
2156 mContext.getPackageName());
2157 }
2158
Dan Gittika5a2d632019-01-09 14:25:29 +00002159 void setAutoBrightnessLoggingEnabled(boolean enabled) {
2160 if (mDisplayPowerController != null) {
2161 synchronized (mSyncRoot) {
2162 mDisplayPowerController.setAutoBrightnessLoggingEnabled(enabled);
2163 }
2164 }
2165 }
2166
Jeff Brown4ccb8232014-01-16 22:16:42 -08002167 private boolean validatePackageName(int uid, String packageName) {
2168 if (packageName != null) {
2169 String[] packageNames = mContext.getPackageManager().getPackagesForUid(uid);
2170 if (packageNames != null) {
2171 for (String n : packageNames) {
2172 if (n.equals(packageName)) {
2173 return true;
2174 }
2175 }
2176 }
2177 }
2178 return false;
2179 }
Michael Wrightc39d47a2014-07-08 18:07:36 -07002180
2181 private boolean canProjectVideo(IMediaProjection projection) {
2182 if (projection != null) {
2183 try {
2184 if (projection.canProjectVideo()) {
2185 return true;
2186 }
2187 } catch (RemoteException e) {
2188 Slog.e(TAG, "Unable to query projection service for permissions", e);
2189 }
2190 }
2191 if (mContext.checkCallingPermission(
2192 android.Manifest.permission.CAPTURE_VIDEO_OUTPUT)
Michael Wright0ccc2b02014-07-24 18:20:41 -07002193 == PackageManager.PERMISSION_GRANTED) {
Michael Wrightc39d47a2014-07-08 18:07:36 -07002194 return true;
2195 }
2196 return canProjectSecureVideo(projection);
2197 }
2198
2199 private boolean canProjectSecureVideo(IMediaProjection projection) {
2200 if (projection != null) {
2201 try {
2202 if (projection.canProjectSecureVideo()){
2203 return true;
2204 }
2205 } catch (RemoteException e) {
2206 Slog.e(TAG, "Unable to query projection service for permissions", e);
2207 }
2208 }
2209 return mContext.checkCallingPermission(
2210 android.Manifest.permission.CAPTURE_SECURE_VIDEO_OUTPUT)
Michael Wright0ccc2b02014-07-24 18:20:41 -07002211 == PackageManager.PERMISSION_GRANTED;
Michael Wrightc39d47a2014-07-08 18:07:36 -07002212 }
Jeff Brown4ccb8232014-01-16 22:16:42 -08002213 }
2214
2215 private final class LocalService extends DisplayManagerInternal {
2216 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07002217 public void initPowerManagement(final DisplayPowerCallbacks callbacks, Handler handler,
Jeff Brownad9ef192014-04-08 17:26:30 -07002218 SensorManager sensorManager) {
2219 synchronized (mSyncRoot) {
Jeff Brown037c33e2014-04-09 00:31:55 -07002220 DisplayBlanker blanker = new DisplayBlanker() {
2221 @Override
Jeff Brown5d6443b2015-04-10 20:15:01 -07002222 public void requestDisplayState(int state, int brightness) {
Jeff Brown037c33e2014-04-09 00:31:55 -07002223 // The order of operations is important for legacy reasons.
2224 if (state == Display.STATE_OFF) {
Jeff Brown5d6443b2015-04-10 20:15:01 -07002225 requestGlobalDisplayStateInternal(state, brightness);
Jeff Brown037c33e2014-04-09 00:31:55 -07002226 }
2227
2228 callbacks.onDisplayStateChange(state);
2229
2230 if (state != Display.STATE_OFF) {
Jeff Brown5d6443b2015-04-10 20:15:01 -07002231 requestGlobalDisplayStateInternal(state, brightness);
Jeff Brown037c33e2014-04-09 00:31:55 -07002232 }
2233 }
2234 };
Jeff Brownad9ef192014-04-08 17:26:30 -07002235 mDisplayPowerController = new DisplayPowerController(
Jeff Brown037c33e2014-04-09 00:31:55 -07002236 mContext, callbacks, handler, sensorManager, blanker);
Jeff Brownad9ef192014-04-08 17:26:30 -07002237 }
Michael Wrighteef0e132017-11-21 17:57:52 +00002238
2239 mHandler.sendEmptyMessage(MSG_LOAD_BRIGHTNESS_CONFIGURATION);
Jeff Brownad9ef192014-04-08 17:26:30 -07002240 }
2241
2242 @Override
2243 public boolean requestPowerState(DisplayPowerRequest request,
2244 boolean waitForNegativeProximity) {
Michael Wrighteef0e132017-11-21 17:57:52 +00002245 synchronized (mSyncRoot) {
2246 return mDisplayPowerController.requestPowerState(request,
2247 waitForNegativeProximity);
2248 }
Jeff Brownad9ef192014-04-08 17:26:30 -07002249 }
2250
2251 @Override
2252 public boolean isProximitySensorAvailable() {
Michael Wrighteef0e132017-11-21 17:57:52 +00002253 synchronized (mSyncRoot) {
2254 return mDisplayPowerController.isProximitySensorAvailable();
2255 }
Jeff Brownad9ef192014-04-08 17:26:30 -07002256 }
2257
2258 @Override
Riddle Hsu654a6f92018-07-13 22:59:36 +08002259 public boolean screenshot(int displayId, Surface outSurface) {
2260 synchronized (mSyncRoot) {
2261 final LogicalDisplay display = mLogicalDisplays.get(displayId);
2262 if (display != null) {
2263 final DisplayDevice device = display.getPrimaryDisplayDeviceLocked();
2264 if (device != null) {
2265 final IBinder token = device.getDisplayTokenLocked();
2266 if (token != null) {
2267 SurfaceControl.screenshot(token, outSurface);
2268 return true;
2269 }
2270 }
2271 }
2272 }
2273 return false;
2274 }
2275
2276 @Override
Jeff Brown4ccb8232014-01-16 22:16:42 -08002277 public DisplayInfo getDisplayInfo(int displayId) {
2278 return getDisplayInfoInternal(displayId, Process.myUid());
2279 }
2280
2281 @Override
2282 public void registerDisplayTransactionListener(DisplayTransactionListener listener) {
2283 if (listener == null) {
2284 throw new IllegalArgumentException("listener must not be null");
2285 }
2286
2287 registerDisplayTransactionListenerInternal(listener);
2288 }
2289
2290 @Override
2291 public void unregisterDisplayTransactionListener(DisplayTransactionListener listener) {
2292 if (listener == null) {
2293 throw new IllegalArgumentException("listener must not be null");
2294 }
2295
2296 unregisterDisplayTransactionListenerInternal(listener);
2297 }
2298
2299 @Override
2300 public void setDisplayInfoOverrideFromWindowManager(int displayId, DisplayInfo info) {
2301 setDisplayInfoOverrideFromWindowManagerInternal(displayId, info);
2302 }
2303
2304 @Override
Andrii Kuliancd097992017-03-23 18:31:59 -07002305 public void getNonOverrideDisplayInfo(int displayId, DisplayInfo outInfo) {
2306 getNonOverrideDisplayInfoInternal(displayId, outInfo);
2307 }
2308
2309 @Override
Robert Carrae606b42018-02-15 15:36:23 -08002310 public void performTraversal(SurfaceControl.Transaction t) {
2311 performTraversalInternal(t);
Jeff Brown4ccb8232014-01-16 22:16:42 -08002312 }
2313
2314 @Override
Michael Wright3f145a22014-07-22 19:46:03 -07002315 public void setDisplayProperties(int displayId, boolean hasContent,
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002316 float requestedRefreshRate, int requestedMode, boolean inTraversal) {
2317 setDisplayPropertiesInternal(displayId, hasContent, requestedRefreshRate,
2318 requestedMode, inTraversal);
Jeff Brown4ccb8232014-01-16 22:16:42 -08002319 }
Filip Gruszczynskid2e86402015-02-19 13:05:03 -08002320
2321 @Override
2322 public void setDisplayOffsets(int displayId, int x, int y) {
2323 setDisplayOffsetsInternal(displayId, x, y);
2324 }
Andrii Kulianfb1bf692017-01-17 11:17:34 -08002325
2326 @Override
2327 public void setDisplayAccessUIDs(SparseArray<IntArray> newDisplayAccessUIDs) {
2328 setDisplayAccessUIDsInternal(newDisplayAccessUIDs);
2329 }
2330
2331 @Override
2332 public boolean isUidPresentOnDisplay(int uid, int displayId) {
2333 return isUidPresentOnDisplayInternal(uid, displayId);
2334 }
Kenny Guycfe7b702017-11-14 21:04:58 +00002335
2336 @Override
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00002337 public void persistBrightnessTrackerState() {
Michael Wright144aac92017-12-21 18:37:41 +00002338 synchronized (mSyncRoot) {
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00002339 mDisplayPowerController.persistBrightnessTrackerState();
Michael Wright144aac92017-12-21 18:37:41 +00002340 }
Kenny Guycfe7b702017-11-14 21:04:58 +00002341 }
Adrian Roose1d68cd2018-01-17 12:54:50 +01002342
2343 @Override
2344 public void onOverlayChanged() {
2345 synchronized (mSyncRoot) {
Adrian Roos898ec382018-01-17 12:54:50 +01002346 for (int i = 0; i < mDisplayDevices.size(); i++) {
2347 mDisplayDevices.get(i).onOverlayChangedLocked();
Adrian Roose1d68cd2018-01-17 12:54:50 +01002348 }
2349 }
2350 }
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07002351
2352 @Override
2353 public DisplayedContentSamplingAttributes getDisplayedContentSamplingAttributes(
2354 int displayId) {
2355 return getDisplayedContentSamplingAttributesInternal(displayId);
2356 }
2357
2358 @Override
2359 public boolean setDisplayedContentSamplingEnabled(
2360 int displayId, boolean enable, int componentMask, int maxFrames) {
2361 return setDisplayedContentSamplingEnabledInternal(
2362 displayId, enable, componentMask, maxFrames);
2363 }
2364
2365 @Override
2366 public DisplayedContentSample getDisplayedContentSample(int displayId,
2367 long maxFrames, long timestamp) {
2368 return getDisplayedContentSampleInternal(displayId, maxFrames, timestamp);
2369 }
2370
Jeff Brown4ccb8232014-01-16 22:16:42 -08002371 }
Jeff Brownfa25bf52012-07-23 19:26:30 -07002372}