blob: 6a7123c030fcbc0c7ac4cc8b85ea2c2d849a9eba [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;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080031import android.graphics.Rect;
32import android.graphics.Region;
33import android.os.Binder;
34import android.os.Bundle;
35import android.os.IBinder;
36import android.os.Parcel;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -070037import android.os.Process;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080038import android.os.RemoteException;
39import android.os.ServiceManager;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -070040import android.os.UserHandle;
Andrii Kulian44607962017-03-16 11:06:24 -070041import android.util.MergedConfiguration;
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 Ogunwalea10fc7e2017-04-06 07:09:51 -070084 private boolean mShowingAlertWindowNotificationAllowed;
Wale Ogunwalecfca2582016-10-19 09:53:25 -070085 private boolean mClientDead = false;
86 private float mLastReportedAnimatorScale;
Wale Ogunwale387e4c62017-02-13 09:50:02 -080087 private String mPackageName;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080088
Dianne Hackborneb94fa72014-06-03 17:48:12 -070089 public Session(WindowManagerService service, IWindowSessionCallback callback,
90 IInputMethodClient client, IInputContext inputContext) {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080091 mService = service;
Dianne Hackborneb94fa72014-06-03 17:48:12 -070092 mCallback = callback;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080093 mClient = client;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -080094 mUid = Binder.getCallingUid();
95 mPid = Binder.getCallingPid();
Dianne Hackborneb94fa72014-06-03 17:48:12 -070096 mLastReportedAnimatorScale = service.getCurrentAnimatorScale();
Wale Ogunwale5aa86832017-02-28 10:40:27 -080097 mCanAddInternalSystemWindow = service.mContext.checkCallingOrSelfPermission(
Wale Ogunwale943002b2017-02-15 19:34:01 -080098 INTERNAL_SYSTEM_WINDOW) == PERMISSION_GRANTED;
Wale Ogunwalea10fc7e2017-04-06 07:09:51 -070099 mShowingAlertWindowNotificationAllowed = mService.mShowAlertWindowNotifications;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800100 StringBuilder sb = new StringBuilder();
101 sb.append("Session{");
102 sb.append(Integer.toHexString(System.identityHashCode(this)));
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700103 sb.append(" ");
104 sb.append(mPid);
105 if (mUid < Process.FIRST_APPLICATION_UID) {
106 sb.append(":");
107 sb.append(mUid);
108 } else {
109 sb.append(":u");
110 sb.append(UserHandle.getUserId(mUid));
111 sb.append('a');
112 sb.append(UserHandle.getAppId(mUid));
113 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800114 sb.append("}");
115 mStringName = sb.toString();
116
117 synchronized (mService.mWindowMap) {
118 if (mService.mInputMethodManager == null && mService.mHaveInputMethods) {
119 IBinder b = ServiceManager.getService(
120 Context.INPUT_METHOD_SERVICE);
121 mService.mInputMethodManager = IInputMethodManager.Stub.asInterface(b);
122 }
123 }
124 long ident = Binder.clearCallingIdentity();
125 try {
126 // Note: it is safe to call in to the input method manager
127 // here because we are not holding our lock.
128 if (mService.mInputMethodManager != null) {
129 mService.mInputMethodManager.addClient(client, inputContext,
130 mUid, mPid);
131 } else {
132 client.setUsingInputMethod(false);
133 }
134 client.asBinder().linkToDeath(this, 0);
135 } catch (RemoteException e) {
136 // The caller has died, so we can just forget about this.
137 try {
138 if (mService.mInputMethodManager != null) {
139 mService.mInputMethodManager.removeClient(client);
140 }
141 } catch (RemoteException ee) {
142 }
143 } finally {
144 Binder.restoreCallingIdentity(ident);
145 }
146 }
147
148 @Override
149 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
150 throws RemoteException {
151 try {
152 return super.onTransact(code, data, reply, flags);
153 } catch (RuntimeException e) {
154 // Log all 'real' exceptions thrown to the caller
155 if (!(e instanceof SecurityException)) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800156 Slog.wtf(TAG_WM, "Window Session Crash", e);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800157 }
158 throw e;
159 }
160 }
161
162 public void binderDied() {
163 // Note: it is safe to call in to the input method manager
164 // here because we are not holding our lock.
165 try {
166 if (mService.mInputMethodManager != null) {
167 mService.mInputMethodManager.removeClient(mClient);
168 }
169 } catch (RemoteException e) {
170 }
171 synchronized(mService.mWindowMap) {
172 mClient.asBinder().unlinkToDeath(this, 0);
173 mClientDead = true;
174 killSessionLocked();
175 }
176 }
177
Craig Mautner6881a102012-07-27 13:04:51 -0700178 @Override
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700179 public int add(IWindow window, int seq, WindowManager.LayoutParams attrs,
Adrian Roos37d7a682014-11-06 18:15:16 +0100180 int viewVisibility, Rect outContentInsets, Rect outStableInsets,
181 InputChannel outInputChannel) {
Craig Mautner6881a102012-07-27 13:04:51 -0700182 return addToDisplay(window, seq, attrs, viewVisibility, Display.DEFAULT_DISPLAY,
Filip Gruszczynski0ec13282015-06-25 11:26:01 -0700183 outContentInsets, outStableInsets, null /* outOutsets */, outInputChannel);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800184 }
Craig Mautner6881a102012-07-27 13:04:51 -0700185
186 @Override
187 public int addToDisplay(IWindow window, int seq, WindowManager.LayoutParams attrs,
Adrian Roos37d7a682014-11-06 18:15:16 +0100188 int viewVisibility, int displayId, Rect outContentInsets, Rect outStableInsets,
Filip Gruszczynski0ec13282015-06-25 11:26:01 -0700189 Rect outOutsets, InputChannel outInputChannel) {
Craig Mautner6881a102012-07-27 13:04:51 -0700190 return mService.addWindow(this, window, seq, attrs, viewVisibility, displayId,
Filip Gruszczynski0ec13282015-06-25 11:26:01 -0700191 outContentInsets, outStableInsets, outOutsets, outInputChannel);
Craig Mautner6881a102012-07-27 13:04:51 -0700192 }
193
194 @Override
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700195 public int addWithoutInputChannel(IWindow window, int seq, WindowManager.LayoutParams attrs,
Adrian Roos37d7a682014-11-06 18:15:16 +0100196 int viewVisibility, Rect outContentInsets, Rect outStableInsets) {
Craig Mautner6881a102012-07-27 13:04:51 -0700197 return addToDisplayWithoutInputChannel(window, seq, attrs, viewVisibility,
Adrian Roos37d7a682014-11-06 18:15:16 +0100198 Display.DEFAULT_DISPLAY, outContentInsets, outStableInsets);
Craig Mautner6881a102012-07-27 13:04:51 -0700199 }
200
201 @Override
202 public int addToDisplayWithoutInputChannel(IWindow window, int seq, WindowManager.LayoutParams attrs,
Adrian Roos37d7a682014-11-06 18:15:16 +0100203 int viewVisibility, int displayId, Rect outContentInsets, Rect outStableInsets) {
Craig Mautner6881a102012-07-27 13:04:51 -0700204 return mService.addWindow(this, window, seq, attrs, viewVisibility, displayId,
Filip Gruszczynski0ec13282015-06-25 11:26:01 -0700205 outContentInsets, outStableInsets, null /* outOutsets */, null);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800206 }
207
208 public void remove(IWindow window) {
209 mService.removeWindow(this, window);
210 }
211
Rob Carr64e516f2015-10-29 00:20:45 +0000212 @Override
Robert Carr77bdfb52016-05-02 18:18:31 -0700213 public void prepareToReplaceWindows(IBinder appToken, boolean childrenOnly) {
Wale Ogunwale9bc47732016-08-10 14:44:22 -0700214 mService.setWillReplaceWindows(appToken, childrenOnly);
Robert Carr23fa16b2016-01-13 13:19:58 -0800215 }
216
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700217 public int relayout(IWindow window, int seq, WindowManager.LayoutParams attrs,
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800218 int requestedWidth, int requestedHeight, int viewFlags,
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800219 int flags, Rect outFrame, Rect outOverscanInsets, Rect outContentInsets,
Jorim Jaggi2e95a482016-01-14 17:36:55 -0800220 Rect outVisibleInsets, Rect outStableInsets, Rect outsets, Rect outBackdropFrame,
Andrii Kulian44607962017-03-16 11:06:24 -0700221 MergedConfiguration mergedConfiguration, Surface outSurface) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800222 if (false) Slog.d(TAG_WM, ">>>>>> ENTERED relayout from "
Dianne Hackbornb961cd22011-06-21 12:13:37 -0700223 + Binder.getCallingPid());
Dianne Hackborn9a230e02011-10-06 11:51:27 -0700224 int res = mService.relayoutWindow(this, window, seq, attrs,
Dianne Hackborn6d05fd32011-11-19 14:36:15 -0800225 requestedWidth, requestedHeight, viewFlags, flags,
Dianne Hackbornc4aad012013-02-22 15:05:25 -0800226 outFrame, outOverscanInsets, outContentInsets, outVisibleInsets,
Andrii Kulian44607962017-03-16 11:06:24 -0700227 outStableInsets, outsets, outBackdropFrame, mergedConfiguration, outSurface);
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800228 if (false) Slog.d(TAG_WM, "<<<<<< EXITING relayout to "
Dianne Hackbornb961cd22011-06-21 12:13:37 -0700229 + Binder.getCallingPid());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800230 return res;
231 }
232
Dianne Hackborn64825172011-03-02 21:32:58 -0800233 public boolean outOfMemory(IWindow window) {
234 return mService.outOfMemoryWindow(this, window);
235 }
236
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800237 public void setTransparentRegion(IWindow window, Region region) {
238 mService.setTransparentRegionWindow(this, window, region);
239 }
240
241 public void setInsets(IWindow window, int touchableInsets,
242 Rect contentInsets, Rect visibleInsets, Region touchableArea) {
243 mService.setInsetsWindow(this, window, touchableInsets, contentInsets,
244 visibleInsets, touchableArea);
245 }
246
247 public void getDisplayFrame(IWindow window, Rect outDisplayFrame) {
248 mService.getWindowDisplayFrame(this, window, outDisplayFrame);
249 }
250
251 public void finishDrawing(IWindow window) {
252 if (WindowManagerService.localLOGV) Slog.v(
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800253 TAG_WM, "IWindow finishDrawing called for " + window);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800254 mService.finishDrawingWindow(this, window);
255 }
256
257 public void setInTouchMode(boolean mode) {
258 synchronized(mService.mWindowMap) {
259 mService.mInTouchMode = mode;
260 }
261 }
262
263 public boolean getInTouchMode() {
264 synchronized(mService.mWindowMap) {
265 return mService.mInTouchMode;
266 }
267 }
268
269 public boolean performHapticFeedback(IWindow window, int effectId,
270 boolean always) {
271 synchronized(mService.mWindowMap) {
272 long ident = Binder.clearCallingIdentity();
273 try {
274 return mService.mPolicy.performHapticFeedbackLw(
275 mService.windowForClientLocked(this, window, true),
276 effectId, always);
277 } finally {
278 Binder.restoreCallingIdentity(ident);
279 }
280 }
281 }
282
283 /* Drag/drop */
284 public IBinder prepareDrag(IWindow window, int flags,
285 int width, int height, Surface outSurface) {
286 return mService.prepareDragSurface(window, mSurfaceSession, flags,
287 width, height, outSurface);
288 }
289
290 public boolean performDrag(IWindow window, IBinder dragToken,
Vladislav Kaznacheevba761122016-01-22 12:09:45 -0800291 int touchSource, float touchX, float touchY, float thumbCenterX, float thumbCenterY,
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800292 ClipData data) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800293 if (DEBUG_DRAG) {
294 Slog.d(TAG_WM, "perform drag: win=" + window + " data=" + data);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800295 }
296
297 synchronized (mService.mWindowMap) {
298 if (mService.mDragState == null) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800299 Slog.w(TAG_WM, "No drag prepared");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800300 throw new IllegalStateException("performDrag() without prepareDrag()");
301 }
302
303 if (dragToken != mService.mDragState.mToken) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800304 Slog.w(TAG_WM, "Performing mismatched drag");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800305 throw new IllegalStateException("performDrag() does not match prepareDrag()");
306 }
307
308 WindowState callingWin = mService.windowForClientLocked(null, window, false);
309 if (callingWin == null) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800310 Slog.w(TAG_WM, "Bad requesting window " + window);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800311 return false; // !!! TODO: throw here?
312 }
313
314 // !!! TODO: if input is not still focused on the initiating window, fail
315 // the drag initiation (e.g. an alarm window popped up just as the application
316 // called performDrag()
317
318 mService.mH.removeMessages(H.DRAG_START_TIMEOUT, window.asBinder());
319
320 // !!! TODO: extract the current touch (x, y) in screen coordinates. That
321 // will let us eliminate the (touchX,touchY) parameters from the API.
322
323 // !!! FIXME: put all this heavy stuff onto the mH looper, as well as
324 // the actual drag event dispatch stuff in the dragstate
325
Craig Mautnerdf88d732014-01-27 09:21:32 -0800326 final DisplayContent displayContent = callingWin.getDisplayContent();
327 if (displayContent == null) {
328 return false;
329 }
330 Display display = displayContent.getDisplay();
Jeff Brown14a9f2b2012-09-24 14:36:44 -0700331 mService.mDragState.register(display);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800332 if (!mService.mInputManager.transferTouchFocus(callingWin.mInputChannel,
Vladislav Kaznacheev64b103a2016-08-10 11:49:08 -0700333 mService.mDragState.getInputChannel())) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800334 Slog.e(TAG_WM, "Unable to transfer touch focus");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800335 mService.mDragState.unregister();
Vladislav Kaznacheev64b103a2016-08-10 11:49:08 -0700336 mService.mDragState.reset();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800337 mService.mDragState = null;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800338 return false;
339 }
340
Vladislav Kaznacheev64b103a2016-08-10 11:49:08 -0700341 mService.mDragState.mDisplayContent = displayContent;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800342 mService.mDragState.mData = data;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800343 mService.mDragState.broadcastDragStartedLw(touchX, touchY);
Vladislav Kaznacheevba761122016-01-22 12:09:45 -0800344 mService.mDragState.overridePointerIconLw(touchSource);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800345
346 // remember the thumb offsets for later
347 mService.mDragState.mThumbOffsetX = thumbCenterX;
348 mService.mDragState.mThumbOffsetY = thumbCenterY;
349
350 // Make the surface visible at the proper location
Mathias Agopian29479eb2013-02-14 14:36:04 -0800351 final SurfaceControl surfaceControl = mService.mDragState.mSurfaceControl;
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800352 if (SHOW_LIGHT_TRANSACTIONS) Slog.i(
353 TAG_WM, ">>> OPEN TRANSACTION performDrag");
Robert Carr68e5c9e2016-09-14 10:50:09 -0700354 mService.openSurfaceTransaction();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800355 try {
Mathias Agopian29479eb2013-02-14 14:36:04 -0800356 surfaceControl.setPosition(touchX - thumbCenterX,
Dianne Hackbornd040edb2011-08-31 12:47:58 -0700357 touchY - thumbCenterY);
Mathias Agopian29479eb2013-02-14 14:36:04 -0800358 surfaceControl.setLayer(mService.mDragState.getDragLayerLw());
359 surfaceControl.setLayerStack(display.getLayerStack());
360 surfaceControl.show();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800361 } finally {
Robert Carr68e5c9e2016-09-14 10:50:09 -0700362 mService.closeSurfaceTransaction();
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800363 if (SHOW_LIGHT_TRANSACTIONS) Slog.i(
364 TAG_WM, "<<< CLOSE TRANSACTION performDrag");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800365 }
Vladislav Kaznacheevd0ed8932016-01-15 15:37:05 -0800366
367 mService.mDragState.notifyLocationLw(touchX, touchY);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800368 }
369
370 return true; // success!
371 }
372
Chong Zhang8e89b312015-09-09 15:09:30 -0700373 public boolean startMovingTask(IWindow window, float startX, float startY) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800374 if (DEBUG_TASK_POSITIONING) Slog.d(
375 TAG_WM, "startMovingTask: {" + startX + "," + startY + "}");
Chong Zhang8e89b312015-09-09 15:09:30 -0700376
Wale Ogunwale09e1b8d2016-02-23 10:38:35 -0800377 long ident = Binder.clearCallingIdentity();
378 try {
379 return mService.startMovingTask(window, startX, startY);
380 } finally {
381 Binder.restoreCallingIdentity(ident);
382 }
Chong Zhang8e89b312015-09-09 15:09:30 -0700383 }
384
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800385 public void reportDropResult(IWindow window, boolean consumed) {
386 IBinder token = window.asBinder();
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800387 if (DEBUG_DRAG) {
388 Slog.d(TAG_WM, "Drop result=" + consumed + " reported by " + token);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800389 }
390
391 synchronized (mService.mWindowMap) {
392 long ident = Binder.clearCallingIdentity();
393 try {
Christopher Tate05e9c652011-10-20 12:34:36 -0700394 if (mService.mDragState == null) {
395 // Most likely the drop recipient ANRed and we ended the drag
396 // out from under it. Log the issue and move on.
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800397 Slog.w(TAG_WM, "Drop result given but no drag in progress");
Christopher Tate05e9c652011-10-20 12:34:36 -0700398 return;
399 }
400
401 if (mService.mDragState.mToken != token) {
402 // We're in a drag, but the wrong window has responded.
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800403 Slog.w(TAG_WM, "Invalid drop-result claim by " + window);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800404 throw new IllegalStateException("reportDropResult() by non-recipient");
405 }
406
407 // The right window has responded, even if it's no longer around,
408 // so be sure to halt the timeout even if the later WindowState
409 // lookup fails.
410 mService.mH.removeMessages(H.DRAG_END_TIMEOUT, window.asBinder());
411 WindowState callingWin = mService.windowForClientLocked(null, window, false);
412 if (callingWin == null) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800413 Slog.w(TAG_WM, "Bad result-reporting window " + window);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800414 return; // !!! TODO: throw here?
415 }
416
417 mService.mDragState.mDragResult = consumed;
418 mService.mDragState.endDragLw();
419 } finally {
420 Binder.restoreCallingIdentity(ident);
421 }
422 }
423 }
424
Vladislav Kaznacheev82063912015-11-20 14:20:13 -0800425 public void cancelDragAndDrop(IBinder dragToken) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800426 if (DEBUG_DRAG) {
427 Slog.d(TAG_WM, "cancelDragAndDrop");
Vladislav Kaznacheev82063912015-11-20 14:20:13 -0800428 }
429
430 synchronized (mService.mWindowMap) {
431 long ident = Binder.clearCallingIdentity();
432 try {
433 if (mService.mDragState == null) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800434 Slog.w(TAG_WM, "cancelDragAndDrop() without prepareDrag()");
Vladislav Kaznacheev82063912015-11-20 14:20:13 -0800435 throw new IllegalStateException("cancelDragAndDrop() without prepareDrag()");
436 }
437
438 if (mService.mDragState.mToken != dragToken) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800439 Slog.w(TAG_WM,
Vladislav Kaznacheev82063912015-11-20 14:20:13 -0800440 "cancelDragAndDrop() does not match prepareDrag()");
441 throw new IllegalStateException(
442 "cancelDragAndDrop() does not match prepareDrag()");
443 }
444
445 mService.mDragState.mDragResult = false;
Vladislav Kaznacheevce2aef92015-11-20 18:49:59 -0800446 mService.mDragState.cancelDragLw();
Vladislav Kaznacheev82063912015-11-20 14:20:13 -0800447 } finally {
448 Binder.restoreCallingIdentity(ident);
449 }
450 }
451 }
452
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800453 public void dragRecipientEntered(IWindow window) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800454 if (DEBUG_DRAG) {
455 Slog.d(TAG_WM, "Drag into new candidate view @ " + window.asBinder());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800456 }
457 }
458
459 public void dragRecipientExited(IWindow window) {
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800460 if (DEBUG_DRAG) {
461 Slog.d(TAG_WM, "Drag from old candidate view @ " + window.asBinder());
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800462 }
463 }
464
465 public void setWallpaperPosition(IBinder window, float x, float y, float xStep, float yStep) {
466 synchronized(mService.mWindowMap) {
467 long ident = Binder.clearCallingIdentity();
468 try {
Wale Ogunwale0303c572016-10-20 10:16:29 -0700469 mService.mRoot.mWallpaperController.setWindowWallpaperPosition(
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800470 mService.windowForClientLocked(this, window, true),
471 x, y, xStep, yStep);
472 } finally {
473 Binder.restoreCallingIdentity(ident);
474 }
475 }
476 }
477
478 public void wallpaperOffsetsComplete(IBinder window) {
Wale Ogunwalee8069dc2015-08-18 09:52:01 -0700479 synchronized (mService.mWindowMap) {
Wale Ogunwale0303c572016-10-20 10:16:29 -0700480 mService.mRoot.mWallpaperController.wallpaperOffsetsComplete(window);
Wale Ogunwalee8069dc2015-08-18 09:52:01 -0700481 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800482 }
483
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700484 public void setWallpaperDisplayOffset(IBinder window, int x, int y) {
485 synchronized(mService.mWindowMap) {
486 long ident = Binder.clearCallingIdentity();
487 try {
Wale Ogunwale0303c572016-10-20 10:16:29 -0700488 mService.mRoot.mWallpaperController.setWindowWallpaperDisplayOffset(
Dianne Hackborn067e5f62014-09-07 23:14:30 -0700489 mService.windowForClientLocked(this, window, true), x, y);
490 } finally {
491 Binder.restoreCallingIdentity(ident);
492 }
493 }
494 }
495
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800496 public Bundle sendWallpaperCommand(IBinder window, String action, int x, int y,
497 int z, Bundle extras, boolean sync) {
498 synchronized(mService.mWindowMap) {
499 long ident = Binder.clearCallingIdentity();
500 try {
Wale Ogunwale0303c572016-10-20 10:16:29 -0700501 return mService.mRoot.mWallpaperController.sendWindowWallpaperCommand(
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800502 mService.windowForClientLocked(this, window, true),
503 action, x, y, z, extras, sync);
504 } finally {
505 Binder.restoreCallingIdentity(ident);
506 }
507 }
508 }
509
510 public void wallpaperCommandComplete(IBinder window, Bundle result) {
Wale Ogunwalee8069dc2015-08-18 09:52:01 -0700511 synchronized (mService.mWindowMap) {
Wale Ogunwale0303c572016-10-20 10:16:29 -0700512 mService.mRoot.mWallpaperController.wallpaperCommandComplete(window);
Wale Ogunwalee8069dc2015-08-18 09:52:01 -0700513 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800514 }
515
Svetoslavf7174e82014-06-12 11:29:35 -0700516 public void onRectangleOnScreenRequested(IBinder token, Rect rectangle) {
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -0700517 synchronized(mService.mWindowMap) {
518 final long identity = Binder.clearCallingIdentity();
519 try {
Svetoslavf7174e82014-06-12 11:29:35 -0700520 mService.onRectangleOnScreenRequested(token, rectangle);
Svetoslav Ganov1cf70bb2012-08-06 10:53:34 -0700521 } finally {
522 Binder.restoreCallingIdentity(identity);
523 }
524 }
525 }
526
Dianne Hackborne3f23a32013-03-01 13:25:35 -0800527 public IWindowId getWindowId(IBinder window) {
528 return mService.getWindowId(window);
529 }
530
Jeff Brownc2932a12014-11-20 18:04:05 -0800531 @Override
532 public void pokeDrawLock(IBinder window) {
533 final long identity = Binder.clearCallingIdentity();
534 try {
535 mService.pokeDrawLock(this, window);
536 } finally {
537 Binder.restoreCallingIdentity(identity);
538 }
539 }
540
Vladislav Kaznacheev989b58a2016-02-10 12:19:33 -0800541 @Override
542 public void updatePointerIcon(IWindow window) {
543 final long identity = Binder.clearCallingIdentity();
544 try {
545 mService.updatePointerIcon(window);
546 } finally {
547 Binder.restoreCallingIdentity(identity);
548 }
549 }
550
Wale Ogunwale387e4c62017-02-13 09:50:02 -0800551 void windowAddedLocked(String packageName) {
552 mPackageName = packageName;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800553 if (mSurfaceSession == null) {
554 if (WindowManagerService.localLOGV) Slog.v(
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800555 TAG_WM, "First window added to " + this + ", creating SurfaceSession");
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800556 mSurfaceSession = new SurfaceSession();
Filip Gruszczynski0bd180d2015-12-07 15:43:52 -0800557 if (SHOW_TRANSACTIONS) Slog.i(
558 TAG_WM, " NEW SURFACE SESSION " + mSurfaceSession);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800559 mService.mSessions.add(this);
Dianne Hackborneb94fa72014-06-03 17:48:12 -0700560 if (mLastReportedAnimatorScale != mService.getCurrentAnimatorScale()) {
561 mService.dispatchNewAnimatorScaleLocked(this);
562 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800563 }
564 mNumWindow++;
565 }
566
Wale Ogunwale943002b2017-02-15 19:34:01 -0800567 void windowRemovedLocked() {
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800568 mNumWindow--;
Wale Ogunwale943002b2017-02-15 19:34:01 -0800569 killSessionLocked();
570 }
571
572
573 void onWindowSurfaceVisibilityChanged(WindowSurfaceController surfaceController,
574 boolean visible, int type) {
575
576 if (!isSystemAlertWindowType(type)) {
577 return;
578 }
579
580 boolean changed;
581
582 if (!mCanAddInternalSystemWindow) {
583 // We want to track non-system signature apps adding alert windows so we can post an
584 // on-going notification for the user to control their visibility.
585 if (visible) {
586 changed = mAlertWindowSurfaces.add(surfaceController);
587 } else {
588 changed = mAlertWindowSurfaces.remove(surfaceController);
589 }
590
591 if (changed) {
Wale Ogunwale387e4c62017-02-13 09:50:02 -0800592 if (mAlertWindowSurfaces.isEmpty()) {
593 cancelAlertWindowNotification();
594 } else if (mAlertWindowNotification == null){
Wale Ogunwaled76881e2017-03-10 13:17:56 -0800595 mAlertWindowNotification = new AlertWindowNotification(mService, mPackageName);
Wale Ogunwalea10fc7e2017-04-06 07:09:51 -0700596 if (mShowingAlertWindowNotificationAllowed) {
597 mAlertWindowNotification.post();
598 }
Wale Ogunwale387e4c62017-02-13 09:50:02 -0800599 }
Wale Ogunwaled993a572017-02-05 13:52:09 -0800600 }
601 }
Wale Ogunwale943002b2017-02-15 19:34:01 -0800602
603 if (type != TYPE_APPLICATION_OVERLAY) {
604 return;
605 }
606
607 if (visible) {
608 changed = mAppOverlaySurfaces.add(surfaceController);
609 } else {
610 changed = mAppOverlaySurfaces.remove(surfaceController);
611 }
612
613 if (changed) {
614 // Notify activity manager of changes to app overlay windows so it can adjust the
615 // importance score for the process.
616 setHasOverlayUi(!mAppOverlaySurfaces.isEmpty());
617 }
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800618 }
619
Wale Ogunwalea10fc7e2017-04-06 07:09:51 -0700620 void setShowingAlertWindowNotificationAllowed(boolean allowed) {
621 mShowingAlertWindowNotificationAllowed = allowed;
622 if (mAlertWindowNotification != null) {
623 if (allowed) {
624 mAlertWindowNotification.post();
625 } else {
626 mAlertWindowNotification.cancel();
627 }
628 }
629 }
630
Wale Ogunwaled993a572017-02-05 13:52:09 -0800631 private void killSessionLocked() {
632 if (mNumWindow > 0 || !mClientDead) {
633 return;
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800634 }
Wale Ogunwaled993a572017-02-05 13:52:09 -0800635
636 mService.mSessions.remove(this);
637 if (mSurfaceSession == null) {
638 return;
639 }
640
641 if (WindowManagerService.localLOGV) Slog.v(TAG_WM, "Last window removed from " + this
642 + ", destroying " + mSurfaceSession);
643 if (SHOW_TRANSACTIONS) Slog.i(TAG_WM, " KILL SURFACE SESSION " + mSurfaceSession);
644 try {
645 mSurfaceSession.kill();
646 } catch (Exception e) {
647 Slog.w(TAG_WM, "Exception thrown when killing surface session " + mSurfaceSession
648 + " in session " + this + ": " + e.toString());
649 }
650 mSurfaceSession = null;
Wale Ogunwale387e4c62017-02-13 09:50:02 -0800651 mAlertWindowSurfaces.clear();
652 mAppOverlaySurfaces.clear();
Wale Ogunwaled993a572017-02-05 13:52:09 -0800653 setHasOverlayUi(false);
Wale Ogunwale387e4c62017-02-13 09:50:02 -0800654 cancelAlertWindowNotification();
Wale Ogunwaled993a572017-02-05 13:52:09 -0800655 }
656
657 private void setHasOverlayUi(boolean hasOverlayUi) {
658 mService.mH.obtainMessage(H.SET_HAS_OVERLAY_UI, mPid, hasOverlayUi ? 1 : 0).sendToTarget();
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800659 }
660
Wale Ogunwale387e4c62017-02-13 09:50:02 -0800661 private void cancelAlertWindowNotification() {
662 if (mAlertWindowNotification == null) {
663 return;
664 }
665 mAlertWindowNotification.cancel();
666 mAlertWindowNotification = null;
667 }
668
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800669 void dump(PrintWriter pw, String prefix) {
670 pw.print(prefix); pw.print("mNumWindow="); pw.print(mNumWindow);
Wale Ogunwale5aa86832017-02-28 10:40:27 -0800671 pw.print(" mCanAddInternalSystemWindow="); pw.print(mCanAddInternalSystemWindow);
Wale Ogunwale943002b2017-02-15 19:34:01 -0800672 pw.print(" mAppOverlaySurfaces="); pw.print(mAppOverlaySurfaces);
673 pw.print(" mAlertWindowSurfaces="); pw.print(mAlertWindowSurfaces);
Dianne Hackborn6e1eb762011-02-17 16:07:28 -0800674 pw.print(" mClientDead="); pw.print(mClientDead);
675 pw.print(" mSurfaceSession="); pw.println(mSurfaceSession);
676 }
677
678 @Override
679 public String toString() {
680 return mStringName;
681 }
Filip Gruszczynski2217f612015-05-26 11:32:08 -0700682}