blob: 720a4544259ee11e95f1fa754e7481876082dc84 [file] [log] [blame]
Dianne Hackborn6e1eb762011-02-17 16:07:28 -08001/*
2 * Copyright (C) 2011 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.wm;
18
Wale Ogunwale943002b2017-02-15 19:34:01 -080019import static android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
20import static android.content.pm.PackageManager.PERMISSION_GRANTED;
Wale Ogunwaled993a572017-02-05 13:52:09 -080021import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY;
Wale Ogunwale943002b2017-02-15 19:34:01 -080022import static android.view.WindowManager.LayoutParams.isSystemAlertWindowType;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080023import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_DRAG;
24import static com.android.server.wm.WindowManagerDebugConfig.DEBUG_TASK_POSITIONING;
25import static com.android.server.wm.WindowManagerDebugConfig.SHOW_LIGHT_TRANSACTIONS;
26import static com.android.server.wm.WindowManagerDebugConfig.SHOW_TRANSACTIONS;
27import static com.android.server.wm.WindowManagerDebugConfig.TAG_WM;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080028
29import android.content.ClipData;
30import android.content.Context;
31import android.content.res.Configuration;
32import android.graphics.Rect;
33import android.graphics.Region;
34import android.os.Binder;
35import android.os.Bundle;
36import android.os.IBinder;
37import android.os.Parcel;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -070038import android.os.Process;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080039import android.os.RemoteException;
40import android.os.ServiceManager;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -070041import android.os.UserHandle;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080042import android.util.Slog;
Craig Mautner6881a102012-07-27 13:04:51 -070043import android.view.Display;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080044import android.view.IWindow;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080045import android.view.IWindowId;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080046import android.view.IWindowSession;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080047import android.view.IWindowSessionCallback;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080048import android.view.InputChannel;
49import android.view.Surface;
Mathias Agopian3866f0d2013-02-11 22:08:48 -080050import android.view.SurfaceControl;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080051import android.view.SurfaceSession;
52import android.view.WindowManager;
53
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -080054import com.android.internal.view.IInputContext;
55import com.android.internal.view.IInputMethodClient;
56import com.android.internal.view.IInputMethodManager;
57import com.android.server.wm.WindowManagerService.H;
58
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080059import java.io.PrintWriter;
Wale Ogunwale943002b2017-02-15 19:34:01 -080060import java.util.HashSet;
61import java.util.Set;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080062
63/**
64 * This class represents an active client session. There is generally one
65 * Session object per process that is interacting with the window manager.
66 */
Wale Ogunwalecfca2582016-10-19 09:53:25 -070067// Needs to be public and not final so we can mock during tests...sucks I know :(
68public class Session extends IWindowSession.Stub
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080069 implements IBinder.DeathRecipient {
70 final WindowManagerService mService;
Dianne Hackborneb94fa72014-06-03 17:48:12 -070071 final IWindowSessionCallback mCallback;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080072 final IInputMethodClient mClient;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080073 final int mUid;
74 final int mPid;
Wale Ogunwalecfca2582016-10-19 09:53:25 -070075 private final String mStringName;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080076 SurfaceSession mSurfaceSession;
Wale Ogunwalecfca2582016-10-19 09:53:25 -070077 private int mNumWindow = 0;
Wale Ogunwale943002b2017-02-15 19:34:01 -080078 // Set of visible application overlay window surfaces connected to this session.
79 private final Set<WindowSurfaceController> mAppOverlaySurfaces = new HashSet<>();
80 // Set of visible alert window surfaces connected to this session.
81 private final Set<WindowSurfaceController> mAlertWindowSurfaces = new HashSet<>();
82 final boolean mCanAddInternalSystemWindow;
Wale Ogunwale387e4c62017-02-13 09:50:02 -080083 private AlertWindowNotification mAlertWindowNotification;
Wale Ogunwalecfca2582016-10-19 09:53:25 -070084 private boolean mClientDead = false;
85 private float mLastReportedAnimatorScale;
Wale Ogunwale387e4c62017-02-13 09:50:02 -080086 private String mPackageName;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080087
Dianne Hackborneb94fa72014-06-03 17:48:12 -070088 public Session(WindowManagerService service, IWindowSessionCallback callback,
89 IInputMethodClient client, IInputContext inputContext) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080090 mService = service;
Dianne Hackborneb94fa72014-06-03 17:48:12 -070091 mCallback = callback;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080092 mClient = client;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080093 mUid = Binder.getCallingUid();
94 mPid = Binder.getCallingPid();
Dianne Hackborneb94fa72014-06-03 17:48:12 -070095 mLastReportedAnimatorScale = service.getCurrentAnimatorScale();
Wale Ogunwale5aa86832017-02-28 10:40:27 -080096 mCanAddInternalSystemWindow = service.mContext.checkCallingOrSelfPermission(
Wale Ogunwale943002b2017-02-15 19:34:01 -080097 INTERNAL_SYSTEM_WINDOW) == PERMISSION_GRANTED;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080098 StringBuilder sb = new StringBuilder();
99 sb.append("Session{");
100 sb.append(Integer.toHexString(System.identityHashCode(this)));
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700101 sb.append(" ");
102 sb.append(mPid);
103 if (mUid < Process.FIRST_APPLICATION_UID) {
104 sb.append(":");
105 sb.append(mUid);
106 } else {
107 sb.append(":u");
108 sb.append(UserHandle.getUserId(mUid));
109 sb.append('a');
110 sb.append(UserHandle.getAppId(mUid));
111 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800112 sb.append("}");
113 mStringName = sb.toString();
114
115 synchronized (mService.mWindowMap) {
116 if (mService.mInputMethodManager == null && mService.mHaveInputMethods) {
117 IBinder b = ServiceManager.getService(
118 Context.INPUT_METHOD_SERVICE);
119 mService.mInputMethodManager = IInputMethodManager.Stub.asInterface(b);
120 }
121 }
122 long ident = Binder.clearCallingIdentity();
123 try {
124 // Note: it is safe to call in to the input method manager
125 // here because we are not holding our lock.
126 if (mService.mInputMethodManager != null) {
127 mService.mInputMethodManager.addClient(client, inputContext,
128 mUid, mPid);
129 } else {
130 client.setUsingInputMethod(false);
131 }
132 client.asBinder().linkToDeath(this, 0);
133 } catch (RemoteException e) {
134 // The caller has died, so we can just forget about this.
135 try {
136 if (mService.mInputMethodManager != null) {
137 mService.mInputMethodManager.removeClient(client);
138 }
139 } catch (RemoteException ee) {
140 }
141 } finally {
142 Binder.restoreCallingIdentity(ident);
143 }
144 }
145
146 @Override
147 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
148 throws RemoteException {
149 try {
150 return super.onTransact(code, data, reply, flags);
151 } catch (RuntimeException e) {
152 // Log all 'real' exceptions thrown to the caller
153 if (!(e instanceof SecurityException)) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800154 Slog.wtf(TAG_WM, "Window Session Crash", e);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800155 }
156 throw e;
157 }
158 }
159
160 public void binderDied() {
161 // Note: it is safe to call in to the input method manager
162 // here because we are not holding our lock.
163 try {
164 if (mService.mInputMethodManager != null) {
165 mService.mInputMethodManager.removeClient(mClient);
166 }
167 } catch (RemoteException e) {
168 }
169 synchronized(mService.mWindowMap) {
170 mClient.asBinder().unlinkToDeath(this, 0);
171 mClientDead = true;
172 killSessionLocked();
173 }
174 }
175
Craig Mautner6881a102012-07-27 13:04:51 -0700176 @Override
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700177 public int add(IWindow window, int seq, WindowManager.LayoutParams attrs,
Adrian Roos37d7a682014-11-06 18:15:16 +0100178 int viewVisibility, Rect outContentInsets, Rect outStableInsets,
179 InputChannel outInputChannel) {
Craig Mautner6881a102012-07-27 13:04:51 -0700180 return addToDisplay(window, seq, attrs, viewVisibility, Display.DEFAULT_DISPLAY,
Filip Gruszczynski0ec13282015-06-25 11:26:01 -0700181 outContentInsets, outStableInsets, null /* outOutsets */, outInputChannel);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800182 }
Craig Mautner6881a102012-07-27 13:04:51 -0700183
184 @Override
185 public int addToDisplay(IWindow window, int seq, WindowManager.LayoutParams attrs,
Adrian Roos37d7a682014-11-06 18:15:16 +0100186 int viewVisibility, int displayId, Rect outContentInsets, Rect outStableInsets,
Filip Gruszczynski0ec13282015-06-25 11:26:01 -0700187 Rect outOutsets, InputChannel outInputChannel) {
Craig Mautner6881a102012-07-27 13:04:51 -0700188 return mService.addWindow(this, window, seq, attrs, viewVisibility, displayId,
Filip Gruszczynski0ec13282015-06-25 11:26:01 -0700189 outContentInsets, outStableInsets, outOutsets, outInputChannel);
Craig Mautner6881a102012-07-27 13:04:51 -0700190 }
191
192 @Override
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700193 public int addWithoutInputChannel(IWindow window, int seq, WindowManager.LayoutParams attrs,
Adrian Roos37d7a682014-11-06 18:15:16 +0100194 int viewVisibility, Rect outContentInsets, Rect outStableInsets) {
Craig Mautner6881a102012-07-27 13:04:51 -0700195 return addToDisplayWithoutInputChannel(window, seq, attrs, viewVisibility,
Adrian Roos37d7a682014-11-06 18:15:16 +0100196 Display.DEFAULT_DISPLAY, outContentInsets, outStableInsets);
Craig Mautner6881a102012-07-27 13:04:51 -0700197 }
198
199 @Override
200 public int addToDisplayWithoutInputChannel(IWindow window, int seq, WindowManager.LayoutParams attrs,
Adrian Roos37d7a682014-11-06 18:15:16 +0100201 int viewVisibility, int displayId, Rect outContentInsets, Rect outStableInsets) {
Craig Mautner6881a102012-07-27 13:04:51 -0700202 return mService.addWindow(this, window, seq, attrs, viewVisibility, displayId,
Filip Gruszczynski0ec13282015-06-25 11:26:01 -0700203 outContentInsets, outStableInsets, null /* outOutsets */, null);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800204 }
205
206 public void remove(IWindow window) {
207 mService.removeWindow(this, window);
208 }
209
Rob Carr64e516f2015-10-29 00:20:45 +0000210 @Override
Robert Carr64aadd02015-11-06 13:54:20 -0800211 public void repositionChild(IWindow window, int left, int top, int right, int bottom,
Chong Zhang61362732016-03-21 16:13:10 -0700212 long deferTransactionUntilFrame, Rect outFrame) {
Robert Carr64aadd02015-11-06 13:54:20 -0800213 mService.repositionChild(this, window, left, top, right, bottom,
214 deferTransactionUntilFrame, outFrame);
Rob Carr64e516f2015-10-29 00:20:45 +0000215 }
216
Robert Carr23fa16b2016-01-13 13:19:58 -0800217 @Override
Robert Carr77bdfb52016-05-02 18:18:31 -0700218 public void prepareToReplaceWindows(IBinder appToken, boolean childrenOnly) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700219 mService.setWillReplaceWindows(appToken, childrenOnly);
Robert Carr23fa16b2016-01-13 13:19:58 -0800220 }
221
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700222 public int relayout(IWindow window, int seq, WindowManager.LayoutParams attrs,
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800223 int requestedWidth, int requestedHeight, int viewFlags,
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800224 int flags, Rect outFrame, Rect outOverscanInsets, Rect outContentInsets,
Jorim Jaggi2e95a482016-01-14 17:36:55 -0800225 Rect outVisibleInsets, Rect outStableInsets, Rect outsets, Rect outBackdropFrame,
226 Configuration outConfig, Surface outSurface) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800227 if (false) Slog.d(TAG_WM, ">>>>>> ENTERED relayout from "
Dianne Hackbornb961cd22011-06-21 12:13:37 -0700228 + Binder.getCallingPid());
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700229 int res = mService.relayoutWindow(this, window, seq, attrs,
Dianne Hackborn6d05fd32011-11-19 14:36:15 -0800230 requestedWidth, requestedHeight, viewFlags, flags,
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800231 outFrame, outOverscanInsets, outContentInsets, outVisibleInsets,
Jorim Jaggi2e95a482016-01-14 17:36:55 -0800232 outStableInsets, outsets, outBackdropFrame, outConfig, outSurface);
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800233 if (false) Slog.d(TAG_WM, "<<<<<< EXITING relayout to "
Dianne Hackbornb961cd22011-06-21 12:13:37 -0700234 + Binder.getCallingPid());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800235 return res;
236 }
237
Dianne Hackborn6d05fd32011-11-19 14:36:15 -0800238 public void performDeferredDestroy(IWindow window) {
239 mService.performDeferredDestroyWindow(this, window);
240 }
241
Dianne Hackborn64825172011-03-02 21:32:58 -0800242 public boolean outOfMemory(IWindow window) {
243 return mService.outOfMemoryWindow(this, window);
244 }
245
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800246 public void setTransparentRegion(IWindow window, Region region) {
247 mService.setTransparentRegionWindow(this, window, region);
248 }
249
250 public void setInsets(IWindow window, int touchableInsets,
251 Rect contentInsets, Rect visibleInsets, Region touchableArea) {
252 mService.setInsetsWindow(this, window, touchableInsets, contentInsets,
253 visibleInsets, touchableArea);
254 }
255
256 public void getDisplayFrame(IWindow window, Rect outDisplayFrame) {
257 mService.getWindowDisplayFrame(this, window, outDisplayFrame);
258 }
259
260 public void finishDrawing(IWindow window) {
261 if (WindowManagerService.localLOGV) Slog.v(
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800262 TAG_WM, "IWindow finishDrawing called for " + window);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800263 mService.finishDrawingWindow(this, window);
264 }
265
266 public void setInTouchMode(boolean mode) {
267 synchronized(mService.mWindowMap) {
268 mService.mInTouchMode = mode;
269 }
270 }
271
272 public boolean getInTouchMode() {
273 synchronized(mService.mWindowMap) {
274 return mService.mInTouchMode;
275 }
276 }
277
278 public boolean performHapticFeedback(IWindow window, int effectId,
279 boolean always) {
280 synchronized(mService.mWindowMap) {
281 long ident = Binder.clearCallingIdentity();
282 try {
283 return mService.mPolicy.performHapticFeedbackLw(
284 mService.windowForClientLocked(this, window, true),
285 effectId, always);
286 } finally {
287 Binder.restoreCallingIdentity(ident);
288 }
289 }
290 }
291
292 /* Drag/drop */
293 public IBinder prepareDrag(IWindow window, int flags,
294 int width, int height, Surface outSurface) {
295 return mService.prepareDragSurface(window, mSurfaceSession, flags,
296 width, height, outSurface);
297 }
298
299 public boolean performDrag(IWindow window, IBinder dragToken,
Vladislav Kaznacheevba761122016-01-22 12:09:45 -0800300 int touchSource, float touchX, float touchY, float thumbCenterX, float thumbCenterY,
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800301 ClipData data) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800302 if (DEBUG_DRAG) {
303 Slog.d(TAG_WM, "perform drag: win=" + window + " data=" + data);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800304 }
305
306 synchronized (mService.mWindowMap) {
307 if (mService.mDragState == null) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800308 Slog.w(TAG_WM, "No drag prepared");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800309 throw new IllegalStateException("performDrag() without prepareDrag()");
310 }
311
312 if (dragToken != mService.mDragState.mToken) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800313 Slog.w(TAG_WM, "Performing mismatched drag");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800314 throw new IllegalStateException("performDrag() does not match prepareDrag()");
315 }
316
317 WindowState callingWin = mService.windowForClientLocked(null, window, false);
318 if (callingWin == null) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800319 Slog.w(TAG_WM, "Bad requesting window " + window);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800320 return false; // !!! TODO: throw here?
321 }
322
323 // !!! TODO: if input is not still focused on the initiating window, fail
324 // the drag initiation (e.g. an alarm window popped up just as the application
325 // called performDrag()
326
327 mService.mH.removeMessages(H.DRAG_START_TIMEOUT, window.asBinder());
328
329 // !!! TODO: extract the current touch (x, y) in screen coordinates. That
330 // will let us eliminate the (touchX,touchY) parameters from the API.
331
332 // !!! FIXME: put all this heavy stuff onto the mH looper, as well as
333 // the actual drag event dispatch stuff in the dragstate
334
Craig Mautnerdf88d732014-01-27 09:21:32 -0800335 final DisplayContent displayContent = callingWin.getDisplayContent();
336 if (displayContent == null) {
337 return false;
338 }
339 Display display = displayContent.getDisplay();
Jeff Brown14a9f2b2012-09-24 14:36:44 -0700340 mService.mDragState.register(display);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800341 if (!mService.mInputManager.transferTouchFocus(callingWin.mInputChannel,
Vladislav Kaznacheev64b103a2016-08-10 11:49:08 -0700342 mService.mDragState.getInputChannel())) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800343 Slog.e(TAG_WM, "Unable to transfer touch focus");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800344 mService.mDragState.unregister();
Vladislav Kaznacheev64b103a2016-08-10 11:49:08 -0700345 mService.mDragState.reset();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800346 mService.mDragState = null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800347 return false;
348 }
349
Vladislav Kaznacheev64b103a2016-08-10 11:49:08 -0700350 mService.mDragState.mDisplayContent = displayContent;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800351 mService.mDragState.mData = data;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800352 mService.mDragState.broadcastDragStartedLw(touchX, touchY);
Vladislav Kaznacheevba761122016-01-22 12:09:45 -0800353 mService.mDragState.overridePointerIconLw(touchSource);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800354
355 // remember the thumb offsets for later
356 mService.mDragState.mThumbOffsetX = thumbCenterX;
357 mService.mDragState.mThumbOffsetY = thumbCenterY;
358
359 // Make the surface visible at the proper location
Mathias Agopian29479eb2013-02-14 14:36:04 -0800360 final SurfaceControl surfaceControl = mService.mDragState.mSurfaceControl;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800361 if (SHOW_LIGHT_TRANSACTIONS) Slog.i(
362 TAG_WM, ">>> OPEN TRANSACTION performDrag");
Robert Carr68e5c9e2016-09-14 10:50:09 -0700363 mService.openSurfaceTransaction();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800364 try {
Mathias Agopian29479eb2013-02-14 14:36:04 -0800365 surfaceControl.setPosition(touchX - thumbCenterX,
Dianne Hackbornd040edb2011-08-31 12:47:58 -0700366 touchY - thumbCenterY);
Mathias Agopian29479eb2013-02-14 14:36:04 -0800367 surfaceControl.setLayer(mService.mDragState.getDragLayerLw());
368 surfaceControl.setLayerStack(display.getLayerStack());
369 surfaceControl.show();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800370 } finally {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700371 mService.closeSurfaceTransaction();
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800372 if (SHOW_LIGHT_TRANSACTIONS) Slog.i(
373 TAG_WM, "<<< CLOSE TRANSACTION performDrag");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800374 }
Vladislav Kaznacheevd0ed8932016-01-15 15:37:05 -0800375
376 mService.mDragState.notifyLocationLw(touchX, touchY);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800377 }
378
379 return true; // success!
380 }
381
Chong Zhang8e89b312015-09-09 15:09:30 -0700382 public boolean startMovingTask(IWindow window, float startX, float startY) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800383 if (DEBUG_TASK_POSITIONING) Slog.d(
384 TAG_WM, "startMovingTask: {" + startX + "," + startY + "}");
Chong Zhang8e89b312015-09-09 15:09:30 -0700385
Wale Ogunwale09e1b8d2016-02-23 10:38:35 -0800386 long ident = Binder.clearCallingIdentity();
387 try {
388 return mService.startMovingTask(window, startX, startY);
389 } finally {
390 Binder.restoreCallingIdentity(ident);
391 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700392 }
393
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800394 public void reportDropResult(IWindow window, boolean consumed) {
395 IBinder token = window.asBinder();
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800396 if (DEBUG_DRAG) {
397 Slog.d(TAG_WM, "Drop result=" + consumed + " reported by " + token);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800398 }
399
400 synchronized (mService.mWindowMap) {
401 long ident = Binder.clearCallingIdentity();
402 try {
Christopher Tate05e9c652011-10-20 12:34:36 -0700403 if (mService.mDragState == null) {
404 // Most likely the drop recipient ANRed and we ended the drag
405 // out from under it. Log the issue and move on.
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800406 Slog.w(TAG_WM, "Drop result given but no drag in progress");
Christopher Tate05e9c652011-10-20 12:34:36 -0700407 return;
408 }
409
410 if (mService.mDragState.mToken != token) {
411 // We're in a drag, but the wrong window has responded.
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800412 Slog.w(TAG_WM, "Invalid drop-result claim by " + window);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800413 throw new IllegalStateException("reportDropResult() by non-recipient");
414 }
415
416 // The right window has responded, even if it's no longer around,
417 // so be sure to halt the timeout even if the later WindowState
418 // lookup fails.
419 mService.mH.removeMessages(H.DRAG_END_TIMEOUT, window.asBinder());
420 WindowState callingWin = mService.windowForClientLocked(null, window, false);
421 if (callingWin == null) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800422 Slog.w(TAG_WM, "Bad result-reporting window " + window);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800423 return; // !!! TODO: throw here?
424 }
425
426 mService.mDragState.mDragResult = consumed;
427 mService.mDragState.endDragLw();
428 } finally {
429 Binder.restoreCallingIdentity(ident);
430 }
431 }
432 }
433
Vladislav Kaznacheev82063912015-11-20 14:20:13 -0800434 public void cancelDragAndDrop(IBinder dragToken) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800435 if (DEBUG_DRAG) {
436 Slog.d(TAG_WM, "cancelDragAndDrop");
Vladislav Kaznacheev82063912015-11-20 14:20:13 -0800437 }
438
439 synchronized (mService.mWindowMap) {
440 long ident = Binder.clearCallingIdentity();
441 try {
442 if (mService.mDragState == null) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800443 Slog.w(TAG_WM, "cancelDragAndDrop() without prepareDrag()");
Vladislav Kaznacheev82063912015-11-20 14:20:13 -0800444 throw new IllegalStateException("cancelDragAndDrop() without prepareDrag()");
445 }
446
447 if (mService.mDragState.mToken != dragToken) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800448 Slog.w(TAG_WM,
Vladislav Kaznacheev82063912015-11-20 14:20:13 -0800449 "cancelDragAndDrop() does not match prepareDrag()");
450 throw new IllegalStateException(
451 "cancelDragAndDrop() does not match prepareDrag()");
452 }
453
454 mService.mDragState.mDragResult = false;
Vladislav Kaznacheevce2aef92015-11-20 18:49:59 -0800455 mService.mDragState.cancelDragLw();
Vladislav Kaznacheev82063912015-11-20 14:20:13 -0800456 } finally {
457 Binder.restoreCallingIdentity(ident);
458 }
459 }
460 }
461
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800462 public void dragRecipientEntered(IWindow window) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800463 if (DEBUG_DRAG) {
464 Slog.d(TAG_WM, "Drag into new candidate view @ " + window.asBinder());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800465 }
466 }
467
468 public void dragRecipientExited(IWindow window) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800469 if (DEBUG_DRAG) {
470 Slog.d(TAG_WM, "Drag from old candidate view @ " + window.asBinder());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800471 }
472 }
473
474 public void setWallpaperPosition(IBinder window, float x, float y, float xStep, float yStep) {
475 synchronized(mService.mWindowMap) {
476 long ident = Binder.clearCallingIdentity();
477 try {
Wale Ogunwale0303c572016-10-20 10:16:29 -0700478 mService.mRoot.mWallpaperController.setWindowWallpaperPosition(
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800479 mService.windowForClientLocked(this, window, true),
480 x, y, xStep, yStep);
481 } finally {
482 Binder.restoreCallingIdentity(ident);
483 }
484 }
485 }
486
487 public void wallpaperOffsetsComplete(IBinder window) {
Wale Ogunwalee8069dc2015-08-18 09:52:01 -0700488 synchronized (mService.mWindowMap) {
Wale Ogunwale0303c572016-10-20 10:16:29 -0700489 mService.mRoot.mWallpaperController.wallpaperOffsetsComplete(window);
Wale Ogunwalee8069dc2015-08-18 09:52:01 -0700490 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800491 }
492
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700493 public void setWallpaperDisplayOffset(IBinder window, int x, int y) {
494 synchronized(mService.mWindowMap) {
495 long ident = Binder.clearCallingIdentity();
496 try {
Wale Ogunwale0303c572016-10-20 10:16:29 -0700497 mService.mRoot.mWallpaperController.setWindowWallpaperDisplayOffset(
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700498 mService.windowForClientLocked(this, window, true), x, y);
499 } finally {
500 Binder.restoreCallingIdentity(ident);
501 }
502 }
503 }
504
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800505 public Bundle sendWallpaperCommand(IBinder window, String action, int x, int y,
506 int z, Bundle extras, boolean sync) {
507 synchronized(mService.mWindowMap) {
508 long ident = Binder.clearCallingIdentity();
509 try {
Wale Ogunwale0303c572016-10-20 10:16:29 -0700510 return mService.mRoot.mWallpaperController.sendWindowWallpaperCommand(
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800511 mService.windowForClientLocked(this, window, true),
512 action, x, y, z, extras, sync);
513 } finally {
514 Binder.restoreCallingIdentity(ident);
515 }
516 }
517 }
518
519 public void wallpaperCommandComplete(IBinder window, Bundle result) {
Wale Ogunwalee8069dc2015-08-18 09:52:01 -0700520 synchronized (mService.mWindowMap) {
Wale Ogunwale0303c572016-10-20 10:16:29 -0700521 mService.mRoot.mWallpaperController.wallpaperCommandComplete(window);
Wale Ogunwalee8069dc2015-08-18 09:52:01 -0700522 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800523 }
524
Svetoslavf7174e82014-06-12 11:29:35 -0700525 public void onRectangleOnScreenRequested(IBinder token, Rect rectangle) {
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -0700526 synchronized(mService.mWindowMap) {
527 final long identity = Binder.clearCallingIdentity();
528 try {
Svetoslavf7174e82014-06-12 11:29:35 -0700529 mService.onRectangleOnScreenRequested(token, rectangle);
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -0700530 } finally {
531 Binder.restoreCallingIdentity(identity);
532 }
533 }
534 }
535
Dianne Hackborne3f23a32013-03-01 13:25:35 -0800536 public IWindowId getWindowId(IBinder window) {
537 return mService.getWindowId(window);
538 }
539
Jeff Brownc2932a12014-11-20 18:04:05 -0800540 @Override
541 public void pokeDrawLock(IBinder window) {
542 final long identity = Binder.clearCallingIdentity();
543 try {
544 mService.pokeDrawLock(this, window);
545 } finally {
546 Binder.restoreCallingIdentity(identity);
547 }
548 }
549
Vladislav Kaznacheev989b58a2016-02-10 12:19:33 -0800550 @Override
551 public void updatePointerIcon(IWindow window) {
552 final long identity = Binder.clearCallingIdentity();
553 try {
554 mService.updatePointerIcon(window);
555 } finally {
556 Binder.restoreCallingIdentity(identity);
557 }
558 }
559
Wale Ogunwale387e4c62017-02-13 09:50:02 -0800560 void windowAddedLocked(String packageName) {
561 mPackageName = packageName;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800562 if (mSurfaceSession == null) {
563 if (WindowManagerService.localLOGV) Slog.v(
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800564 TAG_WM, "First window added to " + this + ", creating SurfaceSession");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800565 mSurfaceSession = new SurfaceSession();
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800566 if (SHOW_TRANSACTIONS) Slog.i(
567 TAG_WM, " NEW SURFACE SESSION " + mSurfaceSession);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800568 mService.mSessions.add(this);
Dianne Hackborneb94fa72014-06-03 17:48:12 -0700569 if (mLastReportedAnimatorScale != mService.getCurrentAnimatorScale()) {
570 mService.dispatchNewAnimatorScaleLocked(this);
571 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800572 }
573 mNumWindow++;
574 }
575
Wale Ogunwale943002b2017-02-15 19:34:01 -0800576 void windowRemovedLocked() {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800577 mNumWindow--;
Wale Ogunwale943002b2017-02-15 19:34:01 -0800578 killSessionLocked();
579 }
580
581
582 void onWindowSurfaceVisibilityChanged(WindowSurfaceController surfaceController,
583 boolean visible, int type) {
584
585 if (!isSystemAlertWindowType(type)) {
586 return;
587 }
588
589 boolean changed;
590
591 if (!mCanAddInternalSystemWindow) {
592 // We want to track non-system signature apps adding alert windows so we can post an
593 // on-going notification for the user to control their visibility.
594 if (visible) {
595 changed = mAlertWindowSurfaces.add(surfaceController);
596 } else {
597 changed = mAlertWindowSurfaces.remove(surfaceController);
598 }
599
600 if (changed) {
Wale Ogunwale387e4c62017-02-13 09:50:02 -0800601 if (mAlertWindowSurfaces.isEmpty()) {
602 cancelAlertWindowNotification();
603 } else if (mAlertWindowNotification == null){
604 mAlertWindowNotification = new AlertWindowNotification(
605 mService, mPackageName, mUid);
606 }
Wale Ogunwaled993a572017-02-05 13:52:09 -0800607 }
608 }
Wale Ogunwale943002b2017-02-15 19:34:01 -0800609
610 if (type != TYPE_APPLICATION_OVERLAY) {
611 return;
612 }
613
614 if (visible) {
615 changed = mAppOverlaySurfaces.add(surfaceController);
616 } else {
617 changed = mAppOverlaySurfaces.remove(surfaceController);
618 }
619
620 if (changed) {
621 // Notify activity manager of changes to app overlay windows so it can adjust the
622 // importance score for the process.
623 setHasOverlayUi(!mAppOverlaySurfaces.isEmpty());
624 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800625 }
626
Wale Ogunwaled993a572017-02-05 13:52:09 -0800627 private void killSessionLocked() {
628 if (mNumWindow > 0 || !mClientDead) {
629 return;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800630 }
Wale Ogunwaled993a572017-02-05 13:52:09 -0800631
632 mService.mSessions.remove(this);
633 if (mSurfaceSession == null) {
634 return;
635 }
636
637 if (WindowManagerService.localLOGV) Slog.v(TAG_WM, "Last window removed from " + this
638 + ", destroying " + mSurfaceSession);
639 if (SHOW_TRANSACTIONS) Slog.i(TAG_WM, " KILL SURFACE SESSION " + mSurfaceSession);
640 try {
641 mSurfaceSession.kill();
642 } catch (Exception e) {
643 Slog.w(TAG_WM, "Exception thrown when killing surface session " + mSurfaceSession
644 + " in session " + this + ": " + e.toString());
645 }
646 mSurfaceSession = null;
Wale Ogunwale387e4c62017-02-13 09:50:02 -0800647 mAlertWindowSurfaces.clear();
648 mAppOverlaySurfaces.clear();
Wale Ogunwaled993a572017-02-05 13:52:09 -0800649 setHasOverlayUi(false);
Wale Ogunwale387e4c62017-02-13 09:50:02 -0800650 cancelAlertWindowNotification();
Wale Ogunwaled993a572017-02-05 13:52:09 -0800651 }
652
653 private void setHasOverlayUi(boolean hasOverlayUi) {
654 mService.mH.obtainMessage(H.SET_HAS_OVERLAY_UI, mPid, hasOverlayUi ? 1 : 0).sendToTarget();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800655 }
656
Wale Ogunwale387e4c62017-02-13 09:50:02 -0800657 private void cancelAlertWindowNotification() {
658 if (mAlertWindowNotification == null) {
659 return;
660 }
661 mAlertWindowNotification.cancel();
662 mAlertWindowNotification = null;
663 }
664
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800665 void dump(PrintWriter pw, String prefix) {
666 pw.print(prefix); pw.print("mNumWindow="); pw.print(mNumWindow);
Wale Ogunwale5aa86832017-02-28 10:40:27 -0800667 pw.print(" mCanAddInternalSystemWindow="); pw.print(mCanAddInternalSystemWindow);
Wale Ogunwale943002b2017-02-15 19:34:01 -0800668 pw.print(" mAppOverlaySurfaces="); pw.print(mAppOverlaySurfaces);
669 pw.print(" mAlertWindowSurfaces="); pw.print(mAlertWindowSurfaces);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800670 pw.print(" mClientDead="); pw.print(mClientDead);
671 pw.print(" mSurfaceSession="); pw.println(mSurfaceSession);
672 }
673
674 @Override
675 public String toString() {
676 return mStringName;
677 }
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700678}