blob: c9df86e830911db3f100f3cd6c9b7eb4a6dc746a [file] [log] [blame]
Jeff Brownfa25bf52012-07-23 19:26:30 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.display;
18
Andrii Kulianfc8f82b2017-01-26 13:17:27 -080019import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +010020import static android.hardware.display.DisplayManager
21 .VIRTUAL_DISPLAY_FLAG_CAN_SHOW_WITH_INSECURE_KEYGUARD;
Andrii Kulianfc8f82b2017-01-26 13:17:27 -080022import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_OWN_CONTENT_ONLY;
23import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_PUBLIC;
24import static android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_SECURE;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +010025import static android.hardware.display.DisplayViewport.VIEWPORT_EXTERNAL;
26import static android.hardware.display.DisplayViewport.VIEWPORT_INTERNAL;
27import static android.hardware.display.DisplayViewport.VIEWPORT_VIRTUAL;
Jeff Brownbd6e1502012-08-28 03:27:37 -070028
Jeff Brownfa25bf52012-07-23 19:26:30 -070029import android.Manifest;
Santos Cordonee8931e2017-04-05 10:31:15 -070030import android.annotation.NonNull;
Kenny Guy05ce8092018-01-17 13:44:20 +000031import android.annotation.Nullable;
Michael Wrighteef0e132017-11-21 17:57:52 +000032import android.annotation.UserIdInt;
Kenny Guy29aa30e2017-11-30 13:43:46 +000033import android.app.AppOpsManager;
Jeff Brownfa25bf52012-07-23 19:26:30 -070034import android.content.Context;
35import android.content.pm.PackageManager;
Kenny Guy22bd0442017-10-26 00:15:54 +010036import android.content.pm.ParceledListSlice;
Michael Wrighteedcbf12017-08-16 23:14:54 +010037import android.content.res.Resources;
Dan Gittik122df862018-03-28 16:59:22 +010038import android.content.res.TypedArray;
Peiyong Lin277eaff2019-01-16 16:18:22 -080039import android.graphics.ColorSpace;
Michael Wrighteedcbf12017-08-16 23:14:54 +010040import android.graphics.Point;
Jeff Brownad9ef192014-04-08 17:26:30 -070041import android.hardware.SensorManager;
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +000042import android.hardware.display.AmbientBrightnessDayStats;
Kenny Guy22bd0442017-10-26 00:15:54 +010043import android.hardware.display.BrightnessChangeEvent;
Michael Wrighteef0e132017-11-21 17:57:52 +000044import android.hardware.display.BrightnessConfiguration;
Dan Gittik122df862018-03-28 16:59:22 +010045import android.hardware.display.Curve;
Jeff Brownbd6e1502012-08-28 03:27:37 -070046import android.hardware.display.DisplayManagerGlobal;
Jeff Brown4ccb8232014-01-16 22:16:42 -080047import android.hardware.display.DisplayManagerInternal;
Jeff Brown4ccb8232014-01-16 22:16:42 -080048import android.hardware.display.DisplayManagerInternal.DisplayTransactionListener;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +010049import android.hardware.display.DisplayViewport;
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -070050import android.hardware.display.DisplayedContentSample;
51import android.hardware.display.DisplayedContentSamplingAttributes;
Jeff Brownfa25bf52012-07-23 19:26:30 -070052import android.hardware.display.IDisplayManager;
Jeff Brownbd6e1502012-08-28 03:27:37 -070053import android.hardware.display.IDisplayManagerCallback;
Michael Wright75ee9fc2014-09-01 19:55:22 -070054import android.hardware.display.IVirtualDisplayCallback;
Jeff Browne08ae382012-09-07 20:36:36 -070055import android.hardware.display.WifiDisplayStatus;
Jeff Brown4ccb8232014-01-16 22:16:42 -080056import android.hardware.input.InputManagerInternal;
Michael Wrightc39d47a2014-07-08 18:07:36 -070057import android.media.projection.IMediaProjection;
58import android.media.projection.IMediaProjectionManager;
Jeff Brownfa25bf52012-07-23 19:26:30 -070059import android.os.Binder;
Jeff Brownbd6e1502012-08-28 03:27:37 -070060import android.os.Handler;
Jeff Brown64a55af2012-08-26 02:47:39 -070061import android.os.IBinder;
Jeff Brown4ccb8232014-01-16 22:16:42 -080062import android.os.IBinder.DeathRecipient;
Jeff Brownbd6e1502012-08-28 03:27:37 -070063import android.os.Looper;
64import android.os.Message;
Jeff Brown5d6443b2015-04-10 20:15:01 -070065import android.os.PowerManager;
Craig Mautner4504de52013-12-20 09:06:56 -080066import android.os.Process;
Jeff Brownbd6e1502012-08-28 03:27:37 -070067import android.os.RemoteException;
Dan Gittik7a32fba2018-03-28 12:19:38 +010068import android.os.ResultReceiver;
Michael Wrightc39d47a2014-07-08 18:07:36 -070069import android.os.ServiceManager;
Dan Gittik7a32fba2018-03-28 12:19:38 +010070import android.os.ShellCallback;
Jeff Brownbd6e1502012-08-28 03:27:37 -070071import android.os.SystemClock;
Jeff Brownfa25bf52012-07-23 19:26:30 -070072import android.os.SystemProperties;
Jeff Brown5d6443b2015-04-10 20:15:01 -070073import android.os.Trace;
Kenny Guy22bd0442017-10-26 00:15:54 +010074import android.os.UserHandle;
Michael Wrighteef0e132017-11-21 17:57:52 +000075import android.os.UserManager;
Dan Gittik7a32fba2018-03-28 12:19:38 +010076import android.provider.Settings;
Jeff Browna506a6e2013-06-04 00:02:38 -070077import android.text.TextUtils;
Andrii Kulianfb1bf692017-01-17 11:17:34 -080078import android.util.IntArray;
Dan Gittik122df862018-03-28 16:59:22 +010079import android.util.Pair;
Jeff Brownbd6e1502012-08-28 03:27:37 -070080import android.util.Slog;
81import android.util.SparseArray;
Dan Gittik122df862018-03-28 16:59:22 +010082import android.util.Spline;
Jeff Brownfa25bf52012-07-23 19:26:30 -070083import android.view.Display;
84import android.view.DisplayInfo;
Jeff Browna506a6e2013-06-04 00:02:38 -070085import android.view.Surface;
Robert Carrae606b42018-02-15 15:36:23 -080086import android.view.SurfaceControl;
Jeff Browna506a6e2013-06-04 00:02:38 -070087
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +010088import com.android.internal.annotations.GuardedBy;
89import com.android.internal.annotations.VisibleForTesting;
90import com.android.internal.util.DumpUtils;
91import com.android.internal.util.IndentingPrintWriter;
Jorim Jaggied7993b2017-03-28 18:50:01 +010092import com.android.server.AnimationThread;
Jeff Brown4ccb8232014-01-16 22:16:42 -080093import com.android.server.DisplayThread;
94import com.android.server.LocalServices;
95import com.android.server.SystemService;
Dianne Hackborn8d044e82013-04-30 17:24:15 -070096import com.android.server.UiThread;
Peiyong Lin277eaff2019-01-16 16:18:22 -080097import com.android.server.display.ColorDisplayService.ColorDisplayServiceInternal;
Jorim Jaggi21c39a72017-10-20 15:47:51 +020098import com.android.server.wm.SurfaceAnimationThread;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +010099import com.android.server.wm.WindowManagerInternal;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700100
101import java.io.FileDescriptor;
102import java.io.PrintWriter;
103import java.util.ArrayList;
Jeff Browna506a6e2013-06-04 00:02:38 -0700104import java.util.Arrays;
Jeff Browne75926d2014-09-18 15:24:49 -0700105import java.util.List;
Jeff Brown7f3994e2012-12-04 14:04:28 -0800106import java.util.concurrent.CopyOnWriteArrayList;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700107
108/**
Jeff Brownbd6e1502012-08-28 03:27:37 -0700109 * Manages attached displays.
Jeff Brownfa25bf52012-07-23 19:26:30 -0700110 * <p>
Jeff Brownbd6e1502012-08-28 03:27:37 -0700111 * The {@link DisplayManagerService} manages the global lifecycle of displays,
112 * decides how to configure logical displays based on the physical display devices currently
113 * attached, sends notifications to the system and to applications when the state
114 * changes, and so on.
115 * </p><p>
116 * The display manager service relies on a collection of {@link DisplayAdapter} components,
117 * for discovering and configuring physical display devices attached to the system.
118 * There are separate display adapters for each manner that devices are attached:
119 * one display adapter for built-in local displays, one for simulated non-functional
120 * displays when the system is headless, one for simulated overlay displays used for
121 * development, one for wifi displays, etc.
122 * </p><p>
123 * Display adapters are only weakly coupled to the display manager service.
124 * Display adapters communicate changes in display device state to the display manager
Craig Mautner722285e2012-09-07 13:55:58 -0700125 * service asynchronously via a {@link DisplayAdapter.Listener} registered
Jeff Brownbd6e1502012-08-28 03:27:37 -0700126 * by the display manager service. This separation of concerns is important for
127 * two main reasons. First, it neatly encapsulates the responsibilities of these
128 * two classes: display adapters handle individual display devices whereas
129 * the display manager service handles the global state. Second, it eliminates
130 * the potential for deadlocks resulting from asynchronous display device discovery.
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700131 * </p>
132 *
133 * <h3>Synchronization</h3>
134 * <p>
135 * Because the display manager may be accessed by multiple threads, the synchronization
136 * story gets a little complicated. In particular, the window manager may call into
137 * the display manager while holding a surface transaction with the expectation that
138 * it can apply changes immediately. Unfortunately, that means we can't just do
139 * everything asynchronously (*grump*).
Jeff Brownbd6e1502012-08-28 03:27:37 -0700140 * </p><p>
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700141 * To make this work, all of the objects that belong to the display manager must
142 * use the same lock. We call this lock the synchronization root and it has a unique
143 * type {@link DisplayManagerService.SyncRoot}. Methods that require this lock are
144 * named with the "Locked" suffix.
145 * </p><p>
146 * Where things get tricky is that the display manager is not allowed to make
147 * any potentially reentrant calls, especially into the window manager. We generally
148 * avoid this by making all potentially reentrant out-calls asynchronous.
Jeff Brownfa25bf52012-07-23 19:26:30 -0700149 * </p>
150 */
Jeff Brown4ccb8232014-01-16 22:16:42 -0800151public final class DisplayManagerService extends SystemService {
Jeff Brownfa25bf52012-07-23 19:26:30 -0700152 private static final String TAG = "DisplayManagerService";
Jeff Brownbd6e1502012-08-28 03:27:37 -0700153 private static final boolean DEBUG = false;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700154
Jeff Brownbbd28a22012-09-20 16:47:15 -0700155 // When this system property is set to 0, WFD is forcibly disabled on boot.
156 // When this system property is set to 1, WFD is forcibly enabled on boot.
157 // Otherwise WFD is enabled according to the value of config_enableWifiDisplay.
158 private static final String FORCE_WIFI_DISPLAY_ENABLE = "persist.debug.wfd.enable";
159
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200160 private static final String PROP_DEFAULT_DISPLAY_TOP_INSET = "persist.sys.displayinset.top";
161
Jeff Brownbd6e1502012-08-28 03:27:37 -0700162 private static final long WAIT_FOR_DEFAULT_DISPLAY_TIMEOUT = 10000;
163
Santos Cordonc22c5632017-06-21 16:03:49 -0700164 private static final int MSG_REGISTER_DEFAULT_DISPLAY_ADAPTERS = 1;
Jeff Brownbd6e1502012-08-28 03:27:37 -0700165 private static final int MSG_REGISTER_ADDITIONAL_DISPLAY_ADAPTERS = 2;
166 private static final int MSG_DELIVER_DISPLAY_EVENT = 3;
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700167 private static final int MSG_REQUEST_TRAVERSAL = 4;
Jeff Brownd728bf52012-09-08 18:05:28 -0700168 private static final int MSG_UPDATE_VIEWPORT = 5;
Kenny Guy22bd0442017-10-26 00:15:54 +0100169 private static final int MSG_REGISTER_BRIGHTNESS_TRACKER = 6;
Michael Wrighteef0e132017-11-21 17:57:52 +0000170 private static final int MSG_LOAD_BRIGHTNESS_CONFIGURATION = 7;
Jeff Brownfa25bf52012-07-23 19:26:30 -0700171
Jeff Brownb880d882014-02-10 19:47:07 -0800172 private final Context mContext;
Jeff Brownbd6e1502012-08-28 03:27:37 -0700173 private final DisplayManagerHandler mHandler;
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700174 private final Handler mUiHandler;
175 private final DisplayAdapterListener mDisplayAdapterListener;
Jeff Brown4ccb8232014-01-16 22:16:42 -0800176 private WindowManagerInternal mWindowManagerInternal;
177 private InputManagerInternal mInputManagerInternal;
Michael Wrightc39d47a2014-07-08 18:07:36 -0700178 private IMediaProjectionManager mProjectionService;
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700179
180 // The synchronization root for the display manager.
181 // This lock guards most of the display manager's state.
Craig Mautner0bf6ec92012-12-18 08:33:27 -0800182 // NOTE: This is synchronized on while holding WindowManagerService.mWindowMap so never call
183 // into WindowManagerService methods that require mWindowMap while holding this unless you are
184 // very very sure that no deadlock can occur.
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700185 private final SyncRoot mSyncRoot = new SyncRoot();
186
187 // True if in safe mode.
188 // This option may disable certain display adapters.
189 public boolean mSafeMode;
190
191 // True if we are in a special boot mode where only core applications and
192 // services should be started. This option may disable certain display adapters.
193 public boolean mOnlyCore;
194
Jeff Brown27f1d672012-10-17 18:32:34 -0700195 // True if the display manager service should pretend there is only one display
196 // and only tell applications about the existence of the default logical display.
197 // The display manager can still mirror content to secondary displays but applications
198 // cannot present unique content on those displays.
199 // Used for demonstration purposes only.
200 private final boolean mSingleDisplayDemoMode;
201
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700202 // All callback records indexed by calling process id.
203 public final SparseArray<CallbackRecord> mCallbacks =
Jeff Brownbd6e1502012-08-28 03:27:37 -0700204 new SparseArray<CallbackRecord>();
Jeff Brownfa25bf52012-07-23 19:26:30 -0700205
Jeff Brownbd6e1502012-08-28 03:27:37 -0700206 // List of all currently registered display adapters.
207 private final ArrayList<DisplayAdapter> mDisplayAdapters = new ArrayList<DisplayAdapter>();
208
209 // List of all currently connected display devices.
210 private final ArrayList<DisplayDevice> mDisplayDevices = new ArrayList<DisplayDevice>();
211
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700212 // List of all logical displays indexed by logical display id.
213 private final SparseArray<LogicalDisplay> mLogicalDisplays =
214 new SparseArray<LogicalDisplay>();
Jeff Brownbd6e1502012-08-28 03:27:37 -0700215 private int mNextNonDefaultDisplayId = Display.DEFAULT_DISPLAY + 1;
216
Jeff Brown7f3994e2012-12-04 14:04:28 -0800217 // List of all display transaction listeners.
218 private final CopyOnWriteArrayList<DisplayTransactionListener> mDisplayTransactionListeners =
219 new CopyOnWriteArrayList<DisplayTransactionListener>();
220
Jeff Brownad9ef192014-04-08 17:26:30 -0700221 // Display power controller.
222 private DisplayPowerController mDisplayPowerController;
223
Jeff Brown037c33e2014-04-09 00:31:55 -0700224 // The overall display state, independent of changes that might influence one
225 // display or another in particular.
Jeff Brown5d6443b2015-04-10 20:15:01 -0700226 private int mGlobalDisplayState = Display.STATE_ON;
227
228 // The overall display brightness.
229 // For now, this only applies to the built-in display but we may split it up eventually.
230 private int mGlobalDisplayBrightness = PowerManager.BRIGHTNESS_DEFAULT;
Jeff Brown9e316a12012-10-08 19:17:06 -0700231
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700232 // Set to true when there are pending display changes that have yet to be applied
233 // to the surface flinger state.
234 private boolean mPendingTraversal;
Jeff Brownbd6e1502012-08-28 03:27:37 -0700235
Jeff Browne08ae382012-09-07 20:36:36 -0700236 // The Wifi display adapter, or null if not registered.
237 private WifiDisplayAdapter mWifiDisplayAdapter;
238
Jeff Brownce468a32013-11-21 16:42:03 -0800239 // The number of active wifi display scan requests.
240 private int mWifiDisplayScanRequestCount;
241
Jeff Browna506a6e2013-06-04 00:02:38 -0700242 // The virtual display adapter, or null if not registered.
243 private VirtualDisplayAdapter mVirtualDisplayAdapter;
244
Michael Wrighteef0e132017-11-21 17:57:52 +0000245 // The User ID of the current user
246 private @UserIdInt int mCurrentUserId;
247
Michael Wrighteedcbf12017-08-16 23:14:54 +0100248 // The stable device screen height and width. These are not tied to a specific display, even
249 // the default display, because they need to be stable over the course of the device's entire
250 // life, even if the default display changes (e.g. a new monitor is plugged into a PC-like
251 // device).
252 private Point mStableDisplaySize = new Point();
253
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200254 // The top inset of the default display.
255 // This gets persisted so that the boot animation knows how to transition from the display's
256 // full size to the size configured by the user. Right now we only persist and animate the top
257 // inset, but theoretically we could do it for all of them.
258 private int mDefaultDisplayTopInset;
259
Jeff Brownd728bf52012-09-08 18:05:28 -0700260 // Viewports of the default display and the display that should receive touch
261 // input from an external source. Used by the input system.
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +0100262 @GuardedBy("mSyncRoot")
263 private final ArrayList<DisplayViewport> mViewports = new ArrayList<>();
Jeff Brownd728bf52012-09-08 18:05:28 -0700264
Jeff Brown89d55462012-09-19 11:33:42 -0700265 // Persistent data store for all internal settings maintained by the display manager service.
266 private final PersistentDataStore mPersistentDataStore = new PersistentDataStore();
267
Jeff Brownbd6e1502012-08-28 03:27:37 -0700268 // Temporary callback list, used when sending display events to applications.
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700269 // May be used outside of the lock but only on the handler thread.
270 private final ArrayList<CallbackRecord> mTempCallbacks = new ArrayList<CallbackRecord>();
Jeff Brownbd6e1502012-08-28 03:27:37 -0700271
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700272 // Temporary display info, used for comparing display configurations.
273 private final DisplayInfo mTempDisplayInfo = new DisplayInfo();
274
Jeff Brownd728bf52012-09-08 18:05:28 -0700275 // Temporary viewports, used when sending new viewport information to the
276 // input system. May be used outside of the lock but only on the handler thread.
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +0100277 private final ArrayList<DisplayViewport> mTempViewports = new ArrayList<>();
Jeff Brownd728bf52012-09-08 18:05:28 -0700278
Damien Bargiacchi4364bbf2016-11-01 21:44:20 -0700279 // The default color mode for default displays. Overrides the usual
280 // Display.Display.COLOR_MODE_DEFAULT for displays with the
281 // DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY flag set.
282 private final int mDefaultDisplayDefaultColorMode;
283
Jeff Browne75926d2014-09-18 15:24:49 -0700284 // Temporary list of deferred work to perform when setting the display state.
285 // Only used by requestDisplayState. The field is self-synchronized and only
286 // intended for use inside of the requestGlobalDisplayStateInternal function.
287 private final ArrayList<Runnable> mTempDisplayStateWorkQueue = new ArrayList<Runnable>();
288
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800289 // Lists of UIDs that are present on the displays. Maps displayId -> array of UIDs.
290 private final SparseArray<IntArray> mDisplayAccessUIDs = new SparseArray<>();
291
Santos Cordonee8931e2017-04-05 10:31:15 -0700292 private final Injector mInjector;
293
Dan Gittik122df862018-03-28 16:59:22 +0100294 // The minimum brightness curve, which guarantess that any brightness curve that dips below it
295 // is rejected by the system.
296 private final Curve mMinimumBrightnessCurve;
297 private final Spline mMinimumBrightnessSpline;
Peiyong Lin277eaff2019-01-16 16:18:22 -0800298 private final ColorSpace mWideColorSpace;
Dan Gittik122df862018-03-28 16:59:22 +0100299
Jeff Brownb880d882014-02-10 19:47:07 -0800300 public DisplayManagerService(Context context) {
Santos Cordonee8931e2017-04-05 10:31:15 -0700301 this(context, new Injector());
302 }
303
304 @VisibleForTesting
305 DisplayManagerService(Context context, Injector injector) {
Jeff Brownb880d882014-02-10 19:47:07 -0800306 super(context);
Santos Cordonee8931e2017-04-05 10:31:15 -0700307 mInjector = injector;
Jeff Brownb880d882014-02-10 19:47:07 -0800308 mContext = context;
Jeff Brown4ccb8232014-01-16 22:16:42 -0800309 mHandler = new DisplayManagerHandler(DisplayThread.get().getLooper());
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700310 mUiHandler = UiThread.getHandler();
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700311 mDisplayAdapterListener = new DisplayAdapterListener();
Jeff Brown27f1d672012-10-17 18:32:34 -0700312 mSingleDisplayDemoMode = SystemProperties.getBoolean("persist.demo.singledisplay", false);
Dan Gittik122df862018-03-28 16:59:22 +0100313 Resources resources = mContext.getResources();
Damien Bargiacchi4364bbf2016-11-01 21:44:20 -0700314 mDefaultDisplayDefaultColorMode = mContext.getResources().getInteger(
Michael Wrighteef0e132017-11-21 17:57:52 +0000315 com.android.internal.R.integer.config_defaultDisplayDefaultColorMode);
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200316 mDefaultDisplayTopInset = SystemProperties.getInt(PROP_DEFAULT_DISPLAY_TOP_INSET, -1);
Dan Gittik122df862018-03-28 16:59:22 +0100317 float[] lux = getFloatArray(resources.obtainTypedArray(
318 com.android.internal.R.array.config_minimumBrightnessCurveLux));
319 float[] nits = getFloatArray(resources.obtainTypedArray(
320 com.android.internal.R.array.config_minimumBrightnessCurveNits));
321 mMinimumBrightnessCurve = new Curve(lux, nits);
322 mMinimumBrightnessSpline = Spline.createSpline(lux, nits);
Jeff Brown5d6443b2015-04-10 20:15:01 -0700323
324 PowerManager pm = (PowerManager) mContext.getSystemService(Context.POWER_SERVICE);
325 mGlobalDisplayBrightness = pm.getDefaultScreenBrightnessSetting();
Michael Wrighteef0e132017-11-21 17:57:52 +0000326 mCurrentUserId = UserHandle.USER_SYSTEM;
Peiyong Lin277eaff2019-01-16 16:18:22 -0800327 ColorSpace[] colorSpaces = SurfaceControl.getCompositionColorSpaces();
328 mWideColorSpace = colorSpaces[1];
Joel Fernandes2d314e12017-04-04 16:32:15 -0700329 }
330
331 public void setupSchedulerPolicies() {
Jorim Jaggied7993b2017-03-28 18:50:01 +0100332 // android.display and android.anim is critical to user experience and we should make sure
Michael Wrighteef0e132017-11-21 17:57:52 +0000333 // it is not in the default foregroup groups, add it to top-app to make sure it uses all
334 // the cores and scheduling settings for top-app when it runs.
Jorim Jaggied7993b2017-03-28 18:50:01 +0100335 Process.setThreadGroupAndCpuset(DisplayThread.get().getThreadId(),
336 Process.THREAD_GROUP_TOP_APP);
337 Process.setThreadGroupAndCpuset(AnimationThread.get().getThreadId(),
338 Process.THREAD_GROUP_TOP_APP);
Jorim Jaggi21c39a72017-10-20 15:47:51 +0200339 Process.setThreadGroupAndCpuset(SurfaceAnimationThread.get().getThreadId(),
340 Process.THREAD_GROUP_TOP_APP);
Craig Mautner4f67ba62012-08-02 11:23:00 -0700341 }
342
Jeff Brown4ccb8232014-01-16 22:16:42 -0800343 @Override
Jeff Brown4ccb8232014-01-16 22:16:42 -0800344 public void onStart() {
Michael Wright1c9977b2016-07-12 13:30:10 -0700345 // We need to pre-load the persistent data store so it's ready before the default display
346 // adapter is up so that we have it's configuration. We could load it lazily, but since
347 // we're going to have to read it in eventually we may as well do it here rather than after
Santos Cordonc22c5632017-06-21 16:03:49 -0700348 // we've waited for the display to register itself with us.
Michael Wrighteedcbf12017-08-16 23:14:54 +0100349 synchronized(mSyncRoot) {
350 mPersistentDataStore.loadIfNeeded();
351 loadStableDisplayValuesLocked();
352 }
Santos Cordonc22c5632017-06-21 16:03:49 -0700353 mHandler.sendEmptyMessage(MSG_REGISTER_DEFAULT_DISPLAY_ADAPTERS);
Jeff Brown4ccb8232014-01-16 22:16:42 -0800354
355 publishBinderService(Context.DISPLAY_SERVICE, new BinderService(),
356 true /*allowIsolated*/);
357 publishLocalService(DisplayManagerInternal.class, new LocalService());
Justin Klaassen22eb1992016-07-11 20:52:23 -0700358 publishLocalService(DisplayTransformManager.class, new DisplayTransformManager());
Jeff Brown4ccb8232014-01-16 22:16:42 -0800359 }
360
361 @Override
362 public void onBootPhase(int phase) {
363 if (phase == PHASE_WAIT_FOR_DEFAULT_DISPLAY) {
364 synchronized (mSyncRoot) {
Santos Cordonc22c5632017-06-21 16:03:49 -0700365 long timeout = SystemClock.uptimeMillis()
366 + mInjector.getDefaultDisplayDelayTimeout();
367 while (mLogicalDisplays.get(Display.DEFAULT_DISPLAY) == null ||
368 mVirtualDisplayAdapter == null) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800369 long delay = timeout - SystemClock.uptimeMillis();
370 if (delay <= 0) {
371 throw new RuntimeException("Timeout waiting for default display "
Santos Cordonc22c5632017-06-21 16:03:49 -0700372 + "to be initialized. DefaultDisplay="
373 + mLogicalDisplays.get(Display.DEFAULT_DISPLAY)
374 + ", mVirtualDisplayAdapter=" + mVirtualDisplayAdapter);
Jeff Brown4ccb8232014-01-16 22:16:42 -0800375 }
376 if (DEBUG) {
377 Slog.d(TAG, "waitForDefaultDisplay: waiting, timeout=" + delay);
378 }
379 try {
380 mSyncRoot.wait(delay);
381 } catch (InterruptedException ex) {
382 }
Jeff Brownbd6e1502012-08-28 03:27:37 -0700383 }
384 }
385 }
Jeff Brownbd6e1502012-08-28 03:27:37 -0700386 }
387
Michael Wrighteef0e132017-11-21 17:57:52 +0000388 @Override
389 public void onSwitchUser(@UserIdInt int newUserId) {
390 final int userSerial = getUserManager().getUserSerialNumber(newUserId);
391 synchronized (mSyncRoot) {
392 if (mCurrentUserId != newUserId) {
393 mCurrentUserId = newUserId;
394 BrightnessConfiguration config =
395 mPersistentDataStore.getBrightnessConfiguration(userSerial);
396 mDisplayPowerController.setBrightnessConfiguration(config);
397 }
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +0000398 mDisplayPowerController.onSwitchUser(newUserId);
Michael Wrighteef0e132017-11-21 17:57:52 +0000399 }
400 }
401
Jeff Brown4ccb8232014-01-16 22:16:42 -0800402 // TODO: Use dependencies or a boot phase
403 public void windowManagerAndInputReady() {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700404 synchronized (mSyncRoot) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800405 mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
406 mInputManagerInternal = LocalServices.getService(InputManagerInternal.class);
Craig Mautner65d11b32012-10-01 13:59:52 -0700407 scheduleTraversalLocked(false);
Jeff Brownd728bf52012-09-08 18:05:28 -0700408 }
409 }
410
411 /**
Jeff Brownbd6e1502012-08-28 03:27:37 -0700412 * Called when the system is ready to go.
413 */
414 public void systemReady(boolean safeMode, boolean onlyCore) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700415 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -0700416 mSafeMode = safeMode;
417 mOnlyCore = onlyCore;
418 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700419
Jeff Brownbd6e1502012-08-28 03:27:37 -0700420 mHandler.sendEmptyMessage(MSG_REGISTER_ADDITIONAL_DISPLAY_ADAPTERS);
Kenny Guy22bd0442017-10-26 00:15:54 +0100421 mHandler.sendEmptyMessage(MSG_REGISTER_BRIGHTNESS_TRACKER);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700422 }
423
Santos Cordonee8931e2017-04-05 10:31:15 -0700424 @VisibleForTesting
425 Handler getDisplayHandler() {
426 return mHandler;
427 }
428
Michael Wrighteedcbf12017-08-16 23:14:54 +0100429 private void loadStableDisplayValuesLocked() {
430 final Point size = mPersistentDataStore.getStableDisplaySize();
431 if (size.x > 0 && size.y > 0) {
432 // Just set these values directly so we don't write the display persistent data again
433 // unnecessarily
434 mStableDisplaySize.set(size.x, size.y);
435 } else {
436 final Resources res = mContext.getResources();
437 final int width = res.getInteger(
438 com.android.internal.R.integer.config_stableDeviceDisplayWidth);
439 final int height = res.getInteger(
440 com.android.internal.R.integer.config_stableDeviceDisplayHeight);
441 if (width > 0 && height > 0) {
442 setStableDisplaySizeLocked(width, height);
443 }
444 }
445 }
446
447 private Point getStableDisplaySizeInternal() {
448 Point r = new Point();
449 synchronized (mSyncRoot) {
450 if (mStableDisplaySize.x > 0 && mStableDisplaySize.y > 0) {
451 r.set(mStableDisplaySize.x, mStableDisplaySize.y);
452 }
453 }
454 return r;
455 }
456
Jeff Brown4ccb8232014-01-16 22:16:42 -0800457 private void registerDisplayTransactionListenerInternal(
458 DisplayTransactionListener listener) {
Jeff Brown7f3994e2012-12-04 14:04:28 -0800459 // List is self-synchronized copy-on-write.
460 mDisplayTransactionListeners.add(listener);
461 }
462
Jeff Brown4ccb8232014-01-16 22:16:42 -0800463 private void unregisterDisplayTransactionListenerInternal(
464 DisplayTransactionListener listener) {
Jeff Brown7f3994e2012-12-04 14:04:28 -0800465 // List is self-synchronized copy-on-write.
466 mDisplayTransactionListeners.remove(listener);
467 }
468
Jeff Brown4ccb8232014-01-16 22:16:42 -0800469 private void setDisplayInfoOverrideFromWindowManagerInternal(
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700470 int displayId, DisplayInfo info) {
471 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -0700472 LogicalDisplay display = mLogicalDisplays.get(displayId);
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700473 if (display != null) {
Jeff Brownef981a42013-08-07 14:13:37 -0700474 if (display.setDisplayInfoOverrideFromWindowManagerLocked(info)) {
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200475 handleLogicalDisplayChanged(displayId, display);
Craig Mautner65d11b32012-10-01 13:59:52 -0700476 scheduleTraversalLocked(false);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700477 }
Jeff Brownbd6e1502012-08-28 03:27:37 -0700478 }
479 }
480 }
481
Andrii Kuliancd097992017-03-23 18:31:59 -0700482 /**
483 * @see DisplayManagerInternal#getNonOverrideDisplayInfo(int, DisplayInfo)
484 */
485 private void getNonOverrideDisplayInfoInternal(int displayId, DisplayInfo outInfo) {
486 synchronized (mSyncRoot) {
487 final LogicalDisplay display = mLogicalDisplays.get(displayId);
488 if (display != null) {
489 display.getNonOverrideDisplayInfoLocked(outInfo);
490 }
491 }
492 }
493
Santos Cordonee8931e2017-04-05 10:31:15 -0700494 @VisibleForTesting
Robert Carrae606b42018-02-15 15:36:23 -0800495 void performTraversalInternal(SurfaceControl.Transaction t) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700496 synchronized (mSyncRoot) {
497 if (!mPendingTraversal) {
498 return;
Jeff Brownbd6e1502012-08-28 03:27:37 -0700499 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700500 mPendingTraversal = false;
501
Robert Carrae606b42018-02-15 15:36:23 -0800502 performTraversalLocked(t);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700503 }
Jeff Brown7f3994e2012-12-04 14:04:28 -0800504
505 // List is self-synchronized copy-on-write.
506 for (DisplayTransactionListener listener : mDisplayTransactionListeners) {
Vishnu Naire86bd982018-11-28 13:23:17 -0800507 listener.onDisplayTransaction(t);
Jeff Brown7f3994e2012-12-04 14:04:28 -0800508 }
Jeff Brownbd6e1502012-08-28 03:27:37 -0700509 }
510
Jeff Brown5d6443b2015-04-10 20:15:01 -0700511 private void requestGlobalDisplayStateInternal(int state, int brightness) {
512 if (state == Display.STATE_UNKNOWN) {
513 state = Display.STATE_ON;
514 }
515 if (state == Display.STATE_OFF) {
516 brightness = PowerManager.BRIGHTNESS_OFF;
517 } else if (brightness < 0) {
518 brightness = PowerManager.BRIGHTNESS_DEFAULT;
519 } else if (brightness > PowerManager.BRIGHTNESS_ON) {
520 brightness = PowerManager.BRIGHTNESS_ON;
521 }
522
Jeff Browne75926d2014-09-18 15:24:49 -0700523 synchronized (mTempDisplayStateWorkQueue) {
524 try {
525 // Update the display state within the lock.
Jeff Brown8e5d33e2015-06-10 13:05:50 -0700526 // Note that we do not need to schedule traversals here although it
527 // may happen as a side-effect of displays changing state.
Jeff Browne75926d2014-09-18 15:24:49 -0700528 synchronized (mSyncRoot) {
Jeff Brown5d6443b2015-04-10 20:15:01 -0700529 if (mGlobalDisplayState == state
530 && mGlobalDisplayBrightness == brightness) {
531 return; // no change
Jeff Browne75926d2014-09-18 15:24:49 -0700532 }
Jeff Brown5d6443b2015-04-10 20:15:01 -0700533
534 Trace.traceBegin(Trace.TRACE_TAG_POWER, "requestGlobalDisplayState("
535 + Display.stateToString(state)
536 + ", brightness=" + brightness + ")");
537 mGlobalDisplayState = state;
538 mGlobalDisplayBrightness = brightness;
Jeff Brown8e5d33e2015-06-10 13:05:50 -0700539 applyGlobalDisplayStateLocked(mTempDisplayStateWorkQueue);
Jeff Browne75926d2014-09-18 15:24:49 -0700540 }
541
542 // Setting the display power state can take hundreds of milliseconds
543 // to complete so we defer the most expensive part of the work until
544 // after we have exited the critical section to avoid blocking other
545 // threads for a long time.
546 for (int i = 0; i < mTempDisplayStateWorkQueue.size(); i++) {
547 mTempDisplayStateWorkQueue.get(i).run();
548 }
Jeff Brown5d6443b2015-04-10 20:15:01 -0700549 Trace.traceEnd(Trace.TRACE_TAG_POWER);
Jeff Browne75926d2014-09-18 15:24:49 -0700550 } finally {
551 mTempDisplayStateWorkQueue.clear();
Jeff Brown9e316a12012-10-08 19:17:06 -0700552 }
553 }
554 }
555
Jeff Brown4ccb8232014-01-16 22:16:42 -0800556 private DisplayInfo getDisplayInfoInternal(int displayId, int callingUid) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700557 synchronized (mSyncRoot) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800558 LogicalDisplay display = mLogicalDisplays.get(displayId);
559 if (display != null) {
560 DisplayInfo info = display.getDisplayInfoLocked();
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800561 if (info.hasAccess(callingUid)
562 || isUidPresentOnDisplayInternal(callingUid, displayId)) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800563 return info;
564 }
565 }
566 return null;
567 }
568 }
569
570 private int[] getDisplayIdsInternal(int callingUid) {
571 synchronized (mSyncRoot) {
572 final int count = mLogicalDisplays.size();
573 int[] displayIds = new int[count];
574 int n = 0;
575 for (int i = 0; i < count; i++) {
576 LogicalDisplay display = mLogicalDisplays.valueAt(i);
577 DisplayInfo info = display.getDisplayInfoLocked();
578 if (info.hasAccess(callingUid)) {
579 displayIds[n++] = mLogicalDisplays.keyAt(i);
580 }
581 }
582 if (n != count) {
583 displayIds = Arrays.copyOfRange(displayIds, 0, n);
584 }
585 return displayIds;
586 }
587 }
588
589 private void registerCallbackInternal(IDisplayManagerCallback callback, int callingPid) {
590 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -0700591 if (mCallbacks.get(callingPid) != null) {
592 throw new SecurityException("The calling process has already "
593 + "registered an IDisplayManagerCallback.");
Jeff Brown64a55af2012-08-26 02:47:39 -0700594 }
595
Jeff Brownbd6e1502012-08-28 03:27:37 -0700596 CallbackRecord record = new CallbackRecord(callingPid, callback);
597 try {
598 IBinder binder = callback.asBinder();
599 binder.linkToDeath(record, 0);
600 } catch (RemoteException ex) {
601 // give up
602 throw new RuntimeException(ex);
603 }
604
605 mCallbacks.put(callingPid, record);
606 }
607 }
608
Jeff Brownce468a32013-11-21 16:42:03 -0800609 private void onCallbackDied(CallbackRecord record) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700610 synchronized (mSyncRoot) {
Jeff Brownce468a32013-11-21 16:42:03 -0800611 mCallbacks.remove(record.mPid);
612 stopWifiDisplayScanLocked(record);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700613 }
614 }
615
Jeff Brown4ccb8232014-01-16 22:16:42 -0800616 private void startWifiDisplayScanInternal(int callingPid) {
617 synchronized (mSyncRoot) {
618 CallbackRecord record = mCallbacks.get(callingPid);
619 if (record == null) {
620 throw new IllegalStateException("The calling process has not "
621 + "registered an IDisplayManagerCallback.");
Jeff Browne08ae382012-09-07 20:36:36 -0700622 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800623 startWifiDisplayScanLocked(record);
Jeff Browne08ae382012-09-07 20:36:36 -0700624 }
625 }
626
Jeff Brownce468a32013-11-21 16:42:03 -0800627 private void startWifiDisplayScanLocked(CallbackRecord record) {
628 if (!record.mWifiDisplayScanRequested) {
629 record.mWifiDisplayScanRequested = true;
630 if (mWifiDisplayScanRequestCount++ == 0) {
631 if (mWifiDisplayAdapter != null) {
632 mWifiDisplayAdapter.requestStartScanLocked();
633 }
634 }
635 }
636 }
637
Jeff Brown4ccb8232014-01-16 22:16:42 -0800638 private void stopWifiDisplayScanInternal(int callingPid) {
639 synchronized (mSyncRoot) {
640 CallbackRecord record = mCallbacks.get(callingPid);
641 if (record == null) {
642 throw new IllegalStateException("The calling process has not "
643 + "registered an IDisplayManagerCallback.");
Jeff Brownce468a32013-11-21 16:42:03 -0800644 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800645 stopWifiDisplayScanLocked(record);
Jeff Brownce468a32013-11-21 16:42:03 -0800646 }
647 }
648
649 private void stopWifiDisplayScanLocked(CallbackRecord record) {
650 if (record.mWifiDisplayScanRequested) {
651 record.mWifiDisplayScanRequested = false;
652 if (--mWifiDisplayScanRequestCount == 0) {
653 if (mWifiDisplayAdapter != null) {
654 mWifiDisplayAdapter.requestStopScanLocked();
655 }
656 } else if (mWifiDisplayScanRequestCount < 0) {
Dianne Hackborn8d051722014-10-01 14:59:58 -0700657 Slog.wtf(TAG, "mWifiDisplayScanRequestCount became negative: "
Jeff Brownce468a32013-11-21 16:42:03 -0800658 + mWifiDisplayScanRequestCount);
659 mWifiDisplayScanRequestCount = 0;
660 }
661 }
662 }
663
Jeff Brown4ccb8232014-01-16 22:16:42 -0800664 private void connectWifiDisplayInternal(String address) {
665 synchronized (mSyncRoot) {
666 if (mWifiDisplayAdapter != null) {
667 mWifiDisplayAdapter.requestConnectLocked(address);
Jeff Browne08ae382012-09-07 20:36:36 -0700668 }
Jeff Browne08ae382012-09-07 20:36:36 -0700669 }
670 }
671
Jeff Brown4ccb8232014-01-16 22:16:42 -0800672 private void pauseWifiDisplayInternal() {
673 synchronized (mSyncRoot) {
674 if (mWifiDisplayAdapter != null) {
675 mWifiDisplayAdapter.requestPauseLocked();
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700676 }
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700677 }
678 }
679
Jeff Brown4ccb8232014-01-16 22:16:42 -0800680 private void resumeWifiDisplayInternal() {
681 synchronized (mSyncRoot) {
682 if (mWifiDisplayAdapter != null) {
683 mWifiDisplayAdapter.requestResumeLocked();
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700684 }
Chong Zhang1f3ecaa2013-05-03 15:55:36 -0700685 }
686 }
687
Jeff Brown4ccb8232014-01-16 22:16:42 -0800688 private void disconnectWifiDisplayInternal() {
689 synchronized (mSyncRoot) {
690 if (mWifiDisplayAdapter != null) {
691 mWifiDisplayAdapter.requestDisconnectLocked();
Jeff Browne08ae382012-09-07 20:36:36 -0700692 }
Jeff Browne08ae382012-09-07 20:36:36 -0700693 }
694 }
695
Jeff Brown4ccb8232014-01-16 22:16:42 -0800696 private void renameWifiDisplayInternal(String address, String alias) {
697 synchronized (mSyncRoot) {
698 if (mWifiDisplayAdapter != null) {
699 mWifiDisplayAdapter.requestRenameLocked(address, alias);
Jeff Brown89d55462012-09-19 11:33:42 -0700700 }
Jeff Brown89d55462012-09-19 11:33:42 -0700701 }
702 }
703
Jeff Brown4ccb8232014-01-16 22:16:42 -0800704 private void forgetWifiDisplayInternal(String address) {
705 synchronized (mSyncRoot) {
706 if (mWifiDisplayAdapter != null) {
707 mWifiDisplayAdapter.requestForgetLocked(address);
Jeff Brown89d55462012-09-19 11:33:42 -0700708 }
Jeff Brown89d55462012-09-19 11:33:42 -0700709 }
710 }
711
Jeff Brown4ccb8232014-01-16 22:16:42 -0800712 private WifiDisplayStatus getWifiDisplayStatusInternal() {
713 synchronized (mSyncRoot) {
714 if (mWifiDisplayAdapter != null) {
715 return mWifiDisplayAdapter.getWifiDisplayStatusLocked();
Jeff Browne08ae382012-09-07 20:36:36 -0700716 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800717 return new WifiDisplayStatus();
Jeff Browne08ae382012-09-07 20:36:36 -0700718 }
719 }
720
Michael Wright1c9977b2016-07-12 13:30:10 -0700721 private void requestColorModeInternal(int displayId, int colorMode) {
Michael Wright58e829f2015-09-15 00:13:26 +0100722 synchronized (mSyncRoot) {
723 LogicalDisplay display = mLogicalDisplays.get(displayId);
724 if (display != null &&
Michael Wright1c9977b2016-07-12 13:30:10 -0700725 display.getRequestedColorModeLocked() != colorMode) {
726 display.setRequestedColorModeLocked(colorMode);
Michael Wright58e829f2015-09-15 00:13:26 +0100727 scheduleTraversalLocked(false);
728 }
729 }
730 }
731
Michael Wright75ee9fc2014-09-01 19:55:22 -0700732 private int createVirtualDisplayInternal(IVirtualDisplayCallback callback,
Santos Cordonee8931e2017-04-05 10:31:15 -0700733 IMediaProjection projection, int callingUid, String packageName, String name, int width,
734 int height, int densityDpi, Surface surface, int flags, String uniqueId) {
Jeff Brown4ccb8232014-01-16 22:16:42 -0800735 synchronized (mSyncRoot) {
736 if (mVirtualDisplayAdapter == null) {
737 Slog.w(TAG, "Rejecting request to create private virtual display "
738 + "because the virtual display adapter is not available.");
739 return -1;
Jeff Brown7d00aff2013-08-02 19:03:49 -0700740 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800741
742 DisplayDevice device = mVirtualDisplayAdapter.createVirtualDisplayLocked(
Santos Cordonee8931e2017-04-05 10:31:15 -0700743 callback, projection, callingUid, packageName, name, width, height, densityDpi,
744 surface, flags, uniqueId);
Jeff Brown4ccb8232014-01-16 22:16:42 -0800745 if (device == null) {
746 return -1;
Jeff Brown7d00aff2013-08-02 19:03:49 -0700747 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700748
Jeff Brown4ccb8232014-01-16 22:16:42 -0800749 handleDisplayDeviceAddedLocked(device);
750 LogicalDisplay display = findLogicalDisplayForDeviceLocked(device);
751 if (display != null) {
752 return display.getDisplayIdLocked();
Jeff Browna506a6e2013-06-04 00:02:38 -0700753 }
Jeff Brown4ccb8232014-01-16 22:16:42 -0800754
755 // Something weird happened and the logical display was not created.
756 Slog.w(TAG, "Rejecting request to create virtual display "
757 + "because the logical display was not created.");
Michael Wright75ee9fc2014-09-01 19:55:22 -0700758 mVirtualDisplayAdapter.releaseVirtualDisplayLocked(callback.asBinder());
Jeff Brown4ccb8232014-01-16 22:16:42 -0800759 handleDisplayDeviceRemovedLocked(device);
Jeff Browna506a6e2013-06-04 00:02:38 -0700760 }
761 return -1;
762 }
763
Michael Wright01e840f2014-06-26 16:03:25 -0700764 private void resizeVirtualDisplayInternal(IBinder appToken,
765 int width, int height, int densityDpi) {
766 synchronized (mSyncRoot) {
767 if (mVirtualDisplayAdapter == null) {
768 return;
769 }
770
771 mVirtualDisplayAdapter.resizeVirtualDisplayLocked(appToken, width, height, densityDpi);
772 }
773 }
774
Jeff Brown92207df2014-04-16 13:16:07 -0700775 private void setVirtualDisplaySurfaceInternal(IBinder appToken, Surface surface) {
776 synchronized (mSyncRoot) {
777 if (mVirtualDisplayAdapter == null) {
778 return;
779 }
780
781 mVirtualDisplayAdapter.setVirtualDisplaySurfaceLocked(appToken, surface);
782 }
783 }
784
Jeff Brown4ccb8232014-01-16 22:16:42 -0800785 private void releaseVirtualDisplayInternal(IBinder appToken) {
786 synchronized (mSyncRoot) {
787 if (mVirtualDisplayAdapter == null) {
788 return;
Jeff Browna506a6e2013-06-04 00:02:38 -0700789 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700790
Jeff Brown4ccb8232014-01-16 22:16:42 -0800791 DisplayDevice device =
792 mVirtualDisplayAdapter.releaseVirtualDisplayLocked(appToken);
793 if (device != null) {
794 handleDisplayDeviceRemovedLocked(device);
Jeff Browna506a6e2013-06-04 00:02:38 -0700795 }
796 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700797 }
798
chaviwda4c6942018-11-07 15:52:56 -0800799 private void setVirtualDisplayStateInternal(IBinder appToken, boolean isOn) {
800 synchronized (mSyncRoot) {
801 if (mVirtualDisplayAdapter == null) {
802 return;
803 }
804
805 mVirtualDisplayAdapter.setVirtualDisplayStateLocked(appToken, isOn);
806 }
807 }
808
Santos Cordonc22c5632017-06-21 16:03:49 -0700809 private void registerDefaultDisplayAdapters() {
810 // Register default display adapters.
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700811 synchronized (mSyncRoot) {
Santos Cordonc22c5632017-06-21 16:03:49 -0700812 // main display adapter
Mike Lockwoode63f6f72013-11-15 11:01:47 -0800813 registerDisplayAdapterLocked(new LocalDisplayAdapter(
814 mSyncRoot, mContext, mHandler, mDisplayAdapterListener));
Santos Cordonc22c5632017-06-21 16:03:49 -0700815
816 // Standalone VR devices rely on a virtual display as their primary display for
817 // 2D UI. We register virtual display adapter along side the main display adapter
818 // here so that it is ready by the time the system sends the home Intent for
819 // early apps like SetupWizard/Launcher. In particular, SUW is displayed using
820 // the virtual display inside VR before any VR-specific apps even run.
821 mVirtualDisplayAdapter = mInjector.getVirtualDisplayAdapter(mSyncRoot, mContext,
822 mHandler, mDisplayAdapterListener);
823 if (mVirtualDisplayAdapter != null) {
824 registerDisplayAdapterLocked(mVirtualDisplayAdapter);
825 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700826 }
827 }
828
829 private void registerAdditionalDisplayAdapters() {
830 synchronized (mSyncRoot) {
831 if (shouldRegisterNonEssentialDisplayAdaptersLocked()) {
Jeff Brown89d55462012-09-19 11:33:42 -0700832 registerOverlayDisplayAdapterLocked();
833 registerWifiDisplayAdapterLocked();
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700834 }
835 }
836 }
837
Jeff Brown89d55462012-09-19 11:33:42 -0700838 private void registerOverlayDisplayAdapterLocked() {
839 registerDisplayAdapterLocked(new OverlayDisplayAdapter(
840 mSyncRoot, mContext, mHandler, mDisplayAdapterListener, mUiHandler));
841 }
842
843 private void registerWifiDisplayAdapterLocked() {
844 if (mContext.getResources().getBoolean(
Jeff Brownbbd28a22012-09-20 16:47:15 -0700845 com.android.internal.R.bool.config_enableWifiDisplay)
846 || SystemProperties.getInt(FORCE_WIFI_DISPLAY_ENABLE, -1) == 1) {
Jeff Brown89d55462012-09-19 11:33:42 -0700847 mWifiDisplayAdapter = new WifiDisplayAdapter(
848 mSyncRoot, mContext, mHandler, mDisplayAdapterListener,
849 mPersistentDataStore);
850 registerDisplayAdapterLocked(mWifiDisplayAdapter);
851 }
852 }
853
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700854 private boolean shouldRegisterNonEssentialDisplayAdaptersLocked() {
855 // In safe mode, we disable non-essential display adapters to give the user
856 // an opportunity to fix broken settings or other problems that might affect
857 // system stability.
858 // In only-core mode, we disable non-essential display adapters to minimize
859 // the number of dependencies that are started while in this mode and to
860 // prevent problems that might occur due to the device being encrypted.
861 return !mSafeMode && !mOnlyCore;
862 }
863
864 private void registerDisplayAdapterLocked(DisplayAdapter adapter) {
865 mDisplayAdapters.add(adapter);
866 adapter.registerLocked();
867 }
868
Jeff Brownbd6e1502012-08-28 03:27:37 -0700869 private void handleDisplayDeviceAdded(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700870 synchronized (mSyncRoot) {
Jeff Browna506a6e2013-06-04 00:02:38 -0700871 handleDisplayDeviceAddedLocked(device);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700872 }
873 }
874
Jeff Browna506a6e2013-06-04 00:02:38 -0700875 private void handleDisplayDeviceAddedLocked(DisplayDevice device) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700876 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
Jeff Browna506a6e2013-06-04 00:02:38 -0700877 if (mDisplayDevices.contains(device)) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700878 Slog.w(TAG, "Attempted to add already added display device: " + info);
Jeff Browna506a6e2013-06-04 00:02:38 -0700879 return;
880 }
881
Jeff Brown10acf6d2015-04-14 14:20:47 -0700882 Slog.i(TAG, "Display device added: " + info);
883 device.mDebugLastLoggedDeviceInfo = info;
Jeff Browna506a6e2013-06-04 00:02:38 -0700884
885 mDisplayDevices.add(device);
Michael Wright1c9977b2016-07-12 13:30:10 -0700886 LogicalDisplay display = addLogicalDisplayLocked(device);
Jeff Brown0033a862014-10-08 12:06:39 -0700887 Runnable work = updateDisplayStateLocked(device);
888 if (work != null) {
889 work.run();
890 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700891 scheduleTraversalLocked(false);
892 }
893
Jeff Brownbd6e1502012-08-28 03:27:37 -0700894 private void handleDisplayDeviceChanged(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700895 synchronized (mSyncRoot) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700896 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
Jeff Brownbd6e1502012-08-28 03:27:37 -0700897 if (!mDisplayDevices.contains(device)) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700898 Slog.w(TAG, "Attempted to change non-existent display device: " + info);
Jeff Brownbd6e1502012-08-28 03:27:37 -0700899 return;
900 }
901
Jeff Brown10acf6d2015-04-14 14:20:47 -0700902 int diff = device.mDebugLastLoggedDeviceInfo.diff(info);
903 if (diff == DisplayDeviceInfo.DIFF_STATE) {
904 Slog.i(TAG, "Display device changed state: \"" + info.name
905 + "\", " + Display.stateToString(info.state));
906 } else if (diff != 0) {
907 Slog.i(TAG, "Display device changed: " + info);
908 }
Michael Wright1c9977b2016-07-12 13:30:10 -0700909 if ((diff & DisplayDeviceInfo.DIFF_COLOR_MODE) != 0) {
910 try {
911 mPersistentDataStore.setColorMode(device, info.colorMode);
912 } finally {
913 mPersistentDataStore.saveIfNeeded();
914 }
915 }
Jeff Brown10acf6d2015-04-14 14:20:47 -0700916 device.mDebugLastLoggedDeviceInfo = info;
Jeff Browne87bf032012-09-20 18:30:13 -0700917
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700918 device.applyPendingDisplayDeviceInfoChangesLocked();
919 if (updateLogicalDisplaysLocked()) {
Craig Mautner65d11b32012-10-01 13:59:52 -0700920 scheduleTraversalLocked(false);
Jeff Brown64a55af2012-08-26 02:47:39 -0700921 }
922 }
923 }
924
Jeff Brownbd6e1502012-08-28 03:27:37 -0700925 private void handleDisplayDeviceRemoved(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700926 synchronized (mSyncRoot) {
Jeff Browna506a6e2013-06-04 00:02:38 -0700927 handleDisplayDeviceRemovedLocked(device);
928 }
929 }
Jeff Brown8e5d33e2015-06-10 13:05:50 -0700930
Jeff Browna506a6e2013-06-04 00:02:38 -0700931 private void handleDisplayDeviceRemovedLocked(DisplayDevice device) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700932 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
Jeff Browna506a6e2013-06-04 00:02:38 -0700933 if (!mDisplayDevices.remove(device)) {
Jeff Brown10acf6d2015-04-14 14:20:47 -0700934 Slog.w(TAG, "Attempted to remove non-existent display device: " + info);
Jeff Browna506a6e2013-06-04 00:02:38 -0700935 return;
936 }
937
Jeff Brown10acf6d2015-04-14 14:20:47 -0700938 Slog.i(TAG, "Display device removed: " + info);
939 device.mDebugLastLoggedDeviceInfo = info;
Jeff Browna506a6e2013-06-04 00:02:38 -0700940
Jeff Browna506a6e2013-06-04 00:02:38 -0700941 updateLogicalDisplaysLocked();
942 scheduleTraversalLocked(false);
943 }
944
Adrian Roos9ee5dff2018-08-22 20:19:49 +0200945 private void handleLogicalDisplayChanged(int displayId, @NonNull LogicalDisplay display) {
946 if (displayId == Display.DEFAULT_DISPLAY) {
947 recordTopInsetLocked(display);
948 }
949 sendDisplayEventLocked(displayId, DisplayManagerGlobal.EVENT_DISPLAY_CHANGED);
950 }
951
Jeff Brown8e5d33e2015-06-10 13:05:50 -0700952 private void applyGlobalDisplayStateLocked(List<Runnable> workQueue) {
Jeff Browna506a6e2013-06-04 00:02:38 -0700953 final int count = mDisplayDevices.size();
954 for (int i = 0; i < count; i++) {
955 DisplayDevice device = mDisplayDevices.get(i);
Jeff Browne75926d2014-09-18 15:24:49 -0700956 Runnable runnable = updateDisplayStateLocked(device);
957 if (runnable != null) {
958 workQueue.add(runnable);
959 }
Jeff Browna506a6e2013-06-04 00:02:38 -0700960 }
961 }
962
Jeff Browne75926d2014-09-18 15:24:49 -0700963 private Runnable updateDisplayStateLocked(DisplayDevice device) {
Jeff Browna506a6e2013-06-04 00:02:38 -0700964 // Blank or unblank the display immediately to match the state requested
Jeff Brown037c33e2014-04-09 00:31:55 -0700965 // by the display power controller (if known).
Jeff Browna506a6e2013-06-04 00:02:38 -0700966 DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
967 if ((info.flags & DisplayDeviceInfo.FLAG_NEVER_BLANK) == 0) {
Jeff Brown5d6443b2015-04-10 20:15:01 -0700968 return device.requestDisplayStateLocked(mGlobalDisplayState, mGlobalDisplayBrightness);
Craig Mautner4f67ba62012-08-02 11:23:00 -0700969 }
Jeff Browne75926d2014-09-18 15:24:49 -0700970 return null;
Craig Mautner4f67ba62012-08-02 11:23:00 -0700971 }
972
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700973 // Adds a new logical display based on the given display device.
974 // Sends notifications if needed.
Michael Wright1c9977b2016-07-12 13:30:10 -0700975 private LogicalDisplay addLogicalDisplayLocked(DisplayDevice device) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700976 DisplayDeviceInfo deviceInfo = device.getDisplayDeviceInfoLocked();
977 boolean isDefault = (deviceInfo.flags
978 & DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY) != 0;
979 if (isDefault && mLogicalDisplays.get(Display.DEFAULT_DISPLAY) != null) {
980 Slog.w(TAG, "Ignoring attempt to add a second default display: " + deviceInfo);
981 isDefault = false;
982 }
983
Jeff Brown27f1d672012-10-17 18:32:34 -0700984 if (!isDefault && mSingleDisplayDemoMode) {
985 Slog.i(TAG, "Not creating a logical display for a secondary display "
986 + " because single display demo mode is enabled: " + deviceInfo);
Michael Wright1c9977b2016-07-12 13:30:10 -0700987 return null;
Jeff Brown27f1d672012-10-17 18:32:34 -0700988 }
989
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700990 final int displayId = assignDisplayIdLocked(isDefault);
991 final int layerStack = assignLayerStackLocked(displayId);
992
Jeff Brownd728bf52012-09-08 18:05:28 -0700993 LogicalDisplay display = new LogicalDisplay(displayId, layerStack, device);
Jeff Brown4ed8fe72012-08-30 18:18:29 -0700994 display.updateLocked(mDisplayDevices);
995 if (!display.isValidLocked()) {
996 // This should never happen currently.
997 Slog.w(TAG, "Ignoring display device because the logical display "
998 + "created from it was not considered valid: " + deviceInfo);
Michael Wright1c9977b2016-07-12 13:30:10 -0700999 return null;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001000 }
1001
Michael Wrighteedcbf12017-08-16 23:14:54 +01001002 configureColorModeLocked(display, device);
1003 if (isDefault) {
1004 recordStableDisplayStatsIfNeededLocked(display);
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001005 recordTopInsetLocked(display);
Michael Wrighteedcbf12017-08-16 23:14:54 +01001006 }
1007
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001008 mLogicalDisplays.put(displayId, display);
1009
1010 // Wake up waitForDefaultDisplay.
1011 if (isDefault) {
1012 mSyncRoot.notifyAll();
1013 }
1014
1015 sendDisplayEventLocked(displayId, DisplayManagerGlobal.EVENT_DISPLAY_ADDED);
Michael Wright1c9977b2016-07-12 13:30:10 -07001016 return display;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001017 }
1018
1019 private int assignDisplayIdLocked(boolean isDefault) {
1020 return isDefault ? Display.DEFAULT_DISPLAY : mNextNonDefaultDisplayId++;
1021 }
1022
1023 private int assignLayerStackLocked(int displayId) {
1024 // Currently layer stacks and display ids are the same.
1025 // This need not be the case.
1026 return displayId;
1027 }
1028
Michael Wrighteedcbf12017-08-16 23:14:54 +01001029 private void configureColorModeLocked(LogicalDisplay display, DisplayDevice device) {
1030 if (display.getPrimaryDisplayDeviceLocked() == device) {
1031 int colorMode = mPersistentDataStore.getColorMode(device);
1032 if (colorMode == Display.COLOR_MODE_INVALID) {
1033 if ((device.getDisplayDeviceInfoLocked().flags
1034 & DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY) != 0) {
1035 colorMode = mDefaultDisplayDefaultColorMode;
1036 } else {
1037 colorMode = Display.COLOR_MODE_DEFAULT;
1038 }
1039 }
1040 display.setRequestedColorModeLocked(colorMode);
1041 }
1042 }
1043
1044 // If we've never recorded stable device stats for this device before and they aren't
1045 // explicitly configured, go ahead and record the stable device stats now based on the status
1046 // of the default display at first boot.
1047 private void recordStableDisplayStatsIfNeededLocked(LogicalDisplay d) {
1048 if (mStableDisplaySize.x <= 0 && mStableDisplaySize.y <= 0) {
1049 DisplayInfo info = d.getDisplayInfoLocked();
1050 setStableDisplaySizeLocked(info.getNaturalWidth(), info.getNaturalHeight());
1051 }
1052 }
1053
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001054 private void recordTopInsetLocked(@Nullable LogicalDisplay d) {
MÃ¥rten Kongstad250cb2b2018-11-02 11:01:44 +01001055 if (d == null) {
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001056 return;
1057 }
1058 int topInset = d.getInsets().top;
1059 if (topInset == mDefaultDisplayTopInset) {
1060 return;
1061 }
1062 mDefaultDisplayTopInset = topInset;
1063 SystemProperties.set(PROP_DEFAULT_DISPLAY_TOP_INSET, Integer.toString(topInset));
1064 }
1065
Michael Wrighteedcbf12017-08-16 23:14:54 +01001066 private void setStableDisplaySizeLocked(int width, int height) {
1067 mStableDisplaySize = new Point(width, height);
1068 try {
1069 mPersistentDataStore.setStableDisplaySize(mStableDisplaySize);
1070 } finally {
1071 mPersistentDataStore.saveIfNeeded();
1072 }
1073 }
1074
Dan Gittik122df862018-03-28 16:59:22 +01001075 @VisibleForTesting
1076 Curve getMinimumBrightnessCurveInternal() {
1077 return mMinimumBrightnessCurve;
1078 }
1079
Peiyong Lin277eaff2019-01-16 16:18:22 -08001080 int getPreferredWideGamutColorSpaceIdInternal() {
1081 return mWideColorSpace.getId();
1082 }
1083
Michael Wrighteef0e132017-11-21 17:57:52 +00001084 private void setBrightnessConfigurationForUserInternal(
Dan Gittik7a32fba2018-03-28 12:19:38 +01001085 @Nullable BrightnessConfiguration c, @UserIdInt int userId,
Kenny Guy05ce8092018-01-17 13:44:20 +00001086 @Nullable String packageName) {
Dan Gittik122df862018-03-28 16:59:22 +01001087 validateBrightnessConfiguration(c);
Michael Wrighteef0e132017-11-21 17:57:52 +00001088 final int userSerial = getUserManager().getUserSerialNumber(userId);
1089 synchronized (mSyncRoot) {
1090 try {
Kenny Guy05ce8092018-01-17 13:44:20 +00001091 mPersistentDataStore.setBrightnessConfigurationForUser(c, userSerial,
1092 packageName);
Michael Wrighteef0e132017-11-21 17:57:52 +00001093 } finally {
1094 mPersistentDataStore.saveIfNeeded();
1095 }
1096 if (userId == mCurrentUserId) {
1097 mDisplayPowerController.setBrightnessConfiguration(c);
1098 }
1099 }
1100 }
1101
Dan Gittik122df862018-03-28 16:59:22 +01001102 @VisibleForTesting
1103 void validateBrightnessConfiguration(BrightnessConfiguration config) {
1104 if (config == null) {
1105 return;
1106 }
1107 if (isBrightnessConfigurationTooDark(config)) {
1108 throw new IllegalArgumentException("brightness curve is too dark");
1109 }
1110 }
1111
1112 private boolean isBrightnessConfigurationTooDark(BrightnessConfiguration config) {
1113 Pair<float[], float[]> curve = config.getCurve();
1114 float[] lux = curve.first;
1115 float[] nits = curve.second;
1116 for (int i = 0; i < lux.length; i++) {
1117 if (nits[i] < mMinimumBrightnessSpline.interpolate(lux[i])) {
1118 return true;
1119 }
1120 }
1121 return false;
1122 }
1123
Michael Wrighteef0e132017-11-21 17:57:52 +00001124 private void loadBrightnessConfiguration() {
1125 synchronized (mSyncRoot) {
1126 final int userSerial = getUserManager().getUserSerialNumber(mCurrentUserId);
1127 BrightnessConfiguration config =
1128 mPersistentDataStore.getBrightnessConfiguration(userSerial);
1129 mDisplayPowerController.setBrightnessConfiguration(config);
1130 }
1131 }
1132
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001133 // Updates all existing logical displays given the current set of display devices.
1134 // Removes invalid logical displays.
1135 // Sends notifications if needed.
1136 private boolean updateLogicalDisplaysLocked() {
1137 boolean changed = false;
1138 for (int i = mLogicalDisplays.size(); i-- > 0; ) {
1139 final int displayId = mLogicalDisplays.keyAt(i);
1140 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1141
1142 mTempDisplayInfo.copyFrom(display.getDisplayInfoLocked());
1143 display.updateLocked(mDisplayDevices);
1144 if (!display.isValidLocked()) {
1145 mLogicalDisplays.removeAt(i);
1146 sendDisplayEventLocked(displayId, DisplayManagerGlobal.EVENT_DISPLAY_REMOVED);
1147 changed = true;
1148 } else if (!mTempDisplayInfo.equals(display.getDisplayInfoLocked())) {
Adrian Roos9ee5dff2018-08-22 20:19:49 +02001149 handleLogicalDisplayChanged(displayId, display);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001150 changed = true;
1151 }
1152 }
1153 return changed;
1154 }
1155
Robert Carrae606b42018-02-15 15:36:23 -08001156 private void performTraversalLocked(SurfaceControl.Transaction t) {
Jeff Brownd728bf52012-09-08 18:05:28 -07001157 // Clear all viewports before configuring displays so that we can keep
1158 // track of which ones we have configured.
1159 clearViewportsLocked();
1160
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001161 // Configure each display device.
1162 final int count = mDisplayDevices.size();
1163 for (int i = 0; i < count; i++) {
1164 DisplayDevice device = mDisplayDevices.get(i);
Robert Carrae606b42018-02-15 15:36:23 -08001165 configureDisplayLocked(t, device);
1166 device.performTraversalLocked(t);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001167 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001168
1169 // Tell the input system about these new viewports.
Jeff Brown4ccb8232014-01-16 22:16:42 -08001170 if (mInputManagerInternal != null) {
Jeff Brownd728bf52012-09-08 18:05:28 -07001171 mHandler.sendEmptyMessage(MSG_UPDATE_VIEWPORT);
1172 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001173 }
1174
Michael Wright3f145a22014-07-22 19:46:03 -07001175 private void setDisplayPropertiesInternal(int displayId, boolean hasContent,
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001176 float requestedRefreshRate, int requestedModeId, boolean inTraversal) {
Craig Mautner722285e2012-09-07 13:55:58 -07001177 synchronized (mSyncRoot) {
1178 LogicalDisplay display = mLogicalDisplays.get(displayId);
Michael Wright3f145a22014-07-22 19:46:03 -07001179 if (display == null) {
1180 return;
1181 }
1182 if (display.hasContentLocked() != hasContent) {
Jeff Brown33041bd2013-08-02 21:11:14 -07001183 if (DEBUG) {
1184 Slog.d(TAG, "Display " + displayId + " hasContent flag changed: "
1185 + "hasContent=" + hasContent + ", inTraversal=" + inTraversal);
1186 }
1187
Craig Mautner722285e2012-09-07 13:55:58 -07001188 display.setHasContentLocked(hasContent);
Craig Mautner65d11b32012-10-01 13:59:52 -07001189 scheduleTraversalLocked(inTraversal);
Craig Mautner722285e2012-09-07 13:55:58 -07001190 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001191 if (requestedModeId == 0 && requestedRefreshRate != 0) {
1192 // Scan supported modes returned by display.getInfo() to find a mode with the same
1193 // size as the default display mode but with the specified refresh rate instead.
1194 requestedModeId = display.getDisplayInfoLocked().findDefaultModeByRefreshRate(
1195 requestedRefreshRate);
1196 }
1197 if (display.getRequestedModeIdLocked() != requestedModeId) {
Michael Wright3f145a22014-07-22 19:46:03 -07001198 if (DEBUG) {
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001199 Slog.d(TAG, "Display " + displayId + " switching to mode " + requestedModeId);
Michael Wright3f145a22014-07-22 19:46:03 -07001200 }
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07001201 display.setRequestedModeIdLocked(requestedModeId);
Michael Wright3f145a22014-07-22 19:46:03 -07001202 scheduleTraversalLocked(inTraversal);
1203 }
Craig Mautner722285e2012-09-07 13:55:58 -07001204 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001205 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001206
Filip Gruszczynskid2e86402015-02-19 13:05:03 -08001207 private void setDisplayOffsetsInternal(int displayId, int x, int y) {
1208 synchronized (mSyncRoot) {
1209 LogicalDisplay display = mLogicalDisplays.get(displayId);
1210 if (display == null) {
1211 return;
1212 }
1213 if (display.getDisplayOffsetXLocked() != x
1214 || display.getDisplayOffsetYLocked() != y) {
1215 if (DEBUG) {
1216 Slog.d(TAG, "Display " + displayId + " burn-in offset set to ("
1217 + x + ", " + y + ")");
1218 }
1219 display.setDisplayOffsetsLocked(x, y);
1220 scheduleTraversalLocked(false);
1221 }
1222 }
1223 }
1224
Andrii Kulianfb1bf692017-01-17 11:17:34 -08001225 // Updates the lists of UIDs that are present on displays.
1226 private void setDisplayAccessUIDsInternal(SparseArray<IntArray> newDisplayAccessUIDs) {
1227 synchronized (mSyncRoot) {
1228 mDisplayAccessUIDs.clear();
1229 for (int i = newDisplayAccessUIDs.size() - 1; i >= 0; i--) {
1230 mDisplayAccessUIDs.append(newDisplayAccessUIDs.keyAt(i),
1231 newDisplayAccessUIDs.valueAt(i));
1232 }
1233 }
1234 }
1235
1236 // Checks if provided UID's content is present on the display and UID has access to it.
1237 private boolean isUidPresentOnDisplayInternal(int uid, int displayId) {
1238 synchronized (mSyncRoot) {
1239 final IntArray displayUIDs = mDisplayAccessUIDs.get(displayId);
1240 return displayUIDs != null && displayUIDs.indexOf(uid) != -1;
1241 }
1242 }
1243
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001244 @Nullable
1245 private IBinder getDisplayToken(int displayId) {
1246 synchronized (mSyncRoot) {
1247 final LogicalDisplay display = mLogicalDisplays.get(displayId);
1248 if (display != null) {
1249 final DisplayDevice device = display.getPrimaryDisplayDeviceLocked();
1250 if (device != null) {
1251 return device.getDisplayTokenLocked();
1252 }
1253 }
1254 }
1255
1256 return null;
1257 }
1258
1259 private boolean screenshotInternal(int displayId, Surface outSurface) {
1260 final IBinder token = getDisplayToken(displayId);
1261 if (token == null) {
1262 return false;
1263 }
1264 SurfaceControl.screenshot(token, outSurface);
1265 return true;
1266 }
1267
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001268 @VisibleForTesting
1269 DisplayedContentSamplingAttributes getDisplayedContentSamplingAttributesInternal(
1270 int displayId) {
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001271 final IBinder token = getDisplayToken(displayId);
1272 if (token == null) {
1273 return null;
1274 }
1275 return SurfaceControl.getDisplayedContentSamplingAttributes(token);
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001276 }
1277
1278 @VisibleForTesting
1279 boolean setDisplayedContentSamplingEnabledInternal(
1280 int displayId, boolean enable, int componentMask, int maxFrames) {
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001281 final IBinder token = getDisplayToken(displayId);
1282 if (token == null) {
1283 return false;
1284 }
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001285 return SurfaceControl.setDisplayedContentSamplingEnabled(
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001286 token, enable, componentMask, maxFrames);
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001287 }
1288
1289 @VisibleForTesting
1290 DisplayedContentSample getDisplayedContentSampleInternal(int displayId,
1291 long maxFrames, long timestamp) {
Dominik Laskowskie912ae32019-01-26 11:19:36 -08001292 final IBinder token = getDisplayToken(displayId);
1293 if (token == null) {
1294 return null;
1295 }
1296 return SurfaceControl.getDisplayedContentSample(token, maxFrames, timestamp);
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07001297 }
1298
Jeff Brownd728bf52012-09-08 18:05:28 -07001299 private void clearViewportsLocked() {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001300 mViewports.clear();
Craig Mautner722285e2012-09-07 13:55:58 -07001301 }
1302
Robert Carrae606b42018-02-15 15:36:23 -08001303 private void configureDisplayLocked(SurfaceControl.Transaction t, DisplayDevice device) {
Jeff Brownd14c8c92014-01-07 18:13:09 -08001304 final DisplayDeviceInfo info = device.getDisplayDeviceInfoLocked();
1305 final boolean ownContent = (info.flags & DisplayDeviceInfo.FLAG_OWN_CONTENT_ONLY) != 0;
Jeff Browna506a6e2013-06-04 00:02:38 -07001306
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001307 // Find the logical display that the display device is showing.
Jeff Brownd14c8c92014-01-07 18:13:09 -08001308 // Certain displays only ever show their own content.
Craig Mautner722285e2012-09-07 13:55:58 -07001309 LogicalDisplay display = findLogicalDisplayForDeviceLocked(device);
Jeff Brownd14c8c92014-01-07 18:13:09 -08001310 if (!ownContent) {
Jeff Browna506a6e2013-06-04 00:02:38 -07001311 if (display != null && !display.hasContentLocked()) {
1312 // If the display does not have any content of its own, then
1313 // automatically mirror the default logical display contents.
1314 display = null;
1315 }
1316 if (display == null) {
1317 display = mLogicalDisplays.get(Display.DEFAULT_DISPLAY);
1318 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001319 }
1320
1321 // Apply the logical display configuration to the display device.
1322 if (display == null) {
1323 // TODO: no logical display for the device, blank it
Jeff Brownd728bf52012-09-08 18:05:28 -07001324 Slog.w(TAG, "Missing logical display to use for physical display device: "
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001325 + device.getDisplayDeviceInfoLocked());
Jeff Brownd728bf52012-09-08 18:05:28 -07001326 return;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001327 }
Robert Carrae606b42018-02-15 15:36:23 -08001328 display.configureDisplayLocked(t, device, info.state == Display.STATE_OFF);
Arthur Hung41e81e72018-10-31 18:04:56 +08001329 final int viewportType;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001330 // Update the corresponding viewport.
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001331 if ((info.flags & DisplayDeviceInfo.FLAG_DEFAULT_DISPLAY) != 0) {
Arthur Hung41e81e72018-10-31 18:04:56 +08001332 viewportType = VIEWPORT_INTERNAL;
1333 } else if (info.touch == DisplayDeviceInfo.TOUCH_EXTERNAL) {
1334 viewportType = VIEWPORT_EXTERNAL;
1335 } else if (info.touch == DisplayDeviceInfo.TOUCH_VIRTUAL
1336 && !TextUtils.isEmpty(info.uniqueId)) {
1337 viewportType = VIEWPORT_VIRTUAL;
1338 } else {
1339 Slog.wtf(TAG, "Unable to populate viewport for display device: " + info);
1340 return;
Jeff Brownd728bf52012-09-08 18:05:28 -07001341 }
Santos Cordonee8931e2017-04-05 10:31:15 -07001342
Arthur Hung41e81e72018-10-31 18:04:56 +08001343 populateViewportLocked(viewportType, display.getDisplayIdLocked(), device, info.uniqueId);
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001344 }
1345
1346 /**
1347 * Get internal or external viewport. Create it if does not currently exist.
1348 * @param viewportType - either INTERNAL or EXTERNAL
1349 * @return the viewport with the requested type
1350 */
Arthur Hung41e81e72018-10-31 18:04:56 +08001351 private DisplayViewport getViewportLocked(int viewportType, String uniqueId) {
1352 if (viewportType != VIEWPORT_INTERNAL && viewportType != VIEWPORT_EXTERNAL
1353 && viewportType != VIEWPORT_VIRTUAL) {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001354 Slog.wtf(TAG, "Cannot call getViewportByTypeLocked for type "
1355 + DisplayViewport.typeToString(viewportType));
1356 return null;
1357 }
Arthur Hung41e81e72018-10-31 18:04:56 +08001358
1359 // Only allow a single INTERNAL or EXTERNAL viewport by forcing their uniqueIds
1360 // to be identical (in particular, empty).
1361 // TODO (b/116824030) allow multiple EXTERNAL viewports and remove this function.
1362 if (viewportType != VIEWPORT_VIRTUAL) {
1363 uniqueId = "";
1364 }
1365
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001366 DisplayViewport viewport;
1367 final int count = mViewports.size();
1368 for (int i = 0; i < count; i++) {
1369 viewport = mViewports.get(i);
Arthur Hung41e81e72018-10-31 18:04:56 +08001370 if (viewport.type == viewportType && uniqueId.equals(viewport.uniqueId)) {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001371 return viewport;
1372 }
1373 }
1374
Arthur Hung41e81e72018-10-31 18:04:56 +08001375 // Creates the viewport if none exists.
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001376 viewport = new DisplayViewport();
1377 viewport.type = viewportType;
Arthur Hung41e81e72018-10-31 18:04:56 +08001378 viewport.uniqueId = uniqueId;
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001379 mViewports.add(viewport);
1380 return viewport;
1381 }
1382
Arthur Hung41e81e72018-10-31 18:04:56 +08001383 private void populateViewportLocked(int viewportType,
1384 int displayId, DisplayDevice device, String uniqueId) {
1385 final DisplayViewport viewport = getViewportLocked(viewportType, uniqueId);
Jeff Brownd728bf52012-09-08 18:05:28 -07001386 device.populateViewportLocked(viewport);
Arthur Hung41e81e72018-10-31 18:04:56 +08001387 viewport.valid = true;
1388 viewport.displayId = displayId;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001389 }
1390
1391 private LogicalDisplay findLogicalDisplayForDeviceLocked(DisplayDevice device) {
1392 final int count = mLogicalDisplays.size();
1393 for (int i = 0; i < count; i++) {
1394 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1395 if (display.getPrimaryDisplayDeviceLocked() == device) {
1396 return display;
1397 }
1398 }
1399 return null;
1400 }
1401
Jeff Brownbd6e1502012-08-28 03:27:37 -07001402 private void sendDisplayEventLocked(int displayId, int event) {
1403 Message msg = mHandler.obtainMessage(MSG_DELIVER_DISPLAY_EVENT, displayId, event);
1404 mHandler.sendMessage(msg);
1405 }
1406
Robert Carrae606b42018-02-15 15:36:23 -08001407 // Requests that performTraversals be called at a
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001408 // later time to apply changes to surfaces and displays.
Craig Mautner65d11b32012-10-01 13:59:52 -07001409 private void scheduleTraversalLocked(boolean inTraversal) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001410 if (!mPendingTraversal && mWindowManagerInternal != null) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001411 mPendingTraversal = true;
Craig Mautner65d11b32012-10-01 13:59:52 -07001412 if (!inTraversal) {
1413 mHandler.sendEmptyMessage(MSG_REQUEST_TRAVERSAL);
1414 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001415 }
1416 }
1417
1418 // Runs on Handler thread.
1419 // Delivers display event notifications to callbacks.
Jeff Brownbd6e1502012-08-28 03:27:37 -07001420 private void deliverDisplayEvent(int displayId, int event) {
1421 if (DEBUG) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001422 Slog.d(TAG, "Delivering display event: displayId="
1423 + displayId + ", event=" + event);
Jeff Brownfa25bf52012-07-23 19:26:30 -07001424 }
Jeff Brownfa25bf52012-07-23 19:26:30 -07001425
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001426 // Grab the lock and copy the callbacks.
Jeff Brownbd6e1502012-08-28 03:27:37 -07001427 final int count;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001428 synchronized (mSyncRoot) {
Jeff Brownbd6e1502012-08-28 03:27:37 -07001429 count = mCallbacks.size();
1430 mTempCallbacks.clear();
1431 for (int i = 0; i < count; i++) {
1432 mTempCallbacks.add(mCallbacks.valueAt(i));
Craig Mautner4f67ba62012-08-02 11:23:00 -07001433 }
Jeff Brownbd6e1502012-08-28 03:27:37 -07001434 }
Craig Mautner4f67ba62012-08-02 11:23:00 -07001435
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001436 // After releasing the lock, send the notifications out.
Jeff Brownbd6e1502012-08-28 03:27:37 -07001437 for (int i = 0; i < count; i++) {
1438 mTempCallbacks.get(i).notifyDisplayEventAsync(displayId, event);
1439 }
1440 mTempCallbacks.clear();
Craig Mautner4f67ba62012-08-02 11:23:00 -07001441 }
1442
Michael Wrightc39d47a2014-07-08 18:07:36 -07001443 private IMediaProjectionManager getProjectionService() {
1444 if (mProjectionService == null) {
1445 IBinder b = ServiceManager.getService(Context.MEDIA_PROJECTION_SERVICE);
1446 mProjectionService = IMediaProjectionManager.Stub.asInterface(b);
1447 }
1448 return mProjectionService;
1449 }
1450
Michael Wrighteef0e132017-11-21 17:57:52 +00001451 private UserManager getUserManager() {
1452 return mContext.getSystemService(UserManager.class);
1453 }
1454
Jeff Brown4ccb8232014-01-16 22:16:42 -08001455 private void dumpInternal(PrintWriter pw) {
Jeff Brownbd6e1502012-08-28 03:27:37 -07001456 pw.println("DISPLAY MANAGER (dumpsys display)");
Jeff Brownfa25bf52012-07-23 19:26:30 -07001457
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001458 synchronized (mSyncRoot) {
Jeff Brown9e316a12012-10-08 19:17:06 -07001459 pw.println(" mOnlyCode=" + mOnlyCore);
1460 pw.println(" mSafeMode=" + mSafeMode);
1461 pw.println(" mPendingTraversal=" + mPendingTraversal);
Jeff Brown037c33e2014-04-09 00:31:55 -07001462 pw.println(" mGlobalDisplayState=" + Display.stateToString(mGlobalDisplayState));
Jeff Brown9e316a12012-10-08 19:17:06 -07001463 pw.println(" mNextNonDefaultDisplayId=" + mNextNonDefaultDisplayId);
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001464 pw.println(" mViewports=" + mViewports);
Damien Bargiacchi4364bbf2016-11-01 21:44:20 -07001465 pw.println(" mDefaultDisplayDefaultColorMode=" + mDefaultDisplayDefaultColorMode);
Jeff Brown27f1d672012-10-17 18:32:34 -07001466 pw.println(" mSingleDisplayDemoMode=" + mSingleDisplayDemoMode);
Jeff Brownce468a32013-11-21 16:42:03 -08001467 pw.println(" mWifiDisplayScanRequestCount=" + mWifiDisplayScanRequestCount);
Michael Wrighteedcbf12017-08-16 23:14:54 +01001468 pw.println(" mStableDisplaySize=" + mStableDisplaySize);
1469
Jeff Brown9e316a12012-10-08 19:17:06 -07001470
Jeff Brownbd6e1502012-08-28 03:27:37 -07001471 IndentingPrintWriter ipw = new IndentingPrintWriter(pw, " ");
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001472 ipw.increaseIndent();
Jeff Brownbd6e1502012-08-28 03:27:37 -07001473
1474 pw.println();
1475 pw.println("Display Adapters: size=" + mDisplayAdapters.size());
Jeff Brown848c2dc2012-08-19 20:18:08 -07001476 for (DisplayAdapter adapter : mDisplayAdapters) {
Jeff Brownbd6e1502012-08-28 03:27:37 -07001477 pw.println(" " + adapter.getName());
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001478 adapter.dumpLocked(ipw);
Jeff Brown848c2dc2012-08-19 20:18:08 -07001479 }
Craig Mautner9de49362012-08-02 14:30:30 -07001480
Jeff Brownbd6e1502012-08-28 03:27:37 -07001481 pw.println();
1482 pw.println("Display Devices: size=" + mDisplayDevices.size());
1483 for (DisplayDevice device : mDisplayDevices) {
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001484 pw.println(" " + device.getDisplayDeviceInfoLocked());
1485 device.dumpLocked(ipw);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001486 }
1487
1488 final int logicalDisplayCount = mLogicalDisplays.size();
1489 pw.println();
1490 pw.println("Logical Displays: size=" + logicalDisplayCount);
1491 for (int i = 0; i < logicalDisplayCount; i++) {
1492 int displayId = mLogicalDisplays.keyAt(i);
1493 LogicalDisplay display = mLogicalDisplays.valueAt(i);
1494 pw.println(" Display " + displayId + ":");
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001495 display.dumpLocked(ipw);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001496 }
Jeff Brownce468a32013-11-21 16:42:03 -08001497
1498 final int callbackCount = mCallbacks.size();
1499 pw.println();
1500 pw.println("Callbacks: size=" + callbackCount);
1501 for (int i = 0; i < callbackCount; i++) {
1502 CallbackRecord callback = mCallbacks.valueAt(i);
1503 pw.println(" " + i + ": mPid=" + callback.mPid
1504 + ", mWifiDisplayScanRequested=" + callback.mWifiDisplayScanRequested);
1505 }
Jeff Brownad9ef192014-04-08 17:26:30 -07001506
1507 if (mDisplayPowerController != null) {
1508 mDisplayPowerController.dump(pw);
1509 }
Michael Wright1c9977b2016-07-12 13:30:10 -07001510
1511 pw.println();
1512 mPersistentDataStore.dump(pw);
Daniel Solomon8b72c5b2018-11-25 11:07:13 -08001513
1514 final ColorDisplayServiceInternal cds = LocalServices.getService(
1515 ColorDisplayServiceInternal.class);
1516 if (cds != null) {
1517 pw.println();
1518 cds.dump(pw);
1519 }
Jeff Brownbd6e1502012-08-28 03:27:37 -07001520 }
1521 }
1522
Dan Gittik122df862018-03-28 16:59:22 +01001523 private static float[] getFloatArray(TypedArray array) {
1524 int length = array.length();
1525 float[] floatArray = new float[length];
1526 for (int i = 0; i < length; i++) {
1527 floatArray[i] = array.getFloat(i, Float.NaN);
1528 }
1529 array.recycle();
1530 return floatArray;
1531 }
1532
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001533 /**
1534 * This is the object that everything in the display manager locks on.
1535 * We make it an inner class within the {@link DisplayManagerService} to so that it is
1536 * clear that the object belongs to the display manager service and that it is
1537 * a unique object with a special purpose.
1538 */
1539 public static final class SyncRoot {
1540 }
1541
Santos Cordonee8931e2017-04-05 10:31:15 -07001542 @VisibleForTesting
1543 static class Injector {
1544 VirtualDisplayAdapter getVirtualDisplayAdapter(SyncRoot syncRoot, Context context,
1545 Handler handler, DisplayAdapter.Listener displayAdapterListener) {
1546 return new VirtualDisplayAdapter(syncRoot, context, handler, displayAdapterListener);
1547 }
Santos Cordonc22c5632017-06-21 16:03:49 -07001548
1549 long getDefaultDisplayDelayTimeout() {
1550 return WAIT_FOR_DEFAULT_DISPLAY_TIMEOUT;
1551 }
Santos Cordonee8931e2017-04-05 10:31:15 -07001552 }
1553
Alex Sakhartchouk879d24f2017-06-20 22:01:19 -04001554 @VisibleForTesting
1555 DisplayDeviceInfo getDisplayDeviceInfoInternal(int displayId) {
1556 synchronized (mSyncRoot) {
1557 LogicalDisplay display = mLogicalDisplays.get(displayId);
1558 if (display != null) {
1559 DisplayDevice displayDevice = display.getPrimaryDisplayDeviceLocked();
1560 return displayDevice.getDisplayDeviceInfoLocked();
1561 }
1562 return null;
1563 }
1564 }
1565
Jeff Brownbd6e1502012-08-28 03:27:37 -07001566 private final class DisplayManagerHandler extends Handler {
1567 public DisplayManagerHandler(Looper looper) {
1568 super(looper, null, true /*async*/);
Jeff Brown848c2dc2012-08-19 20:18:08 -07001569 }
Jeff Brownbf5740e2012-08-19 23:20:02 -07001570
Jeff Brownbd6e1502012-08-28 03:27:37 -07001571 @Override
1572 public void handleMessage(Message msg) {
1573 switch (msg.what) {
Santos Cordonc22c5632017-06-21 16:03:49 -07001574 case MSG_REGISTER_DEFAULT_DISPLAY_ADAPTERS:
1575 registerDefaultDisplayAdapters();
Jeff Brownbd6e1502012-08-28 03:27:37 -07001576 break;
1577
1578 case MSG_REGISTER_ADDITIONAL_DISPLAY_ADAPTERS:
1579 registerAdditionalDisplayAdapters();
1580 break;
1581
1582 case MSG_DELIVER_DISPLAY_EVENT:
1583 deliverDisplayEvent(msg.arg1, msg.arg2);
1584 break;
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001585
1586 case MSG_REQUEST_TRAVERSAL:
Jeff Brown4ccb8232014-01-16 22:16:42 -08001587 mWindowManagerInternal.requestTraversalFromDisplayManager();
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001588 break;
Jeff Brownd728bf52012-09-08 18:05:28 -07001589
1590 case MSG_UPDATE_VIEWPORT: {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001591 final boolean changed;
Jeff Brownd728bf52012-09-08 18:05:28 -07001592 synchronized (mSyncRoot) {
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001593 changed = !mTempViewports.equals(mViewports);
1594 if (changed) {
1595 mTempViewports.clear();
1596 for (DisplayViewport d : mViewports) {
1597 mTempViewports.add(d.makeCopy());
1598 }
Santos Cordonee8931e2017-04-05 10:31:15 -07001599 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001600 }
Siarhei Vishniakou2eb0f8f2018-07-06 23:30:12 +01001601 if (changed) {
1602 mInputManagerInternal.setDisplayViewports(mTempViewports);
1603 }
Jeff Brownd728bf52012-09-08 18:05:28 -07001604 break;
1605 }
Kenny Guy22bd0442017-10-26 00:15:54 +01001606
Michael Wrighteef0e132017-11-21 17:57:52 +00001607 case MSG_LOAD_BRIGHTNESS_CONFIGURATION:
1608 loadBrightnessConfiguration();
1609 break;
Jeff Brownbd6e1502012-08-28 03:27:37 -07001610 }
1611 }
1612 }
1613
1614 private final class DisplayAdapterListener implements DisplayAdapter.Listener {
1615 @Override
1616 public void onDisplayDeviceEvent(DisplayDevice device, int event) {
1617 switch (event) {
1618 case DisplayAdapter.DISPLAY_DEVICE_EVENT_ADDED:
1619 handleDisplayDeviceAdded(device);
1620 break;
1621
1622 case DisplayAdapter.DISPLAY_DEVICE_EVENT_CHANGED:
1623 handleDisplayDeviceChanged(device);
1624 break;
1625
1626 case DisplayAdapter.DISPLAY_DEVICE_EVENT_REMOVED:
1627 handleDisplayDeviceRemoved(device);
1628 break;
1629 }
1630 }
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001631
1632 @Override
1633 public void onTraversalRequested() {
1634 synchronized (mSyncRoot) {
Craig Mautner65d11b32012-10-01 13:59:52 -07001635 scheduleTraversalLocked(false);
Jeff Brown4ed8fe72012-08-30 18:18:29 -07001636 }
1637 }
Jeff Brownbd6e1502012-08-28 03:27:37 -07001638 }
1639
1640 private final class CallbackRecord implements DeathRecipient {
Jeff Brownce468a32013-11-21 16:42:03 -08001641 public final int mPid;
Jeff Brownbd6e1502012-08-28 03:27:37 -07001642 private final IDisplayManagerCallback mCallback;
1643
Jeff Brownce468a32013-11-21 16:42:03 -08001644 public boolean mWifiDisplayScanRequested;
1645
Jeff Brownbd6e1502012-08-28 03:27:37 -07001646 public CallbackRecord(int pid, IDisplayManagerCallback callback) {
1647 mPid = pid;
1648 mCallback = callback;
1649 }
1650
1651 @Override
1652 public void binderDied() {
1653 if (DEBUG) {
1654 Slog.d(TAG, "Display listener for pid " + mPid + " died.");
1655 }
Jeff Brownce468a32013-11-21 16:42:03 -08001656 onCallbackDied(this);
Jeff Brownbd6e1502012-08-28 03:27:37 -07001657 }
1658
1659 public void notifyDisplayEventAsync(int displayId, int event) {
1660 try {
1661 mCallback.onDisplayEvent(displayId, event);
1662 } catch (RemoteException ex) {
1663 Slog.w(TAG, "Failed to notify process "
1664 + mPid + " that displays changed, assuming it died.", ex);
1665 binderDied();
1666 }
1667 }
1668 }
Jeff Brown4ccb8232014-01-16 22:16:42 -08001669
Santos Cordonee8931e2017-04-05 10:31:15 -07001670 @VisibleForTesting
1671 final class BinderService extends IDisplayManager.Stub {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001672 /**
1673 * Returns information about the specified logical display.
1674 *
1675 * @param displayId The logical display id.
1676 * @return The logical display info, or null if the display does not exist. The
1677 * returned object must be treated as immutable.
1678 */
1679 @Override // Binder call
1680 public DisplayInfo getDisplayInfo(int displayId) {
1681 final int callingUid = Binder.getCallingUid();
1682 final long token = Binder.clearCallingIdentity();
1683 try {
1684 return getDisplayInfoInternal(displayId, callingUid);
1685 } finally {
1686 Binder.restoreCallingIdentity(token);
1687 }
1688 }
1689
1690 /**
1691 * Returns the list of all display ids.
1692 */
1693 @Override // Binder call
1694 public int[] getDisplayIds() {
1695 final int callingUid = Binder.getCallingUid();
1696 final long token = Binder.clearCallingIdentity();
1697 try {
1698 return getDisplayIdsInternal(callingUid);
1699 } finally {
1700 Binder.restoreCallingIdentity(token);
1701 }
1702 }
1703
Michael Wrighteedcbf12017-08-16 23:14:54 +01001704 /**
1705 * Returns the stable device display size, in pixels.
1706 */
1707 @Override // Binder call
1708 public Point getStableDisplaySize() {
1709 final long token = Binder.clearCallingIdentity();
1710 try {
1711 return getStableDisplaySizeInternal();
1712 } finally {
1713 Binder.restoreCallingIdentity(token);
1714 }
1715 }
1716
Jeff Brown4ccb8232014-01-16 22:16:42 -08001717 @Override // Binder call
1718 public void registerCallback(IDisplayManagerCallback callback) {
1719 if (callback == null) {
1720 throw new IllegalArgumentException("listener must not be null");
1721 }
1722
1723 final int callingPid = Binder.getCallingPid();
1724 final long token = Binder.clearCallingIdentity();
1725 try {
1726 registerCallbackInternal(callback, callingPid);
1727 } finally {
1728 Binder.restoreCallingIdentity(token);
1729 }
1730 }
1731
1732 @Override // Binder call
1733 public void startWifiDisplayScan() {
1734 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1735 "Permission required to start wifi display scans");
1736
1737 final int callingPid = Binder.getCallingPid();
1738 final long token = Binder.clearCallingIdentity();
1739 try {
1740 startWifiDisplayScanInternal(callingPid);
1741 } finally {
1742 Binder.restoreCallingIdentity(token);
1743 }
1744 }
1745
1746 @Override // Binder call
1747 public void stopWifiDisplayScan() {
1748 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1749 "Permission required to stop wifi display scans");
1750
1751 final int callingPid = Binder.getCallingPid();
1752 final long token = Binder.clearCallingIdentity();
1753 try {
1754 stopWifiDisplayScanInternal(callingPid);
1755 } finally {
1756 Binder.restoreCallingIdentity(token);
1757 }
1758 }
1759
1760 @Override // Binder call
1761 public void connectWifiDisplay(String address) {
1762 if (address == null) {
1763 throw new IllegalArgumentException("address must not be null");
1764 }
1765 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1766 "Permission required to connect to a wifi display");
1767
1768 final long token = Binder.clearCallingIdentity();
1769 try {
1770 connectWifiDisplayInternal(address);
1771 } finally {
1772 Binder.restoreCallingIdentity(token);
1773 }
1774 }
1775
1776 @Override // Binder call
1777 public void disconnectWifiDisplay() {
1778 // This request does not require special permissions.
1779 // Any app can request disconnection from the currently active wifi display.
1780 // This exception should no longer be needed once wifi display control moves
1781 // to the media router service.
1782
1783 final long token = Binder.clearCallingIdentity();
1784 try {
1785 disconnectWifiDisplayInternal();
1786 } finally {
1787 Binder.restoreCallingIdentity(token);
1788 }
1789 }
1790
1791 @Override // Binder call
1792 public void renameWifiDisplay(String address, String alias) {
1793 if (address == null) {
1794 throw new IllegalArgumentException("address must not be null");
1795 }
1796 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1797 "Permission required to rename to a wifi display");
1798
1799 final long token = Binder.clearCallingIdentity();
1800 try {
1801 renameWifiDisplayInternal(address, alias);
1802 } finally {
1803 Binder.restoreCallingIdentity(token);
1804 }
1805 }
1806
1807 @Override // Binder call
1808 public void forgetWifiDisplay(String address) {
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 forget to a wifi display");
1814
1815 final long token = Binder.clearCallingIdentity();
1816 try {
1817 forgetWifiDisplayInternal(address);
1818 } finally {
1819 Binder.restoreCallingIdentity(token);
1820 }
1821 }
1822
1823 @Override // Binder call
1824 public void pauseWifiDisplay() {
1825 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1826 "Permission required to pause a wifi display session");
1827
1828 final long token = Binder.clearCallingIdentity();
1829 try {
1830 pauseWifiDisplayInternal();
1831 } finally {
1832 Binder.restoreCallingIdentity(token);
1833 }
1834 }
1835
1836 @Override // Binder call
1837 public void resumeWifiDisplay() {
1838 mContext.enforceCallingOrSelfPermission(Manifest.permission.CONFIGURE_WIFI_DISPLAY,
1839 "Permission required to resume a wifi display session");
1840
1841 final long token = Binder.clearCallingIdentity();
1842 try {
1843 resumeWifiDisplayInternal();
1844 } finally {
1845 Binder.restoreCallingIdentity(token);
1846 }
1847 }
1848
1849 @Override // Binder call
1850 public WifiDisplayStatus getWifiDisplayStatus() {
1851 // This request does not require special permissions.
1852 // Any app can get information about available wifi displays.
1853
1854 final long token = Binder.clearCallingIdentity();
1855 try {
1856 return getWifiDisplayStatusInternal();
1857 } finally {
1858 Binder.restoreCallingIdentity(token);
1859 }
1860 }
1861
1862 @Override // Binder call
Michael Wright1c9977b2016-07-12 13:30:10 -07001863 public void requestColorMode(int displayId, int colorMode) {
Michael Wright58e829f2015-09-15 00:13:26 +01001864 mContext.enforceCallingOrSelfPermission(
Michael Wright1c9977b2016-07-12 13:30:10 -07001865 Manifest.permission.CONFIGURE_DISPLAY_COLOR_MODE,
1866 "Permission required to change the display color mode");
Michael Wright58e829f2015-09-15 00:13:26 +01001867 final long token = Binder.clearCallingIdentity();
1868 try {
Michael Wright1c9977b2016-07-12 13:30:10 -07001869 requestColorModeInternal(displayId, colorMode);
Michael Wright58e829f2015-09-15 00:13:26 +01001870 } finally {
1871 Binder.restoreCallingIdentity(token);
1872 }
1873 }
1874
1875 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07001876 public int createVirtualDisplay(IVirtualDisplayCallback callback,
Michael Wrightc39d47a2014-07-08 18:07:36 -07001877 IMediaProjection projection, String packageName, String name,
Santos Cordonee8931e2017-04-05 10:31:15 -07001878 int width, int height, int densityDpi, Surface surface, int flags,
1879 String uniqueId) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001880 final int callingUid = Binder.getCallingUid();
1881 if (!validatePackageName(callingUid, packageName)) {
1882 throw new SecurityException("packageName must match the calling uid");
1883 }
Michael Wright75ee9fc2014-09-01 19:55:22 -07001884 if (callback == null) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001885 throw new IllegalArgumentException("appToken must not be null");
1886 }
1887 if (TextUtils.isEmpty(name)) {
1888 throw new IllegalArgumentException("name must be non-null and non-empty");
1889 }
1890 if (width <= 0 || height <= 0 || densityDpi <= 0) {
1891 throw new IllegalArgumentException("width, height, and densityDpi must be "
1892 + "greater than 0");
1893 }
Pablo Ceballoseb3370d2016-08-31 15:00:17 -07001894 if (surface != null && surface.isSingleBuffered()) {
Pablo Ceballosaff2f942016-07-29 14:49:55 -07001895 throw new IllegalArgumentException("Surface can't be single-buffered");
1896 }
Michael Wrightc39d47a2014-07-08 18:07:36 -07001897
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001898 if ((flags & VIRTUAL_DISPLAY_FLAG_PUBLIC) != 0) {
1899 flags |= VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR;
1900
1901 // Public displays can't be allowed to show content when locked.
Andrii Kulian7211d2e2017-01-27 15:58:05 -08001902 if ((flags & VIRTUAL_DISPLAY_FLAG_CAN_SHOW_WITH_INSECURE_KEYGUARD) != 0) {
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001903 throw new IllegalArgumentException(
1904 "Public display must not be marked as SHOW_WHEN_LOCKED_INSECURE");
1905 }
Michael Wright6720be42014-07-29 19:14:16 -07001906 }
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001907 if ((flags & VIRTUAL_DISPLAY_FLAG_OWN_CONTENT_ONLY) != 0) {
1908 flags &= ~VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR;
Michael Wright6720be42014-07-29 19:14:16 -07001909 }
1910
Michael Wrightc39d47a2014-07-08 18:07:36 -07001911 if (projection != null) {
1912 try {
1913 if (!getProjectionService().isValidMediaProjection(projection)) {
1914 throw new SecurityException("Invalid media projection");
1915 }
Michael Wright6720be42014-07-29 19:14:16 -07001916 flags = projection.applyVirtualDisplayFlags(flags);
Michael Wrightc39d47a2014-07-08 18:07:36 -07001917 } catch (RemoteException e) {
Michael Wright6720be42014-07-29 19:14:16 -07001918 throw new SecurityException("unable to validate media projection or flags");
Michael Wrightc39d47a2014-07-08 18:07:36 -07001919 }
1920 }
1921
Michael Wright6720be42014-07-29 19:14:16 -07001922 if (callingUid != Process.SYSTEM_UID &&
Andrii Kulianfc8f82b2017-01-26 13:17:27 -08001923 (flags & VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR) != 0) {
Michael Wrightc39d47a2014-07-08 18:07:36 -07001924 if (!canProjectVideo(projection)) {
1925 throw new SecurityException("Requires CAPTURE_VIDEO_OUTPUT or "
1926 + "CAPTURE_SECURE_VIDEO_OUTPUT permission, or an appropriate "
1927 + "MediaProjection token in order to create a screen sharing virtual "
1928 + "display.");
1929 }
1930 }
Santos Cordonb6992f22018-01-30 14:51:20 -08001931 if (callingUid != Process.SYSTEM_UID && (flags & VIRTUAL_DISPLAY_FLAG_SECURE) != 0) {
Michael Wrightc39d47a2014-07-08 18:07:36 -07001932 if (!canProjectSecureVideo(projection)) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001933 throw new SecurityException("Requires CAPTURE_SECURE_VIDEO_OUTPUT "
Michael Wrightc39d47a2014-07-08 18:07:36 -07001934 + "or an appropriate MediaProjection token to create a "
1935 + "secure virtual display.");
Jeff Brown4ccb8232014-01-16 22:16:42 -08001936 }
1937 }
1938
1939 final long token = Binder.clearCallingIdentity();
1940 try {
Santos Cordonee8931e2017-04-05 10:31:15 -07001941 return createVirtualDisplayInternal(callback, projection, callingUid, packageName,
1942 name, width, height, densityDpi, surface, flags, uniqueId);
Jeff Brown4ccb8232014-01-16 22:16:42 -08001943 } finally {
1944 Binder.restoreCallingIdentity(token);
1945 }
1946 }
1947
1948 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07001949 public void resizeVirtualDisplay(IVirtualDisplayCallback callback,
Michael Wright01e840f2014-06-26 16:03:25 -07001950 int width, int height, int densityDpi) {
1951 final long token = Binder.clearCallingIdentity();
1952 try {
Michael Wright75ee9fc2014-09-01 19:55:22 -07001953 resizeVirtualDisplayInternal(callback.asBinder(), width, height, densityDpi);
Michael Wright01e840f2014-06-26 16:03:25 -07001954 } finally {
1955 Binder.restoreCallingIdentity(token);
1956 }
1957 }
1958
1959 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07001960 public void setVirtualDisplaySurface(IVirtualDisplayCallback callback, Surface surface) {
Pablo Ceballoseb3370d2016-08-31 15:00:17 -07001961 if (surface != null && surface.isSingleBuffered()) {
1962 throw new IllegalArgumentException("Surface can't be single-buffered");
1963 }
Jeff Brown92207df2014-04-16 13:16:07 -07001964 final long token = Binder.clearCallingIdentity();
1965 try {
Michael Wright75ee9fc2014-09-01 19:55:22 -07001966 setVirtualDisplaySurfaceInternal(callback.asBinder(), surface);
Jeff Brown92207df2014-04-16 13:16:07 -07001967 } finally {
1968 Binder.restoreCallingIdentity(token);
1969 }
1970 }
1971
1972 @Override // Binder call
Michael Wright75ee9fc2014-09-01 19:55:22 -07001973 public void releaseVirtualDisplay(IVirtualDisplayCallback callback) {
Jeff Brown4ccb8232014-01-16 22:16:42 -08001974 final long token = Binder.clearCallingIdentity();
1975 try {
Michael Wright75ee9fc2014-09-01 19:55:22 -07001976 releaseVirtualDisplayInternal(callback.asBinder());
Jeff Brown4ccb8232014-01-16 22:16:42 -08001977 } finally {
1978 Binder.restoreCallingIdentity(token);
1979 }
1980 }
1981
1982 @Override // Binder call
chaviwda4c6942018-11-07 15:52:56 -08001983 public void setVirtualDisplayState(IVirtualDisplayCallback callback, boolean isOn) {
1984 final long token = Binder.clearCallingIdentity();
1985 try {
1986 setVirtualDisplayStateInternal(callback.asBinder(), isOn);
1987 } finally {
1988 Binder.restoreCallingIdentity(token);
1989 }
1990 }
1991
1992 @Override // Binder call
Jeff Brown4ccb8232014-01-16 22:16:42 -08001993 public void dump(FileDescriptor fd, final PrintWriter pw, String[] args) {
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -06001994 if (!DumpUtils.checkDumpPermission(mContext, TAG, pw)) return;
Jeff Brown4ccb8232014-01-16 22:16:42 -08001995
1996 final long token = Binder.clearCallingIdentity();
1997 try {
1998 dumpInternal(pw);
1999 } finally {
2000 Binder.restoreCallingIdentity(token);
2001 }
2002 }
2003
Kenny Guy22bd0442017-10-26 00:15:54 +01002004 @Override // Binder call
Kenny Guy29aa30e2017-11-30 13:43:46 +00002005 public ParceledListSlice<BrightnessChangeEvent> getBrightnessEvents(String callingPackage) {
Kenny Guy22bd0442017-10-26 00:15:54 +01002006 mContext.enforceCallingOrSelfPermission(
2007 Manifest.permission.BRIGHTNESS_SLIDER_USAGE,
2008 "Permission to read brightness events.");
Kenny Guy29aa30e2017-11-30 13:43:46 +00002009
2010 final int callingUid = Binder.getCallingUid();
2011 AppOpsManager appOpsManager = mContext.getSystemService(AppOpsManager.class);
Jeff Sharkeyd9311192018-04-16 16:50:34 +00002012 final int mode = appOpsManager.noteOp(AppOpsManager.OP_GET_USAGE_STATS,
Kenny Guy29aa30e2017-11-30 13:43:46 +00002013 callingUid, callingPackage);
2014 final boolean hasUsageStats;
2015 if (mode == AppOpsManager.MODE_DEFAULT) {
2016 // The default behavior here is to check if PackageManager has given the app
2017 // permission.
2018 hasUsageStats = mContext.checkCallingPermission(
2019 Manifest.permission.PACKAGE_USAGE_STATS)
2020 == PackageManager.PERMISSION_GRANTED;
2021 } else {
2022 hasUsageStats = mode == AppOpsManager.MODE_ALLOWED;
2023 }
2024
2025 final int userId = UserHandle.getUserId(callingUid);
Kenny Guy22bd0442017-10-26 00:15:54 +01002026 final long token = Binder.clearCallingIdentity();
2027 try {
Michael Wright144aac92017-12-21 18:37:41 +00002028 synchronized (mSyncRoot) {
2029 return mDisplayPowerController.getBrightnessEvents(userId, hasUsageStats);
2030 }
Kenny Guy22bd0442017-10-26 00:15:54 +01002031 } finally {
2032 Binder.restoreCallingIdentity(token);
2033 }
2034 }
2035
Michael Wrighteef0e132017-11-21 17:57:52 +00002036 @Override // Binder call
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00002037 public ParceledListSlice<AmbientBrightnessDayStats> getAmbientBrightnessStats() {
2038 mContext.enforceCallingOrSelfPermission(
2039 Manifest.permission.ACCESS_AMBIENT_LIGHT_STATS,
2040 "Permission required to to access ambient light stats.");
2041 final int callingUid = Binder.getCallingUid();
2042 final int userId = UserHandle.getUserId(callingUid);
2043 final long token = Binder.clearCallingIdentity();
2044 try {
2045 synchronized (mSyncRoot) {
2046 return mDisplayPowerController.getAmbientBrightnessStats(userId);
2047 }
2048 } finally {
2049 Binder.restoreCallingIdentity(token);
2050 }
2051 }
2052
2053 @Override // Binder call
Michael Wrighteef0e132017-11-21 17:57:52 +00002054 public void setBrightnessConfigurationForUser(
Kenny Guy05ce8092018-01-17 13:44:20 +00002055 BrightnessConfiguration c, @UserIdInt int userId, String packageName) {
Michael Wrighteef0e132017-11-21 17:57:52 +00002056 mContext.enforceCallingOrSelfPermission(
2057 Manifest.permission.CONFIGURE_DISPLAY_BRIGHTNESS,
2058 "Permission required to change the display's brightness configuration");
2059 if (userId != UserHandle.getCallingUserId()) {
2060 mContext.enforceCallingOrSelfPermission(
2061 Manifest.permission.INTERACT_ACROSS_USERS,
2062 "Permission required to change the display brightness"
2063 + " configuration of another user");
2064 }
Kenny Guy05ce8092018-01-17 13:44:20 +00002065 if (packageName != null && !validatePackageName(getCallingUid(), packageName)) {
2066 packageName = null;
2067 }
Michael Wrighteef0e132017-11-21 17:57:52 +00002068 final long token = Binder.clearCallingIdentity();
2069 try {
Kenny Guy05ce8092018-01-17 13:44:20 +00002070 setBrightnessConfigurationForUserInternal(c, userId, packageName);
Michael Wrighteef0e132017-11-21 17:57:52 +00002071 } finally {
2072 Binder.restoreCallingIdentity(token);
2073 }
2074 }
2075
Michael Wrightd8460232018-01-16 18:04:59 +00002076 @Override // Binder call
Kenny Guy6d1009f2018-03-14 14:28:23 +00002077 public BrightnessConfiguration getBrightnessConfigurationForUser(int userId) {
2078 mContext.enforceCallingOrSelfPermission(
2079 Manifest.permission.CONFIGURE_DISPLAY_BRIGHTNESS,
2080 "Permission required to read the display's brightness configuration");
2081 if (userId != UserHandle.getCallingUserId()) {
2082 mContext.enforceCallingOrSelfPermission(
2083 Manifest.permission.INTERACT_ACROSS_USERS,
2084 "Permission required to read the display brightness"
2085 + " configuration of another user");
2086 }
2087 final long token = Binder.clearCallingIdentity();
2088 try {
2089 final int userSerial = getUserManager().getUserSerialNumber(userId);
2090 synchronized (mSyncRoot) {
2091 BrightnessConfiguration config =
2092 mPersistentDataStore.getBrightnessConfiguration(userSerial);
2093 if (config == null) {
2094 config = mDisplayPowerController.getDefaultBrightnessConfiguration();
2095 }
2096 return config;
2097 }
2098 } finally {
2099 Binder.restoreCallingIdentity(token);
2100 }
2101 }
2102
2103 @Override // Binder call
2104 public BrightnessConfiguration getDefaultBrightnessConfiguration() {
2105 mContext.enforceCallingOrSelfPermission(
2106 Manifest.permission.CONFIGURE_DISPLAY_BRIGHTNESS,
2107 "Permission required to read the display's default brightness configuration");
2108 final long token = Binder.clearCallingIdentity();
2109 try {
2110 synchronized (mSyncRoot) {
2111 return mDisplayPowerController.getDefaultBrightnessConfiguration();
2112 }
2113 } finally {
2114 Binder.restoreCallingIdentity(token);
2115 }
2116 }
2117
2118 @Override // Binder call
Michael Wrightd8460232018-01-16 18:04:59 +00002119 public void setTemporaryBrightness(int brightness) {
2120 mContext.enforceCallingOrSelfPermission(
2121 Manifest.permission.CONTROL_DISPLAY_BRIGHTNESS,
2122 "Permission required to set the display's brightness");
2123 final long token = Binder.clearCallingIdentity();
2124 try {
2125 synchronized (mSyncRoot) {
2126 mDisplayPowerController.setTemporaryBrightness(brightness);
2127 }
2128 } finally {
2129 Binder.restoreCallingIdentity(token);
2130 }
2131 }
2132
2133 @Override // Binder call
2134 public void setTemporaryAutoBrightnessAdjustment(float adjustment) {
2135 mContext.enforceCallingOrSelfPermission(
2136 Manifest.permission.CONTROL_DISPLAY_BRIGHTNESS,
2137 "Permission required to set the display's auto brightness adjustment");
2138 final long token = Binder.clearCallingIdentity();
2139 try {
2140 synchronized (mSyncRoot) {
2141 mDisplayPowerController.setTemporaryAutoBrightnessAdjustment(adjustment);
2142 }
2143 } finally {
2144 Binder.restoreCallingIdentity(token);
2145 }
2146 }
2147
Dan Gittik7a32fba2018-03-28 12:19:38 +01002148 @Override // Binder call
2149 public void onShellCommand(FileDescriptor in, FileDescriptor out,
2150 FileDescriptor err, String[] args, ShellCallback callback,
2151 ResultReceiver resultReceiver) {
2152 final long token = Binder.clearCallingIdentity();
2153 try {
2154 DisplayManagerShellCommand command = new DisplayManagerShellCommand(this);
2155 command.exec(this, in, out, err, args, callback, resultReceiver);
2156 } finally {
2157 Binder.restoreCallingIdentity(token);
2158 }
2159 }
2160
Dan Gittik122df862018-03-28 16:59:22 +01002161 @Override // Binder call
2162 public Curve getMinimumBrightnessCurve() {
2163 final long token = Binder.clearCallingIdentity();
2164 try {
2165 return getMinimumBrightnessCurveInternal();
2166 } finally {
2167 Binder.restoreCallingIdentity(token);
2168 }
2169 }
2170
Peiyong Lin277eaff2019-01-16 16:18:22 -08002171 @Override // Binder call
2172 public int getPreferredWideGamutColorSpaceId() {
2173 final long token = Binder.clearCallingIdentity();
2174 try {
2175 return getPreferredWideGamutColorSpaceIdInternal();
2176 } finally {
2177 Binder.restoreCallingIdentity(token);
2178 }
2179 }
2180
Dan Gittik7a32fba2018-03-28 12:19:38 +01002181 void setBrightness(int brightness) {
2182 Settings.System.putIntForUser(mContext.getContentResolver(),
2183 Settings.System.SCREEN_BRIGHTNESS, brightness, UserHandle.USER_CURRENT);
2184 }
2185
2186 void resetBrightnessConfiguration() {
2187 setBrightnessConfigurationForUserInternal(null, mContext.getUserId(),
2188 mContext.getPackageName());
2189 }
2190
Dan Gittika5a2d632019-01-09 14:25:29 +00002191 void setAutoBrightnessLoggingEnabled(boolean enabled) {
2192 if (mDisplayPowerController != null) {
2193 synchronized (mSyncRoot) {
2194 mDisplayPowerController.setAutoBrightnessLoggingEnabled(enabled);
2195 }
2196 }
2197 }
2198
Jeff Brown4ccb8232014-01-16 22:16:42 -08002199 private boolean validatePackageName(int uid, String packageName) {
2200 if (packageName != null) {
2201 String[] packageNames = mContext.getPackageManager().getPackagesForUid(uid);
2202 if (packageNames != null) {
2203 for (String n : packageNames) {
2204 if (n.equals(packageName)) {
2205 return true;
2206 }
2207 }
2208 }
2209 }
2210 return false;
2211 }
Michael Wrightc39d47a2014-07-08 18:07:36 -07002212
2213 private boolean canProjectVideo(IMediaProjection projection) {
2214 if (projection != null) {
2215 try {
2216 if (projection.canProjectVideo()) {
2217 return true;
2218 }
2219 } catch (RemoteException e) {
2220 Slog.e(TAG, "Unable to query projection service for permissions", e);
2221 }
2222 }
2223 if (mContext.checkCallingPermission(
2224 android.Manifest.permission.CAPTURE_VIDEO_OUTPUT)
Michael Wright0ccc2b02014-07-24 18:20:41 -07002225 == PackageManager.PERMISSION_GRANTED) {
Michael Wrightc39d47a2014-07-08 18:07:36 -07002226 return true;
2227 }
2228 return canProjectSecureVideo(projection);
2229 }
2230
2231 private boolean canProjectSecureVideo(IMediaProjection projection) {
2232 if (projection != null) {
2233 try {
2234 if (projection.canProjectSecureVideo()){
2235 return true;
2236 }
2237 } catch (RemoteException e) {
2238 Slog.e(TAG, "Unable to query projection service for permissions", e);
2239 }
2240 }
2241 return mContext.checkCallingPermission(
2242 android.Manifest.permission.CAPTURE_SECURE_VIDEO_OUTPUT)
Michael Wright0ccc2b02014-07-24 18:20:41 -07002243 == PackageManager.PERMISSION_GRANTED;
Michael Wrightc39d47a2014-07-08 18:07:36 -07002244 }
Jeff Brown4ccb8232014-01-16 22:16:42 -08002245 }
2246
2247 private final class LocalService extends DisplayManagerInternal {
2248 @Override
Jeff Brown037c33e2014-04-09 00:31:55 -07002249 public void initPowerManagement(final DisplayPowerCallbacks callbacks, Handler handler,
Jeff Brownad9ef192014-04-08 17:26:30 -07002250 SensorManager sensorManager) {
2251 synchronized (mSyncRoot) {
Jeff Brown037c33e2014-04-09 00:31:55 -07002252 DisplayBlanker blanker = new DisplayBlanker() {
2253 @Override
Jeff Brown5d6443b2015-04-10 20:15:01 -07002254 public void requestDisplayState(int state, int brightness) {
Jeff Brown037c33e2014-04-09 00:31:55 -07002255 // The order of operations is important for legacy reasons.
2256 if (state == Display.STATE_OFF) {
Jeff Brown5d6443b2015-04-10 20:15:01 -07002257 requestGlobalDisplayStateInternal(state, brightness);
Jeff Brown037c33e2014-04-09 00:31:55 -07002258 }
2259
2260 callbacks.onDisplayStateChange(state);
2261
2262 if (state != Display.STATE_OFF) {
Jeff Brown5d6443b2015-04-10 20:15:01 -07002263 requestGlobalDisplayStateInternal(state, brightness);
Jeff Brown037c33e2014-04-09 00:31:55 -07002264 }
2265 }
2266 };
Jeff Brownad9ef192014-04-08 17:26:30 -07002267 mDisplayPowerController = new DisplayPowerController(
Jeff Brown037c33e2014-04-09 00:31:55 -07002268 mContext, callbacks, handler, sensorManager, blanker);
Jeff Brownad9ef192014-04-08 17:26:30 -07002269 }
Michael Wrighteef0e132017-11-21 17:57:52 +00002270
2271 mHandler.sendEmptyMessage(MSG_LOAD_BRIGHTNESS_CONFIGURATION);
Jeff Brownad9ef192014-04-08 17:26:30 -07002272 }
2273
2274 @Override
2275 public boolean requestPowerState(DisplayPowerRequest request,
2276 boolean waitForNegativeProximity) {
Michael Wrighteef0e132017-11-21 17:57:52 +00002277 synchronized (mSyncRoot) {
2278 return mDisplayPowerController.requestPowerState(request,
2279 waitForNegativeProximity);
2280 }
Jeff Brownad9ef192014-04-08 17:26:30 -07002281 }
2282
2283 @Override
2284 public boolean isProximitySensorAvailable() {
Michael Wrighteef0e132017-11-21 17:57:52 +00002285 synchronized (mSyncRoot) {
2286 return mDisplayPowerController.isProximitySensorAvailable();
2287 }
Jeff Brownad9ef192014-04-08 17:26:30 -07002288 }
2289
2290 @Override
Riddle Hsu654a6f92018-07-13 22:59:36 +08002291 public boolean screenshot(int displayId, Surface outSurface) {
Dominik Laskowskie912ae32019-01-26 11:19:36 -08002292 return screenshotInternal(displayId, outSurface);
Riddle Hsu654a6f92018-07-13 22:59:36 +08002293 }
2294
2295 @Override
Jeff Brown4ccb8232014-01-16 22:16:42 -08002296 public DisplayInfo getDisplayInfo(int displayId) {
2297 return getDisplayInfoInternal(displayId, Process.myUid());
2298 }
2299
2300 @Override
2301 public void registerDisplayTransactionListener(DisplayTransactionListener listener) {
2302 if (listener == null) {
2303 throw new IllegalArgumentException("listener must not be null");
2304 }
2305
2306 registerDisplayTransactionListenerInternal(listener);
2307 }
2308
2309 @Override
2310 public void unregisterDisplayTransactionListener(DisplayTransactionListener listener) {
2311 if (listener == null) {
2312 throw new IllegalArgumentException("listener must not be null");
2313 }
2314
2315 unregisterDisplayTransactionListenerInternal(listener);
2316 }
2317
2318 @Override
2319 public void setDisplayInfoOverrideFromWindowManager(int displayId, DisplayInfo info) {
2320 setDisplayInfoOverrideFromWindowManagerInternal(displayId, info);
2321 }
2322
2323 @Override
Andrii Kuliancd097992017-03-23 18:31:59 -07002324 public void getNonOverrideDisplayInfo(int displayId, DisplayInfo outInfo) {
2325 getNonOverrideDisplayInfoInternal(displayId, outInfo);
2326 }
2327
2328 @Override
Robert Carrae606b42018-02-15 15:36:23 -08002329 public void performTraversal(SurfaceControl.Transaction t) {
2330 performTraversalInternal(t);
Jeff Brown4ccb8232014-01-16 22:16:42 -08002331 }
2332
2333 @Override
Michael Wright3f145a22014-07-22 19:46:03 -07002334 public void setDisplayProperties(int displayId, boolean hasContent,
P.Y. Laligandb3b9eb32015-05-11 15:02:07 -07002335 float requestedRefreshRate, int requestedMode, boolean inTraversal) {
2336 setDisplayPropertiesInternal(displayId, hasContent, requestedRefreshRate,
2337 requestedMode, inTraversal);
Jeff Brown4ccb8232014-01-16 22:16:42 -08002338 }
Filip Gruszczynskid2e86402015-02-19 13:05:03 -08002339
2340 @Override
2341 public void setDisplayOffsets(int displayId, int x, int y) {
2342 setDisplayOffsetsInternal(displayId, x, y);
2343 }
Andrii Kulianfb1bf692017-01-17 11:17:34 -08002344
2345 @Override
2346 public void setDisplayAccessUIDs(SparseArray<IntArray> newDisplayAccessUIDs) {
2347 setDisplayAccessUIDsInternal(newDisplayAccessUIDs);
2348 }
2349
2350 @Override
2351 public boolean isUidPresentOnDisplay(int uid, int displayId) {
2352 return isUidPresentOnDisplayInternal(uid, displayId);
2353 }
Kenny Guycfe7b702017-11-14 21:04:58 +00002354
2355 @Override
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00002356 public void persistBrightnessTrackerState() {
Michael Wright144aac92017-12-21 18:37:41 +00002357 synchronized (mSyncRoot) {
Peeyush Agarwalcc155dd2018-01-10 11:51:33 +00002358 mDisplayPowerController.persistBrightnessTrackerState();
Michael Wright144aac92017-12-21 18:37:41 +00002359 }
Kenny Guycfe7b702017-11-14 21:04:58 +00002360 }
Adrian Roose1d68cd2018-01-17 12:54:50 +01002361
2362 @Override
2363 public void onOverlayChanged() {
2364 synchronized (mSyncRoot) {
Adrian Roos898ec382018-01-17 12:54:50 +01002365 for (int i = 0; i < mDisplayDevices.size(); i++) {
2366 mDisplayDevices.get(i).onOverlayChangedLocked();
Adrian Roose1d68cd2018-01-17 12:54:50 +01002367 }
2368 }
2369 }
Kevin DuBoisbf76b11b2018-09-04 09:14:15 -07002370
2371 @Override
2372 public DisplayedContentSamplingAttributes getDisplayedContentSamplingAttributes(
2373 int displayId) {
2374 return getDisplayedContentSamplingAttributesInternal(displayId);
2375 }
2376
2377 @Override
2378 public boolean setDisplayedContentSamplingEnabled(
2379 int displayId, boolean enable, int componentMask, int maxFrames) {
2380 return setDisplayedContentSamplingEnabledInternal(
2381 displayId, enable, componentMask, maxFrames);
2382 }
2383
2384 @Override
2385 public DisplayedContentSample getDisplayedContentSample(int displayId,
2386 long maxFrames, long timestamp) {
2387 return getDisplayedContentSampleInternal(displayId, maxFrames, timestamp);
2388 }
2389
Jeff Brown4ccb8232014-01-16 22:16:42 -08002390 }
Jeff Brownfa25bf52012-07-23 19:26:30 -07002391}