blob: 08c2d0b7a98c6e107af7c0e495403a9523552733 [file] [log] [blame]
Jeff Brown98365d72012-08-19 20:30:52 -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 android.view;
18
19import android.animation.ValueAnimator;
20import android.app.ActivityManager;
21import android.content.ComponentCallbacks2;
Alan Viverette5e1565e2014-07-29 16:14:25 -070022import android.content.Context;
Alan Viveretted70b9e72015-05-27 14:29:20 -070023import android.content.pm.ApplicationInfo;
Jeff Brown98365d72012-08-19 20:30:52 -070024import android.content.res.Configuration;
Jeff Brown98365d72012-08-19 20:30:52 -070025import android.os.IBinder;
Jeff Brown98365d72012-08-19 20:30:52 -070026import android.os.RemoteException;
27import android.os.ServiceManager;
28import android.os.SystemProperties;
29import android.util.AndroidRuntimeException;
Craig Mautner8f303ad2013-06-14 11:32:22 -070030import android.util.ArraySet;
Jeff Brown98365d72012-08-19 20:30:52 -070031import android.util.Log;
32import android.view.inputmethod.InputMethodManager;
Jorim Jaggi4846ee32016-01-07 17:39:12 +010033
Dianne Hackborn8c841092013-06-24 13:46:13 -070034import com.android.internal.util.FastPrintWriter;
Jeff Brown98365d72012-08-19 20:30:52 -070035
36import java.io.FileDescriptor;
37import java.io.FileOutputStream;
38import java.io.PrintWriter;
Craig Mautner652fdfa2013-06-06 07:51:57 -070039import java.util.ArrayList;
Jeff Brown98365d72012-08-19 20:30:52 -070040
41/**
42 * Provides low-level communication with the system window manager for
43 * operations that are not associated with any particular context.
44 *
45 * This class is only used internally to implement global functions where
46 * the caller already knows the display and relevant compatibility information
47 * for the operation. For most purposes, you should use {@link WindowManager} instead
48 * since it is bound to a context.
49 *
50 * @see WindowManagerImpl
51 * @hide
52 */
53public final class WindowManagerGlobal {
54 private static final String TAG = "WindowManager";
55
56 /**
57 * The user is navigating with keys (not the touch screen), so
58 * navigational focus should be shown.
59 */
60 public static final int RELAYOUT_RES_IN_TOUCH_MODE = 0x1;
61
62 /**
63 * This is the first time the window is being drawn,
64 * so the client must call drawingFinished() when done
65 */
66 public static final int RELAYOUT_RES_FIRST_TIME = 0x2;
67
68 /**
69 * The window manager has changed the surface from the last call.
70 */
71 public static final int RELAYOUT_RES_SURFACE_CHANGED = 0x4;
72
73 /**
Jorim Jaggi4846ee32016-01-07 17:39:12 +010074 * The window is being resized by dragging on the docked divider. The client should render
75 * at (0, 0) and extend its background to the background frame passed into
76 * {@link IWindow#resized}.
77 */
78 public static final int RELAYOUT_RES_DRAG_RESIZING_DOCKED = 0x8;
79
80 /**
Chong Zhang0275e392015-09-17 10:41:44 -070081 * The window is being resized by dragging one of the window corners,
Filip Gruszczynski63a35e22015-11-05 15:38:59 -080082 * in this case the surface would be fullscreen-sized. The client should
Chong Zhang0275e392015-09-17 10:41:44 -070083 * render to the actual frame location (instead of (0,curScrollY)).
84 */
Jorim Jaggi4846ee32016-01-07 17:39:12 +010085 public static final int RELAYOUT_RES_DRAG_RESIZING_FREEFORM = 0x10;
Chong Zhang0275e392015-09-17 10:41:44 -070086
87 /**
Chong Zhangf4abc2b2015-11-12 23:40:58 -080088 * The window manager has changed the size of the surface from the last call.
89 */
Jorim Jaggi4846ee32016-01-07 17:39:12 +010090 public static final int RELAYOUT_RES_SURFACE_RESIZED = 0x20;
Chong Zhangf4abc2b2015-11-12 23:40:58 -080091
92 /**
Jorim Jaggi0ffd49c2016-02-12 15:04:21 -080093 * In multi-window we force show the navigation bar. Because we don't want that the surface size
94 * changes in this mode, we instead have a flag whether the navigation bar size should always be
95 * consumed, so the app is treated like there is no virtual navigation bar at all.
96 */
97 public static final int RELAYOUT_RES_CONSUME_ALWAYS_NAV_BAR = 0x40;
98
99 /**
Jeff Brown98365d72012-08-19 20:30:52 -0700100 * Flag for relayout: the client will be later giving
101 * internal insets; as a result, the window will not impact other window
102 * layouts until the insets are given.
103 */
104 public static final int RELAYOUT_INSETS_PENDING = 0x1;
105
106 /**
107 * Flag for relayout: the client may be currently using the current surface,
108 * so if it is to be destroyed as a part of the relayout the destroy must
109 * be deferred until later. The client will call performDeferredDestroy()
110 * when it is okay.
111 */
112 public static final int RELAYOUT_DEFER_SURFACE_DESTROY = 0x2;
113
114 public static final int ADD_FLAG_APP_VISIBLE = 0x2;
115 public static final int ADD_FLAG_IN_TOUCH_MODE = RELAYOUT_RES_IN_TOUCH_MODE;
116
Jorim Jaggi0ffd49c2016-02-12 15:04:21 -0800117 /**
118 * Like {@link #RELAYOUT_RES_CONSUME_ALWAYS_NAV_BAR}, but as a "hint" when adding the window.
119 */
120 public static final int ADD_FLAG_ALWAYS_CONSUME_NAV_BAR = 0x4;
121
Jeff Brown98365d72012-08-19 20:30:52 -0700122 public static final int ADD_OKAY = 0;
123 public static final int ADD_BAD_APP_TOKEN = -1;
124 public static final int ADD_BAD_SUBWINDOW_TOKEN = -2;
125 public static final int ADD_NOT_APP_TOKEN = -3;
126 public static final int ADD_APP_EXITING = -4;
127 public static final int ADD_DUPLICATE_ADD = -5;
128 public static final int ADD_STARTING_NOT_NEEDED = -6;
129 public static final int ADD_MULTIPLE_SINGLETON = -7;
130 public static final int ADD_PERMISSION_DENIED = -8;
Craig Mautner2d5618c2012-10-18 13:55:47 -0700131 public static final int ADD_INVALID_DISPLAY = -9;
Wale Ogunwale74bf0652015-01-12 10:24:36 -0800132 public static final int ADD_INVALID_TYPE = -10;
Jeff Brown98365d72012-08-19 20:30:52 -0700133
134 private static WindowManagerGlobal sDefaultWindowManager;
135 private static IWindowManager sWindowManagerService;
136 private static IWindowSession sWindowSession;
137
138 private final Object mLock = new Object();
139
Craig Mautner652fdfa2013-06-06 07:51:57 -0700140 private final ArrayList<View> mViews = new ArrayList<View>();
141 private final ArrayList<ViewRootImpl> mRoots = new ArrayList<ViewRootImpl>();
142 private final ArrayList<WindowManager.LayoutParams> mParams =
143 new ArrayList<WindowManager.LayoutParams>();
Craig Mautner8f303ad2013-06-14 11:32:22 -0700144 private final ArraySet<View> mDyingViews = new ArraySet<View>();
Jeff Brown98365d72012-08-19 20:30:52 -0700145
146 private Runnable mSystemPropertyUpdater;
147
148 private WindowManagerGlobal() {
149 }
150
Chet Haase0d1c27a2014-11-03 18:35:16 +0000151 public static void initialize() {
152 getWindowManagerService();
153 }
154
Jeff Brown98365d72012-08-19 20:30:52 -0700155 public static WindowManagerGlobal getInstance() {
156 synchronized (WindowManagerGlobal.class) {
157 if (sDefaultWindowManager == null) {
158 sDefaultWindowManager = new WindowManagerGlobal();
159 }
160 return sDefaultWindowManager;
161 }
162 }
163
164 public static IWindowManager getWindowManagerService() {
165 synchronized (WindowManagerGlobal.class) {
166 if (sWindowManagerService == null) {
167 sWindowManagerService = IWindowManager.Stub.asInterface(
168 ServiceManager.getService("window"));
Chet Haase0d1c27a2014-11-03 18:35:16 +0000169 try {
Phil Weaver7eec3792017-02-14 16:51:55 -0800170 if (sWindowManagerService != null) {
171 ValueAnimator.setDurationScale(
172 sWindowManagerService.getCurrentAnimatorScale());
173 }
Chet Haase0d1c27a2014-11-03 18:35:16 +0000174 } catch (RemoteException e) {
Jeff Sharkeyd136e512016-03-09 22:30:56 -0700175 throw e.rethrowFromSystemServer();
Chet Haase0d1c27a2014-11-03 18:35:16 +0000176 }
Jeff Brown98365d72012-08-19 20:30:52 -0700177 }
178 return sWindowManagerService;
179 }
180 }
181
Jeff Brownf9e989d2013-04-04 23:04:03 -0700182 public static IWindowSession getWindowSession() {
Jeff Brown98365d72012-08-19 20:30:52 -0700183 synchronized (WindowManagerGlobal.class) {
184 if (sWindowSession == null) {
185 try {
Jeff Brownf9e989d2013-04-04 23:04:03 -0700186 InputMethodManager imm = InputMethodManager.getInstance();
Jeff Brown98365d72012-08-19 20:30:52 -0700187 IWindowManager windowManager = getWindowManagerService();
188 sWindowSession = windowManager.openSession(
Dianne Hackborneb94fa72014-06-03 17:48:12 -0700189 new IWindowSessionCallback.Stub() {
190 @Override
191 public void onAnimatorScaleChanged(float scale) {
192 ValueAnimator.setDurationScale(scale);
193 }
194 },
Jeff Brown98365d72012-08-19 20:30:52 -0700195 imm.getClient(), imm.getInputContext());
Jeff Brown98365d72012-08-19 20:30:52 -0700196 } catch (RemoteException e) {
Jeff Sharkeyd136e512016-03-09 22:30:56 -0700197 throw e.rethrowFromSystemServer();
Jeff Brown98365d72012-08-19 20:30:52 -0700198 }
199 }
200 return sWindowSession;
201 }
202 }
203
204 public static IWindowSession peekWindowSession() {
205 synchronized (WindowManagerGlobal.class) {
206 return sWindowSession;
207 }
208 }
209
Siva Velusamy945bfb62013-01-06 16:03:12 -0800210 public String[] getViewRootNames() {
211 synchronized (mLock) {
Craig Mautner652fdfa2013-06-06 07:51:57 -0700212 final int numRoots = mRoots.size();
213 String[] mViewRoots = new String[numRoots];
214 for (int i = 0; i < numRoots; ++i) {
215 mViewRoots[i] = getWindowName(mRoots.get(i));
Siva Velusamy945bfb62013-01-06 16:03:12 -0800216 }
217 return mViewRoots;
218 }
219 }
220
Dianne Hackborna7bb6fb2015-02-03 18:13:40 -0800221 public ArrayList<ViewRootImpl> getRootViews(IBinder token) {
222 ArrayList<ViewRootImpl> views = new ArrayList<>();
223 synchronized (mLock) {
224 final int numRoots = mRoots.size();
225 for (int i = 0; i < numRoots; ++i) {
226 WindowManager.LayoutParams params = mParams.get(i);
227 if (params.token == null) {
228 continue;
229 }
230 if (params.token != token) {
231 boolean isChild = false;
232 if (params.type >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
233 && params.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
234 for (int j = 0 ; j < numRoots; ++j) {
235 View viewj = mViews.get(j);
236 WindowManager.LayoutParams paramsj = mParams.get(j);
237 if (params.token == viewj.getWindowToken()
238 && paramsj.token == token) {
239 isChild = true;
240 break;
241 }
242 }
243 }
244 if (!isChild) {
245 continue;
246 }
247 }
248 views.add(mRoots.get(i));
249 }
250 }
251 return views;
252 }
253
Vladislav Kaznacheev7039cbc2017-01-04 10:15:31 -0800254 public View getWindowView(IBinder windowToken) {
255 synchronized (mLock) {
256 final int numViews = mViews.size();
257 for (int i = 0; i < numViews; ++i) {
258 final View view = mViews.get(i);
259 if (view.getWindowToken() == windowToken) {
260 return view;
261 }
262 }
263 }
264 return null;
265 }
266
Siva Velusamy945bfb62013-01-06 16:03:12 -0800267 public View getRootView(String name) {
268 synchronized (mLock) {
Craig Mautner652fdfa2013-06-06 07:51:57 -0700269 for (int i = mRoots.size() - 1; i >= 0; --i) {
270 final ViewRootImpl root = mRoots.get(i);
Siva Velusamy945bfb62013-01-06 16:03:12 -0800271 if (name.equals(getWindowName(root))) return root.getView();
272 }
273 }
274
275 return null;
276 }
277
Jeff Brown98365d72012-08-19 20:30:52 -0700278 public void addView(View view, ViewGroup.LayoutParams params,
279 Display display, Window parentWindow) {
280 if (view == null) {
281 throw new IllegalArgumentException("view must not be null");
282 }
283 if (display == null) {
284 throw new IllegalArgumentException("display must not be null");
285 }
286 if (!(params instanceof WindowManager.LayoutParams)) {
287 throw new IllegalArgumentException("Params must be WindowManager.LayoutParams");
288 }
289
Alan Viverette9ecb73c2014-12-15 13:40:28 -0800290 final WindowManager.LayoutParams wparams = (WindowManager.LayoutParams) params;
Jeff Brown98365d72012-08-19 20:30:52 -0700291 if (parentWindow != null) {
292 parentWindow.adjustLayoutParamsForSubWindow(wparams);
Alan Viverette9b0ab652015-03-18 14:21:04 -0700293 } else {
294 // If there's no parent, then hardware acceleration for this view is
295 // set from the application's hardware acceleration setting.
Alan Viverette5e1565e2014-07-29 16:14:25 -0700296 final Context context = view.getContext();
Alan Viverette9b0ab652015-03-18 14:21:04 -0700297 if (context != null
Alan Viveretted70b9e72015-05-27 14:29:20 -0700298 && (context.getApplicationInfo().flags
299 & ApplicationInfo.FLAG_HARDWARE_ACCELERATED) != 0) {
Alan Viverette5e1565e2014-07-29 16:14:25 -0700300 wparams.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
301 }
Jeff Brown98365d72012-08-19 20:30:52 -0700302 }
303
304 ViewRootImpl root;
305 View panelParentView = null;
306
307 synchronized (mLock) {
308 // Start watching for system property changes.
309 if (mSystemPropertyUpdater == null) {
310 mSystemPropertyUpdater = new Runnable() {
311 @Override public void run() {
312 synchronized (mLock) {
Craig Mautner652fdfa2013-06-06 07:51:57 -0700313 for (int i = mRoots.size() - 1; i >= 0; --i) {
314 mRoots.get(i).loadSystemProperties();
Jeff Brown98365d72012-08-19 20:30:52 -0700315 }
316 }
317 }
318 };
319 SystemProperties.addChangeCallback(mSystemPropertyUpdater);
320 }
321
322 int index = findViewLocked(view, false);
323 if (index >= 0) {
Craig Mautner8f303ad2013-06-14 11:32:22 -0700324 if (mDyingViews.contains(view)) {
325 // Don't wait for MSG_DIE to make it's way through root's queue.
326 mRoots.get(index).doDie();
327 } else {
328 throw new IllegalStateException("View " + view
329 + " has already been added to the window manager.");
330 }
331 // The previous removeView() had not completed executing. Now it has.
Jeff Brown98365d72012-08-19 20:30:52 -0700332 }
333
334 // If this is a panel window, then find the window it is being
335 // attached to for future reference.
336 if (wparams.type >= WindowManager.LayoutParams.FIRST_SUB_WINDOW &&
337 wparams.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
Craig Mautner652fdfa2013-06-06 07:51:57 -0700338 final int count = mViews.size();
339 for (int i = 0; i < count; i++) {
340 if (mRoots.get(i).mWindow.asBinder() == wparams.token) {
341 panelParentView = mViews.get(i);
Jeff Brown98365d72012-08-19 20:30:52 -0700342 }
343 }
344 }
345
346 root = new ViewRootImpl(view.getContext(), display);
347
348 view.setLayoutParams(wparams);
349
Craig Mautner652fdfa2013-06-06 07:51:57 -0700350 mViews.add(view);
351 mRoots.add(root);
352 mParams.add(wparams);
Jeff Brown98365d72012-08-19 20:30:52 -0700353
Gopal Krishna Shuklaf7abcda2016-07-06 08:14:59 +0530354 // do this last because it fires off messages to start doing things
355 try {
356 root.setView(view, wparams, panelParentView);
357 } catch (RuntimeException e) {
358 // BadTokenException or InvalidDisplayException, clean up.
Craig Mautner6018aee2012-10-23 14:27:49 -0700359 if (index >= 0) {
360 removeViewLocked(index, true);
361 }
Gopal Krishna Shuklaf7abcda2016-07-06 08:14:59 +0530362 throw e;
Craig Mautner6018aee2012-10-23 14:27:49 -0700363 }
Craig Mautner6018aee2012-10-23 14:27:49 -0700364 }
Jeff Brown98365d72012-08-19 20:30:52 -0700365 }
366
367 public void updateViewLayout(View view, ViewGroup.LayoutParams params) {
368 if (view == null) {
369 throw new IllegalArgumentException("view must not be null");
370 }
371 if (!(params instanceof WindowManager.LayoutParams)) {
372 throw new IllegalArgumentException("Params must be WindowManager.LayoutParams");
373 }
374
375 final WindowManager.LayoutParams wparams = (WindowManager.LayoutParams)params;
376
377 view.setLayoutParams(wparams);
378
379 synchronized (mLock) {
380 int index = findViewLocked(view, true);
Craig Mautner652fdfa2013-06-06 07:51:57 -0700381 ViewRootImpl root = mRoots.get(index);
382 mParams.remove(index);
383 mParams.add(index, wparams);
Jeff Brown98365d72012-08-19 20:30:52 -0700384 root.setLayoutParams(wparams, false);
385 }
386 }
387
388 public void removeView(View view, boolean immediate) {
389 if (view == null) {
390 throw new IllegalArgumentException("view must not be null");
391 }
392
393 synchronized (mLock) {
394 int index = findViewLocked(view, true);
Craig Mautner652fdfa2013-06-06 07:51:57 -0700395 View curView = mRoots.get(index).getView();
Craig Mautner05eb7302013-06-03 17:24:21 -0700396 removeViewLocked(index, immediate);
Jeff Brown98365d72012-08-19 20:30:52 -0700397 if (curView == view) {
398 return;
399 }
400
401 throw new IllegalStateException("Calling with view " + view
402 + " but the ViewAncestor is attached to " + curView);
403 }
404 }
405
Andrii Kulianeac0ea52016-05-11 15:50:24 -0700406 /**
407 * Remove all roots with specified token.
408 *
409 * @param token app or window token.
410 * @param who name of caller, used in logs.
411 * @param what type of caller, used in logs.
412 */
Jeff Brown98365d72012-08-19 20:30:52 -0700413 public void closeAll(IBinder token, String who, String what) {
Andrii Kulianeac0ea52016-05-11 15:50:24 -0700414 closeAllExceptView(token, null /* view */, who, what);
415 }
416
417 /**
418 * Remove all roots with specified token, except maybe one view.
419 *
420 * @param token app or window token.
421 * @param view view that should be should be preserved along with it's root.
422 * Pass null if everything should be removed.
423 * @param who name of caller, used in logs.
424 * @param what type of caller, used in logs.
425 */
426 public void closeAllExceptView(IBinder token, View view, String who, String what) {
Jeff Brown98365d72012-08-19 20:30:52 -0700427 synchronized (mLock) {
Craig Mautner652fdfa2013-06-06 07:51:57 -0700428 int count = mViews.size();
Craig Mautner05eb7302013-06-03 17:24:21 -0700429 for (int i = 0; i < count; i++) {
Andrii Kulianeac0ea52016-05-11 15:50:24 -0700430 if ((view == null || mViews.get(i) != view)
431 && (token == null || mParams.get(i).token == token)) {
Craig Mautner652fdfa2013-06-06 07:51:57 -0700432 ViewRootImpl root = mRoots.get(i);
Jeff Brown98365d72012-08-19 20:30:52 -0700433
Jeff Brown98365d72012-08-19 20:30:52 -0700434 if (who != null) {
435 WindowLeaked leak = new WindowLeaked(
436 what + " " + who + " has leaked window "
437 + root.getView() + " that was originally added here");
438 leak.setStackTrace(root.getLocation().getStackTrace());
Craig Mautner05eb7302013-06-03 17:24:21 -0700439 Log.e(TAG, "", leak);
Jeff Brown98365d72012-08-19 20:30:52 -0700440 }
441
442 removeViewLocked(i, false);
Jeff Brown98365d72012-08-19 20:30:52 -0700443 }
444 }
445 }
446 }
447
Craig Mautner05eb7302013-06-03 17:24:21 -0700448 private void removeViewLocked(int index, boolean immediate) {
Craig Mautner652fdfa2013-06-06 07:51:57 -0700449 ViewRootImpl root = mRoots.get(index);
Jeff Brown98365d72012-08-19 20:30:52 -0700450 View view = root.getView();
451
452 if (view != null) {
Jeff Brownf9e989d2013-04-04 23:04:03 -0700453 InputMethodManager imm = InputMethodManager.getInstance();
Jeff Brown98365d72012-08-19 20:30:52 -0700454 if (imm != null) {
Craig Mautner652fdfa2013-06-06 07:51:57 -0700455 imm.windowDismissed(mViews.get(index).getWindowToken());
Jeff Brown98365d72012-08-19 20:30:52 -0700456 }
457 }
Craig Mautner8f303ad2013-06-14 11:32:22 -0700458 boolean deferred = root.die(immediate);
Craig Mautner92098c72013-06-10 11:27:26 -0700459 if (view != null) {
460 view.assignParent(null);
Craig Mautner8f303ad2013-06-14 11:32:22 -0700461 if (deferred) {
462 mDyingViews.add(view);
463 }
Craig Mautner92098c72013-06-10 11:27:26 -0700464 }
Craig Mautner05eb7302013-06-03 17:24:21 -0700465 }
Jeff Brown98365d72012-08-19 20:30:52 -0700466
Craig Mautner05eb7302013-06-03 17:24:21 -0700467 void doRemoveView(ViewRootImpl root) {
468 synchronized (mLock) {
Craig Mautner652fdfa2013-06-06 07:51:57 -0700469 final int index = mRoots.indexOf(root);
470 if (index >= 0) {
471 mRoots.remove(index);
Craig Mautner652fdfa2013-06-06 07:51:57 -0700472 mParams.remove(index);
Craig Mautner8f303ad2013-06-14 11:32:22 -0700473 final View view = mViews.remove(index);
474 mDyingViews.remove(view);
Jeff Brown98365d72012-08-19 20:30:52 -0700475 }
476 }
John Reck51aaf902015-12-02 15:08:07 -0800477 if (ThreadedRenderer.sTrimForeground && ThreadedRenderer.isAvailable()) {
John Reck73840ea2014-09-22 07:39:18 -0700478 doTrimForeground();
479 }
Jeff Brown98365d72012-08-19 20:30:52 -0700480 }
481
482 private int findViewLocked(View view, boolean required) {
Craig Mautner652fdfa2013-06-06 07:51:57 -0700483 final int index = mViews.indexOf(view);
484 if (required && index < 0) {
Craig Mautner05eb7302013-06-03 17:24:21 -0700485 throw new IllegalArgumentException("View=" + view + " not attached to window manager");
Craig Mautner6018aee2012-10-23 14:27:49 -0700486 }
Craig Mautner652fdfa2013-06-06 07:51:57 -0700487 return index;
Jeff Brown98365d72012-08-19 20:30:52 -0700488 }
489
John Reckf47a5942014-06-30 16:20:04 -0700490 public static boolean shouldDestroyEglContext(int trimLevel) {
491 // On low-end gfx devices we trim when memory is moderate;
492 // on high-end devices we do this when low.
493 if (trimLevel >= ComponentCallbacks2.TRIM_MEMORY_COMPLETE) {
494 return true;
495 }
496 if (trimLevel >= ComponentCallbacks2.TRIM_MEMORY_MODERATE
497 && !ActivityManager.isHighEndGfx()) {
498 return true;
499 }
500 return false;
501 }
502
503 public void trimMemory(int level) {
John Reck51aaf902015-12-02 15:08:07 -0800504 if (ThreadedRenderer.isAvailable()) {
John Reckf47a5942014-06-30 16:20:04 -0700505 if (shouldDestroyEglContext(level)) {
Jeff Brown98365d72012-08-19 20:30:52 -0700506 // Destroy all hardware surfaces and resources associated to
507 // known windows
508 synchronized (mLock) {
Craig Mautner652fdfa2013-06-06 07:51:57 -0700509 for (int i = mRoots.size() - 1; i >= 0; --i) {
Romain Guy46bfc482013-08-16 18:38:29 -0700510 mRoots.get(i).destroyHardwareResources();
Jeff Brown98365d72012-08-19 20:30:52 -0700511 }
512 }
513 // Force a full memory flush
John Reckf47a5942014-06-30 16:20:04 -0700514 level = ComponentCallbacks2.TRIM_MEMORY_COMPLETE;
Jeff Brown98365d72012-08-19 20:30:52 -0700515 }
516
John Reck51aaf902015-12-02 15:08:07 -0800517 ThreadedRenderer.trimMemory(level);
John Reck73840ea2014-09-22 07:39:18 -0700518
John Reck51aaf902015-12-02 15:08:07 -0800519 if (ThreadedRenderer.sTrimForeground) {
John Reck73840ea2014-09-22 07:39:18 -0700520 doTrimForeground();
521 }
522 }
523 }
524
525 public static void trimForeground() {
John Reck51aaf902015-12-02 15:08:07 -0800526 if (ThreadedRenderer.sTrimForeground && ThreadedRenderer.isAvailable()) {
John Reck73840ea2014-09-22 07:39:18 -0700527 WindowManagerGlobal wm = WindowManagerGlobal.getInstance();
528 wm.doTrimForeground();
529 }
530 }
531
532 private void doTrimForeground() {
533 boolean hasVisibleWindows = false;
534 synchronized (mLock) {
535 for (int i = mRoots.size() - 1; i >= 0; --i) {
John Reckccf2fa02014-09-25 08:33:05 -0700536 final ViewRootImpl root = mRoots.get(i);
537 if (root.mView != null && root.getHostVisibility() == View.VISIBLE
Stan Iliev45faba52016-06-28 13:33:15 -0400538 && root.mAttachInfo.mThreadedRenderer != null) {
John Reck73840ea2014-09-22 07:39:18 -0700539 hasVisibleWindows = true;
540 } else {
John Reckccf2fa02014-09-25 08:33:05 -0700541 root.destroyHardwareResources();
John Reck73840ea2014-09-22 07:39:18 -0700542 }
543 }
544 }
545 if (!hasVisibleWindows) {
John Reck51aaf902015-12-02 15:08:07 -0800546 ThreadedRenderer.trimMemory(
John Reck73840ea2014-09-22 07:39:18 -0700547 ComponentCallbacks2.TRIM_MEMORY_COMPLETE);
Jeff Brown98365d72012-08-19 20:30:52 -0700548 }
549 }
550
John Reckba6adf62015-02-19 14:36:50 -0800551 public void dumpGfxInfo(FileDescriptor fd, String[] args) {
Jeff Brown98365d72012-08-19 20:30:52 -0700552 FileOutputStream fout = new FileOutputStream(fd);
Dianne Hackborn8c841092013-06-24 13:46:13 -0700553 PrintWriter pw = new FastPrintWriter(fout);
Jeff Brown98365d72012-08-19 20:30:52 -0700554 try {
555 synchronized (mLock) {
Craig Mautner652fdfa2013-06-06 07:51:57 -0700556 final int count = mViews.size();
Jeff Brown98365d72012-08-19 20:30:52 -0700557
Craig Mautner652fdfa2013-06-06 07:51:57 -0700558 pw.println("Profile data in ms:");
Jeff Brown98365d72012-08-19 20:30:52 -0700559
Craig Mautner652fdfa2013-06-06 07:51:57 -0700560 for (int i = 0; i < count; i++) {
561 ViewRootImpl root = mRoots.get(i);
562 String name = getWindowName(root);
John Reck73840ea2014-09-22 07:39:18 -0700563 pw.printf("\n\t%s (visibility=%d)", name, root.getHostVisibility());
Jeff Brown98365d72012-08-19 20:30:52 -0700564
John Reck51aaf902015-12-02 15:08:07 -0800565 ThreadedRenderer renderer =
Stan Iliev45faba52016-06-28 13:33:15 -0400566 root.getView().mAttachInfo.mThreadedRenderer;
Craig Mautner652fdfa2013-06-06 07:51:57 -0700567 if (renderer != null) {
John Reckba6adf62015-02-19 14:36:50 -0800568 renderer.dumpGfxInfo(pw, fd, args);
Jeff Brown98365d72012-08-19 20:30:52 -0700569 }
Jeff Brown98365d72012-08-19 20:30:52 -0700570 }
Craig Mautner652fdfa2013-06-06 07:51:57 -0700571
572 pw.println("\nView hierarchy:\n");
573
574 int viewsCount = 0;
575 int displayListsSize = 0;
576 int[] info = new int[2];
577
578 for (int i = 0; i < count; i++) {
579 ViewRootImpl root = mRoots.get(i);
580 root.dumpGfxInfo(info);
581
582 String name = getWindowName(root);
583 pw.printf(" %s\n %d views, %.2f kB of display lists",
584 name, info[0], info[1] / 1024.0f);
Craig Mautner652fdfa2013-06-06 07:51:57 -0700585 pw.printf("\n\n");
586
587 viewsCount += info[0];
588 displayListsSize += info[1];
589 }
590
591 pw.printf("\nTotal ViewRootImpl: %d\n", count);
592 pw.printf("Total Views: %d\n", viewsCount);
593 pw.printf("Total DisplayList: %.2f kB\n\n", displayListsSize / 1024.0f);
Jeff Brown98365d72012-08-19 20:30:52 -0700594 }
595 } finally {
596 pw.flush();
597 }
598 }
599
600 private static String getWindowName(ViewRootImpl root) {
601 return root.mWindowAttributes.getTitle() + "/" +
602 root.getClass().getName() + '@' + Integer.toHexString(root.hashCode());
603 }
604
605 public void setStoppedState(IBinder token, boolean stopped) {
606 synchronized (mLock) {
Craig Mautner652fdfa2013-06-06 07:51:57 -0700607 int count = mViews.size();
Tetsutoki Shiozawa978e7f82017-11-01 11:38:34 +0900608 for (int i = count - 1; i >= 0; i--) {
Craig Mautner652fdfa2013-06-06 07:51:57 -0700609 if (token == null || mParams.get(i).token == token) {
610 ViewRootImpl root = mRoots.get(i);
Tetsutoki Shiozawa978e7f82017-11-01 11:38:34 +0900611 // Client might remove the view by "stopped" event.
George Mount41725de2015-04-09 08:23:05 -0700612 root.setWindowStopped(stopped);
Robert Carr3f7bd972018-04-02 15:09:10 -0700613 // Recursively forward stopped state to View's attached
614 // to this Window rather than the root application token,
615 // e.g. PopupWindow's.
616 setStoppedState(root.mAttachInfo.mWindowToken, stopped);
Jeff Brown98365d72012-08-19 20:30:52 -0700617 }
618 }
619 }
620 }
621
622 public void reportNewConfiguration(Configuration config) {
623 synchronized (mLock) {
Craig Mautner652fdfa2013-06-06 07:51:57 -0700624 int count = mViews.size();
625 config = new Configuration(config);
626 for (int i=0; i < count; i++) {
627 ViewRootImpl root = mRoots.get(i);
628 root.requestUpdateConfiguration(config);
Jeff Brown98365d72012-08-19 20:30:52 -0700629 }
630 }
631 }
Craig Mautnerbc57cd12013-08-19 15:47:42 -0700632
633 /** @hide */
634 public void changeCanvasOpacity(IBinder token, boolean opaque) {
635 if (token == null) {
636 return;
637 }
638 synchronized (mLock) {
639 for (int i = mParams.size() - 1; i >= 0; --i) {
640 if (mParams.get(i).token == token) {
641 mRoots.get(i).changeCanvasOpacity(opaque);
642 return;
643 }
644 }
645 }
646 }
Jeff Brown98365d72012-08-19 20:30:52 -0700647}
648
649final class WindowLeaked extends AndroidRuntimeException {
650 public WindowLeaked(String msg) {
651 super(msg);
652 }
653}