blob: b2509e908493e64ea907167ec8e373609f74c341 [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
Sam Lin4c3ac2b2019-02-18 04:50:26 -08001225 private void setDisplayScalingDisabledInternal(int displayId, boolean disable) {
1226 synchronized (mSyncRoot) {
1227 final LogicalDisplay display = mLogicalDisplays.get(displayId);
1228 if (display == null) {
1229 return;
1230 }
1231 if (display.isDisplayScalingDisabled() != disable) {
1232 if (DEBUG) {
1233 Slog.d(TAG, "Display " + displayId + " content scaling disabled = " + disable);
1234 }
1235 display.setDisplayScalingDisabledLocked(disable);
1236 scheduleTraversalLocked(false);
1237 }
1238 }
1239 }
1240
Andrii Kulianfb1bf692017-01-17 11:17:34 -08001241 // Updates the lists of UIDs that are present on displays.
1242 private void setDisplayAccessUIDsInternal(SparseArray<IntArray> newDisplayAccessUIDs) {
1243 synchronized (mSyncRoot) {
1244 mDisplayAccessUIDs.clear();
1245 for (int i = newDisplayAccessUIDs.size() - 1; i >= 0; i--) {
1246 mDisplayAccessUIDs.append(newDisplayAccessUIDs.keyAt(i),
1247 newDisplayAccessUIDs.valueAt(i));
1248 }
1249 }
1250 }
1251
1252 // Checks if provided UID's content is present on the display and UID has access to it.
1253 private boolean isUidPresentOnDisplayInternal(int uid, int displayId) {
1254 synchronized (mSyncRoot) {
1255 final IntArray displayUIDs = mDisplayAccessUIDs.get(displayId);
1256 return displayUIDs != null && displayUIDs.indexOf(uid) != -1;
1257 }
1258 }
1259
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001260 @Nullable
1261 private IBinder getDisplayToken(int displayId) {
1262 synchronized (mSyncRoot) {
1263 final LogicalDisplay display = mLogicalDisplays.get(displayId);
1264 if (display != null) {
1265 final DisplayDevice device = display.getPrimaryDisplayDeviceLocked();
1266 if (device != null) {
1267 return device.getDisplayTokenLocked();
1268 }
1269 }
1270 }
1271
1272 return null;
1273 }
1274
1275 private boolean screenshotInternal(int displayId, Surface outSurface) {
1276 final IBinder token = getDisplayToken(displayId);
1277 if (token == null) {
1278 return false;
1279 }
1280 SurfaceControl.screenshot(token, outSurface);
1281 return true;
1282 }
1283
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001284 @VisibleForTesting
1285 DisplayedContentSamplingAttributes getDisplayedContentSamplingAttributesInternal(
1286 int displayId) {
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001287 final IBinder token = getDisplayToken(displayId);
1288 if (token == null) {
1289 return null;
1290 }
1291 return SurfaceControl.getDisplayedContentSamplingAttributes(token);
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001292 }
1293
1294 @VisibleForTesting
1295 boolean setDisplayedContentSamplingEnabledInternal(
1296 int displayId, boolean enable, int componentMask, int maxFrames) {
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001297 final IBinder token = getDisplayToken(displayId);
1298 if (token == null) {
1299 return false;
1300 }
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001301 return SurfaceControl.setDisplayedContentSamplingEnabled(
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001302 token, enable, componentMask, maxFrames);
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001303 }
1304
1305 @VisibleForTesting
1306 DisplayedContentSample getDisplayedContentSampleInternal(int displayId,
1307 long maxFrames, long timestamp) {
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001308 final IBinder token = getDisplayToken(displayId);
1309 if (token == null) {
1310 return null;
1311 }
1312 return SurfaceControl.getDisplayedContentSample(token, maxFrames, timestamp);
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001313 }
1314
Jeff Brownd728bf52012-09-08 18:05:28 -07001315 private void clearViewportsLocked() {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001316 mViewports.clear();
Craig Mautner722285e2012-09-07 13:55:58 -07001317 }
1318
Robert Carrae606b42018-02-15 15:36:23 -08001319 private void configureDisplayLocked(SurfaceControl.Transaction t, DisplayDevice device) {
Jeff Brownd14c8c92014-01-07 18:13:09 -08001320 final DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
1321 final boolean ownContent = (info.flags & DisplayDeviceInfo.FLAG_OWN_CONTENT_ONLY) != 0;
Jeff Browna506a6e2013-06-04 00:02:38 -07001322
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001323 // Find the logical display that the display device is showing.
Jeff Brownd14c8c92014-01-07 18:13:09 -08001324 // Certain displays only ever show their own content.
Craig Mautner722285e2012-09-07 13:55:58 -07001325 LogicalDisplay display = findLogicalDisplayForDeviceLocked(device);
Jeff Brownd14c8c92014-01-07 18:13:09 -08001326 if (!ownContent) {
Jeff Browna506a6e2013-06-04 00:02:38 -07001327 if (display != null && !display.hasContentLocked()) {
1328 // If the display does not have any content of its own, then
1329 // automatically mirror the default logical display contents.
1330 display = null;
1331 }
1332 if (display == null) {
1333 display = mLogicalDisplays.get(Display.DEFAULT_DISPLAY);
1334 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001335 }
1336
1337 // Apply the logical display configuration to the display device.
1338 if (display == null) {
1339 // TODO: no logical display for the device, blank it
Jeff Brownd728bf52012-09-08 18:05:28 -07001340 Slog.w(TAG, "Missing logical display to use for physical display device: "
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001341 + device.getDisplayDeviceInfoLocked());
Jeff Brownd728bf52012-09-08 18:05:28 -07001342 return;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001343 }
Robert Carrae606b42018-02-15 15:36:23 -08001344 display.configureDisplayLocked(t, device, info.state == Display.STATE_OFF);
Arthur Hung41e81e72018-10-31 18:04:56 +08001345 final int viewportType;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001346 // Update the corresponding viewport.
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001347 if ((info.flags & DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY) != 0) {
Arthur Hung41e81e72018-10-31 18:04:56 +08001348 viewportType = VIEWPORT_INTERNAL;
1349 } else if (info.touch == DisplayDeviceInfo.TOUCH_EXTERNAL) {
1350 viewportType = VIEWPORT_EXTERNAL;
1351 } else if (info.touch == DisplayDeviceInfo.TOUCH_VIRTUAL
1352 && !TextUtils.isEmpty(info.uniqueId)) {
1353 viewportType = VIEWPORT_VIRTUAL;
1354 } else {
Arthur Hung46c4e582019-02-12 15:55:28 +08001355 Slog.i(TAG, "Display " + info + " does not support input device matching.");
Arthur Hung41e81e72018-10-31 18:04:56 +08001356 return;
Jeff Brownd728bf52012-09-08 18:05:28 -07001357 }
Santos Cordonee8931e2017-04-05 10:31:15 -07001358
Arthur Hung41e81e72018-10-31 18:04:56 +08001359 populateViewportLocked(viewportType, display.getDisplayIdLocked(), device, info.uniqueId);
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001360 }
1361
1362 /**
1363 * Get internal or external viewport. Create it if does not currently exist.
1364 * @param viewportType - either INTERNAL or EXTERNAL
1365 * @return the viewport with the requested type
1366 */
Arthur Hung41e81e72018-10-31 18:04:56 +08001367 private DisplayViewport getViewportLocked(int viewportType, String uniqueId) {
1368 if (viewportType != VIEWPORT_INTERNAL && viewportType != VIEWPORT_EXTERNAL
1369 && viewportType != VIEWPORT_VIRTUAL) {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001370 Slog.wtf(TAG, "Cannot call getViewportByTypeLocked for type "
1371 + DisplayViewport.typeToString(viewportType));
1372 return null;
1373 }
Arthur Hung41e81e72018-10-31 18:04:56 +08001374
1375 // Only allow a single INTERNAL or EXTERNAL viewport by forcing their uniqueIds
1376 // to be identical (in particular, empty).
1377 // TODO (b/116824030) allow multiple EXTERNAL viewports and remove this function.
1378 if (viewportType != VIEWPORT_VIRTUAL) {
1379 uniqueId = "";
1380 }
1381
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001382 DisplayViewport viewport;
1383 final int count = mViewports.size();
1384 for (int i = 0; i < count; i++) {
1385 viewport = mViewports.get(i);
Arthur Hung41e81e72018-10-31 18:04:56 +08001386 if (viewport.type == viewportType && uniqueId.equals(viewport.uniqueId)) {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001387 return viewport;
1388 }
1389 }
1390
Arthur Hung41e81e72018-10-31 18:04:56 +08001391 // Creates the viewport if none exists.
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001392 viewport = new DisplayViewport();
1393 viewport.type = viewportType;
Arthur Hung41e81e72018-10-31 18:04:56 +08001394 viewport.uniqueId = uniqueId;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001395 mViewports.add(viewport);
1396 return viewport;
1397 }
1398
Arthur Hung41e81e72018-10-31 18:04:56 +08001399 private void populateViewportLocked(int viewportType,
1400 int displayId, DisplayDevice device, String uniqueId) {
1401 final DisplayViewport viewport = getViewportLocked(viewportType, uniqueId);
Jeff Brownd728bf52012-09-08 18:05:28 -07001402 device.populateViewportLocked(viewport);
Arthur Hung41e81e72018-10-31 18:04:56 +08001403 viewport.valid = true;
1404 viewport.displayId = displayId;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001405 }
1406
1407 private LogicalDisplay findLogicalDisplayForDeviceLocked(DisplayDevice device) {
1408 final int count = mLogicalDisplays.size();
1409 for (int i = 0; i < count; i++) {
1410 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1411 if (display.getPrimaryDisplayDeviceLocked() == device) {
1412 return display;
1413 }
1414 }
1415 return null;
1416 }
1417
Jeff Brownbd6e1502012-08-28 03:27:37 -07001418 private void sendDisplayEventLocked(int displayId, int event) {
1419 Message msg = mHandler.obtainMessage(MSG_DELIVER_DISPLAY_EVENT, displayId, event);
1420 mHandler.sendMessage(msg);
1421 }
1422
Robert Carrae606b42018-02-15 15:36:23 -08001423 // Requests that performTraversals be called at a
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001424 // later time to apply changes to surfaces and displays.
Craig Mautner65d11b32012-10-01 13:59:52 -07001425 private void scheduleTraversalLocked(boolean inTraversal) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001426 if (!mPendingTraversal && mWindowManagerInternal != null) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001427 mPendingTraversal = true;
Craig Mautner65d11b32012-10-01 13:59:52 -07001428 if (!inTraversal) {
1429 mHandler.sendEmptyMessage(MSG_REQUEST_TRAVERSAL);
1430 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001431 }
1432 }
1433
1434 // Runs on Handler thread.
1435 // Delivers display event notifications to callbacks.
Jeff Brownbd6e1502012-08-28 03:27:37 -07001436 private void deliverDisplayEvent(int displayId, int event) {
1437 if (DEBUG) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001438 Slog.d(TAG, "Delivering display event: displayId="
1439 + displayId + ", event=" + event);
Jeff Brownfa25bf52012-07-23 19:26:30 -07001440 }
Jeff Brownfa25bf52012-07-23 19:26:30 -07001441
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001442 // Grab the lock and copy the callbacks.
Jeff Brownbd6e1502012-08-28 03:27:37 -07001443 final int count;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001444 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -07001445 count = mCallbacks.size();
1446 mTempCallbacks.clear();
1447 for (int i = 0; i < count; i++) {
1448 mTempCallbacks.add(mCallbacks.valueAt(i));
Craig Mautner4f67ba62012-08-02 11:23:00 -07001449 }
Jeff Brownbd6e1502012-08-28 03:27:37 -07001450 }
Craig Mautner4f67ba62012-08-02 11:23:00 -07001451
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001452 // After releasing the lock, send the notifications out.
Jeff Brownbd6e1502012-08-28 03:27:37 -07001453 for (int i = 0; i < count; i++) {
1454 mTempCallbacks.get(i).notifyDisplayEventAsync(displayId, event);
1455 }
1456 mTempCallbacks.clear();
Craig Mautner4f67ba62012-08-02 11:23:00 -07001457 }
1458
Michael Wrightc39d47a2014-07-08 18:07:36 -07001459 private IMediaProjectionManager getProjectionService() {
1460 if (mProjectionService == null) {
1461 IBinder b = ServiceManager.getService(Context.MEDIA_PROJECTION_SERVICE);
1462 mProjectionService = IMediaProjectionManager.Stub.asInterface(b);
1463 }
1464 return mProjectionService;
1465 }
1466
Michael Wrighteef0e132017-11-21 17:57:52 +00001467 private UserManager getUserManager() {
1468 return mContext.getSystemService(UserManager.class);
1469 }
1470
Jeff Brown4ccb8232014-01-16 22:16:42 -08001471 private void dumpInternal(PrintWriter pw) {
Jeff Brownbd6e1502012-08-28 03:27:37 -07001472 pw.println("DISPLAY MANAGER (dumpsys display)");
Jeff Brownfa25bf52012-07-23 19:26:30 -07001473
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001474 synchronized (mSyncRoot) {
Jeff Brown9e316a12012-10-08 19:17:06 -07001475 pw.println(" mOnlyCode=" + mOnlyCore);
1476 pw.println(" mSafeMode=" + mSafeMode);
1477 pw.println(" mPendingTraversal=" + mPendingTraversal);
Jeff Brown037c33e2014-04-09 00:31:55 -07001478 pw.println(" mGlobalDisplayState=" + Display.stateToString(mGlobalDisplayState));
Jeff Brown9e316a12012-10-08 19:17:06 -07001479 pw.println(" mNextNonDefaultDisplayId=" + mNextNonDefaultDisplayId);
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001480 pw.println(" mViewports=" + mViewports);
Damien Bargiacchi4364bbf2016-11-01 21:44:20 -07001481 pw.println(" mDefaultDisplayDefaultColorMode=" + mDefaultDisplayDefaultColorMode);
Jeff Brown27f1d672012-10-17 18:32:34 -07001482 pw.println(" mSingleDisplayDemoMode=" + mSingleDisplayDemoMode);
Jeff Brownce468a32013-11-21 16:42:03 -08001483 pw.println(" mWifiDisplayScanRequestCount=" + mWifiDisplayScanRequestCount);
Michael Wrighteedcbf12017-08-16 23:14:54 +01001484 pw.println(" mStableDisplaySize=" + mStableDisplaySize);
1485
Jeff Brown9e316a12012-10-08 19:17:06 -07001486
Jeff Brownbd6e1502012-08-28 03:27:37 -07001487 IndentingPrintWriter ipw = new IndentingPrintWriter(pw, " ");
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001488 ipw.increaseIndent();
Jeff Brownbd6e1502012-08-28 03:27:37 -07001489
1490 pw.println();
1491 pw.println("Display Adapters: size=" + mDisplayAdapters.size());
Jeff Brown848c2dc2012-08-19 20:18:08 -07001492 for (DisplayAdapter adapter : mDisplayAdapters) {
Jeff Brownbd6e1502012-08-28 03:27:37 -07001493 pw.println(" " + adapter.getName());
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001494 adapter.dumpLocked(ipw);
Jeff Brown848c2dc2012-08-19 20:18:08 -07001495 }
Craig Mautner9de49362012-08-02 14:30:30 -07001496
Jeff Brownbd6e1502012-08-28 03:27:37 -07001497 pw.println();
1498 pw.println("Display Devices: size=" + mDisplayDevices.size());
1499 for (DisplayDevice device : mDisplayDevices) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001500 pw.println(" " + device.getDisplayDeviceInfoLocked());
1501 device.dumpLocked(ipw);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001502 }
1503
1504 final int logicalDisplayCount = mLogicalDisplays.size();
1505 pw.println();
1506 pw.println("Logical Displays: size=" + logicalDisplayCount);
1507 for (int i = 0; i < logicalDisplayCount; i++) {
1508 int displayId = mLogicalDisplays.keyAt(i);
1509 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1510 pw.println(" Display " + displayId + ":");
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001511 display.dumpLocked(ipw);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001512 }
Jeff Brownce468a32013-11-21 16:42:03 -08001513
1514 final int callbackCount = mCallbacks.size();
1515 pw.println();
1516 pw.println("Callbacks: size=" + callbackCount);
1517 for (int i = 0; i < callbackCount; i++) {
1518 CallbackRecord callback = mCallbacks.valueAt(i);
1519 pw.println(" " + i + ": mPid=" + callback.mPid
1520 + ", mWifiDisplayScanRequested=" + callback.mWifiDisplayScanRequested);
1521 }
Jeff Brownad9ef192014-04-08 17:26:30 -07001522
1523 if (mDisplayPowerController != null) {
1524 mDisplayPowerController.dump(pw);
1525 }
Michael Wright1c9977b2016-07-12 13:30:10 -07001526
1527 pw.println();
1528 mPersistentDataStore.dump(pw);
Daniel Solomon8b72c5b2018-11-25 11:07:13 -08001529
1530 final ColorDisplayServiceInternal cds = LocalServices.getService(
1531 ColorDisplayServiceInternal.class);
1532 if (cds != null) {
1533 pw.println();
1534 cds.dump(pw);
1535 }
Jeff Brownbd6e1502012-08-28 03:27:37 -07001536 }
1537 }
1538
Dan Gittik122df862018-03-28 16:59:22 +01001539 private static float[] getFloatArray(TypedArray array) {
1540 int length = array.length();
1541 float[] floatArray = new float[length];
1542 for (int i = 0; i < length; i++) {
1543 floatArray[i] = array.getFloat(i, Float.NaN);
1544 }
1545 array.recycle();
1546 return floatArray;
1547 }
1548
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001549 /**
1550 * This is the object that everything in the display manager locks on.
1551 * We make it an inner class within the {@link DisplayManagerService} to so that it is
1552 * clear that the object belongs to the display manager service and that it is
1553 * a unique object with a special purpose.
1554 */
1555 public static final class SyncRoot {
1556 }
1557
Santos Cordonee8931e2017-04-05 10:31:15 -07001558 @VisibleForTesting
1559 static class Injector {
1560 VirtualDisplayAdapter getVirtualDisplayAdapter(SyncRoot syncRoot, Context context,
1561 Handler handler, DisplayAdapter.Listener displayAdapterListener) {
1562 return new VirtualDisplayAdapter(syncRoot, context, handler, displayAdapterListener);
1563 }
Santos Cordonc22c5632017-06-21 16:03:49 -07001564
1565 long getDefaultDisplayDelayTimeout() {
1566 return WAIT_FOR_DEFAULT_DISPLAY_TIMEOUT;
1567 }
Santos Cordonee8931e2017-04-05 10:31:15 -07001568 }
1569
Alex Sakhartchouk879d24f2017-06-20 22:01:19 -04001570 @VisibleForTesting
1571 DisplayDeviceInfo getDisplayDeviceInfoInternal(int displayId) {
1572 synchronized (mSyncRoot) {
1573 LogicalDisplay display = mLogicalDisplays.get(displayId);
1574 if (display != null) {
1575 DisplayDevice displayDevice = display.getPrimaryDisplayDeviceLocked();
1576 return displayDevice.getDisplayDeviceInfoLocked();
1577 }
1578 return null;
1579 }
1580 }
1581
Jeff Brownbd6e1502012-08-28 03:27:37 -07001582 private final class DisplayManagerHandler extends Handler {
1583 public DisplayManagerHandler(Looper looper) {
1584 super(looper, null, true /*async*/);
Jeff Brown848c2dc2012-08-19 20:18:08 -07001585 }
Jeff Brownbf5740e2012-08-19 23:20:02 -07001586
Jeff Brownbd6e1502012-08-28 03:27:37 -07001587 @Override
1588 public void handleMessage(Message msg) {
1589 switch (msg.what) {
Santos Cordonc22c5632017-06-21 16:03:49 -07001590 case MSG_REGISTER_DEFAULT_DISPLAY_ADAPTERS:
1591 registerDefaultDisplayAdapters();
Jeff Brownbd6e1502012-08-28 03:27:37 -07001592 break;
1593
1594 case MSG_REGISTER_ADDITIONAL_DISPLAY_ADAPTERS:
1595 registerAdditionalDisplayAdapters();
1596 break;
1597
1598 case MSG_DELIVER_DISPLAY_EVENT:
1599 deliverDisplayEvent(msg.arg1, msg.arg2);
1600 break;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001601
1602 case MSG_REQUEST_TRAVERSAL:
Jeff Brown4ccb8232014-01-16 22:16:42 -08001603 mWindowManagerInternal.requestTraversalFromDisplayManager();
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001604 break;
Jeff Brownd728bf52012-09-08 18:05:28 -07001605
1606 case MSG_UPDATE_VIEWPORT: {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001607 final boolean changed;
Jeff Brownd728bf52012-09-08 18:05:28 -07001608 synchronized (mSyncRoot) {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001609 changed = !mTempViewports.equals(mViewports);
1610 if (changed) {
1611 mTempViewports.clear();
1612 for (DisplayViewport d : mViewports) {
1613 mTempViewports.add(d.makeCopy());
1614 }
Santos Cordonee8931e2017-04-05 10:31:15 -07001615 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001616 }
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001617 if (changed) {
1618 mInputManagerInternal.setDisplayViewports(mTempViewports);
1619 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001620 break;
1621 }
Kenny Guy22bd0442017-10-26 00:15:54 +01001622
Michael Wrighteef0e132017-11-21 17:57:52 +00001623 case MSG_LOAD_BRIGHTNESS_CONFIGURATION:
1624 loadBrightnessConfiguration();
1625 break;
Jeff Brownbd6e1502012-08-28 03:27:37 -07001626 }
1627 }
1628 }
1629
1630 private final class DisplayAdapterListener implements DisplayAdapter.Listener {
1631 @Override
1632 public void onDisplayDeviceEvent(DisplayDevice device, int event) {
1633 switch (event) {
1634 case DisplayAdapter.DISPLAY_DEVICE_EVENT_ADDED:
1635 handleDisplayDeviceAdded(device);
1636 break;
1637
1638 case DisplayAdapter.DISPLAY_DEVICE_EVENT_CHANGED:
1639 handleDisplayDeviceChanged(device);
1640 break;
1641
1642 case DisplayAdapter.DISPLAY_DEVICE_EVENT_REMOVED:
1643 handleDisplayDeviceRemoved(device);
1644 break;
1645 }
1646 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001647
1648 @Override
1649 public void onTraversalRequested() {
1650 synchronized (mSyncRoot) {
Craig Mautner65d11b32012-10-01 13:59:52 -07001651 scheduleTraversalLocked(false);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001652 }
1653 }
Jeff Brownbd6e1502012-08-28 03:27:37 -07001654 }
1655
1656 private final class CallbackRecord implements DeathRecipient {
Jeff Brownce468a32013-11-21 16:42:03 -08001657 public final int mPid;
Jeff Brownbd6e1502012-08-28 03:27:37 -07001658 private final IDisplayManagerCallback mCallback;
1659
Jeff Brownce468a32013-11-21 16:42:03 -08001660 public boolean mWifiDisplayScanRequested;
1661
Jeff Brownbd6e1502012-08-28 03:27:37 -07001662 public CallbackRecord(int pid, IDisplayManagerCallback callback) {
1663 mPid = pid;
1664 mCallback = callback;
1665 }
1666
1667 @Override
1668 public void binderDied() {
1669 if (DEBUG) {
1670 Slog.d(TAG, "Display listener for pid " + mPid + " died.");
1671 }
Jeff Brownce468a32013-11-21 16:42:03 -08001672 onCallbackDied(this);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001673 }
1674
1675 public void notifyDisplayEventAsync(int displayId, int event) {
1676 try {
1677 mCallback.onDisplayEvent(displayId, event);
1678 } catch (RemoteException ex) {
1679 Slog.w(TAG, "Failed to notify process "
1680 + mPid + " that displays changed, assuming it died.", ex);
1681 binderDied();
1682 }
1683 }
1684 }
Jeff Brown4ccb8232014-01-16 22:16:42 -08001685
Santos Cordonee8931e2017-04-05 10:31:15 -07001686 @VisibleForTesting
1687 final class BinderService extends IDisplayManager.Stub {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001688 /**
1689 * Returns information about the specified logical display.
1690 *
1691 * @param displayId The logical display id.
1692 * @return The logical display info, or null if the display does not exist. The
1693 * returned object must be treated as immutable.
1694 */
1695 @Override // Binder call
1696 public DisplayInfo getDisplayInfo(int displayId) {
1697 final int callingUid = Binder.getCallingUid();
1698 final long token = Binder.clearCallingIdentity();
1699 try {
1700 return getDisplayInfoInternal(displayId, callingUid);
1701 } finally {
1702 Binder.restoreCallingIdentity(token);
1703 }
1704 }
1705
1706 /**
1707 * Returns the list of all display ids.
1708 */
1709 @Override // Binder call
1710 public int[] getDisplayIds() {
1711 final int callingUid = Binder.getCallingUid();
1712 final long token = Binder.clearCallingIdentity();
1713 try {
1714 return getDisplayIdsInternal(callingUid);
1715 } finally {
1716 Binder.restoreCallingIdentity(token);
1717 }
1718 }
1719
Michael Wrighteedcbf12017-08-16 23:14:54 +01001720 /**
1721 * Returns the stable device display size, in pixels.
1722 */
1723 @Override // Binder call
1724 public Point getStableDisplaySize() {
1725 final long token = Binder.clearCallingIdentity();
1726 try {
1727 return getStableDisplaySizeInternal();
1728 } finally {
1729 Binder.restoreCallingIdentity(token);
1730 }
1731 }
1732
Jeff Brown4ccb8232014-01-16 22:16:42 -08001733 @Override // Binder call
1734 public void registerCallback(IDisplayManagerCallback callback) {
1735 if (callback == null) {
1736 throw new IllegalArgumentException("listener must not be null");
1737 }
1738
1739 final int callingPid = Binder.getCallingPid();
1740 final long token = Binder.clearCallingIdentity();
1741 try {
1742 registerCallbackInternal(callback, callingPid);
1743 } finally {
1744 Binder.restoreCallingIdentity(token);
1745 }
1746 }
1747
1748 @Override // Binder call
1749 public void startWifiDisplayScan() {
1750 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1751 "Permission required to start wifi display scans");
1752
1753 final int callingPid = Binder.getCallingPid();
1754 final long token = Binder.clearCallingIdentity();
1755 try {
1756 startWifiDisplayScanInternal(callingPid);
1757 } finally {
1758 Binder.restoreCallingIdentity(token);
1759 }
1760 }
1761
1762 @Override // Binder call
1763 public void stopWifiDisplayScan() {
1764 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1765 "Permission required to stop wifi display scans");
1766
1767 final int callingPid = Binder.getCallingPid();
1768 final long token = Binder.clearCallingIdentity();
1769 try {
1770 stopWifiDisplayScanInternal(callingPid);
1771 } finally {
1772 Binder.restoreCallingIdentity(token);
1773 }
1774 }
1775
1776 @Override // Binder call
1777 public void connectWifiDisplay(String address) {
1778 if (address == null) {
1779 throw new IllegalArgumentException("address must not be null");
1780 }
1781 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1782 "Permission required to connect to a wifi display");
1783
1784 final long token = Binder.clearCallingIdentity();
1785 try {
1786 connectWifiDisplayInternal(address);
1787 } finally {
1788 Binder.restoreCallingIdentity(token);
1789 }
1790 }
1791
1792 @Override // Binder call
1793 public void disconnectWifiDisplay() {
1794 // This request does not require special permissions.
1795 // Any app can request disconnection from the currently active wifi display.
1796 // This exception should no longer be needed once wifi display control moves
1797 // to the media router service.
1798
1799 final long token = Binder.clearCallingIdentity();
1800 try {
1801 disconnectWifiDisplayInternal();
1802 } finally {
1803 Binder.restoreCallingIdentity(token);
1804 }
1805 }
1806
1807 @Override // Binder call
1808 public void renameWifiDisplay(String address, String alias) {
1809 if (address == null) {
1810 throw new IllegalArgumentException("address must not be null");
1811 }
1812 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1813 "Permission required to rename to a wifi display");
1814
1815 final long token = Binder.clearCallingIdentity();
1816 try {
1817 renameWifiDisplayInternal(address, alias);
1818 } finally {
1819 Binder.restoreCallingIdentity(token);
1820 }
1821 }
1822
1823 @Override // Binder call
1824 public void forgetWifiDisplay(String address) {
1825 if (address == null) {
1826 throw new IllegalArgumentException("address must not be null");
1827 }
1828 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1829 "Permission required to forget to a wifi display");
1830
1831 final long token = Binder.clearCallingIdentity();
1832 try {
1833 forgetWifiDisplayInternal(address);
1834 } finally {
1835 Binder.restoreCallingIdentity(token);
1836 }
1837 }
1838
1839 @Override // Binder call
1840 public void pauseWifiDisplay() {
1841 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1842 "Permission required to pause a wifi display session");
1843
1844 final long token = Binder.clearCallingIdentity();
1845 try {
1846 pauseWifiDisplayInternal();
1847 } finally {
1848 Binder.restoreCallingIdentity(token);
1849 }
1850 }
1851
1852 @Override // Binder call
1853 public void resumeWifiDisplay() {
1854 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1855 "Permission required to resume a wifi display session");
1856
1857 final long token = Binder.clearCallingIdentity();
1858 try {
1859 resumeWifiDisplayInternal();
1860 } finally {
1861 Binder.restoreCallingIdentity(token);
1862 }
1863 }
1864
1865 @Override // Binder call
1866 public WifiDisplayStatus getWifiDisplayStatus() {
1867 // This request does not require special permissions.
1868 // Any app can get information about available wifi displays.
1869
1870 final long token = Binder.clearCallingIdentity();
1871 try {
1872 return getWifiDisplayStatusInternal();
1873 } finally {
1874 Binder.restoreCallingIdentity(token);
1875 }
1876 }
1877
1878 @Override // Binder call
Michael Wright1c9977b2016-07-12 13:30:10 -07001879 public void requestColorMode(int displayId, int colorMode) {
Michael Wright58e829f2015-09-15 00:13:26 +01001880 mContext.enforceCallingOrSelfPermission(
Michael Wright1c9977b2016-07-12 13:30:10 -07001881 Manifest.permission.CONFIGURE_DISPLAY_COLOR_MODE,
1882 "Permission required to change the display color mode");
Michael Wright58e829f2015-09-15 00:13:26 +01001883 final long token = Binder.clearCallingIdentity();
1884 try {
Michael Wright1c9977b2016-07-12 13:30:10 -07001885 requestColorModeInternal(displayId, colorMode);
Michael Wright58e829f2015-09-15 00:13:26 +01001886 } finally {
1887 Binder.restoreCallingIdentity(token);
1888 }
1889 }
1890
1891 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07001892 public int createVirtualDisplay(IVirtualDisplayCallback callback,
Michael Wrightc39d47a2014-07-08 18:07:36 -07001893 IMediaProjection projection, String packageName, String name,
Santos Cordonee8931e2017-04-05 10:31:15 -07001894 int width, int height, int densityDpi, Surface surface, int flags,
1895 String uniqueId) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001896 final int callingUid = Binder.getCallingUid();
1897 if (!validatePackageName(callingUid, packageName)) {
1898 throw new SecurityException("packageName must match the calling uid");
1899 }
Michael Wright75ee9fc2014-09-01 19:55:22 -07001900 if (callback == null) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001901 throw new IllegalArgumentException("appToken must not be null");
1902 }
1903 if (TextUtils.isEmpty(name)) {
1904 throw new IllegalArgumentException("name must be non-null and non-empty");
1905 }
1906 if (width <= 0 || height <= 0 || densityDpi <= 0) {
1907 throw new IllegalArgumentException("width, height, and densityDpi must be "
1908 + "greater than 0");
1909 }
Pablo Ceballoseb3370d2016-08-31 15:00:17 -07001910 if (surface != null && surface.isSingleBuffered()) {
Pablo Ceballosaff2f942016-07-29 14:49:55 -07001911 throw new IllegalArgumentException("Surface can't be single-buffered");
1912 }
Michael Wrightc39d47a2014-07-08 18:07:36 -07001913
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001914 if ((flags & VIRTUAL_DISPLAY_FLAG_PUBLIC) != 0) {
1915 flags |= VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR;
1916
1917 // Public displays can't be allowed to show content when locked.
Andrii Kulian7211d2e2017-01-27 15:58:05 -08001918 if ((flags & VIRTUAL_DISPLAY_FLAG_CAN_SHOW_WITH_INSECURE_KEYGUARD) != 0) {
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001919 throw new IllegalArgumentException(
1920 "Public display must not be marked as SHOW_WHEN_LOCKED_INSECURE");
1921 }
Michael Wright6720be42014-07-29 19:14:16 -07001922 }
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001923 if ((flags & VIRTUAL_DISPLAY_FLAG_OWN_CONTENT_ONLY) != 0) {
1924 flags &= ~VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR;
Michael Wright6720be42014-07-29 19:14:16 -07001925 }
1926
Michael Wrightc39d47a2014-07-08 18:07:36 -07001927 if (projection != null) {
1928 try {
1929 if (!getProjectionService().isValidMediaProjection(projection)) {
1930 throw new SecurityException("Invalid media projection");
1931 }
Michael Wright6720be42014-07-29 19:14:16 -07001932 flags = projection.applyVirtualDisplayFlags(flags);
Michael Wrightc39d47a2014-07-08 18:07:36 -07001933 } catch (RemoteException e) {
Michael Wright6720be42014-07-29 19:14:16 -07001934 throw new SecurityException("unable to validate media projection or flags");
Michael Wrightc39d47a2014-07-08 18:07:36 -07001935 }
1936 }
1937
Michael Wright6720be42014-07-29 19:14:16 -07001938 if (callingUid != Process.SYSTEM_UID &&
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001939 (flags & VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR) != 0) {
Michael Wrightc39d47a2014-07-08 18:07:36 -07001940 if (!canProjectVideo(projection)) {
1941 throw new SecurityException("Requires CAPTURE_VIDEO_OUTPUT or "
1942 + "CAPTURE_SECURE_VIDEO_OUTPUT permission, or an appropriate "
1943 + "MediaProjection token in order to create a screen sharing virtual "
1944 + "display.");
1945 }
1946 }
Santos Cordonb6992f22018-01-30 14:51:20 -08001947 if (callingUid != Process.SYSTEM_UID && (flags & VIRTUAL_DISPLAY_FLAG_SECURE) != 0) {
Michael Wrightc39d47a2014-07-08 18:07:36 -07001948 if (!canProjectSecureVideo(projection)) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001949 throw new SecurityException("Requires CAPTURE_SECURE_VIDEO_OUTPUT "
Michael Wrightc39d47a2014-07-08 18:07:36 -07001950 + "or an appropriate MediaProjection token to create a "
1951 + "secure virtual display.");
Jeff Brown4ccb8232014-01-16 22:16:42 -08001952 }
1953 }
1954
1955 final long token = Binder.clearCallingIdentity();
1956 try {
Santos Cordonee8931e2017-04-05 10:31:15 -07001957 return createVirtualDisplayInternal(callback, projection, callingUid, packageName,
1958 name, width, height, densityDpi, surface, flags, uniqueId);
Jeff Brown4ccb8232014-01-16 22:16:42 -08001959 } finally {
1960 Binder.restoreCallingIdentity(token);
1961 }
1962 }
1963
1964 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07001965 public void resizeVirtualDisplay(IVirtualDisplayCallback callback,
Michael Wright01e840f2014-06-26 16:03:25 -07001966 int width, int height, int densityDpi) {
1967 final long token = Binder.clearCallingIdentity();
1968 try {
Michael Wright75ee9fc2014-09-01 19:55:22 -07001969 resizeVirtualDisplayInternal(callback.asBinder(), width, height, densityDpi);
Michael Wright01e840f2014-06-26 16:03:25 -07001970 } finally {
1971 Binder.restoreCallingIdentity(token);
1972 }
1973 }
1974
1975 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07001976 public void setVirtualDisplaySurface(IVirtualDisplayCallback callback, Surface surface) {
Pablo Ceballoseb3370d2016-08-31 15:00:17 -07001977 if (surface != null && surface.isSingleBuffered()) {
1978 throw new IllegalArgumentException("Surface can't be single-buffered");
1979 }
Jeff Brown92207df2014-04-16 13:16:07 -07001980 final long token = Binder.clearCallingIdentity();
1981 try {
Michael Wright75ee9fc2014-09-01 19:55:22 -07001982 setVirtualDisplaySurfaceInternal(callback.asBinder(), surface);
Jeff Brown92207df2014-04-16 13:16:07 -07001983 } finally {
1984 Binder.restoreCallingIdentity(token);
1985 }
1986 }
1987
1988 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07001989 public void releaseVirtualDisplay(IVirtualDisplayCallback callback) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001990 final long token = Binder.clearCallingIdentity();
1991 try {
Michael Wright75ee9fc2014-09-01 19:55:22 -07001992 releaseVirtualDisplayInternal(callback.asBinder());
Jeff Brown4ccb8232014-01-16 22:16:42 -08001993 } finally {
1994 Binder.restoreCallingIdentity(token);
1995 }
1996 }
1997
1998 @Override // Binder call
chaviwda4c6942018-11-07 15:52:56 -08001999 public void setVirtualDisplayState(IVirtualDisplayCallback callback, boolean isOn) {
2000 final long token = Binder.clearCallingIdentity();
2001 try {
2002 setVirtualDisplayStateInternal(callback.asBinder(), isOn);
2003 } finally {
2004 Binder.restoreCallingIdentity(token);
2005 }
2006 }
2007
2008 @Override // Binder call
Jeff Brown4ccb8232014-01-16 22:16:42 -08002009 public void dump(FileDescriptor fd, final PrintWriter pw, String[] args) {
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -06002010 if (!DumpUtils.checkDumpPermission(mContext, TAG, pw)) return;
Jeff Brown4ccb8232014-01-16 22:16:42 -08002011
2012 final long token = Binder.clearCallingIdentity();
2013 try {
2014 dumpInternal(pw);
2015 } finally {
2016 Binder.restoreCallingIdentity(token);
2017 }
2018 }
2019
Kenny Guy22bd0442017-10-26 00:15:54 +01002020 @Override // Binder call
Kenny Guy29aa30e2017-11-30 13:43:46 +00002021 public ParceledListSlice<BrightnessChangeEvent> getBrightnessEvents(String callingPackage) {
Kenny Guy22bd0442017-10-26 00:15:54 +01002022 mContext.enforceCallingOrSelfPermission(
2023 Manifest.permission.BRIGHTNESS_SLIDER_USAGE,
2024 "Permission to read brightness events.");
Kenny Guy29aa30e2017-11-30 13:43:46 +00002025
2026 final int callingUid = Binder.getCallingUid();
2027 AppOpsManager appOpsManager = mContext.getSystemService(AppOpsManager.class);
Jeff Sharkeyd9311192018-04-16 16:50:34 +00002028 final int mode = appOpsManager.noteOp(AppOpsManager.OP_GET_USAGE_STATS,
Kenny Guy29aa30e2017-11-30 13:43:46 +00002029 callingUid, callingPackage);
2030 final boolean hasUsageStats;
2031 if (mode == AppOpsManager.MODE_DEFAULT) {
2032 // The default behavior here is to check if PackageManager has given the app
2033 // permission.
2034 hasUsageStats = mContext.checkCallingPermission(
2035 Manifest.permission.PACKAGE_USAGE_STATS)
2036 == PackageManager.PERMISSION_GRANTED;
2037 } else {
2038 hasUsageStats = mode == AppOpsManager.MODE_ALLOWED;
2039 }
2040
2041 final int userId = UserHandle.getUserId(callingUid);
Kenny Guy22bd0442017-10-26 00:15:54 +01002042 final long token = Binder.clearCallingIdentity();
2043 try {
Michael Wright144aac92017-12-21 18:37:41 +00002044 synchronized (mSyncRoot) {
2045 return mDisplayPowerController.getBrightnessEvents(userId, hasUsageStats);
2046 }
Kenny Guy22bd0442017-10-26 00:15:54 +01002047 } finally {
2048 Binder.restoreCallingIdentity(token);
2049 }
2050 }
2051
Michael Wrighteef0e132017-11-21 17:57:52 +00002052 @Override // Binder call
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00002053 public ParceledListSlice<AmbientBrightnessDayStats> getAmbientBrightnessStats() {
2054 mContext.enforceCallingOrSelfPermission(
2055 Manifest.permission.ACCESS_AMBIENT_LIGHT_STATS,
2056 "Permission required to to access ambient light stats.");
2057 final int callingUid = Binder.getCallingUid();
2058 final int userId = UserHandle.getUserId(callingUid);
2059 final long token = Binder.clearCallingIdentity();
2060 try {
2061 synchronized (mSyncRoot) {
2062 return mDisplayPowerController.getAmbientBrightnessStats(userId);
2063 }
2064 } finally {
2065 Binder.restoreCallingIdentity(token);
2066 }
2067 }
2068
2069 @Override // Binder call
Michael Wrighteef0e132017-11-21 17:57:52 +00002070 public void setBrightnessConfigurationForUser(
Kenny Guy05ce8092018-01-17 13:44:20 +00002071 BrightnessConfiguration c, @UserIdInt int userId, String packageName) {
Michael Wrighteef0e132017-11-21 17:57:52 +00002072 mContext.enforceCallingOrSelfPermission(
2073 Manifest.permission.CONFIGURE_DISPLAY_BRIGHTNESS,
2074 "Permission required to change the display's brightness configuration");
2075 if (userId != UserHandle.getCallingUserId()) {
2076 mContext.enforceCallingOrSelfPermission(
2077 Manifest.permission.INTERACT_ACROSS_USERS,
2078 "Permission required to change the display brightness"
2079 + " configuration of another user");
2080 }
Kenny Guy05ce8092018-01-17 13:44:20 +00002081 if (packageName != null && !validatePackageName(getCallingUid(), packageName)) {
2082 packageName = null;
2083 }
Michael Wrighteef0e132017-11-21 17:57:52 +00002084 final long token = Binder.clearCallingIdentity();
2085 try {
Kenny Guy05ce8092018-01-17 13:44:20 +00002086 setBrightnessConfigurationForUserInternal(c, userId, packageName);
Michael Wrighteef0e132017-11-21 17:57:52 +00002087 } finally {
2088 Binder.restoreCallingIdentity(token);
2089 }
2090 }
2091
Michael Wrightd8460232018-01-16 18:04:59 +00002092 @Override // Binder call
Kenny Guy6d1009f2018-03-14 14:28:23 +00002093 public BrightnessConfiguration getBrightnessConfigurationForUser(int userId) {
2094 mContext.enforceCallingOrSelfPermission(
2095 Manifest.permission.CONFIGURE_DISPLAY_BRIGHTNESS,
2096 "Permission required to read the display's brightness configuration");
2097 if (userId != UserHandle.getCallingUserId()) {
2098 mContext.enforceCallingOrSelfPermission(
2099 Manifest.permission.INTERACT_ACROSS_USERS,
2100 "Permission required to read the display brightness"
2101 + " configuration of another user");
2102 }
2103 final long token = Binder.clearCallingIdentity();
2104 try {
2105 final int userSerial = getUserManager().getUserSerialNumber(userId);
2106 synchronized (mSyncRoot) {
2107 BrightnessConfiguration config =
2108 mPersistentDataStore.getBrightnessConfiguration(userSerial);
2109 if (config == null) {
2110 config = mDisplayPowerController.getDefaultBrightnessConfiguration();
2111 }
2112 return config;
2113 }
2114 } finally {
2115 Binder.restoreCallingIdentity(token);
2116 }
2117 }
2118
2119 @Override // Binder call
2120 public BrightnessConfiguration getDefaultBrightnessConfiguration() {
2121 mContext.enforceCallingOrSelfPermission(
2122 Manifest.permission.CONFIGURE_DISPLAY_BRIGHTNESS,
2123 "Permission required to read the display's default brightness configuration");
2124 final long token = Binder.clearCallingIdentity();
2125 try {
2126 synchronized (mSyncRoot) {
2127 return mDisplayPowerController.getDefaultBrightnessConfiguration();
2128 }
2129 } finally {
2130 Binder.restoreCallingIdentity(token);
2131 }
2132 }
2133
2134 @Override // Binder call
Michael Wrightd8460232018-01-16 18:04:59 +00002135 public void setTemporaryBrightness(int brightness) {
2136 mContext.enforceCallingOrSelfPermission(
2137 Manifest.permission.CONTROL_DISPLAY_BRIGHTNESS,
2138 "Permission required to set the display's brightness");
2139 final long token = Binder.clearCallingIdentity();
2140 try {
2141 synchronized (mSyncRoot) {
2142 mDisplayPowerController.setTemporaryBrightness(brightness);
2143 }
2144 } finally {
2145 Binder.restoreCallingIdentity(token);
2146 }
2147 }
2148
2149 @Override // Binder call
2150 public void setTemporaryAutoBrightnessAdjustment(float adjustment) {
2151 mContext.enforceCallingOrSelfPermission(
2152 Manifest.permission.CONTROL_DISPLAY_BRIGHTNESS,
2153 "Permission required to set the display's auto brightness adjustment");
2154 final long token = Binder.clearCallingIdentity();
2155 try {
2156 synchronized (mSyncRoot) {
2157 mDisplayPowerController.setTemporaryAutoBrightnessAdjustment(adjustment);
2158 }
2159 } finally {
2160 Binder.restoreCallingIdentity(token);
2161 }
2162 }
2163
Dan Gittik7a32fba2018-03-28 12:19:38 +01002164 @Override // Binder call
2165 public void onShellCommand(FileDescriptor in, FileDescriptor out,
2166 FileDescriptor err, String[] args, ShellCallback callback,
2167 ResultReceiver resultReceiver) {
2168 final long token = Binder.clearCallingIdentity();
2169 try {
2170 DisplayManagerShellCommand command = new DisplayManagerShellCommand(this);
2171 command.exec(this, in, out, err, args, callback, resultReceiver);
2172 } finally {
2173 Binder.restoreCallingIdentity(token);
2174 }
2175 }
2176
Dan Gittik122df862018-03-28 16:59:22 +01002177 @Override // Binder call
2178 public Curve getMinimumBrightnessCurve() {
2179 final long token = Binder.clearCallingIdentity();
2180 try {
2181 return getMinimumBrightnessCurveInternal();
2182 } finally {
2183 Binder.restoreCallingIdentity(token);
2184 }
2185 }
2186
Peiyong Lin277eaff2019-01-16 16:18:22 -08002187 @Override // Binder call
2188 public int getPreferredWideGamutColorSpaceId() {
2189 final long token = Binder.clearCallingIdentity();
2190 try {
2191 return getPreferredWideGamutColorSpaceIdInternal();
2192 } finally {
2193 Binder.restoreCallingIdentity(token);
2194 }
2195 }
2196
Dan Gittik7a32fba2018-03-28 12:19:38 +01002197 void setBrightness(int brightness) {
2198 Settings.System.putIntForUser(mContext.getContentResolver(),
2199 Settings.System.SCREEN_BRIGHTNESS, brightness, UserHandle.USER_CURRENT);
2200 }
2201
2202 void resetBrightnessConfiguration() {
2203 setBrightnessConfigurationForUserInternal(null, mContext.getUserId(),
2204 mContext.getPackageName());
2205 }
2206
Dan Gittika5a2d632019-01-09 14:25:29 +00002207 void setAutoBrightnessLoggingEnabled(boolean enabled) {
2208 if (mDisplayPowerController != null) {
2209 synchronized (mSyncRoot) {
2210 mDisplayPowerController.setAutoBrightnessLoggingEnabled(enabled);
2211 }
2212 }
2213 }
2214
Dan Gittik8dbd7e92018-12-03 15:35:53 +00002215 void setDisplayWhiteBalanceLoggingEnabled(boolean enabled) {
2216 if (mDisplayPowerController != null) {
2217 synchronized (mSyncRoot) {
2218 mDisplayPowerController.setDisplayWhiteBalanceLoggingEnabled(enabled);
2219 }
2220 }
2221 }
2222
2223 void setAmbientColorTemperatureOverride(float cct) {
2224 if (mDisplayPowerController != null) {
2225 synchronized (mSyncRoot) {
2226 mDisplayPowerController.setAmbientColorTemperatureOverride(cct);
2227 }
2228 }
2229 }
2230
Jeff Brown4ccb8232014-01-16 22:16:42 -08002231 private boolean validatePackageName(int uid, String packageName) {
2232 if (packageName != null) {
2233 String[] packageNames = mContext.getPackageManager().getPackagesForUid(uid);
2234 if (packageNames != null) {
2235 for (String n : packageNames) {
2236 if (n.equals(packageName)) {
2237 return true;
2238 }
2239 }
2240 }
2241 }
2242 return false;
2243 }
Michael Wrightc39d47a2014-07-08 18:07:36 -07002244
2245 private boolean canProjectVideo(IMediaProjection projection) {
2246 if (projection != null) {
2247 try {
2248 if (projection.canProjectVideo()) {
2249 return true;
2250 }
2251 } catch (RemoteException e) {
2252 Slog.e(TAG, "Unable to query projection service for permissions", e);
2253 }
2254 }
2255 if (mContext.checkCallingPermission(
2256 android.Manifest.permission.CAPTURE_VIDEO_OUTPUT)
Michael Wright0ccc2b02014-07-24 18:20:41 -07002257 == PackageManager.PERMISSION_GRANTED) {
Michael Wrightc39d47a2014-07-08 18:07:36 -07002258 return true;
2259 }
2260 return canProjectSecureVideo(projection);
2261 }
2262
2263 private boolean canProjectSecureVideo(IMediaProjection projection) {
2264 if (projection != null) {
2265 try {
2266 if (projection.canProjectSecureVideo()){
2267 return true;
2268 }
2269 } catch (RemoteException e) {
2270 Slog.e(TAG, "Unable to query projection service for permissions", e);
2271 }
2272 }
2273 return mContext.checkCallingPermission(
2274 android.Manifest.permission.CAPTURE_SECURE_VIDEO_OUTPUT)
Michael Wright0ccc2b02014-07-24 18:20:41 -07002275 == PackageManager.PERMISSION_GRANTED;
Michael Wrightc39d47a2014-07-08 18:07:36 -07002276 }
Jeff Brown4ccb8232014-01-16 22:16:42 -08002277 }
2278
2279 private final class LocalService extends DisplayManagerInternal {
2280 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07002281 public void initPowerManagement(final DisplayPowerCallbacks callbacks, Handler handler,
Jeff Brownad9ef192014-04-08 17:26:30 -07002282 SensorManager sensorManager) {
2283 synchronized (mSyncRoot) {
Jeff Brown037c33e2014-04-09 00:31:55 -07002284 DisplayBlanker blanker = new DisplayBlanker() {
2285 @Override
Jeff Brown5d6443b2015-04-10 20:15:01 -07002286 public void requestDisplayState(int state, int brightness) {
Jeff Brown037c33e2014-04-09 00:31:55 -07002287 // The order of operations is important for legacy reasons.
2288 if (state == Display.STATE_OFF) {
Jeff Brown5d6443b2015-04-10 20:15:01 -07002289 requestGlobalDisplayStateInternal(state, brightness);
Jeff Brown037c33e2014-04-09 00:31:55 -07002290 }
2291
2292 callbacks.onDisplayStateChange(state);
2293
2294 if (state != Display.STATE_OFF) {
Jeff Brown5d6443b2015-04-10 20:15:01 -07002295 requestGlobalDisplayStateInternal(state, brightness);
Jeff Brown037c33e2014-04-09 00:31:55 -07002296 }
2297 }
2298 };
Jeff Brownad9ef192014-04-08 17:26:30 -07002299 mDisplayPowerController = new DisplayPowerController(
Jeff Brown037c33e2014-04-09 00:31:55 -07002300 mContext, callbacks, handler, sensorManager, blanker);
Jeff Brownad9ef192014-04-08 17:26:30 -07002301 }
Michael Wrighteef0e132017-11-21 17:57:52 +00002302
2303 mHandler.sendEmptyMessage(MSG_LOAD_BRIGHTNESS_CONFIGURATION);
Jeff Brownad9ef192014-04-08 17:26:30 -07002304 }
2305
2306 @Override
2307 public boolean requestPowerState(DisplayPowerRequest request,
2308 boolean waitForNegativeProximity) {
Michael Wrighteef0e132017-11-21 17:57:52 +00002309 synchronized (mSyncRoot) {
2310 return mDisplayPowerController.requestPowerState(request,
2311 waitForNegativeProximity);
2312 }
Jeff Brownad9ef192014-04-08 17:26:30 -07002313 }
2314
2315 @Override
2316 public boolean isProximitySensorAvailable() {
Michael Wrighteef0e132017-11-21 17:57:52 +00002317 synchronized (mSyncRoot) {
2318 return mDisplayPowerController.isProximitySensorAvailable();
2319 }
Jeff Brownad9ef192014-04-08 17:26:30 -07002320 }
2321
2322 @Override
Riddle Hsu654a6f92018-07-13 22:59:36 +08002323 public boolean screenshot(int displayId, Surface outSurface) {
Dominik Laskowskie912ae32019-01-26 11:19:36 -08002324 return screenshotInternal(displayId, outSurface);
Riddle Hsu654a6f92018-07-13 22:59:36 +08002325 }
2326
2327 @Override
Jeff Brown4ccb8232014-01-16 22:16:42 -08002328 public DisplayInfo getDisplayInfo(int displayId) {
2329 return getDisplayInfoInternal(displayId, Process.myUid());
2330 }
2331
2332 @Override
2333 public void registerDisplayTransactionListener(DisplayTransactionListener listener) {
2334 if (listener == null) {
2335 throw new IllegalArgumentException("listener must not be null");
2336 }
2337
2338 registerDisplayTransactionListenerInternal(listener);
2339 }
2340
2341 @Override
2342 public void unregisterDisplayTransactionListener(DisplayTransactionListener listener) {
2343 if (listener == null) {
2344 throw new IllegalArgumentException("listener must not be null");
2345 }
2346
2347 unregisterDisplayTransactionListenerInternal(listener);
2348 }
2349
2350 @Override
2351 public void setDisplayInfoOverrideFromWindowManager(int displayId, DisplayInfo info) {
2352 setDisplayInfoOverrideFromWindowManagerInternal(displayId, info);
2353 }
2354
2355 @Override
Andrii Kuliancd097992017-03-23 18:31:59 -07002356 public void getNonOverrideDisplayInfo(int displayId, DisplayInfo outInfo) {
2357 getNonOverrideDisplayInfoInternal(displayId, outInfo);
2358 }
2359
2360 @Override
Robert Carrae606b42018-02-15 15:36:23 -08002361 public void performTraversal(SurfaceControl.Transaction t) {
2362 performTraversalInternal(t);
Jeff Brown4ccb8232014-01-16 22:16:42 -08002363 }
2364
2365 @Override
Michael Wright3f145a22014-07-22 19:46:03 -07002366 public void setDisplayProperties(int displayId, boolean hasContent,
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002367 float requestedRefreshRate, int requestedMode, boolean inTraversal) {
2368 setDisplayPropertiesInternal(displayId, hasContent, requestedRefreshRate,
2369 requestedMode, inTraversal);
Jeff Brown4ccb8232014-01-16 22:16:42 -08002370 }
Filip Gruszczynskid2e86402015-02-19 13:05:03 -08002371
2372 @Override
2373 public void setDisplayOffsets(int displayId, int x, int y) {
2374 setDisplayOffsetsInternal(displayId, x, y);
2375 }
Andrii Kulianfb1bf692017-01-17 11:17:34 -08002376
2377 @Override
Sam Lin4c3ac2b2019-02-18 04:50:26 -08002378 public void setDisplayScalingDisabled(int displayId, boolean disableScaling) {
2379 setDisplayScalingDisabledInternal(displayId, disableScaling);
2380 }
2381
2382 @Override
Andrii Kulianfb1bf692017-01-17 11:17:34 -08002383 public void setDisplayAccessUIDs(SparseArray<IntArray> newDisplayAccessUIDs) {
2384 setDisplayAccessUIDsInternal(newDisplayAccessUIDs);
2385 }
2386
2387 @Override
2388 public boolean isUidPresentOnDisplay(int uid, int displayId) {
2389 return isUidPresentOnDisplayInternal(uid, displayId);
2390 }
Kenny Guycfe7b702017-11-14 21:04:58 +00002391
2392 @Override
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00002393 public void persistBrightnessTrackerState() {
Michael Wright144aac92017-12-21 18:37:41 +00002394 synchronized (mSyncRoot) {
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00002395 mDisplayPowerController.persistBrightnessTrackerState();
Michael Wright144aac92017-12-21 18:37:41 +00002396 }
Kenny Guycfe7b702017-11-14 21:04:58 +00002397 }
Adrian Roose1d68cd2018-01-17 12:54:50 +01002398
2399 @Override
2400 public void onOverlayChanged() {
2401 synchronized (mSyncRoot) {
Adrian Roos898ec382018-01-17 12:54:50 +01002402 for (int i = 0; i < mDisplayDevices.size(); i++) {
2403 mDisplayDevices.get(i).onOverlayChangedLocked();
Adrian Roose1d68cd2018-01-17 12:54:50 +01002404 }
2405 }
2406 }
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07002407
2408 @Override
2409 public DisplayedContentSamplingAttributes getDisplayedContentSamplingAttributes(
2410 int displayId) {
2411 return getDisplayedContentSamplingAttributesInternal(displayId);
2412 }
2413
2414 @Override
2415 public boolean setDisplayedContentSamplingEnabled(
2416 int displayId, boolean enable, int componentMask, int maxFrames) {
2417 return setDisplayedContentSamplingEnabledInternal(
2418 displayId, enable, componentMask, maxFrames);
2419 }
2420
2421 @Override
2422 public DisplayedContentSample getDisplayedContentSample(int displayId,
2423 long maxFrames, long timestamp) {
2424 return getDisplayedContentSampleInternal(displayId, maxFrames, timestamp);
2425 }
2426
Jeff Brown4ccb8232014-01-16 22:16:42 -08002427 }
Jeff Brownfa25bf52012-07-23 19:26:30 -07002428}