blob: 44c9f0f7544bfa371903b3cf301cab93f35ae52e [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 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;
18
19import static android.os.LocalPowerManager.CHEEK_EVENT;
20import static android.os.LocalPowerManager.OTHER_EVENT;
21import static android.os.LocalPowerManager.TOUCH_EVENT;
Joe Onoratoe68ffcb2009-03-24 19:11:13 -070022import static android.os.LocalPowerManager.LONG_TOUCH_EVENT;
23import static android.os.LocalPowerManager.TOUCH_UP_EVENT;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024import static android.view.WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW;
25import static android.view.WindowManager.LayoutParams.FIRST_SUB_WINDOW;
26import static android.view.WindowManager.LayoutParams.FLAG_BLUR_BEHIND;
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -070027import static android.view.WindowManager.LayoutParams.FLAG_COMPATIBLE_WINDOW;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028import static android.view.WindowManager.LayoutParams.FLAG_DIM_BEHIND;
29import static android.view.WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON;
Mitsuru Oshimad2967e22009-07-20 14:01:43 -070030import static android.view.WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031import static android.view.WindowManager.LayoutParams.FLAG_SYSTEM_ERROR;
32import static android.view.WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE;
33import static android.view.WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -070034import static android.view.WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035import static android.view.WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
36import static android.view.WindowManager.LayoutParams.LAST_SUB_WINDOW;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037import static android.view.WindowManager.LayoutParams.MEMORY_TYPE_PUSH_BUFFERS;
38import static android.view.WindowManager.LayoutParams.TYPE_APPLICATION_STARTING;
39import static android.view.WindowManager.LayoutParams.TYPE_BASE_APPLICATION;
40import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD;
41import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -070042import static android.view.WindowManager.LayoutParams.TYPE_WALLPAPER;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043
44import com.android.internal.app.IBatteryStats;
45import com.android.internal.policy.PolicyManager;
46import com.android.internal.view.IInputContext;
47import com.android.internal.view.IInputMethodClient;
48import com.android.internal.view.IInputMethodManager;
49import com.android.server.KeyInputQueue.QueuedEvent;
50import com.android.server.am.BatteryStatsService;
51
52import android.Manifest;
53import android.app.ActivityManagerNative;
54import android.app.IActivityManager;
55import android.content.Context;
56import android.content.pm.ActivityInfo;
57import android.content.pm.PackageManager;
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -070058import android.content.res.CompatibilityInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059import android.content.res.Configuration;
60import android.graphics.Matrix;
61import android.graphics.PixelFormat;
62import android.graphics.Rect;
63import android.graphics.Region;
64import android.os.BatteryStats;
65import android.os.Binder;
Dianne Hackborn75804932009-10-20 20:15:20 -070066import android.os.Bundle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080067import android.os.Debug;
68import android.os.Handler;
69import android.os.IBinder;
Michael Chan53071d62009-05-13 17:29:48 -070070import android.os.LatencyTimer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071import android.os.LocalPowerManager;
72import android.os.Looper;
73import android.os.Message;
74import android.os.Parcel;
75import android.os.ParcelFileDescriptor;
76import android.os.Power;
77import android.os.PowerManager;
78import android.os.Process;
79import android.os.RemoteException;
80import android.os.ServiceManager;
81import android.os.SystemClock;
82import android.os.SystemProperties;
83import android.os.TokenWatcher;
84import android.provider.Settings;
Dianne Hackborn723738c2009-06-25 19:48:04 -070085import android.util.DisplayMetrics;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086import android.util.EventLog;
87import android.util.Log;
88import android.util.SparseIntArray;
89import android.view.Display;
90import android.view.Gravity;
91import android.view.IApplicationToken;
92import android.view.IOnKeyguardExitResult;
93import android.view.IRotationWatcher;
94import android.view.IWindow;
95import android.view.IWindowManager;
96import android.view.IWindowSession;
97import android.view.KeyEvent;
98import android.view.MotionEvent;
99import android.view.RawInputEvent;
100import android.view.Surface;
101import android.view.SurfaceSession;
102import android.view.View;
Dianne Hackborn83fe3f52009-09-12 23:38:30 -0700103import android.view.ViewConfiguration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800104import android.view.ViewTreeObserver;
105import android.view.WindowManager;
106import android.view.WindowManagerImpl;
107import android.view.WindowManagerPolicy;
108import android.view.WindowManager.LayoutParams;
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -0700109import android.view.animation.AccelerateInterpolator;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110import android.view.animation.Animation;
111import android.view.animation.AnimationUtils;
112import android.view.animation.Transformation;
113
114import java.io.BufferedWriter;
115import java.io.File;
116import java.io.FileDescriptor;
117import java.io.IOException;
118import java.io.OutputStream;
119import java.io.OutputStreamWriter;
120import java.io.PrintWriter;
121import java.io.StringWriter;
122import java.net.Socket;
123import java.util.ArrayList;
124import java.util.HashMap;
125import java.util.HashSet;
126import java.util.Iterator;
127import java.util.List;
128
129/** {@hide} */
Dianne Hackbornddca3ee2009-07-23 19:01:31 -0700130public class WindowManagerService extends IWindowManager.Stub
131 implements Watchdog.Monitor, KeyInputQueue.HapticFeedbackCallback {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800132 static final String TAG = "WindowManager";
133 static final boolean DEBUG = false;
134 static final boolean DEBUG_FOCUS = false;
135 static final boolean DEBUG_ANIM = false;
136 static final boolean DEBUG_LAYERS = false;
137 static final boolean DEBUG_INPUT = false;
138 static final boolean DEBUG_INPUT_METHOD = false;
139 static final boolean DEBUG_VISIBILITY = false;
Dianne Hackbornbdd52b22009-09-02 21:46:19 -0700140 static final boolean DEBUG_WINDOW_MOVEMENT = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800141 static final boolean DEBUG_ORIENTATION = false;
142 static final boolean DEBUG_APP_TRANSITIONS = false;
143 static final boolean DEBUG_STARTING_WINDOW = false;
144 static final boolean DEBUG_REORDER = false;
Dianne Hackborn7341d7a2009-08-14 11:37:52 -0700145 static final boolean DEBUG_WALLPAPER = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800146 static final boolean SHOW_TRANSACTIONS = false;
Dianne Hackborn9bfb7072009-09-22 11:37:40 -0700147 static final boolean HIDE_STACK_CRAWLS = true;
Michael Chan53071d62009-05-13 17:29:48 -0700148 static final boolean MEASURE_LATENCY = false;
149 static private LatencyTimer lt;
150
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800151 static final boolean PROFILE_ORIENTATION = false;
152 static final boolean BLUR = true;
Dave Bortcfe65242009-04-09 14:51:04 -0700153 static final boolean localLOGV = DEBUG;
Romain Guy06882f82009-06-10 13:36:04 -0700154
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800155 static final int LOG_WM_NO_SURFACE_MEMORY = 31000;
Romain Guy06882f82009-06-10 13:36:04 -0700156
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800157 /** How long to wait for subsequent key repeats, in milliseconds */
158 static final int KEY_REPEAT_DELAY = 50;
159
160 /** How much to multiply the policy's type layer, to reserve room
161 * for multiple windows of the same type and Z-ordering adjustment
162 * with TYPE_LAYER_OFFSET. */
163 static final int TYPE_LAYER_MULTIPLIER = 10000;
Romain Guy06882f82009-06-10 13:36:04 -0700164
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800165 /** Offset from TYPE_LAYER_MULTIPLIER for moving a group of windows above
166 * or below others in the same layer. */
167 static final int TYPE_LAYER_OFFSET = 1000;
Romain Guy06882f82009-06-10 13:36:04 -0700168
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800169 /** How much to increment the layer for each window, to reserve room
170 * for effect surfaces between them.
171 */
172 static final int WINDOW_LAYER_MULTIPLIER = 5;
Romain Guy06882f82009-06-10 13:36:04 -0700173
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800174 /** The maximum length we will accept for a loaded animation duration:
175 * this is 10 seconds.
176 */
177 static final int MAX_ANIMATION_DURATION = 10*1000;
178
179 /** Amount of time (in milliseconds) to animate the dim surface from one
180 * value to another, when no window animation is driving it.
181 */
182 static final int DEFAULT_DIM_DURATION = 200;
183
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -0700184 /** Amount of time (in milliseconds) to animate the fade-in-out transition for
185 * compatible windows.
186 */
187 static final int DEFAULT_FADE_IN_OUT_DURATION = 400;
188
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800189 /** Adjustment to time to perform a dim, to make it more dramatic.
190 */
191 static final int DIM_DURATION_MULTIPLIER = 6;
Romain Guy06882f82009-06-10 13:36:04 -0700192
Dianne Hackborncfaef692009-06-15 14:24:44 -0700193 static final int INJECT_FAILED = 0;
194 static final int INJECT_SUCCEEDED = 1;
195 static final int INJECT_NO_PERMISSION = -1;
196
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800197 static final int UPDATE_FOCUS_NORMAL = 0;
198 static final int UPDATE_FOCUS_WILL_ASSIGN_LAYERS = 1;
199 static final int UPDATE_FOCUS_PLACING_SURFACES = 2;
200 static final int UPDATE_FOCUS_WILL_PLACE_SURFACES = 3;
Romain Guy06882f82009-06-10 13:36:04 -0700201
Michael Chane96440f2009-05-06 10:27:36 -0700202 /** The minimum time between dispatching touch events. */
203 int mMinWaitTimeBetweenTouchEvents = 1000 / 35;
204
205 // Last touch event time
206 long mLastTouchEventTime = 0;
Romain Guy06882f82009-06-10 13:36:04 -0700207
Michael Chane96440f2009-05-06 10:27:36 -0700208 // Last touch event type
209 int mLastTouchEventType = OTHER_EVENT;
Romain Guy06882f82009-06-10 13:36:04 -0700210
Michael Chane96440f2009-05-06 10:27:36 -0700211 // Time to wait before calling useractivity again. This saves CPU usage
212 // when we get a flood of touch events.
213 static final int MIN_TIME_BETWEEN_USERACTIVITIES = 1000;
214
215 // Last time we call user activity
216 long mLastUserActivityCallTime = 0;
217
Romain Guy06882f82009-06-10 13:36:04 -0700218 // Last time we updated battery stats
Michael Chane96440f2009-05-06 10:27:36 -0700219 long mLastBatteryStatsCallTime = 0;
Romain Guy06882f82009-06-10 13:36:04 -0700220
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800221 private static final String SYSTEM_SECURE = "ro.secure";
Romain Guy06882f82009-06-10 13:36:04 -0700222 private static final String SYSTEM_DEBUGGABLE = "ro.debuggable";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800223
224 /**
225 * Condition waited on by {@link #reenableKeyguard} to know the call to
226 * the window policy has finished.
Mike Lockwood983ee092009-11-22 01:42:24 -0500227 * This is set to true only if mKeyguardTokenWatcher.acquired() has
228 * actually disabled the keyguard.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800229 */
Mike Lockwood983ee092009-11-22 01:42:24 -0500230 private boolean mKeyguardDisabled = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800231
Mike Lockwood983ee092009-11-22 01:42:24 -0500232 final TokenWatcher mKeyguardTokenWatcher = new TokenWatcher(
233 new Handler(), "WindowManagerService.mKeyguardTokenWatcher") {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800234 public void acquired() {
235 mPolicy.enableKeyguard(false);
Mike Lockwood983ee092009-11-22 01:42:24 -0500236 mKeyguardDisabled = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800237 }
238 public void released() {
Dianne Hackborna33e3f72009-09-29 17:28:24 -0700239 mPolicy.enableKeyguard(true);
Mike Lockwood983ee092009-11-22 01:42:24 -0500240 synchronized (mKeyguardTokenWatcher) {
241 mKeyguardDisabled = false;
242 mKeyguardTokenWatcher.notifyAll();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800243 }
244 }
245 };
246
247 final Context mContext;
248
249 final boolean mHaveInputMethods;
Romain Guy06882f82009-06-10 13:36:04 -0700250
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800251 final boolean mLimitedAlphaCompositing;
Romain Guy06882f82009-06-10 13:36:04 -0700252
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800253 final WindowManagerPolicy mPolicy = PolicyManager.makeNewWindowManager();
254
255 final IActivityManager mActivityManager;
Romain Guy06882f82009-06-10 13:36:04 -0700256
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800257 final IBatteryStats mBatteryStats;
Romain Guy06882f82009-06-10 13:36:04 -0700258
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800259 /**
260 * All currently active sessions with clients.
261 */
262 final HashSet<Session> mSessions = new HashSet<Session>();
Romain Guy06882f82009-06-10 13:36:04 -0700263
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800264 /**
265 * Mapping from an IWindow IBinder to the server's Window object.
266 * This is also used as the lock for all of our state.
267 */
268 final HashMap<IBinder, WindowState> mWindowMap = new HashMap<IBinder, WindowState>();
269
270 /**
271 * Mapping from a token IBinder to a WindowToken object.
272 */
273 final HashMap<IBinder, WindowToken> mTokenMap =
274 new HashMap<IBinder, WindowToken>();
275
276 /**
277 * The same tokens as mTokenMap, stored in a list for efficient iteration
278 * over them.
279 */
280 final ArrayList<WindowToken> mTokenList = new ArrayList<WindowToken>();
Romain Guy06882f82009-06-10 13:36:04 -0700281
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800282 /**
283 * Window tokens that are in the process of exiting, but still
284 * on screen for animations.
285 */
286 final ArrayList<WindowToken> mExitingTokens = new ArrayList<WindowToken>();
287
288 /**
289 * Z-ordered (bottom-most first) list of all application tokens, for
290 * controlling the ordering of windows in different applications. This
291 * contains WindowToken objects.
292 */
293 final ArrayList<AppWindowToken> mAppTokens = new ArrayList<AppWindowToken>();
294
295 /**
296 * Application tokens that are in the process of exiting, but still
297 * on screen for animations.
298 */
299 final ArrayList<AppWindowToken> mExitingAppTokens = new ArrayList<AppWindowToken>();
300
301 /**
302 * List of window tokens that have finished starting their application,
303 * and now need to have the policy remove their windows.
304 */
305 final ArrayList<AppWindowToken> mFinishedStarting = new ArrayList<AppWindowToken>();
306
307 /**
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700308 * This was the app token that was used to retrieve the last enter
309 * animation. It will be used for the next exit animation.
310 */
311 AppWindowToken mLastEnterAnimToken;
312
313 /**
314 * These were the layout params used to retrieve the last enter animation.
315 * They will be used for the next exit animation.
316 */
317 LayoutParams mLastEnterAnimParams;
318
319 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800320 * Z-ordered (bottom-most first) list of all Window objects.
321 */
322 final ArrayList mWindows = new ArrayList();
323
324 /**
325 * Windows that are being resized. Used so we can tell the client about
326 * the resize after closing the transaction in which we resized the
327 * underlying surface.
328 */
329 final ArrayList<WindowState> mResizingWindows = new ArrayList<WindowState>();
330
331 /**
332 * Windows whose animations have ended and now must be removed.
333 */
334 final ArrayList<WindowState> mPendingRemove = new ArrayList<WindowState>();
335
336 /**
337 * Windows whose surface should be destroyed.
338 */
339 final ArrayList<WindowState> mDestroySurface = new ArrayList<WindowState>();
340
341 /**
342 * Windows that have lost input focus and are waiting for the new
343 * focus window to be displayed before they are told about this.
344 */
345 ArrayList<WindowState> mLosingFocus = new ArrayList<WindowState>();
346
347 /**
348 * This is set when we have run out of memory, and will either be an empty
349 * list or contain windows that need to be force removed.
350 */
351 ArrayList<WindowState> mForceRemoves;
Romain Guy06882f82009-06-10 13:36:04 -0700352
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800353 IInputMethodManager mInputMethodManager;
Romain Guy06882f82009-06-10 13:36:04 -0700354
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800355 SurfaceSession mFxSession;
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -0700356 private DimAnimator mDimAnimator = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800357 Surface mBlurSurface;
358 boolean mBlurShown;
Romain Guy06882f82009-06-10 13:36:04 -0700359
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800360 int mTransactionSequence = 0;
Romain Guy06882f82009-06-10 13:36:04 -0700361
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800362 final float[] mTmpFloats = new float[9];
363
364 boolean mSafeMode;
365 boolean mDisplayEnabled = false;
366 boolean mSystemBooted = false;
367 int mRotation = 0;
368 int mRequestedRotation = 0;
369 int mForcedAppOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
Dianne Hackborn321ae682009-03-27 16:16:03 -0700370 int mLastRotationFlags;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800371 ArrayList<IRotationWatcher> mRotationWatchers
372 = new ArrayList<IRotationWatcher>();
Romain Guy06882f82009-06-10 13:36:04 -0700373
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800374 boolean mLayoutNeeded = true;
375 boolean mAnimationPending = false;
376 boolean mDisplayFrozen = false;
377 boolean mWindowsFreezingScreen = false;
378 long mFreezeGcPending = 0;
379 int mAppsFreezingScreen = 0;
380
381 // This is held as long as we have the screen frozen, to give us time to
382 // perform a rotation animation when turning off shows the lock screen which
383 // changes the orientation.
384 PowerManager.WakeLock mScreenFrozenLock;
Romain Guy06882f82009-06-10 13:36:04 -0700385
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800386 // State management of app transitions. When we are preparing for a
387 // transition, mNextAppTransition will be the kind of transition to
388 // perform or TRANSIT_NONE if we are not waiting. If we are waiting,
389 // mOpeningApps and mClosingApps are the lists of tokens that will be
390 // made visible or hidden at the next transition.
Dianne Hackbornbfe319e2009-09-21 00:34:05 -0700391 int mNextAppTransition = WindowManagerPolicy.TRANSIT_UNSET;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700392 String mNextAppTransitionPackage;
393 int mNextAppTransitionEnter;
394 int mNextAppTransitionExit;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800395 boolean mAppTransitionReady = false;
Dianne Hackborna8f60182009-09-01 19:01:50 -0700396 boolean mAppTransitionRunning = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800397 boolean mAppTransitionTimeout = false;
398 boolean mStartingIconInTransition = false;
399 boolean mSkipAppTransitionAnimation = false;
400 final ArrayList<AppWindowToken> mOpeningApps = new ArrayList<AppWindowToken>();
401 final ArrayList<AppWindowToken> mClosingApps = new ArrayList<AppWindowToken>();
Dianne Hackborna8f60182009-09-01 19:01:50 -0700402 final ArrayList<AppWindowToken> mToTopApps = new ArrayList<AppWindowToken>();
403 final ArrayList<AppWindowToken> mToBottomApps = new ArrayList<AppWindowToken>();
Romain Guy06882f82009-06-10 13:36:04 -0700404
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800405 //flag to detect fat touch events
406 boolean mFatTouch = false;
407 Display mDisplay;
Romain Guy06882f82009-06-10 13:36:04 -0700408
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800409 H mH = new H();
410
411 WindowState mCurrentFocus = null;
412 WindowState mLastFocus = null;
Romain Guy06882f82009-06-10 13:36:04 -0700413
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800414 // This just indicates the window the input method is on top of, not
415 // necessarily the window its input is going to.
416 WindowState mInputMethodTarget = null;
417 WindowState mUpcomingInputMethodTarget = null;
418 boolean mInputMethodTargetWaitingAnim;
419 int mInputMethodAnimLayerAdjustment;
Romain Guy06882f82009-06-10 13:36:04 -0700420
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800421 WindowState mInputMethodWindow = null;
422 final ArrayList<WindowState> mInputMethodDialogs = new ArrayList<WindowState>();
423
Dianne Hackborn4c62fc02009-08-08 20:40:27 -0700424 final ArrayList<WindowToken> mWallpaperTokens = new ArrayList<WindowToken>();
425
Dianne Hackborn759a39e2009-08-09 17:20:27 -0700426 // If non-null, this is the currently visible window that is associated
427 // with the wallpaper.
428 WindowState mWallpaperTarget = null;
Dianne Hackborn3be63c02009-08-20 19:31:38 -0700429 // If non-null, we are in the middle of animating from one wallpaper target
430 // to another, and this is the lower one in Z-order.
431 WindowState mLowerWallpaperTarget = null;
432 // If non-null, we are in the middle of animating from one wallpaper target
433 // to another, and this is the higher one in Z-order.
434 WindowState mUpperWallpaperTarget = null;
Dianne Hackborn759a39e2009-08-09 17:20:27 -0700435 int mWallpaperAnimLayerAdjustment;
Dianne Hackborn73e92b42009-10-15 14:29:19 -0700436 float mLastWallpaperX = -1;
437 float mLastWallpaperY = -1;
Marco Nelissenbf6956b2009-11-09 15:21:13 -0800438 float mLastWallpaperXStep = -1;
439 float mLastWallpaperYStep = -1;
Dianne Hackborn6adba242009-11-10 11:10:09 -0800440 boolean mSendingPointersToWallpaper = false;
Dianne Hackborn19382ac2009-09-11 21:13:37 -0700441 // This is set when we are waiting for a wallpaper to tell us it is done
442 // changing its scroll position.
443 WindowState mWaitingOnWallpaper;
444 // The last time we had a timeout when waiting for a wallpaper.
445 long mLastWallpaperTimeoutTime;
446 // We give a wallpaper up to 150ms to finish scrolling.
447 static final long WALLPAPER_TIMEOUT = 150;
448 // Time we wait after a timeout before trying to wait again.
449 static final long WALLPAPER_TIMEOUT_RECOVERY = 10000;
Dianne Hackborn759a39e2009-08-09 17:20:27 -0700450
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800451 AppWindowToken mFocusedApp = null;
452
453 PowerManagerService mPowerManager;
Romain Guy06882f82009-06-10 13:36:04 -0700454
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800455 float mWindowAnimationScale = 1.0f;
456 float mTransitionAnimationScale = 1.0f;
Romain Guy06882f82009-06-10 13:36:04 -0700457
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800458 final KeyWaiter mKeyWaiter = new KeyWaiter();
459 final KeyQ mQueue;
460 final InputDispatcherThread mInputThread;
461
462 // Who is holding the screen on.
463 Session mHoldingScreenOn;
Romain Guy06882f82009-06-10 13:36:04 -0700464
Dianne Hackborn93e462b2009-09-15 22:50:40 -0700465 boolean mTurnOnScreen;
466
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800467 /**
468 * Whether the UI is currently running in touch mode (not showing
469 * navigational focus because the user is directly pressing the screen).
470 */
471 boolean mInTouchMode = false;
472
473 private ViewServer mViewServer;
474
475 final Rect mTempRect = new Rect();
Romain Guy06882f82009-06-10 13:36:04 -0700476
Dianne Hackbornc485a602009-03-24 22:39:49 -0700477 final Configuration mTempConfiguration = new Configuration();
Dianne Hackbornc4db95c2009-07-21 17:46:02 -0700478 int mScreenLayout = Configuration.SCREENLAYOUT_SIZE_UNDEFINED;
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -0700479
480 // The frame use to limit the size of the app running in compatibility mode.
481 Rect mCompatibleScreenFrame = new Rect();
482 // The surface used to fill the outer rim of the app running in compatibility mode.
483 Surface mBackgroundFillerSurface = null;
484 boolean mBackgroundFillerShown = false;
485
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800486 public static WindowManagerService main(Context context,
487 PowerManagerService pm, boolean haveInputMethods) {
488 WMThread thr = new WMThread(context, pm, haveInputMethods);
489 thr.start();
Romain Guy06882f82009-06-10 13:36:04 -0700490
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800491 synchronized (thr) {
492 while (thr.mService == null) {
493 try {
494 thr.wait();
495 } catch (InterruptedException e) {
496 }
497 }
498 }
Romain Guy06882f82009-06-10 13:36:04 -0700499
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800500 return thr.mService;
501 }
Romain Guy06882f82009-06-10 13:36:04 -0700502
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800503 static class WMThread extends Thread {
504 WindowManagerService mService;
Romain Guy06882f82009-06-10 13:36:04 -0700505
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800506 private final Context mContext;
507 private final PowerManagerService mPM;
508 private final boolean mHaveInputMethods;
Romain Guy06882f82009-06-10 13:36:04 -0700509
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800510 public WMThread(Context context, PowerManagerService pm,
511 boolean haveInputMethods) {
512 super("WindowManager");
513 mContext = context;
514 mPM = pm;
515 mHaveInputMethods = haveInputMethods;
516 }
Romain Guy06882f82009-06-10 13:36:04 -0700517
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800518 public void run() {
519 Looper.prepare();
520 WindowManagerService s = new WindowManagerService(mContext, mPM,
521 mHaveInputMethods);
522 android.os.Process.setThreadPriority(
523 android.os.Process.THREAD_PRIORITY_DISPLAY);
Romain Guy06882f82009-06-10 13:36:04 -0700524
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800525 synchronized (this) {
526 mService = s;
527 notifyAll();
528 }
Romain Guy06882f82009-06-10 13:36:04 -0700529
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800530 Looper.loop();
531 }
532 }
533
534 static class PolicyThread extends Thread {
535 private final WindowManagerPolicy mPolicy;
536 private final WindowManagerService mService;
537 private final Context mContext;
538 private final PowerManagerService mPM;
539 boolean mRunning = false;
Romain Guy06882f82009-06-10 13:36:04 -0700540
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800541 public PolicyThread(WindowManagerPolicy policy,
542 WindowManagerService service, Context context,
543 PowerManagerService pm) {
544 super("WindowManagerPolicy");
545 mPolicy = policy;
546 mService = service;
547 mContext = context;
548 mPM = pm;
549 }
Romain Guy06882f82009-06-10 13:36:04 -0700550
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800551 public void run() {
552 Looper.prepare();
553 //Looper.myLooper().setMessageLogging(new LogPrinter(
554 // Log.VERBOSE, "WindowManagerPolicy"));
555 android.os.Process.setThreadPriority(
556 android.os.Process.THREAD_PRIORITY_FOREGROUND);
557 mPolicy.init(mContext, mService, mPM);
Romain Guy06882f82009-06-10 13:36:04 -0700558
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800559 synchronized (this) {
560 mRunning = true;
561 notifyAll();
562 }
Romain Guy06882f82009-06-10 13:36:04 -0700563
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800564 Looper.loop();
565 }
566 }
567
568 private WindowManagerService(Context context, PowerManagerService pm,
569 boolean haveInputMethods) {
Michael Chan53071d62009-05-13 17:29:48 -0700570 if (MEASURE_LATENCY) {
571 lt = new LatencyTimer(100, 1000);
572 }
573
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800574 mContext = context;
575 mHaveInputMethods = haveInputMethods;
576 mLimitedAlphaCompositing = context.getResources().getBoolean(
577 com.android.internal.R.bool.config_sf_limitedAlpha);
Romain Guy06882f82009-06-10 13:36:04 -0700578
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800579 mPowerManager = pm;
580 mPowerManager.setPolicy(mPolicy);
581 PowerManager pmc = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
582 mScreenFrozenLock = pmc.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
583 "SCREEN_FROZEN");
584 mScreenFrozenLock.setReferenceCounted(false);
585
586 mActivityManager = ActivityManagerNative.getDefault();
587 mBatteryStats = BatteryStatsService.getService();
588
589 // Get persisted window scale setting
590 mWindowAnimationScale = Settings.System.getFloat(context.getContentResolver(),
591 Settings.System.WINDOW_ANIMATION_SCALE, mWindowAnimationScale);
592 mTransitionAnimationScale = Settings.System.getFloat(context.getContentResolver(),
593 Settings.System.TRANSITION_ANIMATION_SCALE, mTransitionAnimationScale);
Romain Guy06882f82009-06-10 13:36:04 -0700594
Michael Chan9f028e62009-08-04 17:37:46 -0700595 int max_events_per_sec = 35;
596 try {
597 max_events_per_sec = Integer.parseInt(SystemProperties
598 .get("windowsmgr.max_events_per_sec"));
599 if (max_events_per_sec < 1) {
600 max_events_per_sec = 35;
601 }
602 } catch (NumberFormatException e) {
603 }
604 mMinWaitTimeBetweenTouchEvents = 1000 / max_events_per_sec;
605
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800606 mQueue = new KeyQ();
607
608 mInputThread = new InputDispatcherThread();
Romain Guy06882f82009-06-10 13:36:04 -0700609
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800610 PolicyThread thr = new PolicyThread(mPolicy, this, context, pm);
611 thr.start();
Romain Guy06882f82009-06-10 13:36:04 -0700612
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800613 synchronized (thr) {
614 while (!thr.mRunning) {
615 try {
616 thr.wait();
617 } catch (InterruptedException e) {
618 }
619 }
620 }
Romain Guy06882f82009-06-10 13:36:04 -0700621
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800622 mInputThread.start();
Romain Guy06882f82009-06-10 13:36:04 -0700623
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800624 // Add ourself to the Watchdog monitors.
625 Watchdog.getInstance().addMonitor(this);
626 }
627
628 @Override
629 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
630 throws RemoteException {
631 try {
632 return super.onTransact(code, data, reply, flags);
633 } catch (RuntimeException e) {
634 // The window manager only throws security exceptions, so let's
635 // log all others.
636 if (!(e instanceof SecurityException)) {
637 Log.e(TAG, "Window Manager Crash", e);
638 }
639 throw e;
640 }
641 }
642
643 private void placeWindowAfter(Object pos, WindowState window) {
644 final int i = mWindows.indexOf(pos);
Dianne Hackborn9bfb7072009-09-22 11:37:40 -0700645 if (DEBUG_FOCUS || DEBUG_WINDOW_MOVEMENT) Log.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800646 TAG, "Adding window " + window + " at "
647 + (i+1) + " of " + mWindows.size() + " (after " + pos + ")");
648 mWindows.add(i+1, window);
649 }
650
651 private void placeWindowBefore(Object pos, WindowState window) {
652 final int i = mWindows.indexOf(pos);
Dianne Hackborn9bfb7072009-09-22 11:37:40 -0700653 if (DEBUG_FOCUS || DEBUG_WINDOW_MOVEMENT) Log.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800654 TAG, "Adding window " + window + " at "
655 + i + " of " + mWindows.size() + " (before " + pos + ")");
656 mWindows.add(i, window);
657 }
658
659 //This method finds out the index of a window that has the same app token as
660 //win. used for z ordering the windows in mWindows
661 private int findIdxBasedOnAppTokens(WindowState win) {
662 //use a local variable to cache mWindows
663 ArrayList localmWindows = mWindows;
664 int jmax = localmWindows.size();
665 if(jmax == 0) {
666 return -1;
667 }
668 for(int j = (jmax-1); j >= 0; j--) {
669 WindowState wentry = (WindowState)localmWindows.get(j);
670 if(wentry.mAppToken == win.mAppToken) {
671 return j;
672 }
673 }
674 return -1;
675 }
Romain Guy06882f82009-06-10 13:36:04 -0700676
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800677 private void addWindowToListInOrderLocked(WindowState win, boolean addToToken) {
678 final IWindow client = win.mClient;
679 final WindowToken token = win.mToken;
680 final ArrayList localmWindows = mWindows;
Romain Guy06882f82009-06-10 13:36:04 -0700681
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800682 final int N = localmWindows.size();
683 final WindowState attached = win.mAttachedWindow;
684 int i;
685 if (attached == null) {
686 int tokenWindowsPos = token.windows.size();
687 if (token.appWindowToken != null) {
688 int index = tokenWindowsPos-1;
689 if (index >= 0) {
690 // If this application has existing windows, we
691 // simply place the new window on top of them... but
692 // keep the starting window on top.
693 if (win.mAttrs.type == TYPE_BASE_APPLICATION) {
694 // Base windows go behind everything else.
695 placeWindowBefore(token.windows.get(0), win);
696 tokenWindowsPos = 0;
697 } else {
698 AppWindowToken atoken = win.mAppToken;
699 if (atoken != null &&
700 token.windows.get(index) == atoken.startingWindow) {
701 placeWindowBefore(token.windows.get(index), win);
702 tokenWindowsPos--;
703 } else {
704 int newIdx = findIdxBasedOnAppTokens(win);
705 if(newIdx != -1) {
Romain Guy06882f82009-06-10 13:36:04 -0700706 //there is a window above this one associated with the same
707 //apptoken note that the window could be a floating window
708 //that was created later or a window at the top of the list of
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800709 //windows associated with this token.
Dianne Hackborn9bfb7072009-09-22 11:37:40 -0700710 if (DEBUG_FOCUS || DEBUG_WINDOW_MOVEMENT) Log.v(
711 TAG, "Adding window " + win + " at "
712 + (newIdx+1) + " of " + N);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800713 localmWindows.add(newIdx+1, win);
Romain Guy06882f82009-06-10 13:36:04 -0700714 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800715 }
716 }
717 } else {
718 if (localLOGV) Log.v(
719 TAG, "Figuring out where to add app window "
720 + client.asBinder() + " (token=" + token + ")");
721 // Figure out where the window should go, based on the
722 // order of applications.
723 final int NA = mAppTokens.size();
724 Object pos = null;
725 for (i=NA-1; i>=0; i--) {
726 AppWindowToken t = mAppTokens.get(i);
727 if (t == token) {
728 i--;
729 break;
730 }
Dianne Hackborna8f60182009-09-01 19:01:50 -0700731
732 // We haven't reached the token yet; if this token
733 // is not going to the bottom and has windows, we can
734 // use it as an anchor for when we do reach the token.
735 if (!t.sendingToBottom && t.windows.size() > 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800736 pos = t.windows.get(0);
737 }
738 }
739 // We now know the index into the apps. If we found
740 // an app window above, that gives us the position; else
741 // we need to look some more.
742 if (pos != null) {
743 // Move behind any windows attached to this one.
Romain Guy06882f82009-06-10 13:36:04 -0700744 WindowToken atoken =
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800745 mTokenMap.get(((WindowState)pos).mClient.asBinder());
746 if (atoken != null) {
747 final int NC = atoken.windows.size();
748 if (NC > 0) {
749 WindowState bottom = atoken.windows.get(0);
750 if (bottom.mSubLayer < 0) {
751 pos = bottom;
752 }
753 }
754 }
755 placeWindowBefore(pos, win);
756 } else {
Dianne Hackborna8f60182009-09-01 19:01:50 -0700757 // Continue looking down until we find the first
758 // token that has windows.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800759 while (i >= 0) {
760 AppWindowToken t = mAppTokens.get(i);
761 final int NW = t.windows.size();
762 if (NW > 0) {
763 pos = t.windows.get(NW-1);
764 break;
765 }
766 i--;
767 }
768 if (pos != null) {
769 // Move in front of any windows attached to this
770 // one.
771 WindowToken atoken =
772 mTokenMap.get(((WindowState)pos).mClient.asBinder());
773 if (atoken != null) {
774 final int NC = atoken.windows.size();
775 if (NC > 0) {
776 WindowState top = atoken.windows.get(NC-1);
777 if (top.mSubLayer >= 0) {
778 pos = top;
779 }
780 }
781 }
782 placeWindowAfter(pos, win);
783 } else {
784 // Just search for the start of this layer.
785 final int myLayer = win.mBaseLayer;
786 for (i=0; i<N; i++) {
787 WindowState w = (WindowState)localmWindows.get(i);
788 if (w.mBaseLayer > myLayer) {
789 break;
790 }
791 }
Dianne Hackborn9bfb7072009-09-22 11:37:40 -0700792 if (DEBUG_FOCUS || DEBUG_WINDOW_MOVEMENT) Log.v(
793 TAG, "Adding window " + win + " at "
794 + i + " of " + N);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800795 localmWindows.add(i, win);
796 }
797 }
798 }
799 } else {
800 // Figure out where window should go, based on layer.
801 final int myLayer = win.mBaseLayer;
802 for (i=N-1; i>=0; i--) {
803 if (((WindowState)localmWindows.get(i)).mBaseLayer <= myLayer) {
804 i++;
805 break;
806 }
807 }
808 if (i < 0) i = 0;
Dianne Hackborn9bfb7072009-09-22 11:37:40 -0700809 if (DEBUG_FOCUS || DEBUG_WINDOW_MOVEMENT) Log.v(
810 TAG, "Adding window " + win + " at "
811 + i + " of " + N);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800812 localmWindows.add(i, win);
813 }
814 if (addToToken) {
815 token.windows.add(tokenWindowsPos, win);
816 }
817
818 } else {
819 // Figure out this window's ordering relative to the window
820 // it is attached to.
821 final int NA = token.windows.size();
822 final int sublayer = win.mSubLayer;
823 int largestSublayer = Integer.MIN_VALUE;
824 WindowState windowWithLargestSublayer = null;
825 for (i=0; i<NA; i++) {
826 WindowState w = token.windows.get(i);
827 final int wSublayer = w.mSubLayer;
828 if (wSublayer >= largestSublayer) {
829 largestSublayer = wSublayer;
830 windowWithLargestSublayer = w;
831 }
832 if (sublayer < 0) {
833 // For negative sublayers, we go below all windows
834 // in the same sublayer.
835 if (wSublayer >= sublayer) {
836 if (addToToken) {
837 token.windows.add(i, win);
838 }
839 placeWindowBefore(
840 wSublayer >= 0 ? attached : w, win);
841 break;
842 }
843 } else {
844 // For positive sublayers, we go above all windows
845 // in the same sublayer.
846 if (wSublayer > sublayer) {
847 if (addToToken) {
848 token.windows.add(i, win);
849 }
850 placeWindowBefore(w, win);
851 break;
852 }
853 }
854 }
855 if (i >= NA) {
856 if (addToToken) {
857 token.windows.add(win);
858 }
859 if (sublayer < 0) {
860 placeWindowBefore(attached, win);
861 } else {
862 placeWindowAfter(largestSublayer >= 0
863 ? windowWithLargestSublayer
864 : attached,
865 win);
866 }
867 }
868 }
Romain Guy06882f82009-06-10 13:36:04 -0700869
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800870 if (win.mAppToken != null && addToToken) {
871 win.mAppToken.allAppWindows.add(win);
872 }
873 }
Romain Guy06882f82009-06-10 13:36:04 -0700874
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800875 static boolean canBeImeTarget(WindowState w) {
876 final int fl = w.mAttrs.flags
877 & (FLAG_NOT_FOCUSABLE|FLAG_ALT_FOCUSABLE_IM);
878 if (fl == 0 || fl == (FLAG_NOT_FOCUSABLE|FLAG_ALT_FOCUSABLE_IM)) {
879 return w.isVisibleOrAdding();
880 }
881 return false;
882 }
Romain Guy06882f82009-06-10 13:36:04 -0700883
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800884 int findDesiredInputMethodWindowIndexLocked(boolean willMove) {
885 final ArrayList localmWindows = mWindows;
886 final int N = localmWindows.size();
887 WindowState w = null;
888 int i = N;
889 while (i > 0) {
890 i--;
891 w = (WindowState)localmWindows.get(i);
Romain Guy06882f82009-06-10 13:36:04 -0700892
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800893 //Log.i(TAG, "Checking window @" + i + " " + w + " fl=0x"
894 // + Integer.toHexString(w.mAttrs.flags));
895 if (canBeImeTarget(w)) {
896 //Log.i(TAG, "Putting input method here!");
Romain Guy06882f82009-06-10 13:36:04 -0700897
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800898 // Yet more tricksyness! If this window is a "starting"
899 // window, we do actually want to be on top of it, but
900 // it is not -really- where input will go. So if the caller
901 // is not actually looking to move the IME, look down below
902 // for a real window to target...
903 if (!willMove
904 && w.mAttrs.type == WindowManager.LayoutParams.TYPE_APPLICATION_STARTING
905 && i > 0) {
906 WindowState wb = (WindowState)localmWindows.get(i-1);
907 if (wb.mAppToken == w.mAppToken && canBeImeTarget(wb)) {
908 i--;
909 w = wb;
910 }
911 }
912 break;
913 }
914 }
Romain Guy06882f82009-06-10 13:36:04 -0700915
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800916 mUpcomingInputMethodTarget = w;
Romain Guy06882f82009-06-10 13:36:04 -0700917
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800918 if (DEBUG_INPUT_METHOD) Log.v(TAG, "Desired input method target="
919 + w + " willMove=" + willMove);
Romain Guy06882f82009-06-10 13:36:04 -0700920
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800921 if (willMove && w != null) {
922 final WindowState curTarget = mInputMethodTarget;
923 if (curTarget != null && curTarget.mAppToken != null) {
Romain Guy06882f82009-06-10 13:36:04 -0700924
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800925 // Now some fun for dealing with window animations that
926 // modify the Z order. We need to look at all windows below
927 // the current target that are in this app, finding the highest
928 // visible one in layering.
929 AppWindowToken token = curTarget.mAppToken;
930 WindowState highestTarget = null;
931 int highestPos = 0;
932 if (token.animating || token.animation != null) {
933 int pos = 0;
934 pos = localmWindows.indexOf(curTarget);
935 while (pos >= 0) {
936 WindowState win = (WindowState)localmWindows.get(pos);
937 if (win.mAppToken != token) {
938 break;
939 }
940 if (!win.mRemoved) {
941 if (highestTarget == null || win.mAnimLayer >
942 highestTarget.mAnimLayer) {
943 highestTarget = win;
944 highestPos = pos;
945 }
946 }
947 pos--;
948 }
949 }
Romain Guy06882f82009-06-10 13:36:04 -0700950
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800951 if (highestTarget != null) {
Romain Guy06882f82009-06-10 13:36:04 -0700952 if (DEBUG_INPUT_METHOD) Log.v(TAG, "mNextAppTransition="
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800953 + mNextAppTransition + " " + highestTarget
954 + " animating=" + highestTarget.isAnimating()
955 + " layer=" + highestTarget.mAnimLayer
956 + " new layer=" + w.mAnimLayer);
Romain Guy06882f82009-06-10 13:36:04 -0700957
Dianne Hackbornbfe319e2009-09-21 00:34:05 -0700958 if (mNextAppTransition != WindowManagerPolicy.TRANSIT_UNSET) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800959 // If we are currently setting up for an animation,
960 // hold everything until we can find out what will happen.
961 mInputMethodTargetWaitingAnim = true;
962 mInputMethodTarget = highestTarget;
963 return highestPos + 1;
964 } else if (highestTarget.isAnimating() &&
965 highestTarget.mAnimLayer > w.mAnimLayer) {
966 // If the window we are currently targeting is involved
967 // with an animation, and it is on top of the next target
968 // we will be over, then hold off on moving until
969 // that is done.
970 mInputMethodTarget = highestTarget;
971 return highestPos + 1;
972 }
973 }
974 }
975 }
Romain Guy06882f82009-06-10 13:36:04 -0700976
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800977 //Log.i(TAG, "Placing input method @" + (i+1));
978 if (w != null) {
979 if (willMove) {
980 RuntimeException e = new RuntimeException();
Dianne Hackborn9bfb7072009-09-22 11:37:40 -0700981 if (!HIDE_STACK_CRAWLS) e.fillInStackTrace();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800982 if (DEBUG_INPUT_METHOD) Log.w(TAG, "Moving IM target from "
983 + mInputMethodTarget + " to " + w, e);
984 mInputMethodTarget = w;
985 if (w.mAppToken != null) {
986 setInputMethodAnimLayerAdjustment(w.mAppToken.animLayerAdjustment);
987 } else {
988 setInputMethodAnimLayerAdjustment(0);
989 }
990 }
991 return i+1;
992 }
993 if (willMove) {
994 RuntimeException e = new RuntimeException();
Dianne Hackborn9bfb7072009-09-22 11:37:40 -0700995 if (!HIDE_STACK_CRAWLS) e.fillInStackTrace();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800996 if (DEBUG_INPUT_METHOD) Log.w(TAG, "Moving IM target from "
997 + mInputMethodTarget + " to null", e);
998 mInputMethodTarget = null;
999 setInputMethodAnimLayerAdjustment(0);
1000 }
1001 return -1;
1002 }
Romain Guy06882f82009-06-10 13:36:04 -07001003
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001004 void addInputMethodWindowToListLocked(WindowState win) {
1005 int pos = findDesiredInputMethodWindowIndexLocked(true);
1006 if (pos >= 0) {
1007 win.mTargetAppToken = mInputMethodTarget.mAppToken;
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07001008 if (DEBUG_WINDOW_MOVEMENT) Log.v(
1009 TAG, "Adding input method window " + win + " at " + pos);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001010 mWindows.add(pos, win);
1011 moveInputMethodDialogsLocked(pos+1);
1012 return;
1013 }
1014 win.mTargetAppToken = null;
1015 addWindowToListInOrderLocked(win, true);
1016 moveInputMethodDialogsLocked(pos);
1017 }
Romain Guy06882f82009-06-10 13:36:04 -07001018
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001019 void setInputMethodAnimLayerAdjustment(int adj) {
1020 if (DEBUG_LAYERS) Log.v(TAG, "Setting im layer adj to " + adj);
1021 mInputMethodAnimLayerAdjustment = adj;
1022 WindowState imw = mInputMethodWindow;
1023 if (imw != null) {
1024 imw.mAnimLayer = imw.mLayer + adj;
1025 if (DEBUG_LAYERS) Log.v(TAG, "IM win " + imw
1026 + " anim layer: " + imw.mAnimLayer);
1027 int wi = imw.mChildWindows.size();
1028 while (wi > 0) {
1029 wi--;
1030 WindowState cw = (WindowState)imw.mChildWindows.get(wi);
1031 cw.mAnimLayer = cw.mLayer + adj;
1032 if (DEBUG_LAYERS) Log.v(TAG, "IM win " + cw
1033 + " anim layer: " + cw.mAnimLayer);
1034 }
1035 }
1036 int di = mInputMethodDialogs.size();
1037 while (di > 0) {
1038 di --;
1039 imw = mInputMethodDialogs.get(di);
1040 imw.mAnimLayer = imw.mLayer + adj;
1041 if (DEBUG_LAYERS) Log.v(TAG, "IM win " + imw
1042 + " anim layer: " + imw.mAnimLayer);
1043 }
1044 }
Romain Guy06882f82009-06-10 13:36:04 -07001045
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001046 private int tmpRemoveWindowLocked(int interestingPos, WindowState win) {
1047 int wpos = mWindows.indexOf(win);
1048 if (wpos >= 0) {
1049 if (wpos < interestingPos) interestingPos--;
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07001050 if (DEBUG_WINDOW_MOVEMENT) Log.v(TAG, "Temp removing at " + wpos + ": " + win);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001051 mWindows.remove(wpos);
1052 int NC = win.mChildWindows.size();
1053 while (NC > 0) {
1054 NC--;
1055 WindowState cw = (WindowState)win.mChildWindows.get(NC);
1056 int cpos = mWindows.indexOf(cw);
1057 if (cpos >= 0) {
1058 if (cpos < interestingPos) interestingPos--;
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07001059 if (DEBUG_WINDOW_MOVEMENT) Log.v(TAG, "Temp removing child at "
1060 + cpos + ": " + cw);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001061 mWindows.remove(cpos);
1062 }
1063 }
1064 }
1065 return interestingPos;
1066 }
Romain Guy06882f82009-06-10 13:36:04 -07001067
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001068 private void reAddWindowToListInOrderLocked(WindowState win) {
1069 addWindowToListInOrderLocked(win, false);
1070 // This is a hack to get all of the child windows added as well
1071 // at the right position. Child windows should be rare and
1072 // this case should be rare, so it shouldn't be that big a deal.
1073 int wpos = mWindows.indexOf(win);
1074 if (wpos >= 0) {
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07001075 if (DEBUG_WINDOW_MOVEMENT) Log.v(TAG, "ReAdd removing from " + wpos
1076 + ": " + win);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001077 mWindows.remove(wpos);
1078 reAddWindowLocked(wpos, win);
1079 }
1080 }
Romain Guy06882f82009-06-10 13:36:04 -07001081
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001082 void logWindowList(String prefix) {
1083 int N = mWindows.size();
1084 while (N > 0) {
1085 N--;
1086 Log.v(TAG, prefix + "#" + N + ": " + mWindows.get(N));
1087 }
1088 }
Romain Guy06882f82009-06-10 13:36:04 -07001089
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001090 void moveInputMethodDialogsLocked(int pos) {
1091 ArrayList<WindowState> dialogs = mInputMethodDialogs;
Romain Guy06882f82009-06-10 13:36:04 -07001092
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001093 final int N = dialogs.size();
1094 if (DEBUG_INPUT_METHOD) Log.v(TAG, "Removing " + N + " dialogs w/pos=" + pos);
1095 for (int i=0; i<N; i++) {
1096 pos = tmpRemoveWindowLocked(pos, dialogs.get(i));
1097 }
1098 if (DEBUG_INPUT_METHOD) {
1099 Log.v(TAG, "Window list w/pos=" + pos);
1100 logWindowList(" ");
1101 }
Romain Guy06882f82009-06-10 13:36:04 -07001102
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001103 if (pos >= 0) {
1104 final AppWindowToken targetAppToken = mInputMethodTarget.mAppToken;
1105 if (pos < mWindows.size()) {
1106 WindowState wp = (WindowState)mWindows.get(pos);
1107 if (wp == mInputMethodWindow) {
1108 pos++;
1109 }
1110 }
1111 if (DEBUG_INPUT_METHOD) Log.v(TAG, "Adding " + N + " dialogs at pos=" + pos);
1112 for (int i=0; i<N; i++) {
1113 WindowState win = dialogs.get(i);
1114 win.mTargetAppToken = targetAppToken;
1115 pos = reAddWindowLocked(pos, win);
1116 }
1117 if (DEBUG_INPUT_METHOD) {
1118 Log.v(TAG, "Final window list:");
1119 logWindowList(" ");
1120 }
1121 return;
1122 }
1123 for (int i=0; i<N; i++) {
1124 WindowState win = dialogs.get(i);
1125 win.mTargetAppToken = null;
1126 reAddWindowToListInOrderLocked(win);
1127 if (DEBUG_INPUT_METHOD) {
1128 Log.v(TAG, "No IM target, final list:");
1129 logWindowList(" ");
1130 }
1131 }
1132 }
Romain Guy06882f82009-06-10 13:36:04 -07001133
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001134 boolean moveInputMethodWindowsIfNeededLocked(boolean needAssignLayers) {
1135 final WindowState imWin = mInputMethodWindow;
1136 final int DN = mInputMethodDialogs.size();
1137 if (imWin == null && DN == 0) {
1138 return false;
1139 }
Romain Guy06882f82009-06-10 13:36:04 -07001140
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001141 int imPos = findDesiredInputMethodWindowIndexLocked(true);
1142 if (imPos >= 0) {
1143 // In this case, the input method windows are to be placed
1144 // immediately above the window they are targeting.
Romain Guy06882f82009-06-10 13:36:04 -07001145
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001146 // First check to see if the input method windows are already
1147 // located here, and contiguous.
1148 final int N = mWindows.size();
1149 WindowState firstImWin = imPos < N
1150 ? (WindowState)mWindows.get(imPos) : null;
Romain Guy06882f82009-06-10 13:36:04 -07001151
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001152 // Figure out the actual input method window that should be
1153 // at the bottom of their stack.
1154 WindowState baseImWin = imWin != null
1155 ? imWin : mInputMethodDialogs.get(0);
1156 if (baseImWin.mChildWindows.size() > 0) {
1157 WindowState cw = (WindowState)baseImWin.mChildWindows.get(0);
1158 if (cw.mSubLayer < 0) baseImWin = cw;
1159 }
Romain Guy06882f82009-06-10 13:36:04 -07001160
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001161 if (firstImWin == baseImWin) {
1162 // The windows haven't moved... but are they still contiguous?
1163 // First find the top IM window.
1164 int pos = imPos+1;
1165 while (pos < N) {
1166 if (!((WindowState)mWindows.get(pos)).mIsImWindow) {
1167 break;
1168 }
1169 pos++;
1170 }
1171 pos++;
1172 // Now there should be no more input method windows above.
1173 while (pos < N) {
1174 if (((WindowState)mWindows.get(pos)).mIsImWindow) {
1175 break;
1176 }
1177 pos++;
1178 }
1179 if (pos >= N) {
1180 // All is good!
1181 return false;
1182 }
1183 }
Romain Guy06882f82009-06-10 13:36:04 -07001184
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001185 if (imWin != null) {
1186 if (DEBUG_INPUT_METHOD) {
1187 Log.v(TAG, "Moving IM from " + imPos);
1188 logWindowList(" ");
1189 }
1190 imPos = tmpRemoveWindowLocked(imPos, imWin);
1191 if (DEBUG_INPUT_METHOD) {
1192 Log.v(TAG, "List after moving with new pos " + imPos + ":");
1193 logWindowList(" ");
1194 }
1195 imWin.mTargetAppToken = mInputMethodTarget.mAppToken;
1196 reAddWindowLocked(imPos, imWin);
1197 if (DEBUG_INPUT_METHOD) {
1198 Log.v(TAG, "List after moving IM to " + imPos + ":");
1199 logWindowList(" ");
1200 }
1201 if (DN > 0) moveInputMethodDialogsLocked(imPos+1);
1202 } else {
1203 moveInputMethodDialogsLocked(imPos);
1204 }
Romain Guy06882f82009-06-10 13:36:04 -07001205
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001206 } else {
1207 // In this case, the input method windows go in a fixed layer,
1208 // because they aren't currently associated with a focus window.
Romain Guy06882f82009-06-10 13:36:04 -07001209
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001210 if (imWin != null) {
1211 if (DEBUG_INPUT_METHOD) Log.v(TAG, "Moving IM from " + imPos);
1212 tmpRemoveWindowLocked(0, imWin);
1213 imWin.mTargetAppToken = null;
1214 reAddWindowToListInOrderLocked(imWin);
1215 if (DEBUG_INPUT_METHOD) {
1216 Log.v(TAG, "List with no IM target:");
1217 logWindowList(" ");
1218 }
1219 if (DN > 0) moveInputMethodDialogsLocked(-1);;
1220 } else {
1221 moveInputMethodDialogsLocked(-1);;
1222 }
Romain Guy06882f82009-06-10 13:36:04 -07001223
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001224 }
Romain Guy06882f82009-06-10 13:36:04 -07001225
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001226 if (needAssignLayers) {
1227 assignLayersLocked();
1228 }
Romain Guy06882f82009-06-10 13:36:04 -07001229
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001230 return true;
1231 }
Romain Guy06882f82009-06-10 13:36:04 -07001232
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001233 void adjustInputMethodDialogsLocked() {
1234 moveInputMethodDialogsLocked(findDesiredInputMethodWindowIndexLocked(true));
1235 }
Romain Guy06882f82009-06-10 13:36:04 -07001236
Dianne Hackborn25994b42009-09-04 14:21:19 -07001237 final boolean isWallpaperVisible(WindowState wallpaperTarget) {
1238 if (DEBUG_WALLPAPER) Log.v(TAG, "Wallpaper vis: target obscured="
1239 + (wallpaperTarget != null ? Boolean.toString(wallpaperTarget.mObscured) : "??")
1240 + " anim=" + ((wallpaperTarget != null && wallpaperTarget.mAppToken != null)
1241 ? wallpaperTarget.mAppToken.animation : null)
1242 + " upper=" + mUpperWallpaperTarget
1243 + " lower=" + mLowerWallpaperTarget);
1244 return (wallpaperTarget != null
1245 && (!wallpaperTarget.mObscured || (wallpaperTarget.mAppToken != null
1246 && wallpaperTarget.mAppToken.animation != null)))
1247 || mUpperWallpaperTarget != null
1248 || mLowerWallpaperTarget != null;
1249 }
1250
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07001251 static final int ADJUST_WALLPAPER_LAYERS_CHANGED = 1<<1;
1252 static final int ADJUST_WALLPAPER_VISIBILITY_CHANGED = 1<<2;
1253
1254 int adjustWallpaperWindowsLocked() {
1255 int changed = 0;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001256
Dianne Hackborn3be63c02009-08-20 19:31:38 -07001257 final int dw = mDisplay.getWidth();
1258 final int dh = mDisplay.getHeight();
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001259
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001260 // First find top-most window that has asked to be on top of the
1261 // wallpaper; all wallpapers go behind it.
1262 final ArrayList localmWindows = mWindows;
1263 int N = localmWindows.size();
1264 WindowState w = null;
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001265 WindowState foundW = null;
1266 int foundI = 0;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07001267 WindowState topCurW = null;
1268 int topCurI = 0;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001269 int i = N;
1270 while (i > 0) {
1271 i--;
1272 w = (WindowState)localmWindows.get(i);
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07001273 if ((w.mAttrs.type == WindowManager.LayoutParams.TYPE_WALLPAPER)) {
1274 if (topCurW == null) {
1275 topCurW = w;
1276 topCurI = i;
1277 }
1278 continue;
1279 }
1280 topCurW = null;
Dianne Hackborn3be63c02009-08-20 19:31:38 -07001281 if (w.mAppToken != null) {
1282 // If this window's app token is hidden and not animating,
1283 // it is of no interest to us.
1284 if (w.mAppToken.hidden && w.mAppToken.animation == null) {
1285 if (DEBUG_WALLPAPER) Log.v(TAG,
1286 "Skipping hidden or animating token: " + w);
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07001287 topCurW = null;
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001288 continue;
1289 }
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001290 }
Dianne Hackborn3be63c02009-08-20 19:31:38 -07001291 if (DEBUG_WALLPAPER) Log.v(TAG, "Win " + w + ": readyfordisplay="
1292 + w.isReadyForDisplay() + " drawpending=" + w.mDrawPending
1293 + " commitdrawpending=" + w.mCommitDrawPending);
Dianne Hackborn7341d7a2009-08-14 11:37:52 -07001294 if ((w.mAttrs.flags&FLAG_SHOW_WALLPAPER) != 0 && w.isReadyForDisplay()
Dianne Hackborn6c3f5712009-08-25 18:42:59 -07001295 && (mWallpaperTarget == w
1296 || (!w.mDrawPending && !w.mCommitDrawPending))) {
Dianne Hackborn3be63c02009-08-20 19:31:38 -07001297 if (DEBUG_WALLPAPER) Log.v(TAG,
1298 "Found wallpaper activity: #" + i + "=" + w);
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001299 foundW = w;
1300 foundI = i;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07001301 if (w == mWallpaperTarget && ((w.mAppToken != null
1302 && w.mAppToken.animation != null)
1303 || w.mAnimation != null)) {
Dianne Hackborn3be63c02009-08-20 19:31:38 -07001304 // The current wallpaper target is animating, so we'll
1305 // look behind it for another possible target and figure
1306 // out what is going on below.
1307 if (DEBUG_WALLPAPER) Log.v(TAG, "Win " + w
1308 + ": token animating, looking behind.");
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001309 continue;
1310 }
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001311 break;
1312 }
1313 }
1314
Dianne Hackbornbfe319e2009-09-21 00:34:05 -07001315 if (mNextAppTransition != WindowManagerPolicy.TRANSIT_UNSET) {
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001316 // If we are currently waiting for an app transition, and either
1317 // the current target or the next target are involved with it,
1318 // then hold off on doing anything with the wallpaper.
1319 // Note that we are checking here for just whether the target
1320 // is part of an app token... which is potentially overly aggressive
1321 // (the app token may not be involved in the transition), but good
1322 // enough (we'll just wait until whatever transition is pending
1323 // executes).
1324 if (mWallpaperTarget != null && mWallpaperTarget.mAppToken != null) {
Dianne Hackborn3be63c02009-08-20 19:31:38 -07001325 if (DEBUG_WALLPAPER) Log.v(TAG,
1326 "Wallpaper not changing: waiting for app anim in current target");
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07001327 return 0;
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001328 }
1329 if (foundW != null && foundW.mAppToken != null) {
Dianne Hackborn3be63c02009-08-20 19:31:38 -07001330 if (DEBUG_WALLPAPER) Log.v(TAG,
1331 "Wallpaper not changing: waiting for app anim in found target");
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07001332 return 0;
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001333 }
Dianne Hackborn7341d7a2009-08-14 11:37:52 -07001334 }
Dianne Hackborn759a39e2009-08-09 17:20:27 -07001335
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001336 if (mWallpaperTarget != foundW) {
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001337 if (DEBUG_WALLPAPER) {
Dianne Hackborn3be63c02009-08-20 19:31:38 -07001338 Log.v(TAG, "New wallpaper target: " + foundW
1339 + " oldTarget: " + mWallpaperTarget);
1340 }
1341
1342 mLowerWallpaperTarget = null;
1343 mUpperWallpaperTarget = null;
1344
1345 WindowState oldW = mWallpaperTarget;
1346 mWallpaperTarget = foundW;
1347
1348 // Now what is happening... if the current and new targets are
1349 // animating, then we are in our super special mode!
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07001350 if (foundW != null && oldW != null) {
1351 boolean oldAnim = oldW.mAnimation != null
1352 || (oldW.mAppToken != null && oldW.mAppToken.animation != null);
1353 boolean foundAnim = foundW.mAnimation != null
1354 || (foundW.mAppToken != null && foundW.mAppToken.animation != null);
Dianne Hackborn3be63c02009-08-20 19:31:38 -07001355 if (DEBUG_WALLPAPER) {
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07001356 Log.v(TAG, "New animation: " + foundAnim
1357 + " old animation: " + oldAnim);
Dianne Hackborn3be63c02009-08-20 19:31:38 -07001358 }
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07001359 if (foundAnim && oldAnim) {
Dianne Hackborn3be63c02009-08-20 19:31:38 -07001360 int oldI = localmWindows.indexOf(oldW);
1361 if (DEBUG_WALLPAPER) {
1362 Log.v(TAG, "New i: " + foundI + " old i: " + oldI);
1363 }
1364 if (oldI >= 0) {
1365 if (DEBUG_WALLPAPER) {
1366 Log.v(TAG, "Animating wallpapers: old#" + oldI
1367 + "=" + oldW + "; new#" + foundI
1368 + "=" + foundW);
1369 }
1370
1371 // Set the new target correctly.
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07001372 if (foundW.mAppToken != null && foundW.mAppToken.hiddenRequested) {
Dianne Hackborn3be63c02009-08-20 19:31:38 -07001373 if (DEBUG_WALLPAPER) {
1374 Log.v(TAG, "Old wallpaper still the target.");
1375 }
1376 mWallpaperTarget = oldW;
1377 }
1378
1379 // Now set the upper and lower wallpaper targets
1380 // correctly, and make sure that we are positioning
1381 // the wallpaper below the lower.
1382 if (foundI > oldI) {
1383 // The new target is on top of the old one.
1384 if (DEBUG_WALLPAPER) {
1385 Log.v(TAG, "Found target above old target.");
1386 }
1387 mUpperWallpaperTarget = foundW;
1388 mLowerWallpaperTarget = oldW;
1389 foundW = oldW;
1390 foundI = oldI;
1391 } else {
1392 // The new target is below the old one.
1393 if (DEBUG_WALLPAPER) {
1394 Log.v(TAG, "Found target below old target.");
1395 }
1396 mUpperWallpaperTarget = oldW;
1397 mLowerWallpaperTarget = foundW;
1398 }
1399 }
1400 }
1401 }
1402
Dianne Hackborn6b1cb352009-09-28 18:27:26 -07001403 } else if (mLowerWallpaperTarget != null) {
Dianne Hackborn3be63c02009-08-20 19:31:38 -07001404 // Is it time to stop animating?
Dianne Hackborn6b1cb352009-09-28 18:27:26 -07001405 boolean lowerAnimating = mLowerWallpaperTarget.mAnimation != null
1406 || (mLowerWallpaperTarget.mAppToken != null
1407 && mLowerWallpaperTarget.mAppToken.animation != null);
1408 boolean upperAnimating = mUpperWallpaperTarget.mAnimation != null
1409 || (mUpperWallpaperTarget.mAppToken != null
1410 && mUpperWallpaperTarget.mAppToken.animation != null);
1411 if (!lowerAnimating || !upperAnimating) {
Dianne Hackborn3be63c02009-08-20 19:31:38 -07001412 if (DEBUG_WALLPAPER) {
1413 Log.v(TAG, "No longer animating wallpaper targets!");
1414 }
1415 mLowerWallpaperTarget = null;
1416 mUpperWallpaperTarget = null;
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001417 }
1418 }
1419
1420 boolean visible = foundW != null;
Dianne Hackborn759a39e2009-08-09 17:20:27 -07001421 if (visible) {
Dianne Hackborn7341d7a2009-08-14 11:37:52 -07001422 // The window is visible to the compositor... but is it visible
1423 // to the user? That is what the wallpaper cares about.
Dianne Hackborn25994b42009-09-04 14:21:19 -07001424 visible = isWallpaperVisible(foundW);
Dianne Hackborne9e9bca2009-08-18 15:08:22 -07001425 if (DEBUG_WALLPAPER) Log.v(TAG, "Wallpaper visibility: " + visible);
Dianne Hackborn7341d7a2009-08-14 11:37:52 -07001426
1427 // If the wallpaper target is animating, we may need to copy
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001428 // its layer adjustment. Only do this if we are not transfering
1429 // between two wallpaper targets.
1430 mWallpaperAnimLayerAdjustment =
Dianne Hackborn3be63c02009-08-20 19:31:38 -07001431 (mLowerWallpaperTarget == null && foundW.mAppToken != null)
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001432 ? foundW.mAppToken.animLayerAdjustment : 0;
Dianne Hackborn759a39e2009-08-09 17:20:27 -07001433
Dianne Hackborn6136b7e2009-09-18 01:53:49 -07001434 final int maxLayer = mPolicy.getMaxWallpaperLayer()
1435 * TYPE_LAYER_MULTIPLIER
1436 + TYPE_LAYER_OFFSET;
1437
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001438 // Now w is the window we are supposed to be behind... but we
1439 // need to be sure to also be behind any of its attached windows,
Dianne Hackborn6136b7e2009-09-18 01:53:49 -07001440 // AND any starting window associated with it, AND below the
1441 // maximum layer the policy allows for wallpapers.
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001442 while (foundI > 0) {
1443 WindowState wb = (WindowState)localmWindows.get(foundI-1);
Dianne Hackborn6136b7e2009-09-18 01:53:49 -07001444 if (wb.mBaseLayer < maxLayer &&
1445 wb.mAttachedWindow != foundW &&
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001446 (wb.mAttrs.type != TYPE_APPLICATION_STARTING ||
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001447 wb.mToken != foundW.mToken)) {
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001448 // This window is not related to the previous one in any
1449 // interesting way, so stop here.
1450 break;
1451 }
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001452 foundW = wb;
1453 foundI--;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001454 }
Dianne Hackborn25994b42009-09-04 14:21:19 -07001455 } else {
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07001456 if (DEBUG_WALLPAPER) Log.v(TAG, "No wallpaper target");
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001457 }
1458
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07001459 if (foundW == null && topCurW != null) {
1460 // There is no wallpaper target, so it goes at the bottom.
1461 // We will assume it is the same place as last time, if known.
1462 foundW = topCurW;
1463 foundI = topCurI+1;
1464 } else {
1465 // Okay i is the position immediately above the wallpaper. Look at
1466 // what is below it for later.
1467 foundW = foundI > 0 ? (WindowState)localmWindows.get(foundI-1) : null;
1468 }
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001469
Dianne Hackborn284ac932009-08-28 10:34:25 -07001470 if (visible) {
Dianne Hackborn73e92b42009-10-15 14:29:19 -07001471 if (mWallpaperTarget.mWallpaperX >= 0) {
1472 mLastWallpaperX = mWallpaperTarget.mWallpaperX;
Marco Nelissenbf6956b2009-11-09 15:21:13 -08001473 mLastWallpaperXStep = mWallpaperTarget.mWallpaperXStep;
Dianne Hackborn73e92b42009-10-15 14:29:19 -07001474 }
1475 if (mWallpaperTarget.mWallpaperY >= 0) {
1476 mLastWallpaperY = mWallpaperTarget.mWallpaperY;
Marco Nelissenbf6956b2009-11-09 15:21:13 -08001477 mLastWallpaperYStep = mWallpaperTarget.mWallpaperYStep;
Dianne Hackborn73e92b42009-10-15 14:29:19 -07001478 }
Dianne Hackborn284ac932009-08-28 10:34:25 -07001479 }
1480
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001481 // Start stepping backwards from here, ensuring that our wallpaper windows
1482 // are correctly placed.
1483 int curTokenIndex = mWallpaperTokens.size();
1484 while (curTokenIndex > 0) {
1485 curTokenIndex--;
1486 WindowToken token = mWallpaperTokens.get(curTokenIndex);
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07001487 if (token.hidden == visible) {
1488 changed |= ADJUST_WALLPAPER_VISIBILITY_CHANGED;
1489 token.hidden = !visible;
1490 // Need to do a layout to ensure the wallpaper now has the
1491 // correct size.
1492 mLayoutNeeded = true;
1493 }
Dianne Hackborn25994b42009-09-04 14:21:19 -07001494
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001495 int curWallpaperIndex = token.windows.size();
1496 while (curWallpaperIndex > 0) {
1497 curWallpaperIndex--;
1498 WindowState wallpaper = token.windows.get(curWallpaperIndex);
Dianne Hackborn759a39e2009-08-09 17:20:27 -07001499
Dianne Hackborn72c82ab2009-08-11 21:13:54 -07001500 if (visible) {
Dianne Hackborn19382ac2009-09-11 21:13:37 -07001501 updateWallpaperOffsetLocked(wallpaper, dw, dh, false);
Dianne Hackborn72c82ab2009-08-11 21:13:54 -07001502 }
1503
Dianne Hackborn759a39e2009-08-09 17:20:27 -07001504 // First, make sure the client has the current visibility
1505 // state.
1506 if (wallpaper.mWallpaperVisible != visible) {
1507 wallpaper.mWallpaperVisible = visible;
1508 try {
Dianne Hackborn7341d7a2009-08-14 11:37:52 -07001509 if (DEBUG_VISIBILITY || DEBUG_WALLPAPER) Log.v(TAG,
Dianne Hackborn759a39e2009-08-09 17:20:27 -07001510 "Setting visibility of wallpaper " + wallpaper
1511 + ": " + visible);
1512 wallpaper.mClient.dispatchAppVisibility(visible);
1513 } catch (RemoteException e) {
1514 }
1515 }
1516
1517 wallpaper.mAnimLayer = wallpaper.mLayer + mWallpaperAnimLayerAdjustment;
Dianne Hackborn7341d7a2009-08-14 11:37:52 -07001518 if (DEBUG_LAYERS || DEBUG_WALLPAPER) Log.v(TAG, "Wallpaper win "
1519 + wallpaper + " anim layer: " + wallpaper.mAnimLayer);
Dianne Hackborn759a39e2009-08-09 17:20:27 -07001520
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001521 // First, if this window is at the current index, then all
1522 // is well.
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001523 if (wallpaper == foundW) {
1524 foundI--;
1525 foundW = foundI > 0
1526 ? (WindowState)localmWindows.get(foundI-1) : null;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001527 continue;
1528 }
1529
1530 // The window didn't match... the current wallpaper window,
1531 // wherever it is, is in the wrong place, so make sure it is
1532 // not in the list.
1533 int oldIndex = localmWindows.indexOf(wallpaper);
1534 if (oldIndex >= 0) {
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07001535 if (DEBUG_WINDOW_MOVEMENT) Log.v(TAG, "Wallpaper removing at "
1536 + oldIndex + ": " + wallpaper);
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001537 localmWindows.remove(oldIndex);
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001538 if (oldIndex < foundI) {
1539 foundI--;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001540 }
1541 }
1542
1543 // Now stick it in.
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07001544 if (DEBUG_WALLPAPER || DEBUG_WINDOW_MOVEMENT) Log.v(TAG,
1545 "Moving wallpaper " + wallpaper
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001546 + " from " + oldIndex + " to " + foundI);
Dianne Hackborn7341d7a2009-08-14 11:37:52 -07001547
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07001548 localmWindows.add(foundI, wallpaper);
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07001549 changed |= ADJUST_WALLPAPER_LAYERS_CHANGED;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001550 }
1551 }
1552
1553 return changed;
1554 }
1555
Dianne Hackbornc8a0a752009-08-10 23:05:49 -07001556 void setWallpaperAnimLayerAdjustmentLocked(int adj) {
Dianne Hackborn7341d7a2009-08-14 11:37:52 -07001557 if (DEBUG_LAYERS || DEBUG_WALLPAPER) Log.v(TAG,
1558 "Setting wallpaper layer adj to " + adj);
Dianne Hackborn759a39e2009-08-09 17:20:27 -07001559 mWallpaperAnimLayerAdjustment = adj;
1560 int curTokenIndex = mWallpaperTokens.size();
1561 while (curTokenIndex > 0) {
1562 curTokenIndex--;
1563 WindowToken token = mWallpaperTokens.get(curTokenIndex);
1564 int curWallpaperIndex = token.windows.size();
1565 while (curWallpaperIndex > 0) {
1566 curWallpaperIndex--;
1567 WindowState wallpaper = token.windows.get(curWallpaperIndex);
1568 wallpaper.mAnimLayer = wallpaper.mLayer + adj;
Dianne Hackborn7341d7a2009-08-14 11:37:52 -07001569 if (DEBUG_LAYERS || DEBUG_WALLPAPER) Log.v(TAG, "Wallpaper win "
1570 + wallpaper + " anim layer: " + wallpaper.mAnimLayer);
Dianne Hackborn759a39e2009-08-09 17:20:27 -07001571 }
1572 }
1573 }
1574
Dianne Hackborn19382ac2009-09-11 21:13:37 -07001575 boolean updateWallpaperOffsetLocked(WindowState wallpaperWin, int dw, int dh,
1576 boolean sync) {
Dianne Hackborn72c82ab2009-08-11 21:13:54 -07001577 boolean changed = false;
Dianne Hackborn7341d7a2009-08-14 11:37:52 -07001578 boolean rawChanged = false;
Dianne Hackborn73e92b42009-10-15 14:29:19 -07001579 float wpx = mLastWallpaperX >= 0 ? mLastWallpaperX : 0.5f;
Marco Nelissenbf6956b2009-11-09 15:21:13 -08001580 float wpxs = mLastWallpaperXStep >= 0 ? mLastWallpaperXStep : -1.0f;
Dianne Hackborn73e92b42009-10-15 14:29:19 -07001581 int availw = wallpaperWin.mFrame.right-wallpaperWin.mFrame.left-dw;
1582 int offset = availw > 0 ? -(int)(availw*wpx+.5f) : 0;
1583 changed = wallpaperWin.mXOffset != offset;
1584 if (changed) {
1585 if (DEBUG_WALLPAPER) Log.v(TAG, "Update wallpaper "
1586 + wallpaperWin + " x: " + offset);
1587 wallpaperWin.mXOffset = offset;
1588 }
Marco Nelissenbf6956b2009-11-09 15:21:13 -08001589 if (wallpaperWin.mWallpaperX != wpx || wallpaperWin.mWallpaperXStep != wpxs) {
Dianne Hackborn73e92b42009-10-15 14:29:19 -07001590 wallpaperWin.mWallpaperX = wpx;
Marco Nelissenbf6956b2009-11-09 15:21:13 -08001591 wallpaperWin.mWallpaperXStep = wpxs;
Dianne Hackborn73e92b42009-10-15 14:29:19 -07001592 rawChanged = true;
Dianne Hackbornc8a0a752009-08-10 23:05:49 -07001593 }
Dianne Hackborn7341d7a2009-08-14 11:37:52 -07001594
Dianne Hackborn73e92b42009-10-15 14:29:19 -07001595 float wpy = mLastWallpaperY >= 0 ? mLastWallpaperY : 0.5f;
Marco Nelissenbf6956b2009-11-09 15:21:13 -08001596 float wpys = mLastWallpaperYStep >= 0 ? mLastWallpaperYStep : -1.0f;
Dianne Hackborn73e92b42009-10-15 14:29:19 -07001597 int availh = wallpaperWin.mFrame.bottom-wallpaperWin.mFrame.top-dh;
1598 offset = availh > 0 ? -(int)(availh*wpy+.5f) : 0;
1599 if (wallpaperWin.mYOffset != offset) {
1600 if (DEBUG_WALLPAPER) Log.v(TAG, "Update wallpaper "
1601 + wallpaperWin + " y: " + offset);
1602 changed = true;
1603 wallpaperWin.mYOffset = offset;
1604 }
Marco Nelissenbf6956b2009-11-09 15:21:13 -08001605 if (wallpaperWin.mWallpaperY != wpy || wallpaperWin.mWallpaperYStep != wpys) {
Dianne Hackborn73e92b42009-10-15 14:29:19 -07001606 wallpaperWin.mWallpaperY = wpy;
Marco Nelissenbf6956b2009-11-09 15:21:13 -08001607 wallpaperWin.mWallpaperYStep = wpys;
Dianne Hackborn73e92b42009-10-15 14:29:19 -07001608 rawChanged = true;
Dianne Hackbornc8a0a752009-08-10 23:05:49 -07001609 }
Dianne Hackborn72c82ab2009-08-11 21:13:54 -07001610
Dianne Hackborn7341d7a2009-08-14 11:37:52 -07001611 if (rawChanged) {
Dianne Hackborn72c82ab2009-08-11 21:13:54 -07001612 try {
Dianne Hackborne9e9bca2009-08-18 15:08:22 -07001613 if (DEBUG_WALLPAPER) Log.v(TAG, "Report new wp offset "
1614 + wallpaperWin + " x=" + wallpaperWin.mWallpaperX
1615 + " y=" + wallpaperWin.mWallpaperY);
Dianne Hackborn19382ac2009-09-11 21:13:37 -07001616 if (sync) {
Dianne Hackborn75804932009-10-20 20:15:20 -07001617 mWaitingOnWallpaper = wallpaperWin;
Dianne Hackborn19382ac2009-09-11 21:13:37 -07001618 }
Dianne Hackborn72c82ab2009-08-11 21:13:54 -07001619 wallpaperWin.mClient.dispatchWallpaperOffsets(
Marco Nelissenbf6956b2009-11-09 15:21:13 -08001620 wallpaperWin.mWallpaperX, wallpaperWin.mWallpaperY,
1621 wallpaperWin.mWallpaperXStep, wallpaperWin.mWallpaperYStep, sync);
Dianne Hackborn19382ac2009-09-11 21:13:37 -07001622 if (sync) {
Dianne Hackborn75804932009-10-20 20:15:20 -07001623 if (mWaitingOnWallpaper != null) {
1624 long start = SystemClock.uptimeMillis();
1625 if ((mLastWallpaperTimeoutTime+WALLPAPER_TIMEOUT_RECOVERY)
1626 < start) {
1627 try {
1628 if (DEBUG_WALLPAPER) Log.v(TAG,
1629 "Waiting for offset complete...");
1630 mWindowMap.wait(WALLPAPER_TIMEOUT);
1631 } catch (InterruptedException e) {
Dianne Hackborn19382ac2009-09-11 21:13:37 -07001632 }
Dianne Hackborn75804932009-10-20 20:15:20 -07001633 if (DEBUG_WALLPAPER) Log.v(TAG, "Offset complete!");
1634 if ((start+WALLPAPER_TIMEOUT)
1635 < SystemClock.uptimeMillis()) {
1636 Log.i(TAG, "Timeout waiting for wallpaper to offset: "
1637 + wallpaperWin);
1638 mLastWallpaperTimeoutTime = start;
1639 }
Dianne Hackborn19382ac2009-09-11 21:13:37 -07001640 }
Dianne Hackborn75804932009-10-20 20:15:20 -07001641 mWaitingOnWallpaper = null;
Dianne Hackborn19382ac2009-09-11 21:13:37 -07001642 }
1643 }
Dianne Hackborn72c82ab2009-08-11 21:13:54 -07001644 } catch (RemoteException e) {
1645 }
1646 }
1647
Dianne Hackbornc8a0a752009-08-10 23:05:49 -07001648 return changed;
1649 }
1650
Dianne Hackborn19382ac2009-09-11 21:13:37 -07001651 void wallpaperOffsetsComplete(IBinder window) {
Dianne Hackborn75804932009-10-20 20:15:20 -07001652 synchronized (mWindowMap) {
Dianne Hackborn19382ac2009-09-11 21:13:37 -07001653 if (mWaitingOnWallpaper != null &&
1654 mWaitingOnWallpaper.mClient.asBinder() == window) {
1655 mWaitingOnWallpaper = null;
Dianne Hackborn75804932009-10-20 20:15:20 -07001656 mWindowMap.notifyAll();
Dianne Hackborn19382ac2009-09-11 21:13:37 -07001657 }
1658 }
1659 }
1660
Dianne Hackborn73e92b42009-10-15 14:29:19 -07001661 boolean updateWallpaperOffsetLocked(WindowState changingTarget, boolean sync) {
Dianne Hackbornc8a0a752009-08-10 23:05:49 -07001662 final int dw = mDisplay.getWidth();
1663 final int dh = mDisplay.getHeight();
1664
1665 boolean changed = false;
1666
1667 WindowState target = mWallpaperTarget;
1668 if (target != null) {
Dianne Hackborn73e92b42009-10-15 14:29:19 -07001669 if (target.mWallpaperX >= 0) {
1670 mLastWallpaperX = target.mWallpaperX;
1671 } else if (changingTarget.mWallpaperX >= 0) {
1672 mLastWallpaperX = changingTarget.mWallpaperX;
1673 }
1674 if (target.mWallpaperY >= 0) {
1675 mLastWallpaperY = target.mWallpaperY;
1676 } else if (changingTarget.mWallpaperY >= 0) {
1677 mLastWallpaperY = changingTarget.mWallpaperY;
1678 }
1679 }
1680
1681 int curTokenIndex = mWallpaperTokens.size();
1682 while (curTokenIndex > 0) {
1683 curTokenIndex--;
1684 WindowToken token = mWallpaperTokens.get(curTokenIndex);
1685 int curWallpaperIndex = token.windows.size();
1686 while (curWallpaperIndex > 0) {
1687 curWallpaperIndex--;
1688 WindowState wallpaper = token.windows.get(curWallpaperIndex);
1689 if (updateWallpaperOffsetLocked(wallpaper, dw, dh, sync)) {
1690 wallpaper.computeShownFrameLocked();
1691 changed = true;
1692 // We only want to be synchronous with one wallpaper.
1693 sync = false;
Dianne Hackbornc8a0a752009-08-10 23:05:49 -07001694 }
1695 }
1696 }
1697
1698 return changed;
1699 }
1700
Dianne Hackborne9e9bca2009-08-18 15:08:22 -07001701 void updateWallpaperVisibilityLocked() {
Dianne Hackborn25994b42009-09-04 14:21:19 -07001702 final boolean visible = isWallpaperVisible(mWallpaperTarget);
Dianne Hackborne9e9bca2009-08-18 15:08:22 -07001703 final int dw = mDisplay.getWidth();
1704 final int dh = mDisplay.getHeight();
1705
1706 int curTokenIndex = mWallpaperTokens.size();
1707 while (curTokenIndex > 0) {
1708 curTokenIndex--;
1709 WindowToken token = mWallpaperTokens.get(curTokenIndex);
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07001710 if (token.hidden == visible) {
1711 token.hidden = !visible;
1712 // Need to do a layout to ensure the wallpaper now has the
1713 // correct size.
1714 mLayoutNeeded = true;
1715 }
Dianne Hackborn25994b42009-09-04 14:21:19 -07001716
Dianne Hackborne9e9bca2009-08-18 15:08:22 -07001717 int curWallpaperIndex = token.windows.size();
1718 while (curWallpaperIndex > 0) {
1719 curWallpaperIndex--;
1720 WindowState wallpaper = token.windows.get(curWallpaperIndex);
1721 if (visible) {
Dianne Hackborn19382ac2009-09-11 21:13:37 -07001722 updateWallpaperOffsetLocked(wallpaper, dw, dh, false);
Dianne Hackborne9e9bca2009-08-18 15:08:22 -07001723 }
1724
1725 if (wallpaper.mWallpaperVisible != visible) {
1726 wallpaper.mWallpaperVisible = visible;
1727 try {
1728 if (DEBUG_VISIBILITY || DEBUG_WALLPAPER) Log.v(TAG,
Dianne Hackborn25994b42009-09-04 14:21:19 -07001729 "Updating visibility of wallpaper " + wallpaper
Dianne Hackborne9e9bca2009-08-18 15:08:22 -07001730 + ": " + visible);
1731 wallpaper.mClient.dispatchAppVisibility(visible);
1732 } catch (RemoteException e) {
1733 }
1734 }
1735 }
1736 }
1737 }
1738
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -07001739 void sendPointerToWallpaperLocked(WindowState srcWin,
1740 MotionEvent pointer, long eventTime) {
1741 int curTokenIndex = mWallpaperTokens.size();
1742 while (curTokenIndex > 0) {
1743 curTokenIndex--;
1744 WindowToken token = mWallpaperTokens.get(curTokenIndex);
1745 int curWallpaperIndex = token.windows.size();
1746 while (curWallpaperIndex > 0) {
1747 curWallpaperIndex--;
1748 WindowState wallpaper = token.windows.get(curWallpaperIndex);
1749 if ((wallpaper.mAttrs.flags &
1750 WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE) != 0) {
1751 continue;
1752 }
1753 try {
1754 MotionEvent ev = MotionEvent.obtainNoHistory(pointer);
Dianne Hackborn6adba242009-11-10 11:10:09 -08001755 if (srcWin != null) {
1756 ev.offsetLocation(srcWin.mFrame.left-wallpaper.mFrame.left,
1757 srcWin.mFrame.top-wallpaper.mFrame.top);
1758 } else {
1759 ev.offsetLocation(-wallpaper.mFrame.left, -wallpaper.mFrame.top);
1760 }
1761 switch (pointer.getAction()) {
1762 case MotionEvent.ACTION_DOWN:
1763 mSendingPointersToWallpaper = true;
1764 break;
1765 case MotionEvent.ACTION_UP:
1766 mSendingPointersToWallpaper = false;
1767 break;
1768 }
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -07001769 wallpaper.mClient.dispatchPointer(ev, eventTime, false);
1770 } catch (RemoteException e) {
1771 Log.w(TAG, "Failure sending pointer to wallpaper", e);
1772 }
1773 }
1774 }
1775 }
1776
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001777 public int addWindow(Session session, IWindow client,
1778 WindowManager.LayoutParams attrs, int viewVisibility,
1779 Rect outContentInsets) {
1780 int res = mPolicy.checkAddPermission(attrs);
1781 if (res != WindowManagerImpl.ADD_OKAY) {
1782 return res;
1783 }
Romain Guy06882f82009-06-10 13:36:04 -07001784
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001785 boolean reportNewConfig = false;
1786 WindowState attachedWindow = null;
1787 WindowState win = null;
Romain Guy06882f82009-06-10 13:36:04 -07001788
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001789 synchronized(mWindowMap) {
1790 // Instantiating a Display requires talking with the simulator,
1791 // so don't do it until we know the system is mostly up and
1792 // running.
1793 if (mDisplay == null) {
1794 WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
1795 mDisplay = wm.getDefaultDisplay();
1796 mQueue.setDisplay(mDisplay);
1797 reportNewConfig = true;
1798 }
Romain Guy06882f82009-06-10 13:36:04 -07001799
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001800 if (mWindowMap.containsKey(client.asBinder())) {
1801 Log.w(TAG, "Window " + client + " is already added");
1802 return WindowManagerImpl.ADD_DUPLICATE_ADD;
1803 }
1804
1805 if (attrs.type >= FIRST_SUB_WINDOW && attrs.type <= LAST_SUB_WINDOW) {
Romain Guy06882f82009-06-10 13:36:04 -07001806 attachedWindow = windowForClientLocked(null, attrs.token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001807 if (attachedWindow == null) {
1808 Log.w(TAG, "Attempted to add window with token that is not a window: "
1809 + attrs.token + ". Aborting.");
1810 return WindowManagerImpl.ADD_BAD_SUBWINDOW_TOKEN;
1811 }
1812 if (attachedWindow.mAttrs.type >= FIRST_SUB_WINDOW
1813 && attachedWindow.mAttrs.type <= LAST_SUB_WINDOW) {
1814 Log.w(TAG, "Attempted to add window with token that is a sub-window: "
1815 + attrs.token + ". Aborting.");
1816 return WindowManagerImpl.ADD_BAD_SUBWINDOW_TOKEN;
1817 }
1818 }
1819
1820 boolean addToken = false;
1821 WindowToken token = mTokenMap.get(attrs.token);
1822 if (token == null) {
1823 if (attrs.type >= FIRST_APPLICATION_WINDOW
1824 && attrs.type <= LAST_APPLICATION_WINDOW) {
1825 Log.w(TAG, "Attempted to add application window with unknown token "
1826 + attrs.token + ". Aborting.");
1827 return WindowManagerImpl.ADD_BAD_APP_TOKEN;
1828 }
1829 if (attrs.type == TYPE_INPUT_METHOD) {
1830 Log.w(TAG, "Attempted to add input method window with unknown token "
1831 + attrs.token + ". Aborting.");
1832 return WindowManagerImpl.ADD_BAD_APP_TOKEN;
1833 }
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001834 if (attrs.type == TYPE_WALLPAPER) {
1835 Log.w(TAG, "Attempted to add wallpaper window with unknown token "
1836 + attrs.token + ". Aborting.");
1837 return WindowManagerImpl.ADD_BAD_APP_TOKEN;
1838 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001839 token = new WindowToken(attrs.token, -1, false);
1840 addToken = true;
1841 } else if (attrs.type >= FIRST_APPLICATION_WINDOW
1842 && attrs.type <= LAST_APPLICATION_WINDOW) {
1843 AppWindowToken atoken = token.appWindowToken;
1844 if (atoken == null) {
1845 Log.w(TAG, "Attempted to add window with non-application token "
1846 + token + ". Aborting.");
1847 return WindowManagerImpl.ADD_NOT_APP_TOKEN;
1848 } else if (atoken.removed) {
1849 Log.w(TAG, "Attempted to add window with exiting application token "
1850 + token + ". Aborting.");
1851 return WindowManagerImpl.ADD_APP_EXITING;
1852 }
1853 if (attrs.type == TYPE_APPLICATION_STARTING && atoken.firstWindowDrawn) {
1854 // No need for this guy!
1855 if (localLOGV) Log.v(
1856 TAG, "**** NO NEED TO START: " + attrs.getTitle());
1857 return WindowManagerImpl.ADD_STARTING_NOT_NEEDED;
1858 }
1859 } else if (attrs.type == TYPE_INPUT_METHOD) {
1860 if (token.windowType != TYPE_INPUT_METHOD) {
1861 Log.w(TAG, "Attempted to add input method window with bad token "
1862 + attrs.token + ". Aborting.");
1863 return WindowManagerImpl.ADD_BAD_APP_TOKEN;
1864 }
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001865 } else if (attrs.type == TYPE_WALLPAPER) {
1866 if (token.windowType != TYPE_WALLPAPER) {
1867 Log.w(TAG, "Attempted to add wallpaper window with bad token "
1868 + attrs.token + ". Aborting.");
1869 return WindowManagerImpl.ADD_BAD_APP_TOKEN;
1870 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001871 }
1872
1873 win = new WindowState(session, client, token,
1874 attachedWindow, attrs, viewVisibility);
1875 if (win.mDeathRecipient == null) {
1876 // Client has apparently died, so there is no reason to
1877 // continue.
1878 Log.w(TAG, "Adding window client " + client.asBinder()
1879 + " that is dead, aborting.");
1880 return WindowManagerImpl.ADD_APP_EXITING;
1881 }
1882
1883 mPolicy.adjustWindowParamsLw(win.mAttrs);
Romain Guy06882f82009-06-10 13:36:04 -07001884
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001885 res = mPolicy.prepareAddWindowLw(win, attrs);
1886 if (res != WindowManagerImpl.ADD_OKAY) {
1887 return res;
1888 }
1889
1890 // From now on, no exceptions or errors allowed!
1891
1892 res = WindowManagerImpl.ADD_OKAY;
Romain Guy06882f82009-06-10 13:36:04 -07001893
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001894 final long origId = Binder.clearCallingIdentity();
Romain Guy06882f82009-06-10 13:36:04 -07001895
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001896 if (addToken) {
1897 mTokenMap.put(attrs.token, token);
1898 mTokenList.add(token);
1899 }
1900 win.attach();
1901 mWindowMap.put(client.asBinder(), win);
1902
1903 if (attrs.type == TYPE_APPLICATION_STARTING &&
1904 token.appWindowToken != null) {
1905 token.appWindowToken.startingWindow = win;
1906 }
1907
1908 boolean imMayMove = true;
Romain Guy06882f82009-06-10 13:36:04 -07001909
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001910 if (attrs.type == TYPE_INPUT_METHOD) {
1911 mInputMethodWindow = win;
1912 addInputMethodWindowToListLocked(win);
1913 imMayMove = false;
1914 } else if (attrs.type == TYPE_INPUT_METHOD_DIALOG) {
1915 mInputMethodDialogs.add(win);
1916 addWindowToListInOrderLocked(win, true);
1917 adjustInputMethodDialogsLocked();
1918 imMayMove = false;
1919 } else {
1920 addWindowToListInOrderLocked(win, true);
Dianne Hackborn19382ac2009-09-11 21:13:37 -07001921 if (attrs.type == TYPE_WALLPAPER) {
1922 mLastWallpaperTimeoutTime = 0;
1923 adjustWallpaperWindowsLocked();
1924 } else if ((attrs.flags&FLAG_SHOW_WALLPAPER) != 0) {
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07001925 adjustWallpaperWindowsLocked();
1926 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001927 }
Romain Guy06882f82009-06-10 13:36:04 -07001928
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001929 win.mEnterAnimationPending = true;
Romain Guy06882f82009-06-10 13:36:04 -07001930
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001931 mPolicy.getContentInsetHintLw(attrs, outContentInsets);
Romain Guy06882f82009-06-10 13:36:04 -07001932
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001933 if (mInTouchMode) {
1934 res |= WindowManagerImpl.ADD_FLAG_IN_TOUCH_MODE;
1935 }
1936 if (win == null || win.mAppToken == null || !win.mAppToken.clientHidden) {
1937 res |= WindowManagerImpl.ADD_FLAG_APP_VISIBLE;
1938 }
Romain Guy06882f82009-06-10 13:36:04 -07001939
The Android Open Source Projectc474dec2009-03-04 09:49:09 -08001940 boolean focusChanged = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001941 if (win.canReceiveKeys()) {
The Android Open Source Projectc474dec2009-03-04 09:49:09 -08001942 if ((focusChanged=updateFocusedWindowLocked(UPDATE_FOCUS_WILL_ASSIGN_LAYERS))
1943 == true) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001944 imMayMove = false;
1945 }
1946 }
Romain Guy06882f82009-06-10 13:36:04 -07001947
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001948 if (imMayMove) {
Romain Guy06882f82009-06-10 13:36:04 -07001949 moveInputMethodWindowsIfNeededLocked(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001950 }
Romain Guy06882f82009-06-10 13:36:04 -07001951
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001952 assignLayersLocked();
1953 // Don't do layout here, the window must call
1954 // relayout to be displayed, so we'll do it there.
Romain Guy06882f82009-06-10 13:36:04 -07001955
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001956 //dump();
1957
The Android Open Source Projectc474dec2009-03-04 09:49:09 -08001958 if (focusChanged) {
1959 if (mCurrentFocus != null) {
1960 mKeyWaiter.handleNewWindowLocked(mCurrentFocus);
1961 }
1962 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001963 if (localLOGV) Log.v(
1964 TAG, "New client " + client.asBinder()
1965 + ": window=" + win);
1966 }
1967
1968 // sendNewConfiguration() checks caller permissions so we must call it with
1969 // privilege. updateOrientationFromAppTokens() clears and resets the caller
1970 // identity anyway, so it's safe to just clear & restore around this whole
1971 // block.
1972 final long origId = Binder.clearCallingIdentity();
1973 if (reportNewConfig) {
1974 sendNewConfiguration();
1975 } else {
1976 // Update Orientation after adding a window, only if the window needs to be
1977 // displayed right away
1978 if (win.isVisibleOrAdding()) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07001979 if (updateOrientationFromAppTokensUnchecked(null, null) != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001980 sendNewConfiguration();
1981 }
1982 }
1983 }
1984 Binder.restoreCallingIdentity(origId);
Romain Guy06882f82009-06-10 13:36:04 -07001985
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001986 return res;
1987 }
Romain Guy06882f82009-06-10 13:36:04 -07001988
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001989 public void removeWindow(Session session, IWindow client) {
1990 synchronized(mWindowMap) {
1991 WindowState win = windowForClientLocked(session, client);
1992 if (win == null) {
1993 return;
1994 }
1995 removeWindowLocked(session, win);
1996 }
1997 }
Romain Guy06882f82009-06-10 13:36:04 -07001998
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001999 public void removeWindowLocked(Session session, WindowState win) {
2000
2001 if (localLOGV || DEBUG_FOCUS) Log.v(
2002 TAG, "Remove " + win + " client="
2003 + Integer.toHexString(System.identityHashCode(
2004 win.mClient.asBinder()))
2005 + ", surface=" + win.mSurface);
2006
2007 final long origId = Binder.clearCallingIdentity();
Romain Guy06882f82009-06-10 13:36:04 -07002008
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002009 if (DEBUG_APP_TRANSITIONS) Log.v(
2010 TAG, "Remove " + win + ": mSurface=" + win.mSurface
2011 + " mExiting=" + win.mExiting
2012 + " isAnimating=" + win.isAnimating()
2013 + " app-animation="
2014 + (win.mAppToken != null ? win.mAppToken.animation : null)
2015 + " inPendingTransaction="
2016 + (win.mAppToken != null ? win.mAppToken.inPendingTransaction : false)
2017 + " mDisplayFrozen=" + mDisplayFrozen);
2018 // Visibility of the removed window. Will be used later to update orientation later on.
2019 boolean wasVisible = false;
2020 // First, see if we need to run an animation. If we do, we have
2021 // to hold off on removing the window until the animation is done.
2022 // If the display is frozen, just remove immediately, since the
2023 // animation wouldn't be seen.
2024 if (win.mSurface != null && !mDisplayFrozen) {
2025 // If we are not currently running the exit animation, we
2026 // need to see about starting one.
2027 if (wasVisible=win.isWinVisibleLw()) {
Romain Guy06882f82009-06-10 13:36:04 -07002028
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002029 int transit = WindowManagerPolicy.TRANSIT_EXIT;
2030 if (win.getAttrs().type == TYPE_APPLICATION_STARTING) {
2031 transit = WindowManagerPolicy.TRANSIT_PREVIEW_DONE;
2032 }
2033 // Try starting an animation.
2034 if (applyAnimationLocked(win, transit, false)) {
2035 win.mExiting = true;
2036 }
2037 }
2038 if (win.mExiting || win.isAnimating()) {
2039 // The exit animation is running... wait for it!
2040 //Log.i(TAG, "*** Running exit animation...");
2041 win.mExiting = true;
2042 win.mRemoveOnExit = true;
2043 mLayoutNeeded = true;
2044 updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES);
2045 performLayoutAndPlaceSurfacesLocked();
2046 if (win.mAppToken != null) {
2047 win.mAppToken.updateReportedVisibilityLocked();
2048 }
2049 //dump();
2050 Binder.restoreCallingIdentity(origId);
2051 return;
2052 }
2053 }
2054
2055 removeWindowInnerLocked(session, win);
2056 // Removing a visible window will effect the computed orientation
2057 // So just update orientation if needed.
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07002058 if (wasVisible && computeForcedAppOrientationLocked()
2059 != mForcedAppOrientation) {
2060 mH.sendMessage(mH.obtainMessage(H.COMPUTE_AND_SEND_NEW_CONFIGURATION));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002061 }
2062 updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL);
2063 Binder.restoreCallingIdentity(origId);
2064 }
Romain Guy06882f82009-06-10 13:36:04 -07002065
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002066 private void removeWindowInnerLocked(Session session, WindowState win) {
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -07002067 mKeyWaiter.finishedKey(session, win.mClient, true,
2068 KeyWaiter.RETURN_NOTHING);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002069 mKeyWaiter.releasePendingPointerLocked(win.mSession);
2070 mKeyWaiter.releasePendingTrackballLocked(win.mSession);
Romain Guy06882f82009-06-10 13:36:04 -07002071
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002072 win.mRemoved = true;
Romain Guy06882f82009-06-10 13:36:04 -07002073
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002074 if (mInputMethodTarget == win) {
2075 moveInputMethodWindowsIfNeededLocked(false);
2076 }
Romain Guy06882f82009-06-10 13:36:04 -07002077
Dianne Hackbornbdd52b22009-09-02 21:46:19 -07002078 if (false) {
2079 RuntimeException e = new RuntimeException("here");
2080 e.fillInStackTrace();
2081 Log.w(TAG, "Removing window " + win, e);
2082 }
2083
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002084 mPolicy.removeWindowLw(win);
2085 win.removeLocked();
2086
2087 mWindowMap.remove(win.mClient.asBinder());
2088 mWindows.remove(win);
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07002089 if (DEBUG_WINDOW_MOVEMENT) Log.v(TAG, "Final remove of window: " + win);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002090
2091 if (mInputMethodWindow == win) {
2092 mInputMethodWindow = null;
2093 } else if (win.mAttrs.type == TYPE_INPUT_METHOD_DIALOG) {
2094 mInputMethodDialogs.remove(win);
2095 }
Romain Guy06882f82009-06-10 13:36:04 -07002096
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002097 final WindowToken token = win.mToken;
2098 final AppWindowToken atoken = win.mAppToken;
2099 token.windows.remove(win);
2100 if (atoken != null) {
2101 atoken.allAppWindows.remove(win);
2102 }
2103 if (localLOGV) Log.v(
2104 TAG, "**** Removing window " + win + ": count="
2105 + token.windows.size());
2106 if (token.windows.size() == 0) {
2107 if (!token.explicit) {
2108 mTokenMap.remove(token.token);
2109 mTokenList.remove(token);
2110 } else if (atoken != null) {
2111 atoken.firstWindowDrawn = false;
2112 }
2113 }
2114
2115 if (atoken != null) {
2116 if (atoken.startingWindow == win) {
2117 atoken.startingWindow = null;
2118 } else if (atoken.allAppWindows.size() == 0 && atoken.startingData != null) {
2119 // If this is the last window and we had requested a starting
2120 // transition window, well there is no point now.
2121 atoken.startingData = null;
2122 } else if (atoken.allAppWindows.size() == 1 && atoken.startingView != null) {
2123 // If this is the last window except for a starting transition
2124 // window, we need to get rid of the starting transition.
2125 if (DEBUG_STARTING_WINDOW) {
2126 Log.v(TAG, "Schedule remove starting " + token
2127 + ": no more real windows");
2128 }
2129 Message m = mH.obtainMessage(H.REMOVE_STARTING, atoken);
2130 mH.sendMessage(m);
2131 }
2132 }
Romain Guy06882f82009-06-10 13:36:04 -07002133
Dianne Hackborn19382ac2009-09-11 21:13:37 -07002134 if (win.mAttrs.type == TYPE_WALLPAPER) {
2135 mLastWallpaperTimeoutTime = 0;
2136 adjustWallpaperWindowsLocked();
2137 } else if ((win.mAttrs.flags&FLAG_SHOW_WALLPAPER) != 0) {
Dianne Hackborne9e9bca2009-08-18 15:08:22 -07002138 adjustWallpaperWindowsLocked();
2139 }
2140
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002141 if (!mInLayout) {
2142 assignLayersLocked();
2143 mLayoutNeeded = true;
2144 performLayoutAndPlaceSurfacesLocked();
2145 if (win.mAppToken != null) {
2146 win.mAppToken.updateReportedVisibilityLocked();
2147 }
2148 }
2149 }
2150
2151 private void setTransparentRegionWindow(Session session, IWindow client, Region region) {
2152 long origId = Binder.clearCallingIdentity();
2153 try {
2154 synchronized (mWindowMap) {
2155 WindowState w = windowForClientLocked(session, client);
2156 if ((w != null) && (w.mSurface != null)) {
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07002157 if (SHOW_TRANSACTIONS) Log.i(TAG, ">>> OPEN TRANSACTION");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002158 Surface.openTransaction();
2159 try {
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07002160 if (SHOW_TRANSACTIONS) Log.i(
2161 TAG, " SURFACE " + w.mSurface
2162 + ": transparentRegionHint=" + region);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002163 w.mSurface.setTransparentRegionHint(region);
2164 } finally {
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07002165 if (SHOW_TRANSACTIONS) Log.i(TAG, "<<< CLOSE TRANSACTION");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002166 Surface.closeTransaction();
2167 }
2168 }
2169 }
2170 } finally {
2171 Binder.restoreCallingIdentity(origId);
2172 }
2173 }
2174
2175 void setInsetsWindow(Session session, IWindow client,
Romain Guy06882f82009-06-10 13:36:04 -07002176 int touchableInsets, Rect contentInsets,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002177 Rect visibleInsets) {
2178 long origId = Binder.clearCallingIdentity();
2179 try {
2180 synchronized (mWindowMap) {
2181 WindowState w = windowForClientLocked(session, client);
2182 if (w != null) {
2183 w.mGivenInsetsPending = false;
2184 w.mGivenContentInsets.set(contentInsets);
2185 w.mGivenVisibleInsets.set(visibleInsets);
2186 w.mTouchableInsets = touchableInsets;
2187 mLayoutNeeded = true;
2188 performLayoutAndPlaceSurfacesLocked();
2189 }
2190 }
2191 } finally {
2192 Binder.restoreCallingIdentity(origId);
2193 }
2194 }
Romain Guy06882f82009-06-10 13:36:04 -07002195
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002196 public void getWindowDisplayFrame(Session session, IWindow client,
2197 Rect outDisplayFrame) {
2198 synchronized(mWindowMap) {
2199 WindowState win = windowForClientLocked(session, client);
2200 if (win == null) {
2201 outDisplayFrame.setEmpty();
2202 return;
2203 }
2204 outDisplayFrame.set(win.mDisplayFrame);
2205 }
2206 }
2207
Marco Nelissenbf6956b2009-11-09 15:21:13 -08002208 public void setWindowWallpaperPositionLocked(WindowState window, float x, float y,
2209 float xStep, float yStep) {
Dianne Hackbornc8a0a752009-08-10 23:05:49 -07002210 if (window.mWallpaperX != x || window.mWallpaperY != y) {
2211 window.mWallpaperX = x;
2212 window.mWallpaperY = y;
Marco Nelissenbf6956b2009-11-09 15:21:13 -08002213 window.mWallpaperXStep = xStep;
2214 window.mWallpaperYStep = yStep;
Dianne Hackborn73e92b42009-10-15 14:29:19 -07002215 if (updateWallpaperOffsetLocked(window, true)) {
2216 performLayoutAndPlaceSurfacesLocked();
Dianne Hackbornc8a0a752009-08-10 23:05:49 -07002217 }
2218 }
2219 }
2220
Dianne Hackborn75804932009-10-20 20:15:20 -07002221 void wallpaperCommandComplete(IBinder window, Bundle result) {
2222 synchronized (mWindowMap) {
2223 if (mWaitingOnWallpaper != null &&
2224 mWaitingOnWallpaper.mClient.asBinder() == window) {
2225 mWaitingOnWallpaper = null;
2226 mWindowMap.notifyAll();
2227 }
2228 }
2229 }
2230
2231 public Bundle sendWindowWallpaperCommandLocked(WindowState window,
2232 String action, int x, int y, int z, Bundle extras, boolean sync) {
2233 if (window == mWallpaperTarget || window == mLowerWallpaperTarget
2234 || window == mUpperWallpaperTarget) {
2235 boolean doWait = sync;
2236 int curTokenIndex = mWallpaperTokens.size();
2237 while (curTokenIndex > 0) {
2238 curTokenIndex--;
2239 WindowToken token = mWallpaperTokens.get(curTokenIndex);
2240 int curWallpaperIndex = token.windows.size();
2241 while (curWallpaperIndex > 0) {
2242 curWallpaperIndex--;
2243 WindowState wallpaper = token.windows.get(curWallpaperIndex);
2244 try {
2245 wallpaper.mClient.dispatchWallpaperCommand(action,
2246 x, y, z, extras, sync);
2247 // We only want to be synchronous with one wallpaper.
2248 sync = false;
2249 } catch (RemoteException e) {
2250 }
2251 }
2252 }
2253
2254 if (doWait) {
2255 // XXX Need to wait for result.
2256 }
2257 }
2258
2259 return null;
2260 }
2261
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002262 public int relayoutWindow(Session session, IWindow client,
2263 WindowManager.LayoutParams attrs, int requestedWidth,
2264 int requestedHeight, int viewVisibility, boolean insetsPending,
2265 Rect outFrame, Rect outContentInsets, Rect outVisibleInsets,
2266 Surface outSurface) {
2267 boolean displayed = false;
2268 boolean inTouchMode;
2269 Configuration newConfig = null;
2270 long origId = Binder.clearCallingIdentity();
Romain Guy06882f82009-06-10 13:36:04 -07002271
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002272 synchronized(mWindowMap) {
2273 WindowState win = windowForClientLocked(session, client);
2274 if (win == null) {
2275 return 0;
2276 }
2277 win.mRequestedWidth = requestedWidth;
2278 win.mRequestedHeight = requestedHeight;
2279
2280 if (attrs != null) {
2281 mPolicy.adjustWindowParamsLw(attrs);
2282 }
Romain Guy06882f82009-06-10 13:36:04 -07002283
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002284 int attrChanges = 0;
2285 int flagChanges = 0;
2286 if (attrs != null) {
2287 flagChanges = win.mAttrs.flags ^= attrs.flags;
2288 attrChanges = win.mAttrs.copyFrom(attrs);
2289 }
2290
2291 if (localLOGV) Log.v(
2292 TAG, "Relayout given client " + client.asBinder()
2293 + " (" + win.mAttrs.getTitle() + ")");
2294
2295
2296 if ((attrChanges & WindowManager.LayoutParams.ALPHA_CHANGED) != 0) {
2297 win.mAlpha = attrs.alpha;
2298 }
2299
2300 final boolean scaledWindow =
2301 ((win.mAttrs.flags & WindowManager.LayoutParams.FLAG_SCALED) != 0);
2302
2303 if (scaledWindow) {
2304 // requested{Width|Height} Surface's physical size
2305 // attrs.{width|height} Size on screen
2306 win.mHScale = (attrs.width != requestedWidth) ?
2307 (attrs.width / (float)requestedWidth) : 1.0f;
2308 win.mVScale = (attrs.height != requestedHeight) ?
2309 (attrs.height / (float)requestedHeight) : 1.0f;
2310 }
2311
2312 boolean imMayMove = (flagChanges&(
2313 WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM |
2314 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE)) != 0;
Romain Guy06882f82009-06-10 13:36:04 -07002315
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002316 boolean focusMayChange = win.mViewVisibility != viewVisibility
2317 || ((flagChanges&WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) != 0)
2318 || (!win.mRelayoutCalled);
Romain Guy06882f82009-06-10 13:36:04 -07002319
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07002320 boolean wallpaperMayMove = win.mViewVisibility != viewVisibility
2321 && (win.mAttrs.flags & FLAG_SHOW_WALLPAPER) != 0;
2322
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002323 win.mRelayoutCalled = true;
2324 final int oldVisibility = win.mViewVisibility;
2325 win.mViewVisibility = viewVisibility;
2326 if (viewVisibility == View.VISIBLE &&
2327 (win.mAppToken == null || !win.mAppToken.clientHidden)) {
2328 displayed = !win.isVisibleLw();
2329 if (win.mExiting) {
2330 win.mExiting = false;
2331 win.mAnimation = null;
2332 }
2333 if (win.mDestroying) {
2334 win.mDestroying = false;
2335 mDestroySurface.remove(win);
2336 }
2337 if (oldVisibility == View.GONE) {
2338 win.mEnterAnimationPending = true;
2339 }
2340 if (displayed && win.mSurface != null && !win.mDrawPending
2341 && !win.mCommitDrawPending && !mDisplayFrozen) {
2342 applyEnterAnimationLocked(win);
2343 }
Dianne Hackborn93e462b2009-09-15 22:50:40 -07002344 if (displayed && (win.mAttrs.flags
2345 & WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON) != 0) {
2346 win.mTurnOnScreen = true;
2347 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002348 if ((attrChanges&WindowManager.LayoutParams.FORMAT_CHANGED) != 0) {
2349 // To change the format, we need to re-build the surface.
2350 win.destroySurfaceLocked();
2351 displayed = true;
2352 }
2353 try {
2354 Surface surface = win.createSurfaceLocked();
2355 if (surface != null) {
2356 outSurface.copyFrom(surface);
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07002357 win.mReportDestroySurface = false;
2358 win.mSurfacePendingDestroy = false;
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07002359 if (SHOW_TRANSACTIONS) Log.i(TAG,
2360 " OUT SURFACE " + outSurface + ": copied");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002361 } else {
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07002362 // For some reason there isn't a surface. Clear the
2363 // caller's object so they see the same state.
2364 outSurface.release();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002365 }
2366 } catch (Exception e) {
2367 Log.w(TAG, "Exception thrown when creating surface for client "
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07002368 + client + " (" + win.mAttrs.getTitle() + ")",
2369 e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002370 Binder.restoreCallingIdentity(origId);
2371 return 0;
2372 }
2373 if (displayed) {
2374 focusMayChange = true;
2375 }
2376 if (win.mAttrs.type == TYPE_INPUT_METHOD
2377 && mInputMethodWindow == null) {
2378 mInputMethodWindow = win;
2379 imMayMove = true;
2380 }
2381 } else {
2382 win.mEnterAnimationPending = false;
2383 if (win.mSurface != null) {
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07002384 if (DEBUG_VISIBILITY) Log.i(TAG, "Relayout invis " + win
2385 + ": mExiting=" + win.mExiting
2386 + " mSurfacePendingDestroy=" + win.mSurfacePendingDestroy);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002387 // If we are not currently running the exit animation, we
2388 // need to see about starting one.
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07002389 if (!win.mExiting || win.mSurfacePendingDestroy) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002390 // Try starting an animation; if there isn't one, we
2391 // can destroy the surface right away.
2392 int transit = WindowManagerPolicy.TRANSIT_EXIT;
2393 if (win.getAttrs().type == TYPE_APPLICATION_STARTING) {
2394 transit = WindowManagerPolicy.TRANSIT_PREVIEW_DONE;
2395 }
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07002396 if (!win.mSurfacePendingDestroy && win.isWinVisibleLw() &&
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002397 applyAnimationLocked(win, transit, false)) {
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07002398 focusMayChange = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002399 win.mExiting = true;
2400 mKeyWaiter.finishedKey(session, client, true,
2401 KeyWaiter.RETURN_NOTHING);
2402 } else if (win.isAnimating()) {
2403 // Currently in a hide animation... turn this into
2404 // an exit.
2405 win.mExiting = true;
Dianne Hackborn6136b7e2009-09-18 01:53:49 -07002406 } else if (win == mWallpaperTarget) {
2407 // If the wallpaper is currently behind this
2408 // window, we need to change both of them inside
2409 // of a transaction to avoid artifacts.
2410 win.mExiting = true;
2411 win.mAnimating = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002412 } else {
2413 if (mInputMethodWindow == win) {
2414 mInputMethodWindow = null;
2415 }
2416 win.destroySurfaceLocked();
2417 }
2418 }
2419 }
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07002420
2421 if (win.mSurface == null || (win.getAttrs().flags
2422 & WindowManager.LayoutParams.FLAG_KEEP_SURFACE_WHILE_ANIMATING) == 0
2423 || win.mSurfacePendingDestroy) {
2424 // We are being called from a local process, which
2425 // means outSurface holds its current surface. Ensure the
2426 // surface object is cleared, but we don't want it actually
2427 // destroyed at this point.
2428 win.mSurfacePendingDestroy = false;
2429 outSurface.release();
2430 if (DEBUG_VISIBILITY) Log.i(TAG, "Releasing surface in: " + win);
2431 } else if (win.mSurface != null) {
2432 if (DEBUG_VISIBILITY) Log.i(TAG,
2433 "Keeping surface, will report destroy: " + win);
2434 win.mReportDestroySurface = true;
2435 outSurface.copyFrom(win.mSurface);
2436 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002437 }
2438
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002439 if (focusMayChange) {
2440 //System.out.println("Focus may change: " + win.mAttrs.getTitle());
2441 if (updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002442 imMayMove = false;
2443 }
2444 //System.out.println("Relayout " + win + ": focus=" + mCurrentFocus);
2445 }
Romain Guy06882f82009-06-10 13:36:04 -07002446
The Android Open Source Projectc474dec2009-03-04 09:49:09 -08002447 // updateFocusedWindowLocked() already assigned layers so we only need to
2448 // reassign them at this point if the IM window state gets shuffled
2449 boolean assignLayers = false;
Romain Guy06882f82009-06-10 13:36:04 -07002450
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002451 if (imMayMove) {
Dianne Hackborn8abd5f02009-11-20 18:09:03 -08002452 if (moveInputMethodWindowsIfNeededLocked(false) || displayed) {
2453 // Little hack here -- we -should- be able to rely on the
2454 // function to return true if the IME has moved and needs
2455 // its layer recomputed. However, if the IME was hidden
2456 // and isn't actually moved in the list, its layer may be
2457 // out of data so we make sure to recompute it.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002458 assignLayers = true;
2459 }
2460 }
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07002461 if (wallpaperMayMove) {
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07002462 if ((adjustWallpaperWindowsLocked()&ADJUST_WALLPAPER_LAYERS_CHANGED) != 0) {
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07002463 assignLayers = true;
2464 }
2465 }
Romain Guy06882f82009-06-10 13:36:04 -07002466
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002467 mLayoutNeeded = true;
2468 win.mGivenInsetsPending = insetsPending;
2469 if (assignLayers) {
2470 assignLayersLocked();
2471 }
The Android Open Source Project10592532009-03-18 17:39:46 -07002472 newConfig = updateOrientationFromAppTokensLocked(null, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002473 performLayoutAndPlaceSurfacesLocked();
Dianne Hackborn284ac932009-08-28 10:34:25 -07002474 if (displayed && win.mIsWallpaper) {
2475 updateWallpaperOffsetLocked(win, mDisplay.getWidth(),
Dianne Hackborn19382ac2009-09-11 21:13:37 -07002476 mDisplay.getHeight(), false);
Dianne Hackborn284ac932009-08-28 10:34:25 -07002477 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002478 if (win.mAppToken != null) {
2479 win.mAppToken.updateReportedVisibilityLocked();
2480 }
2481 outFrame.set(win.mFrame);
2482 outContentInsets.set(win.mContentInsets);
2483 outVisibleInsets.set(win.mVisibleInsets);
2484 if (localLOGV) Log.v(
2485 TAG, "Relayout given client " + client.asBinder()
Romain Guy06882f82009-06-10 13:36:04 -07002486 + ", requestedWidth=" + requestedWidth
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002487 + ", requestedHeight=" + requestedHeight
2488 + ", viewVisibility=" + viewVisibility
2489 + "\nRelayout returning frame=" + outFrame
2490 + ", surface=" + outSurface);
2491
2492 if (localLOGV || DEBUG_FOCUS) Log.v(
2493 TAG, "Relayout of " + win + ": focusMayChange=" + focusMayChange);
2494
2495 inTouchMode = mInTouchMode;
2496 }
2497
2498 if (newConfig != null) {
2499 sendNewConfiguration();
2500 }
Romain Guy06882f82009-06-10 13:36:04 -07002501
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002502 Binder.restoreCallingIdentity(origId);
Romain Guy06882f82009-06-10 13:36:04 -07002503
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002504 return (inTouchMode ? WindowManagerImpl.RELAYOUT_IN_TOUCH_MODE : 0)
2505 | (displayed ? WindowManagerImpl.RELAYOUT_FIRST_TIME : 0);
2506 }
2507
2508 public void finishDrawingWindow(Session session, IWindow client) {
2509 final long origId = Binder.clearCallingIdentity();
2510 synchronized(mWindowMap) {
2511 WindowState win = windowForClientLocked(session, client);
2512 if (win != null && win.finishDrawingLocked()) {
Dianne Hackborn759a39e2009-08-09 17:20:27 -07002513 if ((win.mAttrs.flags&FLAG_SHOW_WALLPAPER) != 0) {
2514 adjustWallpaperWindowsLocked();
2515 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002516 mLayoutNeeded = true;
2517 performLayoutAndPlaceSurfacesLocked();
2518 }
2519 }
2520 Binder.restoreCallingIdentity(origId);
2521 }
2522
2523 private AttributeCache.Entry getCachedAnimations(WindowManager.LayoutParams lp) {
2524 if (DEBUG_ANIM) Log.v(TAG, "Loading animations: params package="
2525 + (lp != null ? lp.packageName : null)
2526 + " resId=0x" + (lp != null ? Integer.toHexString(lp.windowAnimations) : null));
2527 if (lp != null && lp.windowAnimations != 0) {
2528 // If this is a system resource, don't try to load it from the
2529 // application resources. It is nice to avoid loading application
2530 // resources if we can.
2531 String packageName = lp.packageName != null ? lp.packageName : "android";
2532 int resId = lp.windowAnimations;
2533 if ((resId&0xFF000000) == 0x01000000) {
2534 packageName = "android";
2535 }
2536 if (DEBUG_ANIM) Log.v(TAG, "Loading animations: picked package="
2537 + packageName);
2538 return AttributeCache.instance().get(packageName, resId,
2539 com.android.internal.R.styleable.WindowAnimation);
2540 }
2541 return null;
2542 }
Romain Guy06882f82009-06-10 13:36:04 -07002543
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07002544 private AttributeCache.Entry getCachedAnimations(String packageName, int resId) {
2545 if (DEBUG_ANIM) Log.v(TAG, "Loading animations: params package="
2546 + packageName + " resId=0x" + Integer.toHexString(resId));
2547 if (packageName != null) {
2548 if ((resId&0xFF000000) == 0x01000000) {
2549 packageName = "android";
2550 }
2551 if (DEBUG_ANIM) Log.v(TAG, "Loading animations: picked package="
2552 + packageName);
2553 return AttributeCache.instance().get(packageName, resId,
2554 com.android.internal.R.styleable.WindowAnimation);
2555 }
2556 return null;
2557 }
2558
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002559 private void applyEnterAnimationLocked(WindowState win) {
2560 int transit = WindowManagerPolicy.TRANSIT_SHOW;
2561 if (win.mEnterAnimationPending) {
2562 win.mEnterAnimationPending = false;
2563 transit = WindowManagerPolicy.TRANSIT_ENTER;
2564 }
2565
2566 applyAnimationLocked(win, transit, true);
2567 }
2568
2569 private boolean applyAnimationLocked(WindowState win,
2570 int transit, boolean isEntrance) {
2571 if (win.mLocalAnimating && win.mAnimationIsEntrance == isEntrance) {
2572 // If we are trying to apply an animation, but already running
2573 // an animation of the same type, then just leave that one alone.
2574 return true;
2575 }
Romain Guy06882f82009-06-10 13:36:04 -07002576
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002577 // Only apply an animation if the display isn't frozen. If it is
2578 // frozen, there is no reason to animate and it can cause strange
2579 // artifacts when we unfreeze the display if some different animation
2580 // is running.
2581 if (!mDisplayFrozen) {
2582 int anim = mPolicy.selectAnimationLw(win, transit);
2583 int attr = -1;
2584 Animation a = null;
2585 if (anim != 0) {
2586 a = AnimationUtils.loadAnimation(mContext, anim);
2587 } else {
2588 switch (transit) {
2589 case WindowManagerPolicy.TRANSIT_ENTER:
2590 attr = com.android.internal.R.styleable.WindowAnimation_windowEnterAnimation;
2591 break;
2592 case WindowManagerPolicy.TRANSIT_EXIT:
2593 attr = com.android.internal.R.styleable.WindowAnimation_windowExitAnimation;
2594 break;
2595 case WindowManagerPolicy.TRANSIT_SHOW:
2596 attr = com.android.internal.R.styleable.WindowAnimation_windowShowAnimation;
2597 break;
2598 case WindowManagerPolicy.TRANSIT_HIDE:
2599 attr = com.android.internal.R.styleable.WindowAnimation_windowHideAnimation;
2600 break;
2601 }
2602 if (attr >= 0) {
2603 a = loadAnimation(win.mAttrs, attr);
2604 }
2605 }
2606 if (DEBUG_ANIM) Log.v(TAG, "applyAnimation: win=" + win
2607 + " anim=" + anim + " attr=0x" + Integer.toHexString(attr)
2608 + " mAnimation=" + win.mAnimation
2609 + " isEntrance=" + isEntrance);
2610 if (a != null) {
2611 if (DEBUG_ANIM) {
2612 RuntimeException e = new RuntimeException();
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07002613 if (!HIDE_STACK_CRAWLS) e.fillInStackTrace();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002614 Log.v(TAG, "Loaded animation " + a + " for " + win, e);
2615 }
2616 win.setAnimation(a);
2617 win.mAnimationIsEntrance = isEntrance;
2618 }
2619 } else {
2620 win.clearAnimation();
2621 }
2622
2623 return win.mAnimation != null;
2624 }
2625
2626 private Animation loadAnimation(WindowManager.LayoutParams lp, int animAttr) {
2627 int anim = 0;
2628 Context context = mContext;
2629 if (animAttr >= 0) {
2630 AttributeCache.Entry ent = getCachedAnimations(lp);
2631 if (ent != null) {
2632 context = ent.context;
2633 anim = ent.array.getResourceId(animAttr, 0);
2634 }
2635 }
2636 if (anim != 0) {
2637 return AnimationUtils.loadAnimation(context, anim);
2638 }
2639 return null;
2640 }
Romain Guy06882f82009-06-10 13:36:04 -07002641
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07002642 private Animation loadAnimation(String packageName, int resId) {
2643 int anim = 0;
2644 Context context = mContext;
2645 if (resId >= 0) {
2646 AttributeCache.Entry ent = getCachedAnimations(packageName, resId);
2647 if (ent != null) {
2648 context = ent.context;
2649 anim = resId;
2650 }
2651 }
2652 if (anim != 0) {
2653 return AnimationUtils.loadAnimation(context, anim);
2654 }
2655 return null;
2656 }
2657
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002658 private boolean applyAnimationLocked(AppWindowToken wtoken,
2659 WindowManager.LayoutParams lp, int transit, boolean enter) {
2660 // Only apply an animation if the display isn't frozen. If it is
2661 // frozen, there is no reason to animate and it can cause strange
2662 // artifacts when we unfreeze the display if some different animation
2663 // is running.
2664 if (!mDisplayFrozen) {
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -07002665 Animation a;
Mitsuru Oshimad2967e22009-07-20 14:01:43 -07002666 if (lp != null && (lp.flags & FLAG_COMPATIBLE_WINDOW) != 0) {
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -07002667 a = new FadeInOutAnimation(enter);
2668 if (DEBUG_ANIM) Log.v(TAG,
2669 "applying FadeInOutAnimation for a window in compatibility mode");
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07002670 } else if (mNextAppTransitionPackage != null) {
2671 a = loadAnimation(mNextAppTransitionPackage, enter ?
2672 mNextAppTransitionEnter : mNextAppTransitionExit);
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -07002673 } else {
2674 int animAttr = 0;
2675 switch (transit) {
2676 case WindowManagerPolicy.TRANSIT_ACTIVITY_OPEN:
2677 animAttr = enter
2678 ? com.android.internal.R.styleable.WindowAnimation_activityOpenEnterAnimation
2679 : com.android.internal.R.styleable.WindowAnimation_activityOpenExitAnimation;
2680 break;
2681 case WindowManagerPolicy.TRANSIT_ACTIVITY_CLOSE:
2682 animAttr = enter
2683 ? com.android.internal.R.styleable.WindowAnimation_activityCloseEnterAnimation
2684 : com.android.internal.R.styleable.WindowAnimation_activityCloseExitAnimation;
2685 break;
2686 case WindowManagerPolicy.TRANSIT_TASK_OPEN:
2687 animAttr = enter
2688 ? com.android.internal.R.styleable.WindowAnimation_taskOpenEnterAnimation
2689 : com.android.internal.R.styleable.WindowAnimation_taskOpenExitAnimation;
2690 break;
2691 case WindowManagerPolicy.TRANSIT_TASK_CLOSE:
2692 animAttr = enter
2693 ? com.android.internal.R.styleable.WindowAnimation_taskCloseEnterAnimation
2694 : com.android.internal.R.styleable.WindowAnimation_taskCloseExitAnimation;
2695 break;
2696 case WindowManagerPolicy.TRANSIT_TASK_TO_FRONT:
2697 animAttr = enter
2698 ? com.android.internal.R.styleable.WindowAnimation_taskToFrontEnterAnimation
2699 : com.android.internal.R.styleable.WindowAnimation_taskToFrontExitAnimation;
2700 break;
2701 case WindowManagerPolicy.TRANSIT_TASK_TO_BACK:
2702 animAttr = enter
Mitsuru Oshima5a2b91d2009-07-16 16:30:02 -07002703 ? com.android.internal.R.styleable.WindowAnimation_taskToBackEnterAnimation
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -07002704 : com.android.internal.R.styleable.WindowAnimation_taskToBackExitAnimation;
2705 break;
Dianne Hackborn25994b42009-09-04 14:21:19 -07002706 case WindowManagerPolicy.TRANSIT_WALLPAPER_OPEN:
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07002707 animAttr = enter
Dianne Hackborn25994b42009-09-04 14:21:19 -07002708 ? com.android.internal.R.styleable.WindowAnimation_wallpaperOpenEnterAnimation
2709 : com.android.internal.R.styleable.WindowAnimation_wallpaperOpenExitAnimation;
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07002710 break;
Dianne Hackborn25994b42009-09-04 14:21:19 -07002711 case WindowManagerPolicy.TRANSIT_WALLPAPER_CLOSE:
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07002712 animAttr = enter
Dianne Hackborn25994b42009-09-04 14:21:19 -07002713 ? com.android.internal.R.styleable.WindowAnimation_wallpaperCloseEnterAnimation
2714 : com.android.internal.R.styleable.WindowAnimation_wallpaperCloseExitAnimation;
2715 break;
2716 case WindowManagerPolicy.TRANSIT_WALLPAPER_INTRA_OPEN:
2717 animAttr = enter
2718 ? com.android.internal.R.styleable.WindowAnimation_wallpaperIntraOpenEnterAnimation
2719 : com.android.internal.R.styleable.WindowAnimation_wallpaperIntraOpenExitAnimation;
2720 break;
2721 case WindowManagerPolicy.TRANSIT_WALLPAPER_INTRA_CLOSE:
2722 animAttr = enter
2723 ? com.android.internal.R.styleable.WindowAnimation_wallpaperIntraCloseEnterAnimation
2724 : com.android.internal.R.styleable.WindowAnimation_wallpaperIntraCloseExitAnimation;
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07002725 break;
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -07002726 }
Dianne Hackbornbfe319e2009-09-21 00:34:05 -07002727 a = animAttr != 0 ? loadAnimation(lp, animAttr) : null;
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -07002728 if (DEBUG_ANIM) Log.v(TAG, "applyAnimation: wtoken=" + wtoken
2729 + " anim=" + a
2730 + " animAttr=0x" + Integer.toHexString(animAttr)
2731 + " transit=" + transit);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002732 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002733 if (a != null) {
2734 if (DEBUG_ANIM) {
2735 RuntimeException e = new RuntimeException();
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07002736 if (!HIDE_STACK_CRAWLS) e.fillInStackTrace();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002737 Log.v(TAG, "Loaded animation " + a + " for " + wtoken, e);
2738 }
2739 wtoken.setAnimation(a);
2740 }
2741 } else {
2742 wtoken.clearAnimation();
2743 }
2744
2745 return wtoken.animation != null;
2746 }
2747
2748 // -------------------------------------------------------------
2749 // Application Window Tokens
2750 // -------------------------------------------------------------
2751
2752 public void validateAppTokens(List tokens) {
2753 int v = tokens.size()-1;
2754 int m = mAppTokens.size()-1;
2755 while (v >= 0 && m >= 0) {
2756 AppWindowToken wtoken = mAppTokens.get(m);
2757 if (wtoken.removed) {
2758 m--;
2759 continue;
2760 }
2761 if (tokens.get(v) != wtoken.token) {
2762 Log.w(TAG, "Tokens out of sync: external is " + tokens.get(v)
2763 + " @ " + v + ", internal is " + wtoken.token + " @ " + m);
2764 }
2765 v--;
2766 m--;
2767 }
2768 while (v >= 0) {
2769 Log.w(TAG, "External token not found: " + tokens.get(v) + " @ " + v);
2770 v--;
2771 }
2772 while (m >= 0) {
2773 AppWindowToken wtoken = mAppTokens.get(m);
2774 if (!wtoken.removed) {
2775 Log.w(TAG, "Invalid internal token: " + wtoken.token + " @ " + m);
2776 }
2777 m--;
2778 }
2779 }
2780
2781 boolean checkCallingPermission(String permission, String func) {
2782 // Quick check: if the calling permission is me, it's all okay.
2783 if (Binder.getCallingPid() == Process.myPid()) {
2784 return true;
2785 }
Romain Guy06882f82009-06-10 13:36:04 -07002786
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002787 if (mContext.checkCallingPermission(permission)
2788 == PackageManager.PERMISSION_GRANTED) {
2789 return true;
2790 }
2791 String msg = "Permission Denial: " + func + " from pid="
2792 + Binder.getCallingPid()
2793 + ", uid=" + Binder.getCallingUid()
2794 + " requires " + permission;
2795 Log.w(TAG, msg);
2796 return false;
2797 }
Romain Guy06882f82009-06-10 13:36:04 -07002798
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002799 AppWindowToken findAppWindowToken(IBinder token) {
2800 WindowToken wtoken = mTokenMap.get(token);
2801 if (wtoken == null) {
2802 return null;
2803 }
2804 return wtoken.appWindowToken;
2805 }
Romain Guy06882f82009-06-10 13:36:04 -07002806
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002807 public void addWindowToken(IBinder token, int type) {
2808 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
2809 "addWindowToken()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07002810 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002811 }
Romain Guy06882f82009-06-10 13:36:04 -07002812
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002813 synchronized(mWindowMap) {
2814 WindowToken wtoken = mTokenMap.get(token);
2815 if (wtoken != null) {
2816 Log.w(TAG, "Attempted to add existing input method token: " + token);
2817 return;
2818 }
2819 wtoken = new WindowToken(token, type, true);
2820 mTokenMap.put(token, wtoken);
2821 mTokenList.add(wtoken);
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07002822 if (type == TYPE_WALLPAPER) {
2823 mWallpaperTokens.add(wtoken);
2824 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002825 }
2826 }
Romain Guy06882f82009-06-10 13:36:04 -07002827
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002828 public void removeWindowToken(IBinder token) {
2829 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
2830 "removeWindowToken()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07002831 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002832 }
2833
2834 final long origId = Binder.clearCallingIdentity();
2835 synchronized(mWindowMap) {
2836 WindowToken wtoken = mTokenMap.remove(token);
2837 mTokenList.remove(wtoken);
2838 if (wtoken != null) {
2839 boolean delayed = false;
2840 if (!wtoken.hidden) {
2841 wtoken.hidden = true;
Romain Guy06882f82009-06-10 13:36:04 -07002842
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002843 final int N = wtoken.windows.size();
2844 boolean changed = false;
Romain Guy06882f82009-06-10 13:36:04 -07002845
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002846 for (int i=0; i<N; i++) {
2847 WindowState win = wtoken.windows.get(i);
2848
2849 if (win.isAnimating()) {
2850 delayed = true;
2851 }
Romain Guy06882f82009-06-10 13:36:04 -07002852
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002853 if (win.isVisibleNow()) {
2854 applyAnimationLocked(win,
2855 WindowManagerPolicy.TRANSIT_EXIT, false);
2856 mKeyWaiter.finishedKey(win.mSession, win.mClient, true,
2857 KeyWaiter.RETURN_NOTHING);
2858 changed = true;
2859 }
2860 }
2861
2862 if (changed) {
2863 mLayoutNeeded = true;
2864 performLayoutAndPlaceSurfacesLocked();
2865 updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL);
2866 }
Romain Guy06882f82009-06-10 13:36:04 -07002867
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002868 if (delayed) {
2869 mExitingTokens.add(wtoken);
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07002870 } else if (wtoken.windowType == TYPE_WALLPAPER) {
2871 mWallpaperTokens.remove(wtoken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002872 }
2873 }
Romain Guy06882f82009-06-10 13:36:04 -07002874
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002875 } else {
2876 Log.w(TAG, "Attempted to remove non-existing token: " + token);
2877 }
2878 }
2879 Binder.restoreCallingIdentity(origId);
2880 }
2881
2882 public void addAppToken(int addPos, IApplicationToken token,
2883 int groupId, int requestedOrientation, boolean fullscreen) {
2884 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
2885 "addAppToken()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07002886 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002887 }
Romain Guy06882f82009-06-10 13:36:04 -07002888
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002889 synchronized(mWindowMap) {
2890 AppWindowToken wtoken = findAppWindowToken(token.asBinder());
2891 if (wtoken != null) {
2892 Log.w(TAG, "Attempted to add existing app token: " + token);
2893 return;
2894 }
2895 wtoken = new AppWindowToken(token);
2896 wtoken.groupId = groupId;
2897 wtoken.appFullscreen = fullscreen;
2898 wtoken.requestedOrientation = requestedOrientation;
2899 mAppTokens.add(addPos, wtoken);
Dave Bortcfe65242009-04-09 14:51:04 -07002900 if (localLOGV) Log.v(TAG, "Adding new app token: " + wtoken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002901 mTokenMap.put(token.asBinder(), wtoken);
2902 mTokenList.add(wtoken);
Romain Guy06882f82009-06-10 13:36:04 -07002903
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002904 // Application tokens start out hidden.
2905 wtoken.hidden = true;
2906 wtoken.hiddenRequested = true;
Romain Guy06882f82009-06-10 13:36:04 -07002907
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002908 //dump();
2909 }
2910 }
Romain Guy06882f82009-06-10 13:36:04 -07002911
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002912 public void setAppGroupId(IBinder token, int groupId) {
2913 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
2914 "setAppStartingIcon()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07002915 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002916 }
2917
2918 synchronized(mWindowMap) {
2919 AppWindowToken wtoken = findAppWindowToken(token);
2920 if (wtoken == null) {
2921 Log.w(TAG, "Attempted to set group id of non-existing app token: " + token);
2922 return;
2923 }
2924 wtoken.groupId = groupId;
2925 }
2926 }
Romain Guy06882f82009-06-10 13:36:04 -07002927
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002928 public int getOrientationFromWindowsLocked() {
2929 int pos = mWindows.size() - 1;
2930 while (pos >= 0) {
2931 WindowState wtoken = (WindowState) mWindows.get(pos);
2932 pos--;
2933 if (wtoken.mAppToken != null) {
2934 // We hit an application window. so the orientation will be determined by the
2935 // app window. No point in continuing further.
2936 return ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
2937 }
2938 if (!wtoken.isVisibleLw()) {
2939 continue;
2940 }
2941 int req = wtoken.mAttrs.screenOrientation;
2942 if((req == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED) ||
2943 (req == ActivityInfo.SCREEN_ORIENTATION_BEHIND)){
2944 continue;
2945 } else {
2946 return req;
2947 }
2948 }
2949 return ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
2950 }
Romain Guy06882f82009-06-10 13:36:04 -07002951
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002952 public int getOrientationFromAppTokensLocked() {
2953 int pos = mAppTokens.size() - 1;
2954 int curGroup = 0;
2955 int lastOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
Owen Lin3413b892009-05-01 17:12:32 -07002956 boolean findingBehind = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002957 boolean haveGroup = false;
The Android Open Source Project4df24232009-03-05 14:34:35 -08002958 boolean lastFullscreen = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002959 while (pos >= 0) {
2960 AppWindowToken wtoken = mAppTokens.get(pos);
2961 pos--;
Owen Lin3413b892009-05-01 17:12:32 -07002962 // if we're about to tear down this window and not seek for
2963 // the behind activity, don't use it for orientation
2964 if (!findingBehind
2965 && (!wtoken.hidden && wtoken.hiddenRequested)) {
The Android Open Source Project10592532009-03-18 17:39:46 -07002966 continue;
2967 }
2968
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002969 if (!haveGroup) {
2970 // We ignore any hidden applications on the top.
2971 if (wtoken.hiddenRequested || wtoken.willBeHidden) {
2972 continue;
2973 }
2974 haveGroup = true;
2975 curGroup = wtoken.groupId;
2976 lastOrientation = wtoken.requestedOrientation;
2977 } else if (curGroup != wtoken.groupId) {
2978 // If we have hit a new application group, and the bottom
2979 // of the previous group didn't explicitly say to use
The Android Open Source Project4df24232009-03-05 14:34:35 -08002980 // the orientation behind it, and the last app was
2981 // full screen, then we'll stick with the
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002982 // user's orientation.
The Android Open Source Project4df24232009-03-05 14:34:35 -08002983 if (lastOrientation != ActivityInfo.SCREEN_ORIENTATION_BEHIND
2984 && lastFullscreen) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002985 return lastOrientation;
2986 }
2987 }
2988 int or = wtoken.requestedOrientation;
Owen Lin3413b892009-05-01 17:12:32 -07002989 // If this application is fullscreen, and didn't explicitly say
2990 // to use the orientation behind it, then just take whatever
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002991 // orientation it has and ignores whatever is under it.
The Android Open Source Project4df24232009-03-05 14:34:35 -08002992 lastFullscreen = wtoken.appFullscreen;
Romain Guy06882f82009-06-10 13:36:04 -07002993 if (lastFullscreen
Owen Lin3413b892009-05-01 17:12:32 -07002994 && or != ActivityInfo.SCREEN_ORIENTATION_BEHIND) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002995 return or;
2996 }
2997 // If this application has requested an explicit orientation,
2998 // then use it.
2999 if (or == ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE ||
3000 or == ActivityInfo.SCREEN_ORIENTATION_PORTRAIT ||
3001 or == ActivityInfo.SCREEN_ORIENTATION_SENSOR ||
3002 or == ActivityInfo.SCREEN_ORIENTATION_NOSENSOR ||
3003 or == ActivityInfo.SCREEN_ORIENTATION_USER) {
3004 return or;
3005 }
Owen Lin3413b892009-05-01 17:12:32 -07003006 findingBehind |= (or == ActivityInfo.SCREEN_ORIENTATION_BEHIND);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003007 }
3008 return ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
3009 }
Romain Guy06882f82009-06-10 13:36:04 -07003010
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003011 public Configuration updateOrientationFromAppTokens(
The Android Open Source Project10592532009-03-18 17:39:46 -07003012 Configuration currentConfig, IBinder freezeThisOneIfNeeded) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07003013 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
3014 "updateOrientationFromAppTokens()")) {
3015 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
3016 }
3017
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003018 Configuration config;
3019 long ident = Binder.clearCallingIdentity();
Dianne Hackborncfaef692009-06-15 14:24:44 -07003020 config = updateOrientationFromAppTokensUnchecked(currentConfig,
3021 freezeThisOneIfNeeded);
3022 Binder.restoreCallingIdentity(ident);
3023 return config;
3024 }
3025
3026 Configuration updateOrientationFromAppTokensUnchecked(
3027 Configuration currentConfig, IBinder freezeThisOneIfNeeded) {
3028 Configuration config;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003029 synchronized(mWindowMap) {
The Android Open Source Project10592532009-03-18 17:39:46 -07003030 config = updateOrientationFromAppTokensLocked(currentConfig, freezeThisOneIfNeeded);
Dianne Hackbornbdd52b22009-09-02 21:46:19 -07003031 if (config != null) {
3032 mLayoutNeeded = true;
3033 performLayoutAndPlaceSurfacesLocked();
3034 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003035 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003036 return config;
3037 }
Romain Guy06882f82009-06-10 13:36:04 -07003038
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003039 /*
3040 * The orientation is computed from non-application windows first. If none of
3041 * the non-application windows specify orientation, the orientation is computed from
Romain Guy06882f82009-06-10 13:36:04 -07003042 * application tokens.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003043 * @see android.view.IWindowManager#updateOrientationFromAppTokens(
3044 * android.os.IBinder)
3045 */
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07003046 Configuration updateOrientationFromAppTokensLocked(
The Android Open Source Project10592532009-03-18 17:39:46 -07003047 Configuration appConfig, IBinder freezeThisOneIfNeeded) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003048 boolean changed = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003049 long ident = Binder.clearCallingIdentity();
3050 try {
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07003051 int req = computeForcedAppOrientationLocked();
Romain Guy06882f82009-06-10 13:36:04 -07003052
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003053 if (req != mForcedAppOrientation) {
3054 changed = true;
3055 mForcedAppOrientation = req;
3056 //send a message to Policy indicating orientation change to take
3057 //action like disabling/enabling sensors etc.,
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07003058 mPolicy.setCurrentOrientationLw(req);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003059 }
Romain Guy06882f82009-06-10 13:36:04 -07003060
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003061 if (changed) {
3062 changed = setRotationUncheckedLocked(
Dianne Hackborn321ae682009-03-27 16:16:03 -07003063 WindowManagerPolicy.USE_LAST_ROTATION,
3064 mLastRotationFlags & (~Surface.FLAGS_ORIENTATION_ANIMATION_DISABLE));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003065 if (changed) {
3066 if (freezeThisOneIfNeeded != null) {
3067 AppWindowToken wtoken = findAppWindowToken(
3068 freezeThisOneIfNeeded);
3069 if (wtoken != null) {
3070 startAppFreezingScreenLocked(wtoken,
3071 ActivityInfo.CONFIG_ORIENTATION);
3072 }
3073 }
Dianne Hackbornc485a602009-03-24 22:39:49 -07003074 return computeNewConfigurationLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003075 }
3076 }
The Android Open Source Project10592532009-03-18 17:39:46 -07003077
3078 // No obvious action we need to take, but if our current
3079 // state mismatches the activity maanager's, update it
3080 if (appConfig != null) {
Dianne Hackbornc485a602009-03-24 22:39:49 -07003081 mTempConfiguration.setToDefaults();
3082 if (computeNewConfigurationLocked(mTempConfiguration)) {
3083 if (appConfig.diff(mTempConfiguration) != 0) {
Dianne Hackbornc485a602009-03-24 22:39:49 -07003084 return new Configuration(mTempConfiguration);
3085 }
The Android Open Source Project10592532009-03-18 17:39:46 -07003086 }
3087 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003088 } finally {
3089 Binder.restoreCallingIdentity(ident);
3090 }
Romain Guy06882f82009-06-10 13:36:04 -07003091
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003092 return null;
3093 }
Romain Guy06882f82009-06-10 13:36:04 -07003094
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07003095 int computeForcedAppOrientationLocked() {
3096 int req = getOrientationFromWindowsLocked();
3097 if (req == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED) {
3098 req = getOrientationFromAppTokensLocked();
3099 }
3100 return req;
3101 }
Romain Guy06882f82009-06-10 13:36:04 -07003102
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003103 public void setAppOrientation(IApplicationToken token, int requestedOrientation) {
3104 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
3105 "setAppOrientation()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07003106 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003107 }
Romain Guy06882f82009-06-10 13:36:04 -07003108
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003109 synchronized(mWindowMap) {
3110 AppWindowToken wtoken = findAppWindowToken(token.asBinder());
3111 if (wtoken == null) {
3112 Log.w(TAG, "Attempted to set orientation of non-existing app token: " + token);
3113 return;
3114 }
Romain Guy06882f82009-06-10 13:36:04 -07003115
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003116 wtoken.requestedOrientation = requestedOrientation;
3117 }
3118 }
Romain Guy06882f82009-06-10 13:36:04 -07003119
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003120 public int getAppOrientation(IApplicationToken token) {
3121 synchronized(mWindowMap) {
3122 AppWindowToken wtoken = findAppWindowToken(token.asBinder());
3123 if (wtoken == null) {
3124 return ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
3125 }
Romain Guy06882f82009-06-10 13:36:04 -07003126
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003127 return wtoken.requestedOrientation;
3128 }
3129 }
Romain Guy06882f82009-06-10 13:36:04 -07003130
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003131 public void setFocusedApp(IBinder token, boolean moveFocusNow) {
3132 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
3133 "setFocusedApp()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07003134 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003135 }
3136
3137 synchronized(mWindowMap) {
3138 boolean changed = false;
3139 if (token == null) {
3140 if (DEBUG_FOCUS) Log.v(TAG, "Clearing focused app, was " + mFocusedApp);
3141 changed = mFocusedApp != null;
3142 mFocusedApp = null;
3143 mKeyWaiter.tickle();
3144 } else {
3145 AppWindowToken newFocus = findAppWindowToken(token);
3146 if (newFocus == null) {
3147 Log.w(TAG, "Attempted to set focus to non-existing app token: " + token);
3148 return;
3149 }
3150 changed = mFocusedApp != newFocus;
3151 mFocusedApp = newFocus;
3152 if (DEBUG_FOCUS) Log.v(TAG, "Set focused app to: " + mFocusedApp);
3153 mKeyWaiter.tickle();
3154 }
3155
3156 if (moveFocusNow && changed) {
3157 final long origId = Binder.clearCallingIdentity();
3158 updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL);
3159 Binder.restoreCallingIdentity(origId);
3160 }
3161 }
3162 }
3163
3164 public void prepareAppTransition(int transit) {
3165 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
3166 "prepareAppTransition()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07003167 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003168 }
Romain Guy06882f82009-06-10 13:36:04 -07003169
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003170 synchronized(mWindowMap) {
3171 if (DEBUG_APP_TRANSITIONS) Log.v(
3172 TAG, "Prepare app transition: transit=" + transit
3173 + " mNextAppTransition=" + mNextAppTransition);
3174 if (!mDisplayFrozen) {
Dianne Hackbornbfe319e2009-09-21 00:34:05 -07003175 if (mNextAppTransition == WindowManagerPolicy.TRANSIT_UNSET
3176 || mNextAppTransition == WindowManagerPolicy.TRANSIT_NONE) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003177 mNextAppTransition = transit;
Dianne Hackbornd7cd29d2009-07-01 11:22:45 -07003178 } else if (transit == WindowManagerPolicy.TRANSIT_TASK_OPEN
3179 && mNextAppTransition == WindowManagerPolicy.TRANSIT_TASK_CLOSE) {
3180 // Opening a new task always supersedes a close for the anim.
3181 mNextAppTransition = transit;
3182 } else if (transit == WindowManagerPolicy.TRANSIT_ACTIVITY_OPEN
3183 && mNextAppTransition == WindowManagerPolicy.TRANSIT_ACTIVITY_CLOSE) {
3184 // Opening a new activity always supersedes a close for the anim.
3185 mNextAppTransition = transit;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003186 }
3187 mAppTransitionReady = false;
3188 mAppTransitionTimeout = false;
3189 mStartingIconInTransition = false;
3190 mSkipAppTransitionAnimation = false;
3191 mH.removeMessages(H.APP_TRANSITION_TIMEOUT);
3192 mH.sendMessageDelayed(mH.obtainMessage(H.APP_TRANSITION_TIMEOUT),
3193 5000);
3194 }
3195 }
3196 }
3197
3198 public int getPendingAppTransition() {
3199 return mNextAppTransition;
3200 }
Romain Guy06882f82009-06-10 13:36:04 -07003201
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07003202 public void overridePendingAppTransition(String packageName,
3203 int enterAnim, int exitAnim) {
Dianne Hackborn8b571a82009-09-25 16:09:43 -07003204 if (mNextAppTransition != WindowManagerPolicy.TRANSIT_UNSET) {
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07003205 mNextAppTransitionPackage = packageName;
3206 mNextAppTransitionEnter = enterAnim;
3207 mNextAppTransitionExit = exitAnim;
3208 }
3209 }
3210
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003211 public void executeAppTransition() {
3212 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
3213 "executeAppTransition()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07003214 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003215 }
Romain Guy06882f82009-06-10 13:36:04 -07003216
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003217 synchronized(mWindowMap) {
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07003218 if (DEBUG_APP_TRANSITIONS) {
3219 RuntimeException e = new RuntimeException("here");
3220 e.fillInStackTrace();
3221 Log.w(TAG, "Execute app transition: mNextAppTransition="
3222 + mNextAppTransition, e);
3223 }
Dianne Hackbornbfe319e2009-09-21 00:34:05 -07003224 if (mNextAppTransition != WindowManagerPolicy.TRANSIT_UNSET) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003225 mAppTransitionReady = true;
3226 final long origId = Binder.clearCallingIdentity();
3227 performLayoutAndPlaceSurfacesLocked();
3228 Binder.restoreCallingIdentity(origId);
3229 }
3230 }
3231 }
3232
3233 public void setAppStartingWindow(IBinder token, String pkg,
3234 int theme, CharSequence nonLocalizedLabel, int labelRes, int icon,
3235 IBinder transferFrom, boolean createIfNeeded) {
3236 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
3237 "setAppStartingIcon()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07003238 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003239 }
3240
3241 synchronized(mWindowMap) {
3242 if (DEBUG_STARTING_WINDOW) Log.v(
3243 TAG, "setAppStartingIcon: token=" + token + " pkg=" + pkg
3244 + " transferFrom=" + transferFrom);
Romain Guy06882f82009-06-10 13:36:04 -07003245
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003246 AppWindowToken wtoken = findAppWindowToken(token);
3247 if (wtoken == null) {
3248 Log.w(TAG, "Attempted to set icon of non-existing app token: " + token);
3249 return;
3250 }
3251
3252 // If the display is frozen, we won't do anything until the
3253 // actual window is displayed so there is no reason to put in
3254 // the starting window.
3255 if (mDisplayFrozen) {
3256 return;
3257 }
Romain Guy06882f82009-06-10 13:36:04 -07003258
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003259 if (wtoken.startingData != null) {
3260 return;
3261 }
Romain Guy06882f82009-06-10 13:36:04 -07003262
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003263 if (transferFrom != null) {
3264 AppWindowToken ttoken = findAppWindowToken(transferFrom);
3265 if (ttoken != null) {
3266 WindowState startingWindow = ttoken.startingWindow;
3267 if (startingWindow != null) {
3268 if (mStartingIconInTransition) {
3269 // In this case, the starting icon has already
3270 // been displayed, so start letting windows get
3271 // shown immediately without any more transitions.
3272 mSkipAppTransitionAnimation = true;
3273 }
3274 if (DEBUG_STARTING_WINDOW) Log.v(TAG,
3275 "Moving existing starting from " + ttoken
3276 + " to " + wtoken);
3277 final long origId = Binder.clearCallingIdentity();
Romain Guy06882f82009-06-10 13:36:04 -07003278
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003279 // Transfer the starting window over to the new
3280 // token.
3281 wtoken.startingData = ttoken.startingData;
3282 wtoken.startingView = ttoken.startingView;
3283 wtoken.startingWindow = startingWindow;
3284 ttoken.startingData = null;
3285 ttoken.startingView = null;
3286 ttoken.startingWindow = null;
3287 ttoken.startingMoved = true;
3288 startingWindow.mToken = wtoken;
Dianne Hackbornef49c572009-03-24 19:27:32 -07003289 startingWindow.mRootToken = wtoken;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003290 startingWindow.mAppToken = wtoken;
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07003291 if (DEBUG_WINDOW_MOVEMENT) Log.v(TAG,
3292 "Removing starting window: " + startingWindow);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003293 mWindows.remove(startingWindow);
3294 ttoken.windows.remove(startingWindow);
3295 ttoken.allAppWindows.remove(startingWindow);
3296 addWindowToListInOrderLocked(startingWindow, true);
Romain Guy06882f82009-06-10 13:36:04 -07003297
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003298 // Propagate other interesting state between the
3299 // tokens. If the old token is displayed, we should
3300 // immediately force the new one to be displayed. If
3301 // it is animating, we need to move that animation to
3302 // the new one.
3303 if (ttoken.allDrawn) {
3304 wtoken.allDrawn = true;
3305 }
3306 if (ttoken.firstWindowDrawn) {
3307 wtoken.firstWindowDrawn = true;
3308 }
3309 if (!ttoken.hidden) {
3310 wtoken.hidden = false;
3311 wtoken.hiddenRequested = false;
3312 wtoken.willBeHidden = false;
3313 }
3314 if (wtoken.clientHidden != ttoken.clientHidden) {
3315 wtoken.clientHidden = ttoken.clientHidden;
3316 wtoken.sendAppVisibilityToClients();
3317 }
3318 if (ttoken.animation != null) {
3319 wtoken.animation = ttoken.animation;
3320 wtoken.animating = ttoken.animating;
3321 wtoken.animLayerAdjustment = ttoken.animLayerAdjustment;
3322 ttoken.animation = null;
3323 ttoken.animLayerAdjustment = 0;
3324 wtoken.updateLayers();
3325 ttoken.updateLayers();
3326 }
Romain Guy06882f82009-06-10 13:36:04 -07003327
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003328 updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003329 mLayoutNeeded = true;
3330 performLayoutAndPlaceSurfacesLocked();
3331 Binder.restoreCallingIdentity(origId);
3332 return;
3333 } else if (ttoken.startingData != null) {
3334 // The previous app was getting ready to show a
3335 // starting window, but hasn't yet done so. Steal it!
3336 if (DEBUG_STARTING_WINDOW) Log.v(TAG,
3337 "Moving pending starting from " + ttoken
3338 + " to " + wtoken);
3339 wtoken.startingData = ttoken.startingData;
3340 ttoken.startingData = null;
3341 ttoken.startingMoved = true;
3342 Message m = mH.obtainMessage(H.ADD_STARTING, wtoken);
3343 // Note: we really want to do sendMessageAtFrontOfQueue() because we
3344 // want to process the message ASAP, before any other queued
3345 // messages.
3346 mH.sendMessageAtFrontOfQueue(m);
3347 return;
3348 }
3349 }
3350 }
3351
3352 // There is no existing starting window, and the caller doesn't
3353 // want us to create one, so that's it!
3354 if (!createIfNeeded) {
3355 return;
3356 }
Romain Guy06882f82009-06-10 13:36:04 -07003357
Dianne Hackborn284ac932009-08-28 10:34:25 -07003358 // If this is a translucent or wallpaper window, then don't
3359 // show a starting window -- the current effect (a full-screen
3360 // opaque starting window that fades away to the real contents
3361 // when it is ready) does not work for this.
3362 if (theme != 0) {
3363 AttributeCache.Entry ent = AttributeCache.instance().get(pkg, theme,
3364 com.android.internal.R.styleable.Window);
3365 if (ent.array.getBoolean(
3366 com.android.internal.R.styleable.Window_windowIsTranslucent, false)) {
3367 return;
3368 }
3369 if (ent.array.getBoolean(
Dianne Hackborn6136b7e2009-09-18 01:53:49 -07003370 com.android.internal.R.styleable.Window_windowIsFloating, false)) {
3371 return;
3372 }
3373 if (ent.array.getBoolean(
Dianne Hackborn284ac932009-08-28 10:34:25 -07003374 com.android.internal.R.styleable.Window_windowShowWallpaper, false)) {
3375 return;
3376 }
3377 }
3378
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003379 mStartingIconInTransition = true;
3380 wtoken.startingData = new StartingData(
3381 pkg, theme, nonLocalizedLabel,
3382 labelRes, icon);
3383 Message m = mH.obtainMessage(H.ADD_STARTING, wtoken);
3384 // Note: we really want to do sendMessageAtFrontOfQueue() because we
3385 // want to process the message ASAP, before any other queued
3386 // messages.
3387 mH.sendMessageAtFrontOfQueue(m);
3388 }
3389 }
3390
3391 public void setAppWillBeHidden(IBinder token) {
3392 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
3393 "setAppWillBeHidden()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07003394 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003395 }
3396
3397 AppWindowToken wtoken;
3398
3399 synchronized(mWindowMap) {
3400 wtoken = findAppWindowToken(token);
3401 if (wtoken == null) {
3402 Log.w(TAG, "Attempted to set will be hidden of non-existing app token: " + token);
3403 return;
3404 }
3405 wtoken.willBeHidden = true;
3406 }
3407 }
Romain Guy06882f82009-06-10 13:36:04 -07003408
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003409 boolean setTokenVisibilityLocked(AppWindowToken wtoken, WindowManager.LayoutParams lp,
3410 boolean visible, int transit, boolean performLayout) {
3411 boolean delayed = false;
3412
3413 if (wtoken.clientHidden == visible) {
3414 wtoken.clientHidden = !visible;
3415 wtoken.sendAppVisibilityToClients();
3416 }
Romain Guy06882f82009-06-10 13:36:04 -07003417
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003418 wtoken.willBeHidden = false;
3419 if (wtoken.hidden == visible) {
3420 final int N = wtoken.allAppWindows.size();
3421 boolean changed = false;
3422 if (DEBUG_APP_TRANSITIONS) Log.v(
3423 TAG, "Changing app " + wtoken + " hidden=" + wtoken.hidden
3424 + " performLayout=" + performLayout);
Romain Guy06882f82009-06-10 13:36:04 -07003425
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003426 boolean runningAppAnimation = false;
Romain Guy06882f82009-06-10 13:36:04 -07003427
Dianne Hackbornbfe319e2009-09-21 00:34:05 -07003428 if (transit != WindowManagerPolicy.TRANSIT_UNSET) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003429 if (wtoken.animation == sDummyAnimation) {
3430 wtoken.animation = null;
3431 }
3432 applyAnimationLocked(wtoken, lp, transit, visible);
3433 changed = true;
3434 if (wtoken.animation != null) {
3435 delayed = runningAppAnimation = true;
3436 }
3437 }
Romain Guy06882f82009-06-10 13:36:04 -07003438
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003439 for (int i=0; i<N; i++) {
3440 WindowState win = wtoken.allAppWindows.get(i);
3441 if (win == wtoken.startingWindow) {
3442 continue;
3443 }
3444
3445 if (win.isAnimating()) {
3446 delayed = true;
3447 }
Romain Guy06882f82009-06-10 13:36:04 -07003448
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003449 //Log.i(TAG, "Window " + win + ": vis=" + win.isVisible());
3450 //win.dump(" ");
3451 if (visible) {
3452 if (!win.isVisibleNow()) {
3453 if (!runningAppAnimation) {
3454 applyAnimationLocked(win,
3455 WindowManagerPolicy.TRANSIT_ENTER, true);
3456 }
3457 changed = true;
3458 }
3459 } else if (win.isVisibleNow()) {
3460 if (!runningAppAnimation) {
3461 applyAnimationLocked(win,
3462 WindowManagerPolicy.TRANSIT_EXIT, false);
3463 }
3464 mKeyWaiter.finishedKey(win.mSession, win.mClient, true,
3465 KeyWaiter.RETURN_NOTHING);
3466 changed = true;
3467 }
3468 }
3469
3470 wtoken.hidden = wtoken.hiddenRequested = !visible;
3471 if (!visible) {
3472 unsetAppFreezingScreenLocked(wtoken, true, true);
3473 } else {
3474 // If we are being set visible, and the starting window is
3475 // not yet displayed, then make sure it doesn't get displayed.
3476 WindowState swin = wtoken.startingWindow;
3477 if (swin != null && (swin.mDrawPending
3478 || swin.mCommitDrawPending)) {
3479 swin.mPolicyVisibility = false;
3480 swin.mPolicyVisibilityAfterAnim = false;
3481 }
3482 }
Romain Guy06882f82009-06-10 13:36:04 -07003483
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003484 if (DEBUG_APP_TRANSITIONS) Log.v(TAG, "setTokenVisibilityLocked: " + wtoken
3485 + ": hidden=" + wtoken.hidden + " hiddenRequested="
3486 + wtoken.hiddenRequested);
Romain Guy06882f82009-06-10 13:36:04 -07003487
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003488 if (changed && performLayout) {
3489 mLayoutNeeded = true;
3490 updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003491 performLayoutAndPlaceSurfacesLocked();
3492 }
3493 }
3494
3495 if (wtoken.animation != null) {
3496 delayed = true;
3497 }
Romain Guy06882f82009-06-10 13:36:04 -07003498
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003499 return delayed;
3500 }
3501
3502 public void setAppVisibility(IBinder token, boolean visible) {
3503 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
3504 "setAppVisibility()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07003505 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003506 }
3507
3508 AppWindowToken wtoken;
3509
3510 synchronized(mWindowMap) {
3511 wtoken = findAppWindowToken(token);
3512 if (wtoken == null) {
3513 Log.w(TAG, "Attempted to set visibility of non-existing app token: " + token);
3514 return;
3515 }
3516
3517 if (DEBUG_APP_TRANSITIONS || DEBUG_ORIENTATION) {
3518 RuntimeException e = new RuntimeException();
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07003519 if (!HIDE_STACK_CRAWLS) e.fillInStackTrace();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003520 Log.v(TAG, "setAppVisibility(" + token + ", " + visible
3521 + "): mNextAppTransition=" + mNextAppTransition
3522 + " hidden=" + wtoken.hidden
3523 + " hiddenRequested=" + wtoken.hiddenRequested, e);
3524 }
Romain Guy06882f82009-06-10 13:36:04 -07003525
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003526 // If we are preparing an app transition, then delay changing
3527 // the visibility of this token until we execute that transition.
Dianne Hackbornbfe319e2009-09-21 00:34:05 -07003528 if (!mDisplayFrozen && mNextAppTransition != WindowManagerPolicy.TRANSIT_UNSET) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003529 // Already in requested state, don't do anything more.
3530 if (wtoken.hiddenRequested != visible) {
3531 return;
3532 }
3533 wtoken.hiddenRequested = !visible;
Romain Guy06882f82009-06-10 13:36:04 -07003534
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003535 if (DEBUG_APP_TRANSITIONS) Log.v(
3536 TAG, "Setting dummy animation on: " + wtoken);
3537 wtoken.setDummyAnimation();
3538 mOpeningApps.remove(wtoken);
3539 mClosingApps.remove(wtoken);
Dianne Hackborna8f60182009-09-01 19:01:50 -07003540 wtoken.waitingToShow = wtoken.waitingToHide = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003541 wtoken.inPendingTransaction = true;
3542 if (visible) {
3543 mOpeningApps.add(wtoken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003544 wtoken.startingDisplayed = false;
3545 wtoken.startingMoved = false;
Dianne Hackborn195f6a02009-11-24 11:26:00 -08003546
3547 // If the token is currently hidden (should be the
3548 // common case), then we need to set up to wait for
3549 // its windows to be ready.
3550 if (wtoken.hidden) {
3551 wtoken.allDrawn = false;
3552 wtoken.waitingToShow = true;
3553
3554 if (wtoken.clientHidden) {
3555 // In the case where we are making an app visible
3556 // but holding off for a transition, we still need
3557 // to tell the client to make its windows visible so
3558 // they get drawn. Otherwise, we will wait on
3559 // performing the transition until all windows have
3560 // been drawn, they never will be, and we are sad.
3561 wtoken.clientHidden = false;
3562 wtoken.sendAppVisibilityToClients();
3563 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003564 }
3565 } else {
3566 mClosingApps.add(wtoken);
Dianne Hackborn195f6a02009-11-24 11:26:00 -08003567
3568 // If the token is currently visible (should be the
3569 // common case), then set up to wait for it to be hidden.
3570 if (!wtoken.hidden) {
3571 wtoken.waitingToHide = true;
3572 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003573 }
3574 return;
3575 }
Romain Guy06882f82009-06-10 13:36:04 -07003576
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003577 final long origId = Binder.clearCallingIdentity();
Dianne Hackbornbfe319e2009-09-21 00:34:05 -07003578 setTokenVisibilityLocked(wtoken, null, visible, WindowManagerPolicy.TRANSIT_UNSET, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003579 wtoken.updateReportedVisibilityLocked();
3580 Binder.restoreCallingIdentity(origId);
3581 }
3582 }
3583
3584 void unsetAppFreezingScreenLocked(AppWindowToken wtoken,
3585 boolean unfreezeSurfaceNow, boolean force) {
3586 if (wtoken.freezingScreen) {
3587 if (DEBUG_ORIENTATION) Log.v(TAG, "Clear freezing of " + wtoken
3588 + " force=" + force);
3589 final int N = wtoken.allAppWindows.size();
3590 boolean unfrozeWindows = false;
3591 for (int i=0; i<N; i++) {
3592 WindowState w = wtoken.allAppWindows.get(i);
3593 if (w.mAppFreezing) {
3594 w.mAppFreezing = false;
3595 if (w.mSurface != null && !w.mOrientationChanging) {
3596 w.mOrientationChanging = true;
3597 }
3598 unfrozeWindows = true;
3599 }
3600 }
3601 if (force || unfrozeWindows) {
3602 if (DEBUG_ORIENTATION) Log.v(TAG, "No longer freezing: " + wtoken);
3603 wtoken.freezingScreen = false;
3604 mAppsFreezingScreen--;
3605 }
3606 if (unfreezeSurfaceNow) {
3607 if (unfrozeWindows) {
3608 mLayoutNeeded = true;
3609 performLayoutAndPlaceSurfacesLocked();
3610 }
3611 if (mAppsFreezingScreen == 0 && !mWindowsFreezingScreen) {
3612 stopFreezingDisplayLocked();
3613 }
3614 }
3615 }
3616 }
Romain Guy06882f82009-06-10 13:36:04 -07003617
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003618 public void startAppFreezingScreenLocked(AppWindowToken wtoken,
3619 int configChanges) {
3620 if (DEBUG_ORIENTATION) {
3621 RuntimeException e = new RuntimeException();
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07003622 if (!HIDE_STACK_CRAWLS) e.fillInStackTrace();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003623 Log.i(TAG, "Set freezing of " + wtoken.appToken
3624 + ": hidden=" + wtoken.hidden + " freezing="
3625 + wtoken.freezingScreen, e);
3626 }
3627 if (!wtoken.hiddenRequested) {
3628 if (!wtoken.freezingScreen) {
3629 wtoken.freezingScreen = true;
3630 mAppsFreezingScreen++;
3631 if (mAppsFreezingScreen == 1) {
3632 startFreezingDisplayLocked();
3633 mH.removeMessages(H.APP_FREEZE_TIMEOUT);
3634 mH.sendMessageDelayed(mH.obtainMessage(H.APP_FREEZE_TIMEOUT),
3635 5000);
3636 }
3637 }
3638 final int N = wtoken.allAppWindows.size();
3639 for (int i=0; i<N; i++) {
3640 WindowState w = wtoken.allAppWindows.get(i);
3641 w.mAppFreezing = true;
3642 }
3643 }
3644 }
Romain Guy06882f82009-06-10 13:36:04 -07003645
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003646 public void startAppFreezingScreen(IBinder token, int configChanges) {
3647 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
3648 "setAppFreezingScreen()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07003649 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003650 }
3651
3652 synchronized(mWindowMap) {
3653 if (configChanges == 0 && !mDisplayFrozen) {
3654 if (DEBUG_ORIENTATION) Log.v(TAG, "Skipping set freeze of " + token);
3655 return;
3656 }
Romain Guy06882f82009-06-10 13:36:04 -07003657
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003658 AppWindowToken wtoken = findAppWindowToken(token);
3659 if (wtoken == null || wtoken.appToken == null) {
3660 Log.w(TAG, "Attempted to freeze screen with non-existing app token: " + wtoken);
3661 return;
3662 }
3663 final long origId = Binder.clearCallingIdentity();
3664 startAppFreezingScreenLocked(wtoken, configChanges);
3665 Binder.restoreCallingIdentity(origId);
3666 }
3667 }
Romain Guy06882f82009-06-10 13:36:04 -07003668
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003669 public void stopAppFreezingScreen(IBinder token, boolean force) {
3670 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
3671 "setAppFreezingScreen()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07003672 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003673 }
3674
3675 synchronized(mWindowMap) {
3676 AppWindowToken wtoken = findAppWindowToken(token);
3677 if (wtoken == null || wtoken.appToken == null) {
3678 return;
3679 }
3680 final long origId = Binder.clearCallingIdentity();
3681 if (DEBUG_ORIENTATION) Log.v(TAG, "Clear freezing of " + token
3682 + ": hidden=" + wtoken.hidden + " freezing=" + wtoken.freezingScreen);
3683 unsetAppFreezingScreenLocked(wtoken, true, force);
3684 Binder.restoreCallingIdentity(origId);
3685 }
3686 }
Romain Guy06882f82009-06-10 13:36:04 -07003687
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003688 public void removeAppToken(IBinder token) {
3689 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
3690 "removeAppToken()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07003691 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003692 }
3693
3694 AppWindowToken wtoken = null;
3695 AppWindowToken startingToken = null;
3696 boolean delayed = false;
3697
3698 final long origId = Binder.clearCallingIdentity();
3699 synchronized(mWindowMap) {
3700 WindowToken basewtoken = mTokenMap.remove(token);
3701 mTokenList.remove(basewtoken);
3702 if (basewtoken != null && (wtoken=basewtoken.appWindowToken) != null) {
3703 if (DEBUG_APP_TRANSITIONS) Log.v(TAG, "Removing app token: " + wtoken);
Dianne Hackbornbfe319e2009-09-21 00:34:05 -07003704 delayed = setTokenVisibilityLocked(wtoken, null, false, WindowManagerPolicy.TRANSIT_UNSET, true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003705 wtoken.inPendingTransaction = false;
3706 mOpeningApps.remove(wtoken);
Dianne Hackborna8f60182009-09-01 19:01:50 -07003707 wtoken.waitingToShow = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003708 if (mClosingApps.contains(wtoken)) {
3709 delayed = true;
Dianne Hackbornbfe319e2009-09-21 00:34:05 -07003710 } else if (mNextAppTransition != WindowManagerPolicy.TRANSIT_UNSET) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003711 mClosingApps.add(wtoken);
Dianne Hackborna8f60182009-09-01 19:01:50 -07003712 wtoken.waitingToHide = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003713 delayed = true;
3714 }
3715 if (DEBUG_APP_TRANSITIONS) Log.v(
3716 TAG, "Removing app " + wtoken + " delayed=" + delayed
3717 + " animation=" + wtoken.animation
3718 + " animating=" + wtoken.animating);
3719 if (delayed) {
3720 // set the token aside because it has an active animation to be finished
3721 mExitingAppTokens.add(wtoken);
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07003722 } else {
3723 // Make sure there is no animation running on this token,
3724 // so any windows associated with it will be removed as
3725 // soon as their animations are complete
3726 wtoken.animation = null;
3727 wtoken.animating = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003728 }
3729 mAppTokens.remove(wtoken);
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07003730 if (mLastEnterAnimToken == wtoken) {
3731 mLastEnterAnimToken = null;
3732 mLastEnterAnimParams = null;
3733 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003734 wtoken.removed = true;
3735 if (wtoken.startingData != null) {
3736 startingToken = wtoken;
3737 }
3738 unsetAppFreezingScreenLocked(wtoken, true, true);
3739 if (mFocusedApp == wtoken) {
3740 if (DEBUG_FOCUS) Log.v(TAG, "Removing focused app token:" + wtoken);
3741 mFocusedApp = null;
3742 updateFocusedWindowLocked(UPDATE_FOCUS_NORMAL);
3743 mKeyWaiter.tickle();
3744 }
3745 } else {
3746 Log.w(TAG, "Attempted to remove non-existing app token: " + token);
3747 }
Romain Guy06882f82009-06-10 13:36:04 -07003748
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003749 if (!delayed && wtoken != null) {
3750 wtoken.updateReportedVisibilityLocked();
3751 }
3752 }
3753 Binder.restoreCallingIdentity(origId);
3754
3755 if (startingToken != null) {
3756 if (DEBUG_STARTING_WINDOW) Log.v(TAG, "Schedule remove starting "
3757 + startingToken + ": app token removed");
3758 Message m = mH.obtainMessage(H.REMOVE_STARTING, startingToken);
3759 mH.sendMessage(m);
3760 }
3761 }
3762
3763 private boolean tmpRemoveAppWindowsLocked(WindowToken token) {
3764 final int NW = token.windows.size();
3765 for (int i=0; i<NW; i++) {
3766 WindowState win = token.windows.get(i);
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07003767 if (DEBUG_WINDOW_MOVEMENT) Log.v(TAG, "Tmp removing app window " + win);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003768 mWindows.remove(win);
3769 int j = win.mChildWindows.size();
3770 while (j > 0) {
3771 j--;
Dianne Hackbornbdd52b22009-09-02 21:46:19 -07003772 WindowState cwin = (WindowState)win.mChildWindows.get(j);
3773 if (DEBUG_WINDOW_MOVEMENT) Log.v(TAG,
3774 "Tmp removing child window " + cwin);
3775 mWindows.remove(cwin);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003776 }
3777 }
3778 return NW > 0;
3779 }
3780
3781 void dumpAppTokensLocked() {
3782 for (int i=mAppTokens.size()-1; i>=0; i--) {
3783 Log.v(TAG, " #" + i + ": " + mAppTokens.get(i).token);
3784 }
3785 }
Romain Guy06882f82009-06-10 13:36:04 -07003786
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003787 void dumpWindowsLocked() {
3788 for (int i=mWindows.size()-1; i>=0; i--) {
3789 Log.v(TAG, " #" + i + ": " + mWindows.get(i));
3790 }
3791 }
Romain Guy06882f82009-06-10 13:36:04 -07003792
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003793 private int findWindowOffsetLocked(int tokenPos) {
3794 final int NW = mWindows.size();
3795
3796 if (tokenPos >= mAppTokens.size()) {
3797 int i = NW;
3798 while (i > 0) {
3799 i--;
3800 WindowState win = (WindowState)mWindows.get(i);
3801 if (win.getAppToken() != null) {
3802 return i+1;
3803 }
3804 }
3805 }
3806
3807 while (tokenPos > 0) {
3808 // Find the first app token below the new position that has
3809 // a window displayed.
3810 final AppWindowToken wtoken = mAppTokens.get(tokenPos-1);
3811 if (DEBUG_REORDER) Log.v(TAG, "Looking for lower windows @ "
3812 + tokenPos + " -- " + wtoken.token);
Dianne Hackborna8f60182009-09-01 19:01:50 -07003813 if (wtoken.sendingToBottom) {
3814 if (DEBUG_REORDER) Log.v(TAG,
3815 "Skipping token -- currently sending to bottom");
3816 tokenPos--;
3817 continue;
3818 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003819 int i = wtoken.windows.size();
3820 while (i > 0) {
3821 i--;
3822 WindowState win = wtoken.windows.get(i);
3823 int j = win.mChildWindows.size();
3824 while (j > 0) {
3825 j--;
3826 WindowState cwin = (WindowState)win.mChildWindows.get(j);
Dianne Hackborna8f60182009-09-01 19:01:50 -07003827 if (cwin.mSubLayer >= 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003828 for (int pos=NW-1; pos>=0; pos--) {
3829 if (mWindows.get(pos) == cwin) {
3830 if (DEBUG_REORDER) Log.v(TAG,
3831 "Found child win @" + (pos+1));
3832 return pos+1;
3833 }
3834 }
3835 }
3836 }
3837 for (int pos=NW-1; pos>=0; pos--) {
3838 if (mWindows.get(pos) == win) {
3839 if (DEBUG_REORDER) Log.v(TAG, "Found win @" + (pos+1));
3840 return pos+1;
3841 }
3842 }
3843 }
3844 tokenPos--;
3845 }
3846
3847 return 0;
3848 }
3849
3850 private final int reAddWindowLocked(int index, WindowState win) {
3851 final int NCW = win.mChildWindows.size();
3852 boolean added = false;
3853 for (int j=0; j<NCW; j++) {
3854 WindowState cwin = (WindowState)win.mChildWindows.get(j);
3855 if (!added && cwin.mSubLayer >= 0) {
Dianne Hackbornbdd52b22009-09-02 21:46:19 -07003856 if (DEBUG_WINDOW_MOVEMENT) Log.v(TAG, "Re-adding child window at "
3857 + index + ": " + cwin);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003858 mWindows.add(index, win);
3859 index++;
3860 added = true;
3861 }
Dianne Hackbornbdd52b22009-09-02 21:46:19 -07003862 if (DEBUG_WINDOW_MOVEMENT) Log.v(TAG, "Re-adding window at "
3863 + index + ": " + cwin);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003864 mWindows.add(index, cwin);
3865 index++;
3866 }
3867 if (!added) {
Dianne Hackbornbdd52b22009-09-02 21:46:19 -07003868 if (DEBUG_WINDOW_MOVEMENT) Log.v(TAG, "Re-adding window at "
3869 + index + ": " + win);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003870 mWindows.add(index, win);
3871 index++;
3872 }
3873 return index;
3874 }
Romain Guy06882f82009-06-10 13:36:04 -07003875
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003876 private final int reAddAppWindowsLocked(int index, WindowToken token) {
3877 final int NW = token.windows.size();
3878 for (int i=0; i<NW; i++) {
3879 index = reAddWindowLocked(index, token.windows.get(i));
3880 }
3881 return index;
3882 }
3883
3884 public void moveAppToken(int index, IBinder token) {
3885 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
3886 "moveAppToken()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07003887 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003888 }
3889
3890 synchronized(mWindowMap) {
3891 if (DEBUG_REORDER) Log.v(TAG, "Initial app tokens:");
3892 if (DEBUG_REORDER) dumpAppTokensLocked();
3893 final AppWindowToken wtoken = findAppWindowToken(token);
3894 if (wtoken == null || !mAppTokens.remove(wtoken)) {
3895 Log.w(TAG, "Attempting to reorder token that doesn't exist: "
3896 + token + " (" + wtoken + ")");
3897 return;
3898 }
3899 mAppTokens.add(index, wtoken);
3900 if (DEBUG_REORDER) Log.v(TAG, "Moved " + token + " to " + index + ":");
3901 if (DEBUG_REORDER) dumpAppTokensLocked();
Romain Guy06882f82009-06-10 13:36:04 -07003902
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003903 final long origId = Binder.clearCallingIdentity();
3904 if (DEBUG_REORDER) Log.v(TAG, "Removing windows in " + token + ":");
3905 if (DEBUG_REORDER) dumpWindowsLocked();
3906 if (tmpRemoveAppWindowsLocked(wtoken)) {
3907 if (DEBUG_REORDER) Log.v(TAG, "Adding windows back in:");
3908 if (DEBUG_REORDER) dumpWindowsLocked();
3909 reAddAppWindowsLocked(findWindowOffsetLocked(index), wtoken);
3910 if (DEBUG_REORDER) Log.v(TAG, "Final window list:");
3911 if (DEBUG_REORDER) dumpWindowsLocked();
3912 updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003913 mLayoutNeeded = true;
3914 performLayoutAndPlaceSurfacesLocked();
3915 }
3916 Binder.restoreCallingIdentity(origId);
3917 }
3918 }
3919
3920 private void removeAppTokensLocked(List<IBinder> tokens) {
3921 // XXX This should be done more efficiently!
3922 // (take advantage of the fact that both lists should be
3923 // ordered in the same way.)
3924 int N = tokens.size();
3925 for (int i=0; i<N; i++) {
3926 IBinder token = tokens.get(i);
3927 final AppWindowToken wtoken = findAppWindowToken(token);
3928 if (!mAppTokens.remove(wtoken)) {
3929 Log.w(TAG, "Attempting to reorder token that doesn't exist: "
3930 + token + " (" + wtoken + ")");
3931 i--;
3932 N--;
3933 }
3934 }
3935 }
3936
Dianne Hackborna8f60182009-09-01 19:01:50 -07003937 private void moveAppWindowsLocked(AppWindowToken wtoken, int tokenPos,
3938 boolean updateFocusAndLayout) {
3939 // First remove all of the windows from the list.
3940 tmpRemoveAppWindowsLocked(wtoken);
3941
3942 // Where to start adding?
3943 int pos = findWindowOffsetLocked(tokenPos);
3944
3945 // And now add them back at the correct place.
3946 pos = reAddAppWindowsLocked(pos, wtoken);
3947
3948 if (updateFocusAndLayout) {
3949 if (!updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES)) {
3950 assignLayersLocked();
3951 }
3952 mLayoutNeeded = true;
3953 performLayoutAndPlaceSurfacesLocked();
3954 }
3955 }
3956
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003957 private void moveAppWindowsLocked(List<IBinder> tokens, int tokenPos) {
3958 // First remove all of the windows from the list.
3959 final int N = tokens.size();
3960 int i;
3961 for (i=0; i<N; i++) {
3962 WindowToken token = mTokenMap.get(tokens.get(i));
3963 if (token != null) {
3964 tmpRemoveAppWindowsLocked(token);
3965 }
3966 }
3967
3968 // Where to start adding?
3969 int pos = findWindowOffsetLocked(tokenPos);
3970
3971 // And now add them back at the correct place.
3972 for (i=0; i<N; i++) {
3973 WindowToken token = mTokenMap.get(tokens.get(i));
3974 if (token != null) {
3975 pos = reAddAppWindowsLocked(pos, token);
3976 }
3977 }
3978
Dianne Hackborna8f60182009-09-01 19:01:50 -07003979 if (!updateFocusedWindowLocked(UPDATE_FOCUS_WILL_PLACE_SURFACES)) {
3980 assignLayersLocked();
3981 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003982 mLayoutNeeded = true;
3983 performLayoutAndPlaceSurfacesLocked();
3984
3985 //dump();
3986 }
3987
3988 public void moveAppTokensToTop(List<IBinder> tokens) {
3989 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
3990 "moveAppTokensToTop()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07003991 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003992 }
3993
3994 final long origId = Binder.clearCallingIdentity();
3995 synchronized(mWindowMap) {
3996 removeAppTokensLocked(tokens);
3997 final int N = tokens.size();
3998 for (int i=0; i<N; i++) {
3999 AppWindowToken wt = findAppWindowToken(tokens.get(i));
4000 if (wt != null) {
4001 mAppTokens.add(wt);
Dianne Hackbornbfe319e2009-09-21 00:34:05 -07004002 if (mNextAppTransition != WindowManagerPolicy.TRANSIT_UNSET) {
Dianne Hackborna8f60182009-09-01 19:01:50 -07004003 mToTopApps.remove(wt);
4004 mToBottomApps.remove(wt);
4005 mToTopApps.add(wt);
4006 wt.sendingToBottom = false;
4007 wt.sendingToTop = true;
4008 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004009 }
4010 }
Dianne Hackborna8f60182009-09-01 19:01:50 -07004011
Dianne Hackbornbfe319e2009-09-21 00:34:05 -07004012 if (mNextAppTransition == WindowManagerPolicy.TRANSIT_UNSET) {
Dianne Hackborna8f60182009-09-01 19:01:50 -07004013 moveAppWindowsLocked(tokens, mAppTokens.size());
4014 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004015 }
4016 Binder.restoreCallingIdentity(origId);
4017 }
4018
4019 public void moveAppTokensToBottom(List<IBinder> tokens) {
4020 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
4021 "moveAppTokensToBottom()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07004022 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004023 }
4024
4025 final long origId = Binder.clearCallingIdentity();
4026 synchronized(mWindowMap) {
4027 removeAppTokensLocked(tokens);
4028 final int N = tokens.size();
4029 int pos = 0;
4030 for (int i=0; i<N; i++) {
4031 AppWindowToken wt = findAppWindowToken(tokens.get(i));
4032 if (wt != null) {
4033 mAppTokens.add(pos, wt);
Dianne Hackbornbfe319e2009-09-21 00:34:05 -07004034 if (mNextAppTransition != WindowManagerPolicy.TRANSIT_UNSET) {
Dianne Hackborna8f60182009-09-01 19:01:50 -07004035 mToTopApps.remove(wt);
4036 mToBottomApps.remove(wt);
4037 mToBottomApps.add(i, wt);
4038 wt.sendingToTop = false;
4039 wt.sendingToBottom = true;
4040 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004041 pos++;
4042 }
4043 }
Dianne Hackborna8f60182009-09-01 19:01:50 -07004044
Dianne Hackbornbfe319e2009-09-21 00:34:05 -07004045 if (mNextAppTransition == WindowManagerPolicy.TRANSIT_UNSET) {
Dianne Hackborna8f60182009-09-01 19:01:50 -07004046 moveAppWindowsLocked(tokens, 0);
4047 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004048 }
4049 Binder.restoreCallingIdentity(origId);
4050 }
4051
4052 // -------------------------------------------------------------
4053 // Misc IWindowSession methods
4054 // -------------------------------------------------------------
Romain Guy06882f82009-06-10 13:36:04 -07004055
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004056 public void disableKeyguard(IBinder token, String tag) {
Mike Lockwood733fdf32009-09-28 19:08:53 -04004057 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DISABLE_KEYGUARD)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004058 != PackageManager.PERMISSION_GRANTED) {
4059 throw new SecurityException("Requires DISABLE_KEYGUARD permission");
4060 }
Mike Lockwood983ee092009-11-22 01:42:24 -05004061 synchronized (mKeyguardTokenWatcher) {
4062 mKeyguardTokenWatcher.acquire(token, tag);
Mike Lockwooddd884682009-10-11 16:57:08 -04004063 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004064 }
4065
4066 public void reenableKeyguard(IBinder token) {
Mike Lockwood733fdf32009-09-28 19:08:53 -04004067 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DISABLE_KEYGUARD)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004068 != PackageManager.PERMISSION_GRANTED) {
4069 throw new SecurityException("Requires DISABLE_KEYGUARD permission");
4070 }
Mike Lockwood983ee092009-11-22 01:42:24 -05004071 synchronized (mKeyguardTokenWatcher) {
4072 mKeyguardTokenWatcher.release(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004073
Mike Lockwood983ee092009-11-22 01:42:24 -05004074 if (!mKeyguardTokenWatcher.isAcquired()) {
4075 // If we are the last one to reenable the keyguard wait until
4076 // we have actaully finished reenabling until returning.
4077 // It is possible that reenableKeyguard() can be called before
4078 // the previous disableKeyguard() is handled, in which case
4079 // neither mKeyguardTokenWatcher.acquired() or released() would
4080 // be called. In that case mKeyguardDisabled will be false here
4081 // and we have nothing to wait for.
4082 while (mKeyguardDisabled) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004083 try {
Mike Lockwood983ee092009-11-22 01:42:24 -05004084 mKeyguardTokenWatcher.wait();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004085 } catch (InterruptedException e) {
4086 Thread.currentThread().interrupt();
4087 }
4088 }
4089 }
4090 }
4091 }
4092
4093 /**
4094 * @see android.app.KeyguardManager#exitKeyguardSecurely
4095 */
4096 public void exitKeyguardSecurely(final IOnKeyguardExitResult callback) {
Mike Lockwood733fdf32009-09-28 19:08:53 -04004097 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DISABLE_KEYGUARD)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004098 != PackageManager.PERMISSION_GRANTED) {
4099 throw new SecurityException("Requires DISABLE_KEYGUARD permission");
4100 }
4101 mPolicy.exitKeyguardSecurely(new WindowManagerPolicy.OnKeyguardExitResult() {
4102 public void onKeyguardExitResult(boolean success) {
4103 try {
4104 callback.onKeyguardExitResult(success);
4105 } catch (RemoteException e) {
4106 // Client has died, we don't care.
4107 }
4108 }
4109 });
4110 }
4111
4112 public boolean inKeyguardRestrictedInputMode() {
4113 return mPolicy.inKeyguardRestrictedKeyInputMode();
4114 }
Romain Guy06882f82009-06-10 13:36:04 -07004115
Dianne Hackbornffa42482009-09-23 22:20:11 -07004116 public void closeSystemDialogs(String reason) {
4117 synchronized(mWindowMap) {
4118 for (int i=mWindows.size()-1; i>=0; i--) {
4119 WindowState w = (WindowState)mWindows.get(i);
4120 if (w.mSurface != null) {
4121 try {
4122 w.mClient.closeSystemDialogs(reason);
4123 } catch (RemoteException e) {
4124 }
4125 }
4126 }
4127 }
4128 }
4129
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004130 static float fixScale(float scale) {
4131 if (scale < 0) scale = 0;
4132 else if (scale > 20) scale = 20;
4133 return Math.abs(scale);
4134 }
Romain Guy06882f82009-06-10 13:36:04 -07004135
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004136 public void setAnimationScale(int which, float scale) {
4137 if (!checkCallingPermission(android.Manifest.permission.SET_ANIMATION_SCALE,
4138 "setAnimationScale()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07004139 throw new SecurityException("Requires SET_ANIMATION_SCALE permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004140 }
4141
4142 if (scale < 0) scale = 0;
4143 else if (scale > 20) scale = 20;
4144 scale = Math.abs(scale);
4145 switch (which) {
4146 case 0: mWindowAnimationScale = fixScale(scale); break;
4147 case 1: mTransitionAnimationScale = fixScale(scale); break;
4148 }
Romain Guy06882f82009-06-10 13:36:04 -07004149
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004150 // Persist setting
4151 mH.obtainMessage(H.PERSIST_ANIMATION_SCALE).sendToTarget();
4152 }
Romain Guy06882f82009-06-10 13:36:04 -07004153
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004154 public void setAnimationScales(float[] scales) {
4155 if (!checkCallingPermission(android.Manifest.permission.SET_ANIMATION_SCALE,
4156 "setAnimationScale()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07004157 throw new SecurityException("Requires SET_ANIMATION_SCALE permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004158 }
4159
4160 if (scales != null) {
4161 if (scales.length >= 1) {
4162 mWindowAnimationScale = fixScale(scales[0]);
4163 }
4164 if (scales.length >= 2) {
4165 mTransitionAnimationScale = fixScale(scales[1]);
4166 }
4167 }
Romain Guy06882f82009-06-10 13:36:04 -07004168
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004169 // Persist setting
4170 mH.obtainMessage(H.PERSIST_ANIMATION_SCALE).sendToTarget();
4171 }
Romain Guy06882f82009-06-10 13:36:04 -07004172
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004173 public float getAnimationScale(int which) {
4174 switch (which) {
4175 case 0: return mWindowAnimationScale;
4176 case 1: return mTransitionAnimationScale;
4177 }
4178 return 0;
4179 }
Romain Guy06882f82009-06-10 13:36:04 -07004180
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004181 public float[] getAnimationScales() {
4182 return new float[] { mWindowAnimationScale, mTransitionAnimationScale };
4183 }
Romain Guy06882f82009-06-10 13:36:04 -07004184
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004185 public int getSwitchState(int sw) {
4186 if (!checkCallingPermission(android.Manifest.permission.READ_INPUT_STATE,
4187 "getSwitchState()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07004188 throw new SecurityException("Requires READ_INPUT_STATE permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004189 }
4190 return KeyInputQueue.getSwitchState(sw);
4191 }
Romain Guy06882f82009-06-10 13:36:04 -07004192
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004193 public int getSwitchStateForDevice(int devid, int sw) {
4194 if (!checkCallingPermission(android.Manifest.permission.READ_INPUT_STATE,
4195 "getSwitchStateForDevice()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07004196 throw new SecurityException("Requires READ_INPUT_STATE permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004197 }
4198 return KeyInputQueue.getSwitchState(devid, sw);
4199 }
Romain Guy06882f82009-06-10 13:36:04 -07004200
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004201 public int getScancodeState(int sw) {
4202 if (!checkCallingPermission(android.Manifest.permission.READ_INPUT_STATE,
4203 "getScancodeState()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07004204 throw new SecurityException("Requires READ_INPUT_STATE permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004205 }
Dianne Hackborn6af0d502009-09-28 13:25:46 -07004206 return mQueue.getScancodeState(sw);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004207 }
Romain Guy06882f82009-06-10 13:36:04 -07004208
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004209 public int getScancodeStateForDevice(int devid, int sw) {
4210 if (!checkCallingPermission(android.Manifest.permission.READ_INPUT_STATE,
4211 "getScancodeStateForDevice()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07004212 throw new SecurityException("Requires READ_INPUT_STATE permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004213 }
Dianne Hackborn6af0d502009-09-28 13:25:46 -07004214 return mQueue.getScancodeState(devid, sw);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004215 }
Romain Guy06882f82009-06-10 13:36:04 -07004216
Dianne Hackborn1d62ea92009-11-17 12:49:50 -08004217 public int getTrackballScancodeState(int sw) {
4218 if (!checkCallingPermission(android.Manifest.permission.READ_INPUT_STATE,
4219 "getTrackballScancodeState()")) {
4220 throw new SecurityException("Requires READ_INPUT_STATE permission");
4221 }
4222 return mQueue.getTrackballScancodeState(sw);
4223 }
4224
4225 public int getDPadScancodeState(int sw) {
4226 if (!checkCallingPermission(android.Manifest.permission.READ_INPUT_STATE,
4227 "getDPadScancodeState()")) {
4228 throw new SecurityException("Requires READ_INPUT_STATE permission");
4229 }
4230 return mQueue.getDPadScancodeState(sw);
4231 }
4232
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004233 public int getKeycodeState(int sw) {
4234 if (!checkCallingPermission(android.Manifest.permission.READ_INPUT_STATE,
4235 "getKeycodeState()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07004236 throw new SecurityException("Requires READ_INPUT_STATE permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004237 }
Dianne Hackborn6af0d502009-09-28 13:25:46 -07004238 return mQueue.getKeycodeState(sw);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004239 }
Romain Guy06882f82009-06-10 13:36:04 -07004240
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004241 public int getKeycodeStateForDevice(int devid, int sw) {
4242 if (!checkCallingPermission(android.Manifest.permission.READ_INPUT_STATE,
4243 "getKeycodeStateForDevice()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07004244 throw new SecurityException("Requires READ_INPUT_STATE permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004245 }
Dianne Hackborn6af0d502009-09-28 13:25:46 -07004246 return mQueue.getKeycodeState(devid, sw);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004247 }
Romain Guy06882f82009-06-10 13:36:04 -07004248
Dianne Hackborn1d62ea92009-11-17 12:49:50 -08004249 public int getTrackballKeycodeState(int sw) {
4250 if (!checkCallingPermission(android.Manifest.permission.READ_INPUT_STATE,
4251 "getTrackballKeycodeState()")) {
4252 throw new SecurityException("Requires READ_INPUT_STATE permission");
4253 }
4254 return mQueue.getTrackballKeycodeState(sw);
4255 }
4256
4257 public int getDPadKeycodeState(int sw) {
4258 if (!checkCallingPermission(android.Manifest.permission.READ_INPUT_STATE,
4259 "getDPadKeycodeState()")) {
4260 throw new SecurityException("Requires READ_INPUT_STATE permission");
4261 }
4262 return mQueue.getDPadKeycodeState(sw);
4263 }
4264
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004265 public boolean hasKeys(int[] keycodes, boolean[] keyExists) {
4266 return KeyInputQueue.hasKeys(keycodes, keyExists);
4267 }
Romain Guy06882f82009-06-10 13:36:04 -07004268
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004269 public void enableScreenAfterBoot() {
4270 synchronized(mWindowMap) {
4271 if (mSystemBooted) {
4272 return;
4273 }
4274 mSystemBooted = true;
4275 }
Romain Guy06882f82009-06-10 13:36:04 -07004276
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004277 performEnableScreen();
4278 }
Romain Guy06882f82009-06-10 13:36:04 -07004279
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004280 public void enableScreenIfNeededLocked() {
4281 if (mDisplayEnabled) {
4282 return;
4283 }
4284 if (!mSystemBooted) {
4285 return;
4286 }
4287 mH.sendMessage(mH.obtainMessage(H.ENABLE_SCREEN));
4288 }
Romain Guy06882f82009-06-10 13:36:04 -07004289
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004290 public void performEnableScreen() {
4291 synchronized(mWindowMap) {
4292 if (mDisplayEnabled) {
4293 return;
4294 }
4295 if (!mSystemBooted) {
4296 return;
4297 }
Romain Guy06882f82009-06-10 13:36:04 -07004298
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004299 // Don't enable the screen until all existing windows
4300 // have been drawn.
4301 final int N = mWindows.size();
4302 for (int i=0; i<N; i++) {
4303 WindowState w = (WindowState)mWindows.get(i);
Dianne Hackborn7433e8a2009-09-27 13:21:20 -07004304 if (w.isVisibleLw() && !w.isDrawnLw()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004305 return;
4306 }
4307 }
Romain Guy06882f82009-06-10 13:36:04 -07004308
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004309 mDisplayEnabled = true;
4310 if (false) {
4311 Log.i(TAG, "ENABLING SCREEN!");
4312 StringWriter sw = new StringWriter();
4313 PrintWriter pw = new PrintWriter(sw);
4314 this.dump(null, pw, null);
4315 Log.i(TAG, sw.toString());
4316 }
4317 try {
4318 IBinder surfaceFlinger = ServiceManager.getService("SurfaceFlinger");
4319 if (surfaceFlinger != null) {
4320 //Log.i(TAG, "******* TELLING SURFACE FLINGER WE ARE BOOTED!");
4321 Parcel data = Parcel.obtain();
4322 data.writeInterfaceToken("android.ui.ISurfaceComposer");
4323 surfaceFlinger.transact(IBinder.FIRST_CALL_TRANSACTION,
4324 data, null, 0);
4325 data.recycle();
4326 }
4327 } catch (RemoteException ex) {
4328 Log.e(TAG, "Boot completed: SurfaceFlinger is dead!");
4329 }
4330 }
Romain Guy06882f82009-06-10 13:36:04 -07004331
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004332 mPolicy.enableScreenAfterBoot();
Romain Guy06882f82009-06-10 13:36:04 -07004333
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004334 // Make sure the last requested orientation has been applied.
Dianne Hackborn321ae682009-03-27 16:16:03 -07004335 setRotationUnchecked(WindowManagerPolicy.USE_LAST_ROTATION, false,
4336 mLastRotationFlags | Surface.FLAGS_ORIENTATION_ANIMATION_DISABLE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004337 }
Romain Guy06882f82009-06-10 13:36:04 -07004338
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004339 public void setInTouchMode(boolean mode) {
4340 synchronized(mWindowMap) {
4341 mInTouchMode = mode;
4342 }
4343 }
4344
Romain Guy06882f82009-06-10 13:36:04 -07004345 public void setRotation(int rotation,
Dianne Hackborn1e880db2009-03-27 16:04:08 -07004346 boolean alwaysSendConfiguration, int animFlags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004347 if (!checkCallingPermission(android.Manifest.permission.SET_ORIENTATION,
Dianne Hackborn1e880db2009-03-27 16:04:08 -07004348 "setRotation()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07004349 throw new SecurityException("Requires SET_ORIENTATION permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004350 }
4351
Dianne Hackborn1e880db2009-03-27 16:04:08 -07004352 setRotationUnchecked(rotation, alwaysSendConfiguration, animFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004353 }
Romain Guy06882f82009-06-10 13:36:04 -07004354
Dianne Hackborn1e880db2009-03-27 16:04:08 -07004355 public void setRotationUnchecked(int rotation,
4356 boolean alwaysSendConfiguration, int animFlags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004357 if(DEBUG_ORIENTATION) Log.v(TAG,
4358 "alwaysSendConfiguration set to "+alwaysSendConfiguration);
Romain Guy06882f82009-06-10 13:36:04 -07004359
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004360 long origId = Binder.clearCallingIdentity();
4361 boolean changed;
4362 synchronized(mWindowMap) {
Dianne Hackborn1e880db2009-03-27 16:04:08 -07004363 changed = setRotationUncheckedLocked(rotation, animFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004364 }
Romain Guy06882f82009-06-10 13:36:04 -07004365
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004366 if (changed) {
4367 sendNewConfiguration();
4368 synchronized(mWindowMap) {
4369 mLayoutNeeded = true;
4370 performLayoutAndPlaceSurfacesLocked();
4371 }
4372 } else if (alwaysSendConfiguration) {
4373 //update configuration ignoring orientation change
4374 sendNewConfiguration();
4375 }
Romain Guy06882f82009-06-10 13:36:04 -07004376
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004377 Binder.restoreCallingIdentity(origId);
4378 }
Romain Guy06882f82009-06-10 13:36:04 -07004379
Dianne Hackborn1e880db2009-03-27 16:04:08 -07004380 public boolean setRotationUncheckedLocked(int rotation, int animFlags) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004381 boolean changed;
4382 if (rotation == WindowManagerPolicy.USE_LAST_ROTATION) {
4383 rotation = mRequestedRotation;
4384 } else {
4385 mRequestedRotation = rotation;
Dianne Hackborn321ae682009-03-27 16:16:03 -07004386 mLastRotationFlags = animFlags;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004387 }
4388 if (DEBUG_ORIENTATION) Log.v(TAG, "Overwriting rotation value from " + rotation);
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07004389 rotation = mPolicy.rotationForOrientationLw(mForcedAppOrientation,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004390 mRotation, mDisplayEnabled);
4391 if (DEBUG_ORIENTATION) Log.v(TAG, "new rotation is set to " + rotation);
4392 changed = mDisplayEnabled && mRotation != rotation;
Romain Guy06882f82009-06-10 13:36:04 -07004393
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004394 if (changed) {
Romain Guy06882f82009-06-10 13:36:04 -07004395 if (DEBUG_ORIENTATION) Log.v(TAG,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004396 "Rotation changed to " + rotation
4397 + " from " + mRotation
4398 + " (forceApp=" + mForcedAppOrientation
4399 + ", req=" + mRequestedRotation + ")");
4400 mRotation = rotation;
4401 mWindowsFreezingScreen = true;
4402 mH.removeMessages(H.WINDOW_FREEZE_TIMEOUT);
4403 mH.sendMessageDelayed(mH.obtainMessage(H.WINDOW_FREEZE_TIMEOUT),
4404 2000);
4405 startFreezingDisplayLocked();
Dianne Hackborn1e880db2009-03-27 16:04:08 -07004406 Log.i(TAG, "Setting rotation to " + rotation + ", animFlags=" + animFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004407 mQueue.setOrientation(rotation);
4408 if (mDisplayEnabled) {
Dianne Hackborn321ae682009-03-27 16:16:03 -07004409 Surface.setOrientation(0, rotation, animFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004410 }
4411 for (int i=mWindows.size()-1; i>=0; i--) {
4412 WindowState w = (WindowState)mWindows.get(i);
4413 if (w.mSurface != null) {
4414 w.mOrientationChanging = true;
4415 }
4416 }
4417 for (int i=mRotationWatchers.size()-1; i>=0; i--) {
4418 try {
4419 mRotationWatchers.get(i).onRotationChanged(rotation);
4420 } catch (RemoteException e) {
4421 }
4422 }
4423 } //end if changed
Romain Guy06882f82009-06-10 13:36:04 -07004424
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004425 return changed;
4426 }
Romain Guy06882f82009-06-10 13:36:04 -07004427
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004428 public int getRotation() {
4429 return mRotation;
4430 }
4431
4432 public int watchRotation(IRotationWatcher watcher) {
4433 final IBinder watcherBinder = watcher.asBinder();
4434 IBinder.DeathRecipient dr = new IBinder.DeathRecipient() {
4435 public void binderDied() {
4436 synchronized (mWindowMap) {
4437 for (int i=0; i<mRotationWatchers.size(); i++) {
4438 if (watcherBinder == mRotationWatchers.get(i).asBinder()) {
Suchi Amalapurapufff2fda2009-06-30 21:36:16 -07004439 IRotationWatcher removed = mRotationWatchers.remove(i);
4440 if (removed != null) {
4441 removed.asBinder().unlinkToDeath(this, 0);
4442 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004443 i--;
4444 }
4445 }
4446 }
4447 }
4448 };
Romain Guy06882f82009-06-10 13:36:04 -07004449
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004450 synchronized (mWindowMap) {
4451 try {
4452 watcher.asBinder().linkToDeath(dr, 0);
4453 mRotationWatchers.add(watcher);
4454 } catch (RemoteException e) {
4455 // Client died, no cleanup needed.
4456 }
Romain Guy06882f82009-06-10 13:36:04 -07004457
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004458 return mRotation;
4459 }
4460 }
4461
4462 /**
4463 * Starts the view server on the specified port.
4464 *
4465 * @param port The port to listener to.
4466 *
4467 * @return True if the server was successfully started, false otherwise.
4468 *
4469 * @see com.android.server.ViewServer
4470 * @see com.android.server.ViewServer#VIEW_SERVER_DEFAULT_PORT
4471 */
4472 public boolean startViewServer(int port) {
Romain Guy06882f82009-06-10 13:36:04 -07004473 if (isSystemSecure()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004474 return false;
4475 }
4476
4477 if (!checkCallingPermission(Manifest.permission.DUMP, "startViewServer")) {
4478 return false;
4479 }
4480
4481 if (port < 1024) {
4482 return false;
4483 }
4484
4485 if (mViewServer != null) {
4486 if (!mViewServer.isRunning()) {
4487 try {
4488 return mViewServer.start();
4489 } catch (IOException e) {
Romain Guy06882f82009-06-10 13:36:04 -07004490 Log.w(TAG, "View server did not start");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004491 }
4492 }
4493 return false;
4494 }
4495
4496 try {
4497 mViewServer = new ViewServer(this, port);
4498 return mViewServer.start();
4499 } catch (IOException e) {
4500 Log.w(TAG, "View server did not start");
4501 }
4502 return false;
4503 }
4504
Romain Guy06882f82009-06-10 13:36:04 -07004505 private boolean isSystemSecure() {
4506 return "1".equals(SystemProperties.get(SYSTEM_SECURE, "1")) &&
4507 "0".equals(SystemProperties.get(SYSTEM_DEBUGGABLE, "0"));
4508 }
4509
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004510 /**
4511 * Stops the view server if it exists.
4512 *
4513 * @return True if the server stopped, false if it wasn't started or
4514 * couldn't be stopped.
4515 *
4516 * @see com.android.server.ViewServer
4517 */
4518 public boolean stopViewServer() {
Romain Guy06882f82009-06-10 13:36:04 -07004519 if (isSystemSecure()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004520 return false;
4521 }
4522
4523 if (!checkCallingPermission(Manifest.permission.DUMP, "stopViewServer")) {
4524 return false;
4525 }
4526
4527 if (mViewServer != null) {
4528 return mViewServer.stop();
4529 }
4530 return false;
4531 }
4532
4533 /**
4534 * Indicates whether the view server is running.
4535 *
4536 * @return True if the server is running, false otherwise.
4537 *
4538 * @see com.android.server.ViewServer
4539 */
4540 public boolean isViewServerRunning() {
Romain Guy06882f82009-06-10 13:36:04 -07004541 if (isSystemSecure()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004542 return false;
4543 }
4544
4545 if (!checkCallingPermission(Manifest.permission.DUMP, "isViewServerRunning")) {
4546 return false;
4547 }
4548
4549 return mViewServer != null && mViewServer.isRunning();
4550 }
4551
4552 /**
4553 * Lists all availble windows in the system. The listing is written in the
4554 * specified Socket's output stream with the following syntax:
4555 * windowHashCodeInHexadecimal windowName
4556 * Each line of the ouput represents a different window.
4557 *
4558 * @param client The remote client to send the listing to.
4559 * @return False if an error occured, true otherwise.
4560 */
4561 boolean viewServerListWindows(Socket client) {
Romain Guy06882f82009-06-10 13:36:04 -07004562 if (isSystemSecure()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004563 return false;
4564 }
4565
4566 boolean result = true;
4567
4568 Object[] windows;
4569 synchronized (mWindowMap) {
4570 windows = new Object[mWindows.size()];
4571 //noinspection unchecked
4572 windows = mWindows.toArray(windows);
4573 }
4574
4575 BufferedWriter out = null;
4576
4577 // Any uncaught exception will crash the system process
4578 try {
4579 OutputStream clientStream = client.getOutputStream();
4580 out = new BufferedWriter(new OutputStreamWriter(clientStream), 8 * 1024);
4581
4582 final int count = windows.length;
4583 for (int i = 0; i < count; i++) {
4584 final WindowState w = (WindowState) windows[i];
4585 out.write(Integer.toHexString(System.identityHashCode(w)));
4586 out.write(' ');
4587 out.append(w.mAttrs.getTitle());
4588 out.write('\n');
4589 }
4590
4591 out.write("DONE.\n");
4592 out.flush();
4593 } catch (Exception e) {
4594 result = false;
4595 } finally {
4596 if (out != null) {
4597 try {
4598 out.close();
4599 } catch (IOException e) {
4600 result = false;
4601 }
4602 }
4603 }
4604
4605 return result;
4606 }
4607
4608 /**
4609 * Sends a command to a target window. The result of the command, if any, will be
4610 * written in the output stream of the specified socket.
4611 *
4612 * The parameters must follow this syntax:
4613 * windowHashcode extra
4614 *
4615 * Where XX is the length in characeters of the windowTitle.
4616 *
4617 * The first parameter is the target window. The window with the specified hashcode
4618 * will be the target. If no target can be found, nothing happens. The extra parameters
4619 * will be delivered to the target window and as parameters to the command itself.
4620 *
4621 * @param client The remote client to sent the result, if any, to.
4622 * @param command The command to execute.
4623 * @param parameters The command parameters.
4624 *
4625 * @return True if the command was successfully delivered, false otherwise. This does
4626 * not indicate whether the command itself was successful.
4627 */
4628 boolean viewServerWindowCommand(Socket client, String command, String parameters) {
Romain Guy06882f82009-06-10 13:36:04 -07004629 if (isSystemSecure()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004630 return false;
4631 }
4632
4633 boolean success = true;
4634 Parcel data = null;
4635 Parcel reply = null;
4636
4637 // Any uncaught exception will crash the system process
4638 try {
4639 // Find the hashcode of the window
4640 int index = parameters.indexOf(' ');
4641 if (index == -1) {
4642 index = parameters.length();
4643 }
4644 final String code = parameters.substring(0, index);
4645 int hashCode = "ffffffff".equals(code) ? -1 : Integer.parseInt(code, 16);
4646
4647 // Extract the command's parameter after the window description
4648 if (index < parameters.length()) {
4649 parameters = parameters.substring(index + 1);
4650 } else {
4651 parameters = "";
4652 }
4653
4654 final WindowManagerService.WindowState window = findWindow(hashCode);
4655 if (window == null) {
4656 return false;
4657 }
4658
4659 data = Parcel.obtain();
4660 data.writeInterfaceToken("android.view.IWindow");
4661 data.writeString(command);
4662 data.writeString(parameters);
4663 data.writeInt(1);
4664 ParcelFileDescriptor.fromSocket(client).writeToParcel(data, 0);
4665
4666 reply = Parcel.obtain();
4667
4668 final IBinder binder = window.mClient.asBinder();
4669 // TODO: GET THE TRANSACTION CODE IN A SAFER MANNER
4670 binder.transact(IBinder.FIRST_CALL_TRANSACTION, data, reply, 0);
4671
4672 reply.readException();
4673
4674 } catch (Exception e) {
4675 Log.w(TAG, "Could not send command " + command + " with parameters " + parameters, e);
4676 success = false;
4677 } finally {
4678 if (data != null) {
4679 data.recycle();
4680 }
4681 if (reply != null) {
4682 reply.recycle();
4683 }
4684 }
4685
4686 return success;
4687 }
4688
4689 private WindowState findWindow(int hashCode) {
4690 if (hashCode == -1) {
4691 return getFocusedWindow();
4692 }
4693
4694 synchronized (mWindowMap) {
4695 final ArrayList windows = mWindows;
4696 final int count = windows.size();
4697
4698 for (int i = 0; i < count; i++) {
4699 WindowState w = (WindowState) windows.get(i);
4700 if (System.identityHashCode(w) == hashCode) {
4701 return w;
4702 }
4703 }
4704 }
4705
4706 return null;
4707 }
4708
4709 /*
4710 * Instruct the Activity Manager to fetch the current configuration and broadcast
4711 * that to config-changed listeners if appropriate.
4712 */
4713 void sendNewConfiguration() {
4714 try {
4715 mActivityManager.updateConfiguration(null);
4716 } catch (RemoteException e) {
4717 }
4718 }
Romain Guy06882f82009-06-10 13:36:04 -07004719
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004720 public Configuration computeNewConfiguration() {
4721 synchronized (mWindowMap) {
Dianne Hackbornc485a602009-03-24 22:39:49 -07004722 return computeNewConfigurationLocked();
4723 }
4724 }
Romain Guy06882f82009-06-10 13:36:04 -07004725
Dianne Hackbornc485a602009-03-24 22:39:49 -07004726 Configuration computeNewConfigurationLocked() {
4727 Configuration config = new Configuration();
4728 if (!computeNewConfigurationLocked(config)) {
4729 return null;
4730 }
Dianne Hackbornc485a602009-03-24 22:39:49 -07004731 return config;
4732 }
Romain Guy06882f82009-06-10 13:36:04 -07004733
Dianne Hackbornc485a602009-03-24 22:39:49 -07004734 boolean computeNewConfigurationLocked(Configuration config) {
4735 if (mDisplay == null) {
4736 return false;
4737 }
4738 mQueue.getInputConfiguration(config);
4739 final int dw = mDisplay.getWidth();
4740 final int dh = mDisplay.getHeight();
4741 int orientation = Configuration.ORIENTATION_SQUARE;
4742 if (dw < dh) {
4743 orientation = Configuration.ORIENTATION_PORTRAIT;
4744 } else if (dw > dh) {
4745 orientation = Configuration.ORIENTATION_LANDSCAPE;
4746 }
4747 config.orientation = orientation;
Dianne Hackborn723738c2009-06-25 19:48:04 -07004748
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -07004749 DisplayMetrics dm = new DisplayMetrics();
4750 mDisplay.getMetrics(dm);
4751 CompatibilityInfo.updateCompatibleScreenFrame(dm, orientation, mCompatibleScreenFrame);
4752
Dianne Hackbornc4db95c2009-07-21 17:46:02 -07004753 if (mScreenLayout == Configuration.SCREENLAYOUT_SIZE_UNDEFINED) {
Dianne Hackborn723738c2009-06-25 19:48:04 -07004754 // Note we only do this once because at this point we don't
4755 // expect the screen to change in this way at runtime, and want
4756 // to avoid all of this computation for every config change.
Dianne Hackborn723738c2009-06-25 19:48:04 -07004757 int longSize = dw;
4758 int shortSize = dh;
4759 if (longSize < shortSize) {
4760 int tmp = longSize;
4761 longSize = shortSize;
4762 shortSize = tmp;
4763 }
4764 longSize = (int)(longSize/dm.density);
4765 shortSize = (int)(shortSize/dm.density);
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -07004766
Dianne Hackborn723738c2009-06-25 19:48:04 -07004767 // These semi-magic numbers define our compatibility modes for
4768 // applications with different screens. Don't change unless you
4769 // make sure to test lots and lots of apps!
4770 if (longSize < 470) {
4771 // This is shorter than an HVGA normal density screen (which
4772 // is 480 pixels on its long side).
Dianne Hackbornc4db95c2009-07-21 17:46:02 -07004773 mScreenLayout = Configuration.SCREENLAYOUT_SIZE_SMALL
4774 | Configuration.SCREENLAYOUT_LONG_NO;
Dianne Hackborn723738c2009-06-25 19:48:04 -07004775 } else {
Dianne Hackbornc4db95c2009-07-21 17:46:02 -07004776 // Is this a large screen?
4777 if (longSize > 640 && shortSize >= 480) {
4778 // VGA or larger screens at medium density are the point
4779 // at which we consider it to be a large screen.
4780 mScreenLayout = Configuration.SCREENLAYOUT_SIZE_LARGE;
4781 } else {
4782 mScreenLayout = Configuration.SCREENLAYOUT_SIZE_NORMAL;
4783
4784 // If this screen is wider than normal HVGA, or taller
4785 // than FWVGA, then for old apps we want to run in size
4786 // compatibility mode.
4787 if (shortSize > 321 || longSize > 570) {
4788 mScreenLayout |= Configuration.SCREENLAYOUT_COMPAT_NEEDED;
4789 }
4790 }
4791
4792 // Is this a long screen?
4793 if (((longSize*3)/5) >= (shortSize-1)) {
4794 // Anything wider than WVGA (5:3) is considering to be long.
4795 mScreenLayout |= Configuration.SCREENLAYOUT_LONG_YES;
4796 } else {
4797 mScreenLayout |= Configuration.SCREENLAYOUT_LONG_NO;
4798 }
Dianne Hackborn723738c2009-06-25 19:48:04 -07004799 }
4800 }
Dianne Hackbornc4db95c2009-07-21 17:46:02 -07004801 config.screenLayout = mScreenLayout;
Dianne Hackborn723738c2009-06-25 19:48:04 -07004802
Dianne Hackbornc485a602009-03-24 22:39:49 -07004803 config.keyboardHidden = Configuration.KEYBOARDHIDDEN_NO;
4804 config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_NO;
4805 mPolicy.adjustConfigurationLw(config);
4806 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004807 }
Romain Guy06882f82009-06-10 13:36:04 -07004808
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004809 // -------------------------------------------------------------
4810 // Input Events and Focus Management
4811 // -------------------------------------------------------------
4812
4813 private final void wakeupIfNeeded(WindowState targetWin, int eventType) {
Michael Chane96440f2009-05-06 10:27:36 -07004814 long curTime = SystemClock.uptimeMillis();
4815
Michael Chane10de972009-05-18 11:24:50 -07004816 if (eventType == TOUCH_EVENT || eventType == LONG_TOUCH_EVENT || eventType == CHEEK_EVENT) {
Michael Chane96440f2009-05-06 10:27:36 -07004817 if (mLastTouchEventType == eventType &&
4818 (curTime - mLastUserActivityCallTime) < MIN_TIME_BETWEEN_USERACTIVITIES) {
4819 return;
4820 }
4821 mLastUserActivityCallTime = curTime;
4822 mLastTouchEventType = eventType;
4823 }
4824
4825 if (targetWin == null
4826 || targetWin.mAttrs.type != WindowManager.LayoutParams.TYPE_KEYGUARD) {
4827 mPowerManager.userActivity(curTime, false, eventType, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004828 }
4829 }
4830
4831 // tells if it's a cheek event or not -- this function is stateful
4832 private static final int EVENT_NONE = 0;
4833 private static final int EVENT_UNKNOWN = 0;
4834 private static final int EVENT_CHEEK = 0;
4835 private static final int EVENT_IGNORE_DURATION = 300; // ms
4836 private static final float CHEEK_THRESHOLD = 0.6f;
4837 private int mEventState = EVENT_NONE;
4838 private float mEventSize;
Joe Onoratoe68ffcb2009-03-24 19:11:13 -07004839
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004840 private int eventType(MotionEvent ev) {
4841 float size = ev.getSize();
4842 switch (ev.getAction()) {
4843 case MotionEvent.ACTION_DOWN:
4844 mEventSize = size;
4845 return (mEventSize > CHEEK_THRESHOLD) ? CHEEK_EVENT : TOUCH_EVENT;
4846 case MotionEvent.ACTION_UP:
4847 if (size > mEventSize) mEventSize = size;
Joe Onoratoe68ffcb2009-03-24 19:11:13 -07004848 return (mEventSize > CHEEK_THRESHOLD) ? CHEEK_EVENT : TOUCH_UP_EVENT;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004849 case MotionEvent.ACTION_MOVE:
4850 final int N = ev.getHistorySize();
4851 if (size > mEventSize) mEventSize = size;
4852 if (mEventSize > CHEEK_THRESHOLD) return CHEEK_EVENT;
4853 for (int i=0; i<N; i++) {
4854 size = ev.getHistoricalSize(i);
4855 if (size > mEventSize) mEventSize = size;
4856 if (mEventSize > CHEEK_THRESHOLD) return CHEEK_EVENT;
4857 }
4858 if (ev.getEventTime() < ev.getDownTime() + EVENT_IGNORE_DURATION) {
4859 return TOUCH_EVENT;
4860 } else {
Joe Onoratoe68ffcb2009-03-24 19:11:13 -07004861 return LONG_TOUCH_EVENT;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004862 }
4863 default:
4864 // not good
4865 return OTHER_EVENT;
4866 }
4867 }
4868
4869 /**
4870 * @return Returns true if event was dispatched, false if it was dropped for any reason
4871 */
Dianne Hackborncfaef692009-06-15 14:24:44 -07004872 private int dispatchPointer(QueuedEvent qev, MotionEvent ev, int pid, int uid) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004873 if (DEBUG_INPUT || WindowManagerPolicy.WATCH_POINTER) Log.v(TAG,
4874 "dispatchPointer " + ev);
4875
Michael Chan53071d62009-05-13 17:29:48 -07004876 if (MEASURE_LATENCY) {
4877 lt.sample("3 Wait for last dispatch ", System.nanoTime() - qev.whenNano);
4878 }
4879
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004880 Object targetObj = mKeyWaiter.waitForNextEventTarget(null, qev,
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07004881 ev, true, false, pid, uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004882
Michael Chan53071d62009-05-13 17:29:48 -07004883 if (MEASURE_LATENCY) {
4884 lt.sample("3 Last dispatch finished ", System.nanoTime() - qev.whenNano);
4885 }
4886
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004887 int action = ev.getAction();
Romain Guy06882f82009-06-10 13:36:04 -07004888
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004889 if (action == MotionEvent.ACTION_UP) {
4890 // let go of our target
4891 mKeyWaiter.mMotionTarget = null;
4892 mPowerManager.logPointerUpEvent();
4893 } else if (action == MotionEvent.ACTION_DOWN) {
4894 mPowerManager.logPointerDownEvent();
4895 }
4896
4897 if (targetObj == null) {
4898 // In this case we are either dropping the event, or have received
4899 // a move or up without a down. It is common to receive move
4900 // events in such a way, since this means the user is moving the
4901 // pointer without actually pressing down. All other cases should
4902 // be atypical, so let's log them.
Michael Chane96440f2009-05-06 10:27:36 -07004903 if (action != MotionEvent.ACTION_MOVE) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004904 Log.w(TAG, "No window to dispatch pointer action " + ev.getAction());
4905 }
Dianne Hackborn6adba242009-11-10 11:10:09 -08004906 synchronized (mWindowMap) {
4907 if (mSendingPointersToWallpaper) {
4908 Log.i(TAG, "Sending skipped pointer to wallpaper!");
4909 sendPointerToWallpaperLocked(null, ev, ev.getEventTime());
4910 }
4911 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004912 if (qev != null) {
4913 mQueue.recycleEvent(qev);
4914 }
4915 ev.recycle();
Dianne Hackborncfaef692009-06-15 14:24:44 -07004916 return INJECT_FAILED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004917 }
4918 if (targetObj == mKeyWaiter.CONSUMED_EVENT_TOKEN) {
Dianne Hackborn6adba242009-11-10 11:10:09 -08004919 synchronized (mWindowMap) {
4920 if (mSendingPointersToWallpaper) {
4921 Log.i(TAG, "Sending skipped pointer to wallpaper!");
4922 sendPointerToWallpaperLocked(null, ev, ev.getEventTime());
4923 }
4924 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004925 if (qev != null) {
4926 mQueue.recycleEvent(qev);
4927 }
4928 ev.recycle();
Dianne Hackborncfaef692009-06-15 14:24:44 -07004929 return INJECT_SUCCEEDED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004930 }
Romain Guy06882f82009-06-10 13:36:04 -07004931
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004932 WindowState target = (WindowState)targetObj;
Romain Guy06882f82009-06-10 13:36:04 -07004933
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004934 final long eventTime = ev.getEventTime();
Michael Chan53071d62009-05-13 17:29:48 -07004935 final long eventTimeNano = ev.getEventTimeNano();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004936
4937 //Log.i(TAG, "Sending " + ev + " to " + target);
4938
4939 if (uid != 0 && uid != target.mSession.mUid) {
4940 if (mContext.checkPermission(
4941 android.Manifest.permission.INJECT_EVENTS, pid, uid)
4942 != PackageManager.PERMISSION_GRANTED) {
4943 Log.w(TAG, "Permission denied: injecting pointer event from pid "
4944 + pid + " uid " + uid + " to window " + target
4945 + " owned by uid " + target.mSession.mUid);
4946 if (qev != null) {
4947 mQueue.recycleEvent(qev);
4948 }
4949 ev.recycle();
Dianne Hackborncfaef692009-06-15 14:24:44 -07004950 return INJECT_NO_PERMISSION;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004951 }
4952 }
4953
Michael Chan53071d62009-05-13 17:29:48 -07004954 if (MEASURE_LATENCY) {
4955 lt.sample("4 in dispatchPointer ", System.nanoTime() - eventTimeNano);
4956 }
4957
Romain Guy06882f82009-06-10 13:36:04 -07004958 if ((target.mAttrs.flags &
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004959 WindowManager.LayoutParams.FLAG_IGNORE_CHEEK_PRESSES) != 0) {
4960 //target wants to ignore fat touch events
4961 boolean cheekPress = mPolicy.isCheekPressedAgainstScreen(ev);
4962 //explicit flag to return without processing event further
4963 boolean returnFlag = false;
4964 if((action == MotionEvent.ACTION_DOWN)) {
4965 mFatTouch = false;
4966 if(cheekPress) {
4967 mFatTouch = true;
4968 returnFlag = true;
4969 }
4970 } else {
4971 if(action == MotionEvent.ACTION_UP) {
4972 if(mFatTouch) {
4973 //earlier even was invalid doesnt matter if current up is cheekpress or not
4974 mFatTouch = false;
4975 returnFlag = true;
4976 } else if(cheekPress) {
4977 //cancel the earlier event
4978 ev.setAction(MotionEvent.ACTION_CANCEL);
4979 action = MotionEvent.ACTION_CANCEL;
4980 }
4981 } else if(action == MotionEvent.ACTION_MOVE) {
4982 if(mFatTouch) {
4983 //two cases here
4984 //an invalid down followed by 0 or moves(valid or invalid)
Romain Guy06882f82009-06-10 13:36:04 -07004985 //a valid down, invalid move, more moves. want to ignore till up
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004986 returnFlag = true;
4987 } else if(cheekPress) {
4988 //valid down followed by invalid moves
4989 //an invalid move have to cancel earlier action
4990 ev.setAction(MotionEvent.ACTION_CANCEL);
4991 action = MotionEvent.ACTION_CANCEL;
4992 if (DEBUG_INPUT) Log.v(TAG, "Sending cancel for invalid ACTION_MOVE");
4993 //note that the subsequent invalid moves will not get here
4994 mFatTouch = true;
4995 }
4996 }
4997 } //else if action
4998 if(returnFlag) {
4999 //recycle que, ev
5000 if (qev != null) {
5001 mQueue.recycleEvent(qev);
5002 }
5003 ev.recycle();
Dianne Hackborncfaef692009-06-15 14:24:44 -07005004 return INJECT_FAILED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005005 }
5006 } //end if target
Michael Chane96440f2009-05-06 10:27:36 -07005007
Michael Chan9f028e62009-08-04 17:37:46 -07005008 // Enable this for testing the "right" value
5009 if (false && action == MotionEvent.ACTION_DOWN) {
Michael Chane96440f2009-05-06 10:27:36 -07005010 int max_events_per_sec = 35;
5011 try {
5012 max_events_per_sec = Integer.parseInt(SystemProperties
5013 .get("windowsmgr.max_events_per_sec"));
5014 if (max_events_per_sec < 1) {
5015 max_events_per_sec = 35;
5016 }
5017 } catch (NumberFormatException e) {
5018 }
5019 mMinWaitTimeBetweenTouchEvents = 1000 / max_events_per_sec;
5020 }
5021
5022 /*
5023 * Throttle events to minimize CPU usage when there's a flood of events
5024 * e.g. constant contact with the screen
5025 */
5026 if (action == MotionEvent.ACTION_MOVE) {
5027 long nextEventTime = mLastTouchEventTime + mMinWaitTimeBetweenTouchEvents;
5028 long now = SystemClock.uptimeMillis();
5029 if (now < nextEventTime) {
5030 try {
5031 Thread.sleep(nextEventTime - now);
5032 } catch (InterruptedException e) {
5033 }
5034 mLastTouchEventTime = nextEventTime;
5035 } else {
5036 mLastTouchEventTime = now;
5037 }
5038 }
5039
Michael Chan53071d62009-05-13 17:29:48 -07005040 if (MEASURE_LATENCY) {
5041 lt.sample("5 in dispatchPointer ", System.nanoTime() - eventTimeNano);
5042 }
5043
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005044 synchronized(mWindowMap) {
Dianne Hackborn6adba242009-11-10 11:10:09 -08005045 if (!target.isVisibleLw()) {
5046 // During this motion dispatch, the target window has become
5047 // invisible.
5048 if (mSendingPointersToWallpaper) {
5049 sendPointerToWallpaperLocked(null, ev, eventTime);
5050 }
5051 if (qev != null) {
5052 mQueue.recycleEvent(qev);
5053 }
5054 ev.recycle();
5055 return INJECT_SUCCEEDED;
5056 }
5057
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005058 if (qev != null && action == MotionEvent.ACTION_MOVE) {
5059 mKeyWaiter.bindTargetWindowLocked(target,
5060 KeyWaiter.RETURN_PENDING_POINTER, qev);
5061 ev = null;
5062 } else {
5063 if (action == MotionEvent.ACTION_DOWN) {
5064 WindowState out = mKeyWaiter.mOutsideTouchTargets;
5065 if (out != null) {
5066 MotionEvent oev = MotionEvent.obtain(ev);
5067 oev.setAction(MotionEvent.ACTION_OUTSIDE);
5068 do {
5069 final Rect frame = out.mFrame;
5070 oev.offsetLocation(-(float)frame.left, -(float)frame.top);
5071 try {
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -07005072 out.mClient.dispatchPointer(oev, eventTime, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005073 } catch (android.os.RemoteException e) {
5074 Log.i(TAG, "WINDOW DIED during outside motion dispatch: " + out);
5075 }
5076 oev.offsetLocation((float)frame.left, (float)frame.top);
5077 out = out.mNextOutsideTouch;
5078 } while (out != null);
5079 mKeyWaiter.mOutsideTouchTargets = null;
5080 }
5081 }
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -07005082
5083 // If we are on top of the wallpaper, then the wallpaper also
5084 // gets to see this movement.
Dianne Hackborn6adba242009-11-10 11:10:09 -08005085 if (mWallpaperTarget == target || mSendingPointersToWallpaper) {
5086 sendPointerToWallpaperLocked(null, ev, eventTime);
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -07005087 }
Dianne Hackborn6adba242009-11-10 11:10:09 -08005088
5089 final Rect frame = target.mFrame;
5090 ev.offsetLocation(-(float)frame.left, -(float)frame.top);
5091 mKeyWaiter.bindTargetWindowLocked(target);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005092 }
5093 }
Romain Guy06882f82009-06-10 13:36:04 -07005094
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005095 // finally offset the event to the target's coordinate system and
5096 // dispatch the event.
5097 try {
5098 if (DEBUG_INPUT || DEBUG_FOCUS || WindowManagerPolicy.WATCH_POINTER) {
5099 Log.v(TAG, "Delivering pointer " + qev + " to " + target);
5100 }
Michael Chan53071d62009-05-13 17:29:48 -07005101
5102 if (MEASURE_LATENCY) {
5103 lt.sample("6 before svr->client ipc ", System.nanoTime() - eventTimeNano);
5104 }
5105
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -07005106 target.mClient.dispatchPointer(ev, eventTime, true);
Michael Chan53071d62009-05-13 17:29:48 -07005107
5108 if (MEASURE_LATENCY) {
5109 lt.sample("7 after svr->client ipc ", System.nanoTime() - eventTimeNano);
5110 }
Dianne Hackborncfaef692009-06-15 14:24:44 -07005111 return INJECT_SUCCEEDED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005112 } catch (android.os.RemoteException e) {
5113 Log.i(TAG, "WINDOW DIED during motion dispatch: " + target);
5114 mKeyWaiter.mMotionTarget = null;
5115 try {
5116 removeWindow(target.mSession, target.mClient);
5117 } catch (java.util.NoSuchElementException ex) {
5118 // This will happen if the window has already been
5119 // removed.
5120 }
5121 }
Dianne Hackborncfaef692009-06-15 14:24:44 -07005122 return INJECT_FAILED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005123 }
Romain Guy06882f82009-06-10 13:36:04 -07005124
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005125 /**
5126 * @return Returns true if event was dispatched, false if it was dropped for any reason
5127 */
Dianne Hackborncfaef692009-06-15 14:24:44 -07005128 private int dispatchTrackball(QueuedEvent qev, MotionEvent ev, int pid, int uid) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005129 if (DEBUG_INPUT) Log.v(
5130 TAG, "dispatchTrackball [" + ev.getAction() +"] <" + ev.getX() + ", " + ev.getY() + ">");
Romain Guy06882f82009-06-10 13:36:04 -07005131
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005132 Object focusObj = mKeyWaiter.waitForNextEventTarget(null, qev,
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07005133 ev, false, false, pid, uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005134 if (focusObj == null) {
5135 Log.w(TAG, "No focus window, dropping trackball: " + ev);
5136 if (qev != null) {
5137 mQueue.recycleEvent(qev);
5138 }
5139 ev.recycle();
Dianne Hackborncfaef692009-06-15 14:24:44 -07005140 return INJECT_FAILED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005141 }
5142 if (focusObj == mKeyWaiter.CONSUMED_EVENT_TOKEN) {
5143 if (qev != null) {
5144 mQueue.recycleEvent(qev);
5145 }
5146 ev.recycle();
Dianne Hackborncfaef692009-06-15 14:24:44 -07005147 return INJECT_SUCCEEDED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005148 }
Romain Guy06882f82009-06-10 13:36:04 -07005149
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005150 WindowState focus = (WindowState)focusObj;
Romain Guy06882f82009-06-10 13:36:04 -07005151
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005152 if (uid != 0 && uid != focus.mSession.mUid) {
5153 if (mContext.checkPermission(
5154 android.Manifest.permission.INJECT_EVENTS, pid, uid)
5155 != PackageManager.PERMISSION_GRANTED) {
5156 Log.w(TAG, "Permission denied: injecting key event from pid "
5157 + pid + " uid " + uid + " to window " + focus
5158 + " owned by uid " + focus.mSession.mUid);
5159 if (qev != null) {
5160 mQueue.recycleEvent(qev);
5161 }
5162 ev.recycle();
Dianne Hackborncfaef692009-06-15 14:24:44 -07005163 return INJECT_NO_PERMISSION;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005164 }
5165 }
Romain Guy06882f82009-06-10 13:36:04 -07005166
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005167 final long eventTime = ev.getEventTime();
Romain Guy06882f82009-06-10 13:36:04 -07005168
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005169 synchronized(mWindowMap) {
5170 if (qev != null && ev.getAction() == MotionEvent.ACTION_MOVE) {
5171 mKeyWaiter.bindTargetWindowLocked(focus,
5172 KeyWaiter.RETURN_PENDING_TRACKBALL, qev);
5173 // We don't deliver movement events to the client, we hold
5174 // them and wait for them to call back.
5175 ev = null;
5176 } else {
5177 mKeyWaiter.bindTargetWindowLocked(focus);
5178 }
5179 }
Romain Guy06882f82009-06-10 13:36:04 -07005180
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005181 try {
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -07005182 focus.mClient.dispatchTrackball(ev, eventTime, true);
Dianne Hackborncfaef692009-06-15 14:24:44 -07005183 return INJECT_SUCCEEDED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005184 } catch (android.os.RemoteException e) {
5185 Log.i(TAG, "WINDOW DIED during key dispatch: " + focus);
5186 try {
5187 removeWindow(focus.mSession, focus.mClient);
5188 } catch (java.util.NoSuchElementException ex) {
5189 // This will happen if the window has already been
5190 // removed.
5191 }
5192 }
Romain Guy06882f82009-06-10 13:36:04 -07005193
Dianne Hackborncfaef692009-06-15 14:24:44 -07005194 return INJECT_FAILED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005195 }
Romain Guy06882f82009-06-10 13:36:04 -07005196
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005197 /**
5198 * @return Returns true if event was dispatched, false if it was dropped for any reason
5199 */
Dianne Hackborncfaef692009-06-15 14:24:44 -07005200 private int dispatchKey(KeyEvent event, int pid, int uid) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005201 if (DEBUG_INPUT) Log.v(TAG, "Dispatch key: " + event);
5202
5203 Object focusObj = mKeyWaiter.waitForNextEventTarget(event, null,
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07005204 null, false, false, pid, uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005205 if (focusObj == null) {
5206 Log.w(TAG, "No focus window, dropping: " + event);
Dianne Hackborncfaef692009-06-15 14:24:44 -07005207 return INJECT_FAILED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005208 }
5209 if (focusObj == mKeyWaiter.CONSUMED_EVENT_TOKEN) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07005210 return INJECT_SUCCEEDED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005211 }
Romain Guy06882f82009-06-10 13:36:04 -07005212
Dianne Hackborn83fe3f52009-09-12 23:38:30 -07005213 // Okay we have finished waiting for the last event to be processed.
5214 // First off, if this is a repeat event, check to see if there is
5215 // a corresponding up event in the queue. If there is, we will
5216 // just drop the repeat, because it makes no sense to repeat after
5217 // the user has released a key. (This is especially important for
5218 // long presses.)
5219 if (event.getRepeatCount() > 0 && mQueue.hasKeyUpEvent(event)) {
5220 return INJECT_SUCCEEDED;
5221 }
5222
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005223 WindowState focus = (WindowState)focusObj;
Romain Guy06882f82009-06-10 13:36:04 -07005224
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005225 if (DEBUG_INPUT) Log.v(
5226 TAG, "Dispatching to " + focus + ": " + event);
5227
5228 if (uid != 0 && uid != focus.mSession.mUid) {
5229 if (mContext.checkPermission(
5230 android.Manifest.permission.INJECT_EVENTS, pid, uid)
5231 != PackageManager.PERMISSION_GRANTED) {
5232 Log.w(TAG, "Permission denied: injecting key event from pid "
5233 + pid + " uid " + uid + " to window " + focus
5234 + " owned by uid " + focus.mSession.mUid);
Dianne Hackborncfaef692009-06-15 14:24:44 -07005235 return INJECT_NO_PERMISSION;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005236 }
5237 }
Romain Guy06882f82009-06-10 13:36:04 -07005238
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005239 synchronized(mWindowMap) {
5240 mKeyWaiter.bindTargetWindowLocked(focus);
5241 }
5242
5243 // NOSHIP extra state logging
5244 mKeyWaiter.recordDispatchState(event, focus);
5245 // END NOSHIP
Romain Guy06882f82009-06-10 13:36:04 -07005246
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005247 try {
5248 if (DEBUG_INPUT || DEBUG_FOCUS) {
5249 Log.v(TAG, "Delivering key " + event.getKeyCode()
5250 + " to " + focus);
5251 }
5252 focus.mClient.dispatchKey(event);
Dianne Hackborncfaef692009-06-15 14:24:44 -07005253 return INJECT_SUCCEEDED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005254 } catch (android.os.RemoteException e) {
5255 Log.i(TAG, "WINDOW DIED during key dispatch: " + focus);
5256 try {
5257 removeWindow(focus.mSession, focus.mClient);
5258 } catch (java.util.NoSuchElementException ex) {
5259 // This will happen if the window has already been
5260 // removed.
5261 }
5262 }
Romain Guy06882f82009-06-10 13:36:04 -07005263
Dianne Hackborncfaef692009-06-15 14:24:44 -07005264 return INJECT_FAILED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005265 }
Romain Guy06882f82009-06-10 13:36:04 -07005266
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005267 public void pauseKeyDispatching(IBinder _token) {
5268 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
5269 "pauseKeyDispatching()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07005270 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005271 }
5272
5273 synchronized (mWindowMap) {
5274 WindowToken token = mTokenMap.get(_token);
5275 if (token != null) {
5276 mKeyWaiter.pauseDispatchingLocked(token);
5277 }
5278 }
5279 }
5280
5281 public void resumeKeyDispatching(IBinder _token) {
5282 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
5283 "resumeKeyDispatching()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07005284 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005285 }
5286
5287 synchronized (mWindowMap) {
5288 WindowToken token = mTokenMap.get(_token);
5289 if (token != null) {
5290 mKeyWaiter.resumeDispatchingLocked(token);
5291 }
5292 }
5293 }
5294
5295 public void setEventDispatching(boolean enabled) {
5296 if (!checkCallingPermission(android.Manifest.permission.MANAGE_APP_TOKENS,
5297 "resumeKeyDispatching()")) {
Dianne Hackborncfaef692009-06-15 14:24:44 -07005298 throw new SecurityException("Requires MANAGE_APP_TOKENS permission");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005299 }
5300
5301 synchronized (mWindowMap) {
5302 mKeyWaiter.setEventDispatchingLocked(enabled);
5303 }
5304 }
Romain Guy06882f82009-06-10 13:36:04 -07005305
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005306 /**
5307 * Injects a keystroke event into the UI.
Romain Guy06882f82009-06-10 13:36:04 -07005308 *
5309 * @param ev A motion event describing the keystroke action. (Be sure to use
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005310 * {@link SystemClock#uptimeMillis()} as the timebase.)
5311 * @param sync If true, wait for the event to be completed before returning to the caller.
5312 * @return Returns true if event was dispatched, false if it was dropped for any reason
5313 */
5314 public boolean injectKeyEvent(KeyEvent ev, boolean sync) {
5315 long downTime = ev.getDownTime();
5316 long eventTime = ev.getEventTime();
5317
5318 int action = ev.getAction();
5319 int code = ev.getKeyCode();
5320 int repeatCount = ev.getRepeatCount();
5321 int metaState = ev.getMetaState();
5322 int deviceId = ev.getDeviceId();
5323 int scancode = ev.getScanCode();
5324
5325 if (eventTime == 0) eventTime = SystemClock.uptimeMillis();
5326 if (downTime == 0) downTime = eventTime;
5327
5328 KeyEvent newEvent = new KeyEvent(downTime, eventTime, action, code, repeatCount, metaState,
The Android Open Source Project10592532009-03-18 17:39:46 -07005329 deviceId, scancode, KeyEvent.FLAG_FROM_SYSTEM);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005330
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07005331 final int pid = Binder.getCallingPid();
5332 final int uid = Binder.getCallingUid();
5333 final long ident = Binder.clearCallingIdentity();
5334 final int result = dispatchKey(newEvent, pid, uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005335 if (sync) {
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07005336 mKeyWaiter.waitForNextEventTarget(null, null, null, false, true, pid, uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005337 }
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07005338 Binder.restoreCallingIdentity(ident);
Dianne Hackborncfaef692009-06-15 14:24:44 -07005339 switch (result) {
5340 case INJECT_NO_PERMISSION:
5341 throw new SecurityException(
5342 "Injecting to another application requires INJECT_EVENT permission");
5343 case INJECT_SUCCEEDED:
5344 return true;
5345 }
5346 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005347 }
5348
5349 /**
5350 * Inject a pointer (touch) event into the UI.
Romain Guy06882f82009-06-10 13:36:04 -07005351 *
5352 * @param ev A motion event describing the pointer (touch) action. (As noted in
5353 * {@link MotionEvent#obtain(long, long, int, float, float, int)}, be sure to use
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005354 * {@link SystemClock#uptimeMillis()} as the timebase.)
5355 * @param sync If true, wait for the event to be completed before returning to the caller.
5356 * @return Returns true if event was dispatched, false if it was dropped for any reason
5357 */
5358 public boolean injectPointerEvent(MotionEvent ev, boolean sync) {
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07005359 final int pid = Binder.getCallingPid();
5360 final int uid = Binder.getCallingUid();
5361 final long ident = Binder.clearCallingIdentity();
5362 final int result = dispatchPointer(null, ev, pid, uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005363 if (sync) {
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07005364 mKeyWaiter.waitForNextEventTarget(null, null, null, false, true, pid, uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005365 }
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07005366 Binder.restoreCallingIdentity(ident);
Dianne Hackborncfaef692009-06-15 14:24:44 -07005367 switch (result) {
5368 case INJECT_NO_PERMISSION:
5369 throw new SecurityException(
5370 "Injecting to another application requires INJECT_EVENT permission");
5371 case INJECT_SUCCEEDED:
5372 return true;
5373 }
5374 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005375 }
Romain Guy06882f82009-06-10 13:36:04 -07005376
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005377 /**
5378 * Inject a trackball (navigation device) event into the UI.
Romain Guy06882f82009-06-10 13:36:04 -07005379 *
5380 * @param ev A motion event describing the trackball action. (As noted in
5381 * {@link MotionEvent#obtain(long, long, int, float, float, int)}, be sure to use
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005382 * {@link SystemClock#uptimeMillis()} as the timebase.)
5383 * @param sync If true, wait for the event to be completed before returning to the caller.
5384 * @return Returns true if event was dispatched, false if it was dropped for any reason
5385 */
5386 public boolean injectTrackballEvent(MotionEvent ev, boolean sync) {
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07005387 final int pid = Binder.getCallingPid();
5388 final int uid = Binder.getCallingUid();
5389 final long ident = Binder.clearCallingIdentity();
5390 final int result = dispatchTrackball(null, ev, pid, uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005391 if (sync) {
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07005392 mKeyWaiter.waitForNextEventTarget(null, null, null, false, true, pid, uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005393 }
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07005394 Binder.restoreCallingIdentity(ident);
Dianne Hackborncfaef692009-06-15 14:24:44 -07005395 switch (result) {
5396 case INJECT_NO_PERMISSION:
5397 throw new SecurityException(
5398 "Injecting to another application requires INJECT_EVENT permission");
5399 case INJECT_SUCCEEDED:
5400 return true;
5401 }
5402 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005403 }
Romain Guy06882f82009-06-10 13:36:04 -07005404
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005405 private WindowState getFocusedWindow() {
5406 synchronized (mWindowMap) {
5407 return getFocusedWindowLocked();
5408 }
5409 }
5410
5411 private WindowState getFocusedWindowLocked() {
5412 return mCurrentFocus;
5413 }
Romain Guy06882f82009-06-10 13:36:04 -07005414
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005415 /**
5416 * This class holds the state for dispatching key events. This state
5417 * is protected by the KeyWaiter instance, NOT by the window lock. You
5418 * can be holding the main window lock while acquire the KeyWaiter lock,
5419 * but not the other way around.
5420 */
5421 final class KeyWaiter {
5422 // NOSHIP debugging
5423 public class DispatchState {
5424 private KeyEvent event;
5425 private WindowState focus;
5426 private long time;
5427 private WindowState lastWin;
5428 private IBinder lastBinder;
5429 private boolean finished;
5430 private boolean gotFirstWindow;
5431 private boolean eventDispatching;
5432 private long timeToSwitch;
5433 private boolean wasFrozen;
5434 private boolean focusPaused;
The Android Open Source Projectc474dec2009-03-04 09:49:09 -08005435 private WindowState curFocus;
Romain Guy06882f82009-06-10 13:36:04 -07005436
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005437 DispatchState(KeyEvent theEvent, WindowState theFocus) {
5438 focus = theFocus;
5439 event = theEvent;
5440 time = System.currentTimeMillis();
5441 // snapshot KeyWaiter state
5442 lastWin = mLastWin;
5443 lastBinder = mLastBinder;
5444 finished = mFinished;
5445 gotFirstWindow = mGotFirstWindow;
5446 eventDispatching = mEventDispatching;
5447 timeToSwitch = mTimeToSwitch;
5448 wasFrozen = mWasFrozen;
The Android Open Source Projectc474dec2009-03-04 09:49:09 -08005449 curFocus = mCurrentFocus;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005450 // cache the paused state at ctor time as well
5451 if (theFocus == null || theFocus.mToken == null) {
5452 Log.i(TAG, "focus " + theFocus + " mToken is null at event dispatch!");
5453 focusPaused = false;
5454 } else {
5455 focusPaused = theFocus.mToken.paused;
5456 }
5457 }
Romain Guy06882f82009-06-10 13:36:04 -07005458
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005459 public String toString() {
5460 return "{{" + event + " to " + focus + " @ " + time
5461 + " lw=" + lastWin + " lb=" + lastBinder
5462 + " fin=" + finished + " gfw=" + gotFirstWindow
5463 + " ed=" + eventDispatching + " tts=" + timeToSwitch
The Android Open Source Projectc474dec2009-03-04 09:49:09 -08005464 + " wf=" + wasFrozen + " fp=" + focusPaused
5465 + " mcf=" + mCurrentFocus + "}}";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005466 }
5467 };
5468 private DispatchState mDispatchState = null;
5469 public void recordDispatchState(KeyEvent theEvent, WindowState theFocus) {
5470 mDispatchState = new DispatchState(theEvent, theFocus);
5471 }
5472 // END NOSHIP
5473
5474 public static final int RETURN_NOTHING = 0;
5475 public static final int RETURN_PENDING_POINTER = 1;
5476 public static final int RETURN_PENDING_TRACKBALL = 2;
Romain Guy06882f82009-06-10 13:36:04 -07005477
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005478 final Object SKIP_TARGET_TOKEN = new Object();
5479 final Object CONSUMED_EVENT_TOKEN = new Object();
Romain Guy06882f82009-06-10 13:36:04 -07005480
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005481 private WindowState mLastWin = null;
5482 private IBinder mLastBinder = null;
5483 private boolean mFinished = true;
5484 private boolean mGotFirstWindow = false;
5485 private boolean mEventDispatching = true;
5486 private long mTimeToSwitch = 0;
5487 /* package */ boolean mWasFrozen = false;
Romain Guy06882f82009-06-10 13:36:04 -07005488
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005489 // Target of Motion events
5490 WindowState mMotionTarget;
Romain Guy06882f82009-06-10 13:36:04 -07005491
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005492 // Windows above the target who would like to receive an "outside"
5493 // touch event for any down events outside of them.
5494 WindowState mOutsideTouchTargets;
5495
5496 /**
5497 * Wait for the last event dispatch to complete, then find the next
5498 * target that should receive the given event and wait for that one
5499 * to be ready to receive it.
5500 */
5501 Object waitForNextEventTarget(KeyEvent nextKey, QueuedEvent qev,
5502 MotionEvent nextMotion, boolean isPointerEvent,
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07005503 boolean failIfTimeout, int callingPid, int callingUid) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005504 long startTime = SystemClock.uptimeMillis();
5505 long keyDispatchingTimeout = 5 * 1000;
5506 long waitedFor = 0;
5507
5508 while (true) {
5509 // Figure out which window we care about. It is either the
5510 // last window we are waiting to have process the event or,
5511 // if none, then the next window we think the event should go
5512 // to. Note: we retrieve mLastWin outside of the lock, so
5513 // it may change before we lock. Thus we must check it again.
5514 WindowState targetWin = mLastWin;
5515 boolean targetIsNew = targetWin == null;
5516 if (DEBUG_INPUT) Log.v(
5517 TAG, "waitForLastKey: mFinished=" + mFinished +
5518 ", mLastWin=" + mLastWin);
5519 if (targetIsNew) {
5520 Object target = findTargetWindow(nextKey, qev, nextMotion,
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07005521 isPointerEvent, callingPid, callingUid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005522 if (target == SKIP_TARGET_TOKEN) {
5523 // The user has pressed a special key, and we are
5524 // dropping all pending events before it.
5525 if (DEBUG_INPUT) Log.v(TAG, "Skipping: " + nextKey
5526 + " " + nextMotion);
5527 return null;
5528 }
5529 if (target == CONSUMED_EVENT_TOKEN) {
5530 if (DEBUG_INPUT) Log.v(TAG, "Consumed: " + nextKey
5531 + " " + nextMotion);
5532 return target;
5533 }
5534 targetWin = (WindowState)target;
5535 }
Romain Guy06882f82009-06-10 13:36:04 -07005536
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005537 AppWindowToken targetApp = null;
Romain Guy06882f82009-06-10 13:36:04 -07005538
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005539 // Now: is it okay to send the next event to this window?
5540 synchronized (this) {
5541 // First: did we come here based on the last window not
5542 // being null, but it changed by the time we got here?
5543 // If so, try again.
5544 if (!targetIsNew && mLastWin == null) {
5545 continue;
5546 }
Romain Guy06882f82009-06-10 13:36:04 -07005547
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005548 // We never dispatch events if not finished with the
5549 // last one, or the display is frozen.
5550 if (mFinished && !mDisplayFrozen) {
5551 // If event dispatching is disabled, then we
5552 // just consume the events.
5553 if (!mEventDispatching) {
5554 if (DEBUG_INPUT) Log.v(TAG,
5555 "Skipping event; dispatching disabled: "
5556 + nextKey + " " + nextMotion);
5557 return null;
5558 }
5559 if (targetWin != null) {
5560 // If this is a new target, and that target is not
5561 // paused or unresponsive, then all looks good to
5562 // handle the event.
5563 if (targetIsNew && !targetWin.mToken.paused) {
5564 return targetWin;
5565 }
Romain Guy06882f82009-06-10 13:36:04 -07005566
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005567 // If we didn't find a target window, and there is no
5568 // focused app window, then just eat the events.
5569 } else if (mFocusedApp == null) {
5570 if (DEBUG_INPUT) Log.v(TAG,
5571 "Skipping event; no focused app: "
5572 + nextKey + " " + nextMotion);
5573 return null;
5574 }
5575 }
Romain Guy06882f82009-06-10 13:36:04 -07005576
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005577 if (DEBUG_INPUT) Log.v(
5578 TAG, "Waiting for last key in " + mLastBinder
5579 + " target=" + targetWin
5580 + " mFinished=" + mFinished
5581 + " mDisplayFrozen=" + mDisplayFrozen
5582 + " targetIsNew=" + targetIsNew
5583 + " paused="
5584 + (targetWin != null ? targetWin.mToken.paused : false)
The Android Open Source Projectc474dec2009-03-04 09:49:09 -08005585 + " mFocusedApp=" + mFocusedApp
5586 + " mCurrentFocus=" + mCurrentFocus);
Romain Guy06882f82009-06-10 13:36:04 -07005587
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005588 targetApp = targetWin != null
5589 ? targetWin.mAppToken : mFocusedApp;
Romain Guy06882f82009-06-10 13:36:04 -07005590
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005591 long curTimeout = keyDispatchingTimeout;
5592 if (mTimeToSwitch != 0) {
5593 long now = SystemClock.uptimeMillis();
5594 if (mTimeToSwitch <= now) {
5595 // If an app switch key has been pressed, and we have
5596 // waited too long for the current app to finish
5597 // processing keys, then wait no more!
5598 doFinishedKeyLocked(true);
5599 continue;
5600 }
5601 long switchTimeout = mTimeToSwitch - now;
5602 if (curTimeout > switchTimeout) {
5603 curTimeout = switchTimeout;
5604 }
5605 }
Romain Guy06882f82009-06-10 13:36:04 -07005606
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005607 try {
5608 // after that continue
5609 // processing keys, so we don't get stuck.
5610 if (DEBUG_INPUT) Log.v(
5611 TAG, "Waiting for key dispatch: " + curTimeout);
5612 wait(curTimeout);
5613 if (DEBUG_INPUT) Log.v(TAG, "Finished waiting @"
5614 + SystemClock.uptimeMillis() + " startTime="
The Android Open Source Projectc474dec2009-03-04 09:49:09 -08005615 + startTime + " switchTime=" + mTimeToSwitch
5616 + " target=" + targetWin + " mLW=" + mLastWin
5617 + " mLB=" + mLastBinder + " fin=" + mFinished
5618 + " mCurrentFocus=" + mCurrentFocus);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005619 } catch (InterruptedException e) {
5620 }
5621 }
5622
5623 // If we were frozen during configuration change, restart the
5624 // timeout checks from now; otherwise look at whether we timed
5625 // out before awakening.
5626 if (mWasFrozen) {
5627 waitedFor = 0;
5628 mWasFrozen = false;
5629 } else {
5630 waitedFor = SystemClock.uptimeMillis() - startTime;
5631 }
5632
5633 if (waitedFor >= keyDispatchingTimeout && mTimeToSwitch == 0) {
5634 IApplicationToken at = null;
5635 synchronized (this) {
5636 Log.w(TAG, "Key dispatching timed out sending to " +
5637 (targetWin != null ? targetWin.mAttrs.getTitle()
5638 : "<null>"));
5639 // NOSHIP debugging
5640 Log.w(TAG, "Dispatch state: " + mDispatchState);
5641 Log.w(TAG, "Current state: " + new DispatchState(nextKey, targetWin));
5642 // END NOSHIP
5643 //dump();
5644 if (targetWin != null) {
5645 at = targetWin.getAppToken();
5646 } else if (targetApp != null) {
5647 at = targetApp.appToken;
5648 }
5649 }
5650
5651 boolean abort = true;
5652 if (at != null) {
5653 try {
5654 long timeout = at.getKeyDispatchingTimeout();
5655 if (timeout > waitedFor) {
5656 // we did not wait the proper amount of time for this application.
5657 // set the timeout to be the real timeout and wait again.
5658 keyDispatchingTimeout = timeout - waitedFor;
5659 continue;
5660 } else {
5661 abort = at.keyDispatchingTimedOut();
5662 }
5663 } catch (RemoteException ex) {
5664 }
5665 }
5666
5667 synchronized (this) {
5668 if (abort && (mLastWin == targetWin || targetWin == null)) {
5669 mFinished = true;
Romain Guy06882f82009-06-10 13:36:04 -07005670 if (mLastWin != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005671 if (DEBUG_INPUT) Log.v(TAG,
5672 "Window " + mLastWin +
5673 " timed out on key input");
5674 if (mLastWin.mToken.paused) {
5675 Log.w(TAG, "Un-pausing dispatching to this window");
5676 mLastWin.mToken.paused = false;
5677 }
5678 }
5679 if (mMotionTarget == targetWin) {
5680 mMotionTarget = null;
5681 }
5682 mLastWin = null;
5683 mLastBinder = null;
5684 if (failIfTimeout || targetWin == null) {
5685 return null;
5686 }
5687 } else {
5688 Log.w(TAG, "Continuing to wait for key to be dispatched");
5689 startTime = SystemClock.uptimeMillis();
5690 }
5691 }
5692 }
5693 }
5694 }
Romain Guy06882f82009-06-10 13:36:04 -07005695
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005696 Object findTargetWindow(KeyEvent nextKey, QueuedEvent qev,
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07005697 MotionEvent nextMotion, boolean isPointerEvent,
5698 int callingPid, int callingUid) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005699 mOutsideTouchTargets = null;
Romain Guy06882f82009-06-10 13:36:04 -07005700
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005701 if (nextKey != null) {
5702 // Find the target window for a normal key event.
5703 final int keycode = nextKey.getKeyCode();
5704 final int repeatCount = nextKey.getRepeatCount();
5705 final boolean down = nextKey.getAction() != KeyEvent.ACTION_UP;
5706 boolean dispatch = mKeyWaiter.checkShouldDispatchKey(keycode);
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07005707
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005708 if (!dispatch) {
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07005709 if (callingUid == 0 ||
5710 mContext.checkPermission(
5711 android.Manifest.permission.INJECT_EVENTS,
5712 callingPid, callingUid)
5713 == PackageManager.PERMISSION_GRANTED) {
5714 mPolicy.interceptKeyTi(null, keycode,
Dianne Hackbornddca3ee2009-07-23 19:01:31 -07005715 nextKey.getMetaState(), down, repeatCount,
5716 nextKey.getFlags());
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07005717 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005718 Log.w(TAG, "Event timeout during app switch: dropping "
5719 + nextKey);
5720 return SKIP_TARGET_TOKEN;
5721 }
Romain Guy06882f82009-06-10 13:36:04 -07005722
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005723 // System.out.println("##### [" + SystemClock.uptimeMillis() + "] WindowManagerService.dispatchKey(" + keycode + ", " + down + ", " + repeatCount + ")");
Romain Guy06882f82009-06-10 13:36:04 -07005724
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005725 WindowState focus = null;
5726 synchronized(mWindowMap) {
5727 focus = getFocusedWindowLocked();
5728 }
Romain Guy06882f82009-06-10 13:36:04 -07005729
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005730 wakeupIfNeeded(focus, LocalPowerManager.BUTTON_EVENT);
Romain Guy06882f82009-06-10 13:36:04 -07005731
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07005732 if (callingUid == 0 ||
5733 (focus != null && callingUid == focus.mSession.mUid) ||
5734 mContext.checkPermission(
5735 android.Manifest.permission.INJECT_EVENTS,
5736 callingPid, callingUid)
5737 == PackageManager.PERMISSION_GRANTED) {
5738 if (mPolicy.interceptKeyTi(focus,
Dianne Hackbornddca3ee2009-07-23 19:01:31 -07005739 keycode, nextKey.getMetaState(), down, repeatCount,
5740 nextKey.getFlags())) {
Dianne Hackborn2bd33d72009-06-26 18:59:01 -07005741 return CONSUMED_EVENT_TOKEN;
5742 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005743 }
Romain Guy06882f82009-06-10 13:36:04 -07005744
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005745 return focus;
Romain Guy06882f82009-06-10 13:36:04 -07005746
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005747 } else if (!isPointerEvent) {
5748 boolean dispatch = mKeyWaiter.checkShouldDispatchKey(-1);
5749 if (!dispatch) {
5750 Log.w(TAG, "Event timeout during app switch: dropping trackball "
5751 + nextMotion);
5752 return SKIP_TARGET_TOKEN;
5753 }
Romain Guy06882f82009-06-10 13:36:04 -07005754
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005755 WindowState focus = null;
5756 synchronized(mWindowMap) {
5757 focus = getFocusedWindowLocked();
5758 }
Romain Guy06882f82009-06-10 13:36:04 -07005759
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005760 wakeupIfNeeded(focus, LocalPowerManager.BUTTON_EVENT);
5761 return focus;
5762 }
Romain Guy06882f82009-06-10 13:36:04 -07005763
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005764 if (nextMotion == null) {
5765 return SKIP_TARGET_TOKEN;
5766 }
Romain Guy06882f82009-06-10 13:36:04 -07005767
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005768 boolean dispatch = mKeyWaiter.checkShouldDispatchKey(
5769 KeyEvent.KEYCODE_UNKNOWN);
5770 if (!dispatch) {
5771 Log.w(TAG, "Event timeout during app switch: dropping pointer "
5772 + nextMotion);
5773 return SKIP_TARGET_TOKEN;
5774 }
Romain Guy06882f82009-06-10 13:36:04 -07005775
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005776 // Find the target window for a pointer event.
5777 int action = nextMotion.getAction();
5778 final float xf = nextMotion.getX();
5779 final float yf = nextMotion.getY();
5780 final long eventTime = nextMotion.getEventTime();
Romain Guy06882f82009-06-10 13:36:04 -07005781
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005782 final boolean screenWasOff = qev != null
5783 && (qev.flags&WindowManagerPolicy.FLAG_BRIGHT_HERE) != 0;
Romain Guy06882f82009-06-10 13:36:04 -07005784
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005785 WindowState target = null;
Romain Guy06882f82009-06-10 13:36:04 -07005786
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005787 synchronized(mWindowMap) {
5788 synchronized (this) {
5789 if (action == MotionEvent.ACTION_DOWN) {
5790 if (mMotionTarget != null) {
5791 // this is weird, we got a pen down, but we thought it was
5792 // already down!
5793 // XXX: We should probably send an ACTION_UP to the current
5794 // target.
5795 Log.w(TAG, "Pointer down received while already down in: "
5796 + mMotionTarget);
5797 mMotionTarget = null;
5798 }
Romain Guy06882f82009-06-10 13:36:04 -07005799
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005800 // ACTION_DOWN is special, because we need to lock next events to
5801 // the window we'll land onto.
5802 final int x = (int)xf;
5803 final int y = (int)yf;
Romain Guy06882f82009-06-10 13:36:04 -07005804
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005805 final ArrayList windows = mWindows;
5806 final int N = windows.size();
5807 WindowState topErrWindow = null;
5808 final Rect tmpRect = mTempRect;
5809 for (int i=N-1; i>=0; i--) {
5810 WindowState child = (WindowState)windows.get(i);
5811 //Log.i(TAG, "Checking dispatch to: " + child);
5812 final int flags = child.mAttrs.flags;
5813 if ((flags & WindowManager.LayoutParams.FLAG_SYSTEM_ERROR) != 0) {
5814 if (topErrWindow == null) {
5815 topErrWindow = child;
5816 }
5817 }
5818 if (!child.isVisibleLw()) {
5819 //Log.i(TAG, "Not visible!");
5820 continue;
5821 }
5822 if ((flags & WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE) != 0) {
5823 //Log.i(TAG, "Not touchable!");
5824 if ((flags & WindowManager.LayoutParams
5825 .FLAG_WATCH_OUTSIDE_TOUCH) != 0) {
5826 child.mNextOutsideTouch = mOutsideTouchTargets;
5827 mOutsideTouchTargets = child;
5828 }
5829 continue;
5830 }
5831 tmpRect.set(child.mFrame);
5832 if (child.mTouchableInsets == ViewTreeObserver
5833 .InternalInsetsInfo.TOUCHABLE_INSETS_CONTENT) {
5834 // The touch is inside of the window if it is
5835 // inside the frame, AND the content part of that
5836 // frame that was given by the application.
5837 tmpRect.left += child.mGivenContentInsets.left;
5838 tmpRect.top += child.mGivenContentInsets.top;
5839 tmpRect.right -= child.mGivenContentInsets.right;
5840 tmpRect.bottom -= child.mGivenContentInsets.bottom;
5841 } else if (child.mTouchableInsets == ViewTreeObserver
5842 .InternalInsetsInfo.TOUCHABLE_INSETS_VISIBLE) {
5843 // The touch is inside of the window if it is
5844 // inside the frame, AND the visible part of that
5845 // frame that was given by the application.
5846 tmpRect.left += child.mGivenVisibleInsets.left;
5847 tmpRect.top += child.mGivenVisibleInsets.top;
5848 tmpRect.right -= child.mGivenVisibleInsets.right;
5849 tmpRect.bottom -= child.mGivenVisibleInsets.bottom;
5850 }
5851 final int touchFlags = flags &
5852 (WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
5853 |WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL);
5854 if (tmpRect.contains(x, y) || touchFlags == 0) {
5855 //Log.i(TAG, "Using this target!");
5856 if (!screenWasOff || (flags &
5857 WindowManager.LayoutParams.FLAG_TOUCHABLE_WHEN_WAKING) != 0) {
5858 mMotionTarget = child;
5859 } else {
5860 //Log.i(TAG, "Waking, skip!");
5861 mMotionTarget = null;
5862 }
5863 break;
5864 }
Romain Guy06882f82009-06-10 13:36:04 -07005865
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005866 if ((flags & WindowManager.LayoutParams
5867 .FLAG_WATCH_OUTSIDE_TOUCH) != 0) {
5868 child.mNextOutsideTouch = mOutsideTouchTargets;
5869 mOutsideTouchTargets = child;
5870 //Log.i(TAG, "Adding to outside target list: " + child);
5871 }
5872 }
5873
5874 // if there's an error window but it's not accepting
5875 // focus (typically because it is not yet visible) just
5876 // wait for it -- any other focused window may in fact
5877 // be in ANR state.
5878 if (topErrWindow != null && mMotionTarget != topErrWindow) {
5879 mMotionTarget = null;
5880 }
5881 }
Romain Guy06882f82009-06-10 13:36:04 -07005882
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005883 target = mMotionTarget;
5884 }
5885 }
Romain Guy06882f82009-06-10 13:36:04 -07005886
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005887 wakeupIfNeeded(target, eventType(nextMotion));
Romain Guy06882f82009-06-10 13:36:04 -07005888
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005889 // Pointer events are a little different -- if there isn't a
5890 // target found for any event, then just drop it.
5891 return target != null ? target : SKIP_TARGET_TOKEN;
5892 }
Romain Guy06882f82009-06-10 13:36:04 -07005893
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005894 boolean checkShouldDispatchKey(int keycode) {
5895 synchronized (this) {
5896 if (mPolicy.isAppSwitchKeyTqTiLwLi(keycode)) {
5897 mTimeToSwitch = 0;
5898 return true;
5899 }
5900 if (mTimeToSwitch != 0
5901 && mTimeToSwitch < SystemClock.uptimeMillis()) {
5902 return false;
5903 }
5904 return true;
5905 }
5906 }
Romain Guy06882f82009-06-10 13:36:04 -07005907
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005908 void bindTargetWindowLocked(WindowState win,
5909 int pendingWhat, QueuedEvent pendingMotion) {
5910 synchronized (this) {
5911 bindTargetWindowLockedLocked(win, pendingWhat, pendingMotion);
5912 }
5913 }
Romain Guy06882f82009-06-10 13:36:04 -07005914
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005915 void bindTargetWindowLocked(WindowState win) {
5916 synchronized (this) {
5917 bindTargetWindowLockedLocked(win, RETURN_NOTHING, null);
5918 }
5919 }
5920
5921 void bindTargetWindowLockedLocked(WindowState win,
5922 int pendingWhat, QueuedEvent pendingMotion) {
5923 mLastWin = win;
5924 mLastBinder = win.mClient.asBinder();
5925 mFinished = false;
5926 if (pendingMotion != null) {
5927 final Session s = win.mSession;
5928 if (pendingWhat == RETURN_PENDING_POINTER) {
5929 releasePendingPointerLocked(s);
5930 s.mPendingPointerMove = pendingMotion;
5931 s.mPendingPointerWindow = win;
Romain Guy06882f82009-06-10 13:36:04 -07005932 if (DEBUG_INPUT) Log.v(TAG,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005933 "bindTargetToWindow " + s.mPendingPointerMove);
5934 } else if (pendingWhat == RETURN_PENDING_TRACKBALL) {
5935 releasePendingTrackballLocked(s);
5936 s.mPendingTrackballMove = pendingMotion;
5937 s.mPendingTrackballWindow = win;
5938 }
5939 }
5940 }
Romain Guy06882f82009-06-10 13:36:04 -07005941
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005942 void releasePendingPointerLocked(Session s) {
5943 if (DEBUG_INPUT) Log.v(TAG,
5944 "releasePendingPointer " + s.mPendingPointerMove);
5945 if (s.mPendingPointerMove != null) {
5946 mQueue.recycleEvent(s.mPendingPointerMove);
5947 s.mPendingPointerMove = null;
5948 }
5949 }
Romain Guy06882f82009-06-10 13:36:04 -07005950
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005951 void releasePendingTrackballLocked(Session s) {
5952 if (s.mPendingTrackballMove != null) {
5953 mQueue.recycleEvent(s.mPendingTrackballMove);
5954 s.mPendingTrackballMove = null;
5955 }
5956 }
Romain Guy06882f82009-06-10 13:36:04 -07005957
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005958 MotionEvent finishedKey(Session session, IWindow client, boolean force,
5959 int returnWhat) {
5960 if (DEBUG_INPUT) Log.v(
5961 TAG, "finishedKey: client=" + client + ", force=" + force);
5962
5963 if (client == null) {
5964 return null;
5965 }
5966
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -07005967 MotionEvent res = null;
5968 QueuedEvent qev = null;
5969 WindowState win = null;
5970
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005971 synchronized (this) {
5972 if (DEBUG_INPUT) Log.v(
5973 TAG, "finishedKey: client=" + client.asBinder()
5974 + ", force=" + force + ", last=" + mLastBinder
5975 + " (token=" + (mLastWin != null ? mLastWin.mToken : null) + ")");
5976
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005977 if (returnWhat == RETURN_PENDING_POINTER) {
5978 qev = session.mPendingPointerMove;
5979 win = session.mPendingPointerWindow;
5980 session.mPendingPointerMove = null;
5981 session.mPendingPointerWindow = null;
5982 } else if (returnWhat == RETURN_PENDING_TRACKBALL) {
5983 qev = session.mPendingTrackballMove;
5984 win = session.mPendingTrackballWindow;
5985 session.mPendingTrackballMove = null;
5986 session.mPendingTrackballWindow = null;
5987 }
Romain Guy06882f82009-06-10 13:36:04 -07005988
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005989 if (mLastBinder == client.asBinder()) {
5990 if (DEBUG_INPUT) Log.v(
5991 TAG, "finishedKey: last paused="
5992 + ((mLastWin != null) ? mLastWin.mToken.paused : "null"));
5993 if (mLastWin != null && (!mLastWin.mToken.paused || force
5994 || !mEventDispatching)) {
5995 doFinishedKeyLocked(false);
5996 } else {
5997 // Make sure to wake up anyone currently waiting to
5998 // dispatch a key, so they can re-evaluate their
5999 // current situation.
6000 mFinished = true;
6001 notifyAll();
6002 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006003 }
Romain Guy06882f82009-06-10 13:36:04 -07006004
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006005 if (qev != null) {
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -07006006 res = (MotionEvent)qev.event;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006007 if (DEBUG_INPUT) Log.v(TAG,
6008 "Returning pending motion: " + res);
6009 mQueue.recycleEvent(qev);
6010 if (win != null && returnWhat == RETURN_PENDING_POINTER) {
6011 res.offsetLocation(-win.mFrame.left, -win.mFrame.top);
6012 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006013 }
Dianne Hackborn6adba242009-11-10 11:10:09 -08006014
6015 if (res != null && returnWhat == RETURN_PENDING_POINTER) {
6016 synchronized (mWindowMap) {
6017 if (mWallpaperTarget == win || mSendingPointersToWallpaper) {
6018 sendPointerToWallpaperLocked(win, res, res.getEventTime());
6019 }
Dianne Hackborn8df8b2b2009-08-17 15:15:18 -07006020 }
6021 }
6022 }
6023
6024 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006025 }
6026
6027 void tickle() {
6028 synchronized (this) {
6029 notifyAll();
6030 }
6031 }
Romain Guy06882f82009-06-10 13:36:04 -07006032
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006033 void handleNewWindowLocked(WindowState newWindow) {
6034 if (!newWindow.canReceiveKeys()) {
6035 return;
6036 }
6037 synchronized (this) {
The Android Open Source Projectc474dec2009-03-04 09:49:09 -08006038 if (DEBUG_INPUT) Log.v(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006039 TAG, "New key dispatch window: win="
6040 + newWindow.mClient.asBinder()
6041 + ", last=" + mLastBinder
6042 + " (token=" + (mLastWin != null ? mLastWin.mToken : null)
6043 + "), finished=" + mFinished + ", paused="
6044 + newWindow.mToken.paused);
6045
6046 // Displaying a window implicitly causes dispatching to
6047 // be unpaused. (This is to protect against bugs if someone
6048 // pauses dispatching but forgets to resume.)
6049 newWindow.mToken.paused = false;
6050
6051 mGotFirstWindow = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006052
6053 if ((newWindow.mAttrs.flags & FLAG_SYSTEM_ERROR) != 0) {
6054 if (DEBUG_INPUT) Log.v(TAG,
6055 "New SYSTEM_ERROR window; resetting state");
6056 mLastWin = null;
6057 mLastBinder = null;
6058 mMotionTarget = null;
6059 mFinished = true;
6060 } else if (mLastWin != null) {
6061 // If the new window is above the window we are
6062 // waiting on, then stop waiting and let key dispatching
6063 // start on the new guy.
6064 if (DEBUG_INPUT) Log.v(
6065 TAG, "Last win layer=" + mLastWin.mLayer
6066 + ", new win layer=" + newWindow.mLayer);
6067 if (newWindow.mLayer >= mLastWin.mLayer) {
The Android Open Source Projectc474dec2009-03-04 09:49:09 -08006068 // The new window is above the old; finish pending input to the last
6069 // window and start directing it to the new one.
6070 mLastWin.mToken.paused = false;
6071 doFinishedKeyLocked(true); // does a notifyAll()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006072 }
The Android Open Source Projectc474dec2009-03-04 09:49:09 -08006073 // Either the new window is lower, so there is no need to wake key waiters,
6074 // or we just finished key input to the previous window, which implicitly
6075 // notified the key waiters. In both cases, we don't need to issue the
6076 // notification here.
6077 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006078 }
6079
The Android Open Source Projectc474dec2009-03-04 09:49:09 -08006080 // Now that we've put a new window state in place, make the event waiter
6081 // take notice and retarget its attentions.
6082 notifyAll();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006083 }
6084 }
6085
6086 void pauseDispatchingLocked(WindowToken token) {
6087 synchronized (this)
6088 {
6089 if (DEBUG_INPUT) Log.v(TAG, "Pausing WindowToken " + token);
6090 token.paused = true;
6091
6092 /*
6093 if (mLastWin != null && !mFinished && mLastWin.mBaseLayer <= layer) {
6094 mPaused = true;
6095 } else {
6096 if (mLastWin == null) {
Dave Bortcfe65242009-04-09 14:51:04 -07006097 Log.i(TAG, "Key dispatching not paused: no last window.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006098 } else if (mFinished) {
Dave Bortcfe65242009-04-09 14:51:04 -07006099 Log.i(TAG, "Key dispatching not paused: finished last key.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006100 } else {
Dave Bortcfe65242009-04-09 14:51:04 -07006101 Log.i(TAG, "Key dispatching not paused: window in higher layer.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006102 }
6103 }
6104 */
6105 }
6106 }
6107
6108 void resumeDispatchingLocked(WindowToken token) {
6109 synchronized (this) {
6110 if (token.paused) {
6111 if (DEBUG_INPUT) Log.v(
6112 TAG, "Resuming WindowToken " + token
6113 + ", last=" + mLastBinder
6114 + " (token=" + (mLastWin != null ? mLastWin.mToken : null)
6115 + "), finished=" + mFinished + ", paused="
6116 + token.paused);
6117 token.paused = false;
6118 if (mLastWin != null && mLastWin.mToken == token && mFinished) {
6119 doFinishedKeyLocked(true);
6120 } else {
6121 notifyAll();
6122 }
6123 }
6124 }
6125 }
6126
6127 void setEventDispatchingLocked(boolean enabled) {
6128 synchronized (this) {
6129 mEventDispatching = enabled;
6130 notifyAll();
6131 }
6132 }
Romain Guy06882f82009-06-10 13:36:04 -07006133
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006134 void appSwitchComing() {
6135 synchronized (this) {
6136 // Don't wait for more than .5 seconds for app to finish
6137 // processing the pending events.
6138 long now = SystemClock.uptimeMillis() + 500;
6139 if (DEBUG_INPUT) Log.v(TAG, "appSwitchComing: " + now);
6140 if (mTimeToSwitch == 0 || now < mTimeToSwitch) {
6141 mTimeToSwitch = now;
6142 }
6143 notifyAll();
6144 }
6145 }
Romain Guy06882f82009-06-10 13:36:04 -07006146
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006147 private final void doFinishedKeyLocked(boolean doRecycle) {
6148 if (mLastWin != null) {
6149 releasePendingPointerLocked(mLastWin.mSession);
6150 releasePendingTrackballLocked(mLastWin.mSession);
6151 }
Romain Guy06882f82009-06-10 13:36:04 -07006152
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006153 if (mLastWin == null || !mLastWin.mToken.paused
6154 || !mLastWin.isVisibleLw()) {
6155 // If the current window has been paused, we aren't -really-
6156 // finished... so let the waiters still wait.
6157 mLastWin = null;
6158 mLastBinder = null;
6159 }
6160 mFinished = true;
6161 notifyAll();
6162 }
6163 }
6164
6165 private class KeyQ extends KeyInputQueue
6166 implements KeyInputQueue.FilterCallback {
6167 PowerManager.WakeLock mHoldingScreen;
Romain Guy06882f82009-06-10 13:36:04 -07006168
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006169 KeyQ() {
Dianne Hackbornddca3ee2009-07-23 19:01:31 -07006170 super(mContext, WindowManagerService.this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006171 PowerManager pm = (PowerManager)mContext.getSystemService(Context.POWER_SERVICE);
6172 mHoldingScreen = pm.newWakeLock(PowerManager.SCREEN_BRIGHT_WAKE_LOCK,
6173 "KEEP_SCREEN_ON_FLAG");
6174 mHoldingScreen.setReferenceCounted(false);
6175 }
6176
6177 @Override
6178 boolean preprocessEvent(InputDevice device, RawInputEvent event) {
6179 if (mPolicy.preprocessInputEventTq(event)) {
6180 return true;
6181 }
Romain Guy06882f82009-06-10 13:36:04 -07006182
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006183 switch (event.type) {
6184 case RawInputEvent.EV_KEY: {
6185 // XXX begin hack
6186 if (DEBUG) {
6187 if (event.keycode == KeyEvent.KEYCODE_G) {
6188 if (event.value != 0) {
6189 // G down
6190 mPolicy.screenTurnedOff(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
6191 }
6192 return false;
6193 }
6194 if (event.keycode == KeyEvent.KEYCODE_D) {
6195 if (event.value != 0) {
6196 //dump();
6197 }
6198 return false;
6199 }
6200 }
6201 // XXX end hack
Romain Guy06882f82009-06-10 13:36:04 -07006202
Charles Mendis322591c2009-10-29 11:06:59 -07006203 boolean screenIsOff = !mPowerManager.isScreenOn();
6204 boolean screenIsDim = !mPowerManager.isScreenBright();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006205 int actions = mPolicy.interceptKeyTq(event, !screenIsOff);
Romain Guy06882f82009-06-10 13:36:04 -07006206
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006207 if ((actions & WindowManagerPolicy.ACTION_GO_TO_SLEEP) != 0) {
6208 mPowerManager.goToSleep(event.when);
6209 }
6210
6211 if (screenIsOff) {
6212 event.flags |= WindowManagerPolicy.FLAG_WOKE_HERE;
6213 }
6214 if (screenIsDim) {
6215 event.flags |= WindowManagerPolicy.FLAG_BRIGHT_HERE;
6216 }
6217 if ((actions & WindowManagerPolicy.ACTION_POKE_USER_ACTIVITY) != 0) {
6218 mPowerManager.userActivity(event.when, false,
Michael Chane96440f2009-05-06 10:27:36 -07006219 LocalPowerManager.BUTTON_EVENT, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006220 }
Romain Guy06882f82009-06-10 13:36:04 -07006221
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006222 if ((actions & WindowManagerPolicy.ACTION_PASS_TO_USER) != 0) {
6223 if (event.value != 0 && mPolicy.isAppSwitchKeyTqTiLwLi(event.keycode)) {
6224 filterQueue(this);
6225 mKeyWaiter.appSwitchComing();
6226 }
6227 return true;
6228 } else {
6229 return false;
6230 }
6231 }
Romain Guy06882f82009-06-10 13:36:04 -07006232
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006233 case RawInputEvent.EV_REL: {
Charles Mendis322591c2009-10-29 11:06:59 -07006234 boolean screenIsOff = !mPowerManager.isScreenOn();
6235 boolean screenIsDim = !mPowerManager.isScreenBright();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006236 if (screenIsOff) {
6237 if (!mPolicy.isWakeRelMovementTq(event.deviceId,
6238 device.classes, event)) {
6239 //Log.i(TAG, "dropping because screenIsOff and !isWakeKey");
6240 return false;
6241 }
6242 event.flags |= WindowManagerPolicy.FLAG_WOKE_HERE;
6243 }
6244 if (screenIsDim) {
6245 event.flags |= WindowManagerPolicy.FLAG_BRIGHT_HERE;
6246 }
6247 return true;
6248 }
Romain Guy06882f82009-06-10 13:36:04 -07006249
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006250 case RawInputEvent.EV_ABS: {
Charles Mendis322591c2009-10-29 11:06:59 -07006251 boolean screenIsOff = !mPowerManager.isScreenOn();
6252 boolean screenIsDim = !mPowerManager.isScreenBright();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006253 if (screenIsOff) {
6254 if (!mPolicy.isWakeAbsMovementTq(event.deviceId,
6255 device.classes, event)) {
6256 //Log.i(TAG, "dropping because screenIsOff and !isWakeKey");
6257 return false;
6258 }
6259 event.flags |= WindowManagerPolicy.FLAG_WOKE_HERE;
6260 }
6261 if (screenIsDim) {
6262 event.flags |= WindowManagerPolicy.FLAG_BRIGHT_HERE;
6263 }
6264 return true;
6265 }
Romain Guy06882f82009-06-10 13:36:04 -07006266
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006267 default:
6268 return true;
6269 }
6270 }
6271
6272 public int filterEvent(QueuedEvent ev) {
6273 switch (ev.classType) {
6274 case RawInputEvent.CLASS_KEYBOARD:
6275 KeyEvent ke = (KeyEvent)ev.event;
6276 if (mPolicy.isMovementKeyTi(ke.getKeyCode())) {
6277 Log.w(TAG, "Dropping movement key during app switch: "
6278 + ke.getKeyCode() + ", action=" + ke.getAction());
6279 return FILTER_REMOVE;
6280 }
6281 return FILTER_ABORT;
6282 default:
6283 return FILTER_KEEP;
6284 }
6285 }
Romain Guy06882f82009-06-10 13:36:04 -07006286
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006287 /**
6288 * Must be called with the main window manager lock held.
6289 */
6290 void setHoldScreenLocked(boolean holding) {
6291 boolean state = mHoldingScreen.isHeld();
6292 if (holding != state) {
6293 if (holding) {
6294 mHoldingScreen.acquire();
6295 } else {
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07006296 mPolicy.screenOnStoppedLw();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006297 mHoldingScreen.release();
6298 }
6299 }
6300 }
Michael Chan53071d62009-05-13 17:29:48 -07006301 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006302
6303 public boolean detectSafeMode() {
6304 mSafeMode = mPolicy.detectSafeMode();
6305 return mSafeMode;
6306 }
Romain Guy06882f82009-06-10 13:36:04 -07006307
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006308 public void systemReady() {
6309 mPolicy.systemReady();
6310 }
Romain Guy06882f82009-06-10 13:36:04 -07006311
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006312 private final class InputDispatcherThread extends Thread {
6313 // Time to wait when there is nothing to do: 9999 seconds.
6314 static final int LONG_WAIT=9999*1000;
6315
6316 public InputDispatcherThread() {
6317 super("InputDispatcher");
6318 }
Romain Guy06882f82009-06-10 13:36:04 -07006319
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006320 @Override
6321 public void run() {
6322 while (true) {
6323 try {
6324 process();
6325 } catch (Exception e) {
6326 Log.e(TAG, "Exception in input dispatcher", e);
6327 }
6328 }
6329 }
Romain Guy06882f82009-06-10 13:36:04 -07006330
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006331 private void process() {
6332 android.os.Process.setThreadPriority(
6333 android.os.Process.THREAD_PRIORITY_URGENT_DISPLAY);
Romain Guy06882f82009-06-10 13:36:04 -07006334
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006335 // The last key event we saw
6336 KeyEvent lastKey = null;
6337
6338 // Last keydown time for auto-repeating keys
6339 long lastKeyTime = SystemClock.uptimeMillis();
6340 long nextKeyTime = lastKeyTime+LONG_WAIT;
Dianne Hackborn83fe3f52009-09-12 23:38:30 -07006341 long downTime = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006342
Romain Guy06882f82009-06-10 13:36:04 -07006343 // How many successive repeats we generated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006344 int keyRepeatCount = 0;
6345
6346 // Need to report that configuration has changed?
6347 boolean configChanged = false;
Romain Guy06882f82009-06-10 13:36:04 -07006348
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006349 while (true) {
6350 long curTime = SystemClock.uptimeMillis();
6351
6352 if (DEBUG_INPUT) Log.v(
6353 TAG, "Waiting for next key: now=" + curTime
6354 + ", repeat @ " + nextKeyTime);
6355
6356 // Retrieve next event, waiting only as long as the next
6357 // repeat timeout. If the configuration has changed, then
6358 // don't wait at all -- we'll report the change as soon as
6359 // we have processed all events.
6360 QueuedEvent ev = mQueue.getEvent(
6361 (int)((!configChanged && curTime < nextKeyTime)
6362 ? (nextKeyTime-curTime) : 0));
6363
6364 if (DEBUG_INPUT && ev != null) Log.v(
6365 TAG, "Event: type=" + ev.classType + " data=" + ev.event);
6366
Michael Chan53071d62009-05-13 17:29:48 -07006367 if (MEASURE_LATENCY) {
6368 lt.sample("2 got event ", System.nanoTime() - ev.whenNano);
6369 }
6370
Mike Lockwood3d0ea722009-10-21 22:58:29 -04006371 if (lastKey != null && !mPolicy.allowKeyRepeat()) {
6372 // cancel key repeat at the request of the policy.
6373 lastKey = null;
6374 downTime = 0;
6375 lastKeyTime = curTime;
6376 nextKeyTime = curTime + LONG_WAIT;
6377 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006378 try {
6379 if (ev != null) {
Michael Chan53071d62009-05-13 17:29:48 -07006380 curTime = SystemClock.uptimeMillis();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006381 int eventType;
6382 if (ev.classType == RawInputEvent.CLASS_TOUCHSCREEN) {
6383 eventType = eventType((MotionEvent)ev.event);
6384 } else if (ev.classType == RawInputEvent.CLASS_KEYBOARD ||
6385 ev.classType == RawInputEvent.CLASS_TRACKBALL) {
6386 eventType = LocalPowerManager.BUTTON_EVENT;
6387 } else {
6388 eventType = LocalPowerManager.OTHER_EVENT;
6389 }
Dianne Hackborn617f8772009-03-31 15:04:46 -07006390 try {
Michael Chan53071d62009-05-13 17:29:48 -07006391 if ((curTime - mLastBatteryStatsCallTime)
Michael Chane96440f2009-05-06 10:27:36 -07006392 >= MIN_TIME_BETWEEN_USERACTIVITIES) {
Michael Chan53071d62009-05-13 17:29:48 -07006393 mLastBatteryStatsCallTime = curTime;
Michael Chane96440f2009-05-06 10:27:36 -07006394 mBatteryStats.noteInputEvent();
6395 }
Dianne Hackborn617f8772009-03-31 15:04:46 -07006396 } catch (RemoteException e) {
6397 // Ignore
6398 }
Michael Chane10de972009-05-18 11:24:50 -07006399
Mike Lockwood5db42402009-11-30 14:51:51 -05006400 if (ev.classType == RawInputEvent.CLASS_CONFIGURATION_CHANGED) {
6401 // do not wake screen in this case
6402 } else if (eventType != TOUCH_EVENT
Michael Chane10de972009-05-18 11:24:50 -07006403 && eventType != LONG_TOUCH_EVENT
6404 && eventType != CHEEK_EVENT) {
6405 mPowerManager.userActivity(curTime, false,
6406 eventType, false);
6407 } else if (mLastTouchEventType != eventType
6408 || (curTime - mLastUserActivityCallTime)
6409 >= MIN_TIME_BETWEEN_USERACTIVITIES) {
6410 mLastUserActivityCallTime = curTime;
6411 mLastTouchEventType = eventType;
6412 mPowerManager.userActivity(curTime, false,
6413 eventType, false);
6414 }
6415
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006416 switch (ev.classType) {
6417 case RawInputEvent.CLASS_KEYBOARD:
6418 KeyEvent ke = (KeyEvent)ev.event;
6419 if (ke.isDown()) {
6420 lastKey = ke;
Dianne Hackborn83fe3f52009-09-12 23:38:30 -07006421 downTime = curTime;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006422 keyRepeatCount = 0;
6423 lastKeyTime = curTime;
6424 nextKeyTime = lastKeyTime
Dianne Hackborn83fe3f52009-09-12 23:38:30 -07006425 + ViewConfiguration.getLongPressTimeout();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006426 if (DEBUG_INPUT) Log.v(
6427 TAG, "Received key down: first repeat @ "
6428 + nextKeyTime);
6429 } else {
6430 lastKey = null;
Dianne Hackborn83fe3f52009-09-12 23:38:30 -07006431 downTime = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006432 // Arbitrary long timeout.
6433 lastKeyTime = curTime;
6434 nextKeyTime = curTime + LONG_WAIT;
6435 if (DEBUG_INPUT) Log.v(
6436 TAG, "Received key up: ignore repeat @ "
6437 + nextKeyTime);
6438 }
6439 dispatchKey((KeyEvent)ev.event, 0, 0);
6440 mQueue.recycleEvent(ev);
6441 break;
6442 case RawInputEvent.CLASS_TOUCHSCREEN:
6443 //Log.i(TAG, "Read next event " + ev);
6444 dispatchPointer(ev, (MotionEvent)ev.event, 0, 0);
6445 break;
6446 case RawInputEvent.CLASS_TRACKBALL:
6447 dispatchTrackball(ev, (MotionEvent)ev.event, 0, 0);
6448 break;
6449 case RawInputEvent.CLASS_CONFIGURATION_CHANGED:
6450 configChanged = true;
6451 break;
6452 default:
6453 mQueue.recycleEvent(ev);
6454 break;
6455 }
Romain Guy06882f82009-06-10 13:36:04 -07006456
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006457 } else if (configChanged) {
6458 configChanged = false;
6459 sendNewConfiguration();
Romain Guy06882f82009-06-10 13:36:04 -07006460
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006461 } else if (lastKey != null) {
6462 curTime = SystemClock.uptimeMillis();
Romain Guy06882f82009-06-10 13:36:04 -07006463
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006464 // Timeout occurred while key was down. If it is at or
6465 // past the key repeat time, dispatch the repeat.
6466 if (DEBUG_INPUT) Log.v(
6467 TAG, "Key timeout: repeat=" + nextKeyTime
6468 + ", now=" + curTime);
6469 if (curTime < nextKeyTime) {
6470 continue;
6471 }
Romain Guy06882f82009-06-10 13:36:04 -07006472
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006473 lastKeyTime = nextKeyTime;
6474 nextKeyTime = nextKeyTime + KEY_REPEAT_DELAY;
6475 keyRepeatCount++;
6476 if (DEBUG_INPUT) Log.v(
6477 TAG, "Key repeat: count=" + keyRepeatCount
6478 + ", next @ " + nextKeyTime);
Dianne Hackborn83fe3f52009-09-12 23:38:30 -07006479 KeyEvent newEvent;
6480 if (downTime != 0 && (downTime
6481 + ViewConfiguration.getLongPressTimeout())
6482 <= curTime) {
6483 newEvent = KeyEvent.changeTimeRepeat(lastKey,
6484 curTime, keyRepeatCount,
6485 lastKey.getFlags() | KeyEvent.FLAG_LONG_PRESS);
6486 downTime = 0;
6487 } else {
6488 newEvent = KeyEvent.changeTimeRepeat(lastKey,
6489 curTime, keyRepeatCount);
6490 }
6491 dispatchKey(newEvent, 0, 0);
Romain Guy06882f82009-06-10 13:36:04 -07006492
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006493 } else {
6494 curTime = SystemClock.uptimeMillis();
Romain Guy06882f82009-06-10 13:36:04 -07006495
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006496 lastKeyTime = curTime;
6497 nextKeyTime = curTime + LONG_WAIT;
6498 }
Romain Guy06882f82009-06-10 13:36:04 -07006499
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006500 } catch (Exception e) {
6501 Log.e(TAG,
6502 "Input thread received uncaught exception: " + e, e);
6503 }
6504 }
6505 }
6506 }
6507
6508 // -------------------------------------------------------------
6509 // Client Session State
6510 // -------------------------------------------------------------
6511
6512 private final class Session extends IWindowSession.Stub
6513 implements IBinder.DeathRecipient {
6514 final IInputMethodClient mClient;
6515 final IInputContext mInputContext;
6516 final int mUid;
6517 final int mPid;
Dianne Hackborn1d442e02009-04-20 18:14:05 -07006518 final String mStringName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006519 SurfaceSession mSurfaceSession;
6520 int mNumWindow = 0;
6521 boolean mClientDead = false;
Romain Guy06882f82009-06-10 13:36:04 -07006522
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006523 /**
6524 * Current pointer move event being dispatched to client window... must
6525 * hold key lock to access.
6526 */
6527 QueuedEvent mPendingPointerMove;
6528 WindowState mPendingPointerWindow;
Romain Guy06882f82009-06-10 13:36:04 -07006529
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006530 /**
6531 * Current trackball move event being dispatched to client window... must
6532 * hold key lock to access.
6533 */
6534 QueuedEvent mPendingTrackballMove;
6535 WindowState mPendingTrackballWindow;
6536
6537 public Session(IInputMethodClient client, IInputContext inputContext) {
6538 mClient = client;
6539 mInputContext = inputContext;
6540 mUid = Binder.getCallingUid();
6541 mPid = Binder.getCallingPid();
Dianne Hackborn1d442e02009-04-20 18:14:05 -07006542 StringBuilder sb = new StringBuilder();
6543 sb.append("Session{");
6544 sb.append(Integer.toHexString(System.identityHashCode(this)));
6545 sb.append(" uid ");
6546 sb.append(mUid);
6547 sb.append("}");
6548 mStringName = sb.toString();
Romain Guy06882f82009-06-10 13:36:04 -07006549
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006550 synchronized (mWindowMap) {
6551 if (mInputMethodManager == null && mHaveInputMethods) {
6552 IBinder b = ServiceManager.getService(
6553 Context.INPUT_METHOD_SERVICE);
6554 mInputMethodManager = IInputMethodManager.Stub.asInterface(b);
6555 }
6556 }
6557 long ident = Binder.clearCallingIdentity();
6558 try {
6559 // Note: it is safe to call in to the input method manager
6560 // here because we are not holding our lock.
6561 if (mInputMethodManager != null) {
6562 mInputMethodManager.addClient(client, inputContext,
6563 mUid, mPid);
6564 } else {
6565 client.setUsingInputMethod(false);
6566 }
6567 client.asBinder().linkToDeath(this, 0);
6568 } catch (RemoteException e) {
6569 // The caller has died, so we can just forget about this.
6570 try {
6571 if (mInputMethodManager != null) {
6572 mInputMethodManager.removeClient(client);
6573 }
6574 } catch (RemoteException ee) {
6575 }
6576 } finally {
6577 Binder.restoreCallingIdentity(ident);
6578 }
6579 }
Romain Guy06882f82009-06-10 13:36:04 -07006580
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006581 @Override
6582 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
6583 throws RemoteException {
6584 try {
6585 return super.onTransact(code, data, reply, flags);
6586 } catch (RuntimeException e) {
6587 // Log all 'real' exceptions thrown to the caller
6588 if (!(e instanceof SecurityException)) {
6589 Log.e(TAG, "Window Session Crash", e);
6590 }
6591 throw e;
6592 }
6593 }
6594
6595 public void binderDied() {
6596 // Note: it is safe to call in to the input method manager
6597 // here because we are not holding our lock.
6598 try {
6599 if (mInputMethodManager != null) {
6600 mInputMethodManager.removeClient(mClient);
6601 }
6602 } catch (RemoteException e) {
6603 }
6604 synchronized(mWindowMap) {
Suchi Amalapurapufff2fda2009-06-30 21:36:16 -07006605 mClient.asBinder().unlinkToDeath(this, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006606 mClientDead = true;
6607 killSessionLocked();
6608 }
6609 }
6610
6611 public int add(IWindow window, WindowManager.LayoutParams attrs,
6612 int viewVisibility, Rect outContentInsets) {
6613 return addWindow(this, window, attrs, viewVisibility, outContentInsets);
6614 }
Romain Guy06882f82009-06-10 13:36:04 -07006615
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006616 public void remove(IWindow window) {
6617 removeWindow(this, window);
6618 }
Romain Guy06882f82009-06-10 13:36:04 -07006619
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006620 public int relayout(IWindow window, WindowManager.LayoutParams attrs,
6621 int requestedWidth, int requestedHeight, int viewFlags,
6622 boolean insetsPending, Rect outFrame, Rect outContentInsets,
6623 Rect outVisibleInsets, Surface outSurface) {
6624 return relayoutWindow(this, window, attrs,
6625 requestedWidth, requestedHeight, viewFlags, insetsPending,
6626 outFrame, outContentInsets, outVisibleInsets, outSurface);
6627 }
Romain Guy06882f82009-06-10 13:36:04 -07006628
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006629 public void setTransparentRegion(IWindow window, Region region) {
6630 setTransparentRegionWindow(this, window, region);
6631 }
Romain Guy06882f82009-06-10 13:36:04 -07006632
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006633 public void setInsets(IWindow window, int touchableInsets,
6634 Rect contentInsets, Rect visibleInsets) {
6635 setInsetsWindow(this, window, touchableInsets, contentInsets,
6636 visibleInsets);
6637 }
Romain Guy06882f82009-06-10 13:36:04 -07006638
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006639 public void getDisplayFrame(IWindow window, Rect outDisplayFrame) {
6640 getWindowDisplayFrame(this, window, outDisplayFrame);
6641 }
Romain Guy06882f82009-06-10 13:36:04 -07006642
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006643 public void finishDrawing(IWindow window) {
6644 if (localLOGV) Log.v(
6645 TAG, "IWindow finishDrawing called for " + window);
6646 finishDrawingWindow(this, window);
6647 }
6648
6649 public void finishKey(IWindow window) {
6650 if (localLOGV) Log.v(
6651 TAG, "IWindow finishKey called for " + window);
6652 mKeyWaiter.finishedKey(this, window, false,
6653 KeyWaiter.RETURN_NOTHING);
6654 }
6655
6656 public MotionEvent getPendingPointerMove(IWindow window) {
6657 if (localLOGV) Log.v(
6658 TAG, "IWindow getPendingMotionEvent called for " + window);
6659 return mKeyWaiter.finishedKey(this, window, false,
6660 KeyWaiter.RETURN_PENDING_POINTER);
6661 }
Romain Guy06882f82009-06-10 13:36:04 -07006662
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006663 public MotionEvent getPendingTrackballMove(IWindow window) {
6664 if (localLOGV) Log.v(
6665 TAG, "IWindow getPendingMotionEvent called for " + window);
6666 return mKeyWaiter.finishedKey(this, window, false,
6667 KeyWaiter.RETURN_PENDING_TRACKBALL);
6668 }
6669
6670 public void setInTouchMode(boolean mode) {
6671 synchronized(mWindowMap) {
6672 mInTouchMode = mode;
6673 }
6674 }
6675
6676 public boolean getInTouchMode() {
6677 synchronized(mWindowMap) {
6678 return mInTouchMode;
6679 }
6680 }
6681
6682 public boolean performHapticFeedback(IWindow window, int effectId,
6683 boolean always) {
6684 synchronized(mWindowMap) {
6685 long ident = Binder.clearCallingIdentity();
6686 try {
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07006687 return mPolicy.performHapticFeedbackLw(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006688 windowForClientLocked(this, window), effectId, always);
6689 } finally {
6690 Binder.restoreCallingIdentity(ident);
6691 }
6692 }
6693 }
Romain Guy06882f82009-06-10 13:36:04 -07006694
Marco Nelissenbf6956b2009-11-09 15:21:13 -08006695 public void setWallpaperPosition(IBinder window, float x, float y, float xStep, float yStep) {
Dianne Hackbornc8a0a752009-08-10 23:05:49 -07006696 synchronized(mWindowMap) {
6697 long ident = Binder.clearCallingIdentity();
6698 try {
6699 setWindowWallpaperPositionLocked(windowForClientLocked(this, window),
Marco Nelissenbf6956b2009-11-09 15:21:13 -08006700 x, y, xStep, yStep);
Dianne Hackbornc8a0a752009-08-10 23:05:49 -07006701 } finally {
6702 Binder.restoreCallingIdentity(ident);
6703 }
6704 }
6705 }
6706
Dianne Hackborn19382ac2009-09-11 21:13:37 -07006707 public void wallpaperOffsetsComplete(IBinder window) {
6708 WindowManagerService.this.wallpaperOffsetsComplete(window);
6709 }
6710
Dianne Hackborn75804932009-10-20 20:15:20 -07006711 public Bundle sendWallpaperCommand(IBinder window, String action, int x, int y,
6712 int z, Bundle extras, boolean sync) {
6713 synchronized(mWindowMap) {
6714 long ident = Binder.clearCallingIdentity();
6715 try {
6716 return sendWindowWallpaperCommandLocked(
6717 windowForClientLocked(this, window),
6718 action, x, y, z, extras, sync);
6719 } finally {
6720 Binder.restoreCallingIdentity(ident);
6721 }
6722 }
6723 }
6724
6725 public void wallpaperCommandComplete(IBinder window, Bundle result) {
6726 WindowManagerService.this.wallpaperCommandComplete(window, result);
6727 }
6728
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006729 void windowAddedLocked() {
6730 if (mSurfaceSession == null) {
6731 if (localLOGV) Log.v(
6732 TAG, "First window added to " + this + ", creating SurfaceSession");
6733 mSurfaceSession = new SurfaceSession();
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07006734 if (SHOW_TRANSACTIONS) Log.i(
6735 TAG, " NEW SURFACE SESSION " + mSurfaceSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006736 mSessions.add(this);
6737 }
6738 mNumWindow++;
6739 }
6740
6741 void windowRemovedLocked() {
6742 mNumWindow--;
6743 killSessionLocked();
6744 }
Romain Guy06882f82009-06-10 13:36:04 -07006745
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006746 void killSessionLocked() {
6747 if (mNumWindow <= 0 && mClientDead) {
6748 mSessions.remove(this);
6749 if (mSurfaceSession != null) {
6750 if (localLOGV) Log.v(
6751 TAG, "Last window removed from " + this
6752 + ", destroying " + mSurfaceSession);
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07006753 if (SHOW_TRANSACTIONS) Log.i(
6754 TAG, " KILL SURFACE SESSION " + mSurfaceSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006755 try {
6756 mSurfaceSession.kill();
6757 } catch (Exception e) {
6758 Log.w(TAG, "Exception thrown when killing surface session "
6759 + mSurfaceSession + " in session " + this
6760 + ": " + e.toString());
6761 }
6762 mSurfaceSession = null;
6763 }
6764 }
6765 }
Romain Guy06882f82009-06-10 13:36:04 -07006766
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006767 void dump(PrintWriter pw, String prefix) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07006768 pw.print(prefix); pw.print("mNumWindow="); pw.print(mNumWindow);
6769 pw.print(" mClientDead="); pw.print(mClientDead);
6770 pw.print(" mSurfaceSession="); pw.println(mSurfaceSession);
6771 if (mPendingPointerWindow != null || mPendingPointerMove != null) {
6772 pw.print(prefix);
6773 pw.print("mPendingPointerWindow="); pw.print(mPendingPointerWindow);
6774 pw.print(" mPendingPointerMove="); pw.println(mPendingPointerMove);
6775 }
6776 if (mPendingTrackballWindow != null || mPendingTrackballMove != null) {
6777 pw.print(prefix);
6778 pw.print("mPendingTrackballWindow="); pw.print(mPendingTrackballWindow);
6779 pw.print(" mPendingTrackballMove="); pw.println(mPendingTrackballMove);
6780 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006781 }
6782
6783 @Override
6784 public String toString() {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07006785 return mStringName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006786 }
6787 }
6788
6789 // -------------------------------------------------------------
6790 // Client Window State
6791 // -------------------------------------------------------------
6792
6793 private final class WindowState implements WindowManagerPolicy.WindowState {
6794 final Session mSession;
6795 final IWindow mClient;
6796 WindowToken mToken;
The Android Open Source Project10592532009-03-18 17:39:46 -07006797 WindowToken mRootToken;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006798 AppWindowToken mAppToken;
6799 AppWindowToken mTargetAppToken;
6800 final WindowManager.LayoutParams mAttrs = new WindowManager.LayoutParams();
6801 final DeathRecipient mDeathRecipient;
6802 final WindowState mAttachedWindow;
6803 final ArrayList mChildWindows = new ArrayList();
6804 final int mBaseLayer;
6805 final int mSubLayer;
6806 final boolean mLayoutAttached;
6807 final boolean mIsImWindow;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07006808 final boolean mIsWallpaper;
6809 final boolean mIsFloatingLayer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006810 int mViewVisibility;
6811 boolean mPolicyVisibility = true;
6812 boolean mPolicyVisibilityAfterAnim = true;
6813 boolean mAppFreezing;
6814 Surface mSurface;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07006815 boolean mReportDestroySurface;
6816 boolean mSurfacePendingDestroy;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006817 boolean mAttachedHidden; // is our parent window hidden?
6818 boolean mLastHidden; // was this window last hidden?
Dianne Hackborn759a39e2009-08-09 17:20:27 -07006819 boolean mWallpaperVisible; // for wallpaper, what was last vis report?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006820 int mRequestedWidth;
6821 int mRequestedHeight;
6822 int mLastRequestedWidth;
6823 int mLastRequestedHeight;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006824 int mLayer;
6825 int mAnimLayer;
6826 int mLastLayer;
6827 boolean mHaveFrame;
Dianne Hackborn7341d7a2009-08-14 11:37:52 -07006828 boolean mObscured;
Dianne Hackborn93e462b2009-09-15 22:50:40 -07006829 boolean mTurnOnScreen;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006830
6831 WindowState mNextOutsideTouch;
Romain Guy06882f82009-06-10 13:36:04 -07006832
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006833 // Actual frame shown on-screen (may be modified by animation)
6834 final Rect mShownFrame = new Rect();
6835 final Rect mLastShownFrame = new Rect();
Romain Guy06882f82009-06-10 13:36:04 -07006836
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006837 /**
6838 * Insets that determine the actually visible area
6839 */
6840 final Rect mVisibleInsets = new Rect();
6841 final Rect mLastVisibleInsets = new Rect();
6842 boolean mVisibleInsetsChanged;
6843
6844 /**
6845 * Insets that are covered by system windows
6846 */
6847 final Rect mContentInsets = new Rect();
6848 final Rect mLastContentInsets = new Rect();
6849 boolean mContentInsetsChanged;
6850
6851 /**
6852 * Set to true if we are waiting for this window to receive its
6853 * given internal insets before laying out other windows based on it.
6854 */
6855 boolean mGivenInsetsPending;
Romain Guy06882f82009-06-10 13:36:04 -07006856
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006857 /**
6858 * These are the content insets that were given during layout for
6859 * this window, to be applied to windows behind it.
6860 */
6861 final Rect mGivenContentInsets = new Rect();
Romain Guy06882f82009-06-10 13:36:04 -07006862
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006863 /**
6864 * These are the visible insets that were given during layout for
6865 * this window, to be applied to windows behind it.
6866 */
6867 final Rect mGivenVisibleInsets = new Rect();
Romain Guy06882f82009-06-10 13:36:04 -07006868
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006869 /**
6870 * Flag indicating whether the touchable region should be adjusted by
6871 * the visible insets; if false the area outside the visible insets is
6872 * NOT touchable, so we must use those to adjust the frame during hit
6873 * tests.
6874 */
6875 int mTouchableInsets = ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_FRAME;
Romain Guy06882f82009-06-10 13:36:04 -07006876
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006877 // Current transformation being applied.
6878 float mDsDx=1, mDtDx=0, mDsDy=0, mDtDy=1;
6879 float mLastDsDx=1, mLastDtDx=0, mLastDsDy=0, mLastDtDy=1;
6880 float mHScale=1, mVScale=1;
6881 float mLastHScale=1, mLastVScale=1;
6882 final Matrix mTmpMatrix = new Matrix();
6883
6884 // "Real" frame that the application sees.
6885 final Rect mFrame = new Rect();
6886 final Rect mLastFrame = new Rect();
6887
6888 final Rect mContainingFrame = new Rect();
6889 final Rect mDisplayFrame = new Rect();
6890 final Rect mContentFrame = new Rect();
6891 final Rect mVisibleFrame = new Rect();
6892
6893 float mShownAlpha = 1;
6894 float mAlpha = 1;
6895 float mLastAlpha = 1;
6896
6897 // Set to true if, when the window gets displayed, it should perform
6898 // an enter animation.
6899 boolean mEnterAnimationPending;
6900
6901 // Currently running animation.
6902 boolean mAnimating;
6903 boolean mLocalAnimating;
6904 Animation mAnimation;
6905 boolean mAnimationIsEntrance;
6906 boolean mHasTransformation;
6907 boolean mHasLocalTransformation;
6908 final Transformation mTransformation = new Transformation();
6909
Dianne Hackborn72c82ab2009-08-11 21:13:54 -07006910 // If a window showing a wallpaper: the requested offset for the
6911 // wallpaper; if a wallpaper window: the currently applied offset.
6912 float mWallpaperX = -1;
6913 float mWallpaperY = -1;
Marco Nelissenbf6956b2009-11-09 15:21:13 -08006914
6915 // If a window showing a wallpaper: what fraction of the offset
6916 // range corresponds to a full virtual screen.
6917 float mWallpaperXStep = -1;
6918 float mWallpaperYStep = -1;
6919
Dianne Hackborn72c82ab2009-08-11 21:13:54 -07006920 // Wallpaper windows: pixels offset based on above variables.
6921 int mXOffset;
6922 int mYOffset;
Dianne Hackbornc8a0a752009-08-10 23:05:49 -07006923
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006924 // This is set after IWindowSession.relayout() has been called at
6925 // least once for the window. It allows us to detect the situation
6926 // where we don't yet have a surface, but should have one soon, so
6927 // we can give the window focus before waiting for the relayout.
6928 boolean mRelayoutCalled;
Romain Guy06882f82009-06-10 13:36:04 -07006929
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006930 // This is set after the Surface has been created but before the
6931 // window has been drawn. During this time the surface is hidden.
6932 boolean mDrawPending;
6933
6934 // This is set after the window has finished drawing for the first
6935 // time but before its surface is shown. The surface will be
6936 // displayed when the next layout is run.
6937 boolean mCommitDrawPending;
6938
6939 // This is set during the time after the window's drawing has been
6940 // committed, and before its surface is actually shown. It is used
6941 // to delay showing the surface until all windows in a token are ready
6942 // to be shown.
6943 boolean mReadyToShow;
Romain Guy06882f82009-06-10 13:36:04 -07006944
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006945 // Set when the window has been shown in the screen the first time.
6946 boolean mHasDrawn;
6947
6948 // Currently running an exit animation?
6949 boolean mExiting;
6950
6951 // Currently on the mDestroySurface list?
6952 boolean mDestroying;
Romain Guy06882f82009-06-10 13:36:04 -07006953
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006954 // Completely remove from window manager after exit animation?
6955 boolean mRemoveOnExit;
6956
6957 // Set when the orientation is changing and this window has not yet
6958 // been updated for the new orientation.
6959 boolean mOrientationChanging;
Romain Guy06882f82009-06-10 13:36:04 -07006960
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006961 // Is this window now (or just being) removed?
6962 boolean mRemoved;
Romain Guy06882f82009-06-10 13:36:04 -07006963
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006964 WindowState(Session s, IWindow c, WindowToken token,
6965 WindowState attachedWindow, WindowManager.LayoutParams a,
6966 int viewVisibility) {
6967 mSession = s;
6968 mClient = c;
6969 mToken = token;
6970 mAttrs.copyFrom(a);
6971 mViewVisibility = viewVisibility;
6972 DeathRecipient deathRecipient = new DeathRecipient();
6973 mAlpha = a.alpha;
6974 if (localLOGV) Log.v(
6975 TAG, "Window " + this + " client=" + c.asBinder()
6976 + " token=" + token + " (" + mAttrs.token + ")");
6977 try {
6978 c.asBinder().linkToDeath(deathRecipient, 0);
6979 } catch (RemoteException e) {
6980 mDeathRecipient = null;
6981 mAttachedWindow = null;
6982 mLayoutAttached = false;
6983 mIsImWindow = false;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07006984 mIsWallpaper = false;
6985 mIsFloatingLayer = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006986 mBaseLayer = 0;
6987 mSubLayer = 0;
6988 return;
6989 }
6990 mDeathRecipient = deathRecipient;
Romain Guy06882f82009-06-10 13:36:04 -07006991
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006992 if ((mAttrs.type >= FIRST_SUB_WINDOW &&
6993 mAttrs.type <= LAST_SUB_WINDOW)) {
6994 // The multiplier here is to reserve space for multiple
6995 // windows in the same type layer.
6996 mBaseLayer = mPolicy.windowTypeToLayerLw(
6997 attachedWindow.mAttrs.type) * TYPE_LAYER_MULTIPLIER
6998 + TYPE_LAYER_OFFSET;
6999 mSubLayer = mPolicy.subWindowTypeToLayerLw(a.type);
7000 mAttachedWindow = attachedWindow;
7001 mAttachedWindow.mChildWindows.add(this);
7002 mLayoutAttached = mAttrs.type !=
7003 WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG;
7004 mIsImWindow = attachedWindow.mAttrs.type == TYPE_INPUT_METHOD
7005 || attachedWindow.mAttrs.type == TYPE_INPUT_METHOD_DIALOG;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07007006 mIsWallpaper = attachedWindow.mAttrs.type == TYPE_WALLPAPER;
7007 mIsFloatingLayer = mIsImWindow || mIsWallpaper;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007008 } else {
7009 // The multiplier here is to reserve space for multiple
7010 // windows in the same type layer.
7011 mBaseLayer = mPolicy.windowTypeToLayerLw(a.type)
7012 * TYPE_LAYER_MULTIPLIER
7013 + TYPE_LAYER_OFFSET;
7014 mSubLayer = 0;
7015 mAttachedWindow = null;
7016 mLayoutAttached = false;
7017 mIsImWindow = mAttrs.type == TYPE_INPUT_METHOD
7018 || mAttrs.type == TYPE_INPUT_METHOD_DIALOG;
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07007019 mIsWallpaper = mAttrs.type == TYPE_WALLPAPER;
7020 mIsFloatingLayer = mIsImWindow || mIsWallpaper;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007021 }
7022
7023 WindowState appWin = this;
7024 while (appWin.mAttachedWindow != null) {
7025 appWin = mAttachedWindow;
7026 }
7027 WindowToken appToken = appWin.mToken;
7028 while (appToken.appWindowToken == null) {
7029 WindowToken parent = mTokenMap.get(appToken.token);
7030 if (parent == null || appToken == parent) {
7031 break;
7032 }
7033 appToken = parent;
7034 }
The Android Open Source Project10592532009-03-18 17:39:46 -07007035 mRootToken = appToken;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007036 mAppToken = appToken.appWindowToken;
7037
7038 mSurface = null;
7039 mRequestedWidth = 0;
7040 mRequestedHeight = 0;
7041 mLastRequestedWidth = 0;
7042 mLastRequestedHeight = 0;
Dianne Hackbornc8a0a752009-08-10 23:05:49 -07007043 mXOffset = 0;
7044 mYOffset = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007045 mLayer = 0;
7046 mAnimLayer = 0;
7047 mLastLayer = 0;
7048 }
7049
7050 void attach() {
7051 if (localLOGV) Log.v(
7052 TAG, "Attaching " + this + " token=" + mToken
7053 + ", list=" + mToken.windows);
7054 mSession.windowAddedLocked();
7055 }
7056
7057 public void computeFrameLw(Rect pf, Rect df, Rect cf, Rect vf) {
7058 mHaveFrame = true;
7059
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -07007060 final Rect container = mContainingFrame;
7061 container.set(pf);
7062
7063 final Rect display = mDisplayFrame;
7064 display.set(df);
7065
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -07007066 if ((mAttrs.flags & FLAG_COMPATIBLE_WINDOW) != 0) {
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -07007067 container.intersect(mCompatibleScreenFrame);
Mitsuru Oshimad2967e22009-07-20 14:01:43 -07007068 if ((mAttrs.flags & FLAG_LAYOUT_NO_LIMITS) == 0) {
7069 display.intersect(mCompatibleScreenFrame);
7070 }
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -07007071 }
7072
7073 final int pw = container.right - container.left;
7074 final int ph = container.bottom - container.top;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007075
7076 int w,h;
7077 if ((mAttrs.flags & mAttrs.FLAG_SCALED) != 0) {
7078 w = mAttrs.width < 0 ? pw : mAttrs.width;
7079 h = mAttrs.height< 0 ? ph : mAttrs.height;
7080 } else {
7081 w = mAttrs.width == mAttrs.FILL_PARENT ? pw : mRequestedWidth;
7082 h = mAttrs.height== mAttrs.FILL_PARENT ? ph : mRequestedHeight;
7083 }
Romain Guy06882f82009-06-10 13:36:04 -07007084
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007085 final Rect content = mContentFrame;
7086 content.set(cf);
Romain Guy06882f82009-06-10 13:36:04 -07007087
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007088 final Rect visible = mVisibleFrame;
7089 visible.set(vf);
Romain Guy06882f82009-06-10 13:36:04 -07007090
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007091 final Rect frame = mFrame;
Dianne Hackborne9e9bca2009-08-18 15:08:22 -07007092 final int fw = frame.width();
7093 final int fh = frame.height();
Romain Guy06882f82009-06-10 13:36:04 -07007094
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007095 //System.out.println("In: w=" + w + " h=" + h + " container=" +
7096 // container + " x=" + mAttrs.x + " y=" + mAttrs.y);
7097
7098 Gravity.apply(mAttrs.gravity, w, h, container,
7099 (int) (mAttrs.x + mAttrs.horizontalMargin * pw),
7100 (int) (mAttrs.y + mAttrs.verticalMargin * ph), frame);
7101
7102 //System.out.println("Out: " + mFrame);
7103
7104 // Now make sure the window fits in the overall display.
7105 Gravity.applyDisplay(mAttrs.gravity, df, frame);
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -07007106
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007107 // Make sure the content and visible frames are inside of the
7108 // final window frame.
7109 if (content.left < frame.left) content.left = frame.left;
7110 if (content.top < frame.top) content.top = frame.top;
7111 if (content.right > frame.right) content.right = frame.right;
7112 if (content.bottom > frame.bottom) content.bottom = frame.bottom;
7113 if (visible.left < frame.left) visible.left = frame.left;
7114 if (visible.top < frame.top) visible.top = frame.top;
7115 if (visible.right > frame.right) visible.right = frame.right;
7116 if (visible.bottom > frame.bottom) visible.bottom = frame.bottom;
Romain Guy06882f82009-06-10 13:36:04 -07007117
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007118 final Rect contentInsets = mContentInsets;
7119 contentInsets.left = content.left-frame.left;
7120 contentInsets.top = content.top-frame.top;
7121 contentInsets.right = frame.right-content.right;
7122 contentInsets.bottom = frame.bottom-content.bottom;
Romain Guy06882f82009-06-10 13:36:04 -07007123
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007124 final Rect visibleInsets = mVisibleInsets;
7125 visibleInsets.left = visible.left-frame.left;
7126 visibleInsets.top = visible.top-frame.top;
7127 visibleInsets.right = frame.right-visible.right;
7128 visibleInsets.bottom = frame.bottom-visible.bottom;
Romain Guy06882f82009-06-10 13:36:04 -07007129
Dianne Hackborn284ac932009-08-28 10:34:25 -07007130 if (mIsWallpaper && (fw != frame.width() || fh != frame.height())) {
7131 updateWallpaperOffsetLocked(this, mDisplay.getWidth(),
Dianne Hackborn19382ac2009-09-11 21:13:37 -07007132 mDisplay.getHeight(), false);
Dianne Hackborne9e9bca2009-08-18 15:08:22 -07007133 }
7134
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007135 if (localLOGV) {
7136 //if ("com.google.android.youtube".equals(mAttrs.packageName)
7137 // && mAttrs.type == WindowManager.LayoutParams.TYPE_APPLICATION_PANEL) {
7138 Log.v(TAG, "Resolving (mRequestedWidth="
7139 + mRequestedWidth + ", mRequestedheight="
7140 + mRequestedHeight + ") to" + " (pw=" + pw + ", ph=" + ph
7141 + "): frame=" + mFrame.toShortString()
7142 + " ci=" + contentInsets.toShortString()
7143 + " vi=" + visibleInsets.toShortString());
7144 //}
7145 }
7146 }
Romain Guy06882f82009-06-10 13:36:04 -07007147
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007148 public Rect getFrameLw() {
7149 return mFrame;
7150 }
7151
7152 public Rect getShownFrameLw() {
7153 return mShownFrame;
7154 }
7155
7156 public Rect getDisplayFrameLw() {
7157 return mDisplayFrame;
7158 }
7159
7160 public Rect getContentFrameLw() {
7161 return mContentFrame;
7162 }
7163
7164 public Rect getVisibleFrameLw() {
7165 return mVisibleFrame;
7166 }
7167
7168 public boolean getGivenInsetsPendingLw() {
7169 return mGivenInsetsPending;
7170 }
7171
7172 public Rect getGivenContentInsetsLw() {
7173 return mGivenContentInsets;
7174 }
Romain Guy06882f82009-06-10 13:36:04 -07007175
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007176 public Rect getGivenVisibleInsetsLw() {
7177 return mGivenVisibleInsets;
7178 }
Romain Guy06882f82009-06-10 13:36:04 -07007179
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007180 public WindowManager.LayoutParams getAttrs() {
7181 return mAttrs;
7182 }
7183
7184 public int getSurfaceLayer() {
7185 return mLayer;
7186 }
Romain Guy06882f82009-06-10 13:36:04 -07007187
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007188 public IApplicationToken getAppToken() {
7189 return mAppToken != null ? mAppToken.appToken : null;
7190 }
7191
7192 public boolean hasAppShownWindows() {
7193 return mAppToken != null ? mAppToken.firstWindowDrawn : false;
7194 }
7195
7196 public boolean hasAppStartingIcon() {
7197 return mAppToken != null ? (mAppToken.startingData != null) : false;
7198 }
7199
7200 public WindowManagerPolicy.WindowState getAppStartingWindow() {
7201 return mAppToken != null ? mAppToken.startingWindow : null;
7202 }
7203
7204 public void setAnimation(Animation anim) {
7205 if (localLOGV) Log.v(
7206 TAG, "Setting animation in " + this + ": " + anim);
7207 mAnimating = false;
7208 mLocalAnimating = false;
7209 mAnimation = anim;
7210 mAnimation.restrictDuration(MAX_ANIMATION_DURATION);
7211 mAnimation.scaleCurrentDuration(mWindowAnimationScale);
7212 }
7213
7214 public void clearAnimation() {
7215 if (mAnimation != null) {
7216 mAnimating = true;
7217 mLocalAnimating = false;
7218 mAnimation = null;
7219 }
7220 }
Romain Guy06882f82009-06-10 13:36:04 -07007221
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007222 Surface createSurfaceLocked() {
7223 if (mSurface == null) {
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07007224 mReportDestroySurface = false;
7225 mSurfacePendingDestroy = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007226 mDrawPending = true;
7227 mCommitDrawPending = false;
7228 mReadyToShow = false;
7229 if (mAppToken != null) {
7230 mAppToken.allDrawn = false;
7231 }
7232
7233 int flags = 0;
Mathias Agopian317a6282009-08-13 17:29:02 -07007234 if (mAttrs.memoryType == MEMORY_TYPE_PUSH_BUFFERS) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007235 flags |= Surface.PUSH_BUFFERS;
7236 }
7237
7238 if ((mAttrs.flags&WindowManager.LayoutParams.FLAG_SECURE) != 0) {
7239 flags |= Surface.SECURE;
7240 }
7241 if (DEBUG_VISIBILITY) Log.v(
7242 TAG, "Creating surface in session "
7243 + mSession.mSurfaceSession + " window " + this
7244 + " w=" + mFrame.width()
7245 + " h=" + mFrame.height() + " format="
7246 + mAttrs.format + " flags=" + flags);
7247
7248 int w = mFrame.width();
7249 int h = mFrame.height();
7250 if ((mAttrs.flags & LayoutParams.FLAG_SCALED) != 0) {
7251 // for a scaled surface, we always want the requested
7252 // size.
7253 w = mRequestedWidth;
7254 h = mRequestedHeight;
7255 }
7256
Romain Guy9825ec62009-10-01 00:58:09 -07007257 // Something is wrong and SurfaceFlinger will not like this,
7258 // try to revert to sane values
7259 if (w <= 0) w = 1;
7260 if (h <= 0) h = 1;
7261
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007262 try {
7263 mSurface = new Surface(
Romain Guy06882f82009-06-10 13:36:04 -07007264 mSession.mSurfaceSession, mSession.mPid,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007265 0, w, h, mAttrs.format, flags);
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07007266 if (SHOW_TRANSACTIONS) Log.i(TAG, " CREATE SURFACE "
7267 + mSurface + " IN SESSION "
7268 + mSession.mSurfaceSession
7269 + ": pid=" + mSession.mPid + " format="
7270 + mAttrs.format + " flags=0x"
7271 + Integer.toHexString(flags));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007272 } catch (Surface.OutOfResourcesException e) {
7273 Log.w(TAG, "OutOfResourcesException creating surface");
7274 reclaimSomeSurfaceMemoryLocked(this, "create");
7275 return null;
7276 } catch (Exception e) {
7277 Log.e(TAG, "Exception creating surface", e);
7278 return null;
7279 }
Romain Guy06882f82009-06-10 13:36:04 -07007280
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007281 if (localLOGV) Log.v(
7282 TAG, "Got surface: " + mSurface
7283 + ", set left=" + mFrame.left + " top=" + mFrame.top
7284 + ", animLayer=" + mAnimLayer);
7285 if (SHOW_TRANSACTIONS) {
7286 Log.i(TAG, ">>> OPEN TRANSACTION");
7287 Log.i(TAG, " SURFACE " + mSurface + ": CREATE ("
7288 + mAttrs.getTitle() + ") pos=(" +
7289 mFrame.left + "," + mFrame.top + ") (" +
7290 mFrame.width() + "x" + mFrame.height() + "), layer=" +
7291 mAnimLayer + " HIDE");
7292 }
7293 Surface.openTransaction();
7294 try {
7295 try {
Dianne Hackborne9e9bca2009-08-18 15:08:22 -07007296 mSurface.setPosition(mFrame.left + mXOffset,
7297 mFrame.top + mYOffset);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007298 mSurface.setLayer(mAnimLayer);
7299 mSurface.hide();
7300 if ((mAttrs.flags&WindowManager.LayoutParams.FLAG_DITHER) != 0) {
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07007301 if (SHOW_TRANSACTIONS) Log.i(TAG, " SURFACE "
7302 + mSurface + ": DITHER");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007303 mSurface.setFlags(Surface.SURFACE_DITHER,
7304 Surface.SURFACE_DITHER);
7305 }
7306 } catch (RuntimeException e) {
7307 Log.w(TAG, "Error creating surface in " + w, e);
7308 reclaimSomeSurfaceMemoryLocked(this, "create-init");
7309 }
7310 mLastHidden = true;
7311 } finally {
7312 if (SHOW_TRANSACTIONS) Log.i(TAG, "<<< CLOSE TRANSACTION");
7313 Surface.closeTransaction();
7314 }
7315 if (localLOGV) Log.v(
7316 TAG, "Created surface " + this);
7317 }
7318 return mSurface;
7319 }
Romain Guy06882f82009-06-10 13:36:04 -07007320
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007321 void destroySurfaceLocked() {
7322 // Window is no longer on-screen, so can no longer receive
7323 // key events... if we were waiting for it to finish
7324 // handling a key event, the wait is over!
7325 mKeyWaiter.finishedKey(mSession, mClient, true,
7326 KeyWaiter.RETURN_NOTHING);
7327 mKeyWaiter.releasePendingPointerLocked(mSession);
7328 mKeyWaiter.releasePendingTrackballLocked(mSession);
7329
7330 if (mAppToken != null && this == mAppToken.startingWindow) {
7331 mAppToken.startingDisplayed = false;
7332 }
Romain Guy06882f82009-06-10 13:36:04 -07007333
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007334 if (mSurface != null) {
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07007335 mDrawPending = false;
7336 mCommitDrawPending = false;
7337 mReadyToShow = false;
7338
7339 int i = mChildWindows.size();
7340 while (i > 0) {
7341 i--;
7342 WindowState c = (WindowState)mChildWindows.get(i);
7343 c.mAttachedHidden = true;
7344 }
7345
7346 if (mReportDestroySurface) {
7347 mReportDestroySurface = false;
7348 mSurfacePendingDestroy = true;
7349 try {
7350 mClient.dispatchGetNewSurface();
7351 // We'll really destroy on the next time around.
7352 return;
7353 } catch (RemoteException e) {
7354 }
7355 }
7356
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007357 try {
Dianne Hackborn3be63c02009-08-20 19:31:38 -07007358 if (DEBUG_VISIBILITY) {
7359 RuntimeException e = new RuntimeException();
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07007360 if (!HIDE_STACK_CRAWLS) e.fillInStackTrace();
Dianne Hackborn3be63c02009-08-20 19:31:38 -07007361 Log.w(TAG, "Window " + this + " destroying surface "
7362 + mSurface + ", session " + mSession, e);
7363 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007364 if (SHOW_TRANSACTIONS) {
7365 RuntimeException ex = new RuntimeException();
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07007366 if (!HIDE_STACK_CRAWLS) ex.fillInStackTrace();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007367 Log.i(TAG, " SURFACE " + mSurface + ": DESTROY ("
7368 + mAttrs.getTitle() + ")", ex);
7369 }
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07007370 mSurface.destroy();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007371 } catch (RuntimeException e) {
7372 Log.w(TAG, "Exception thrown when destroying Window " + this
7373 + " surface " + mSurface + " session " + mSession
7374 + ": " + e.toString());
7375 }
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07007376
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007377 mSurface = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007378 }
7379 }
7380
7381 boolean finishDrawingLocked() {
7382 if (mDrawPending) {
7383 if (SHOW_TRANSACTIONS || DEBUG_ORIENTATION) Log.v(
7384 TAG, "finishDrawingLocked: " + mSurface);
7385 mCommitDrawPending = true;
7386 mDrawPending = false;
7387 return true;
7388 }
7389 return false;
7390 }
7391
7392 // This must be called while inside a transaction.
Dianne Hackborn6c3f5712009-08-25 18:42:59 -07007393 boolean commitFinishDrawingLocked(long currentTime) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007394 //Log.i(TAG, "commitFinishDrawingLocked: " + mSurface);
7395 if (!mCommitDrawPending) {
Dianne Hackborn6c3f5712009-08-25 18:42:59 -07007396 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007397 }
7398 mCommitDrawPending = false;
7399 mReadyToShow = true;
7400 final boolean starting = mAttrs.type == TYPE_APPLICATION_STARTING;
7401 final AppWindowToken atoken = mAppToken;
7402 if (atoken == null || atoken.allDrawn || starting) {
7403 performShowLocked();
7404 }
Dianne Hackborn6c3f5712009-08-25 18:42:59 -07007405 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007406 }
7407
7408 // This must be called while inside a transaction.
7409 boolean performShowLocked() {
7410 if (DEBUG_VISIBILITY) {
7411 RuntimeException e = new RuntimeException();
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07007412 if (!HIDE_STACK_CRAWLS) e.fillInStackTrace();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007413 Log.v(TAG, "performShow on " + this
7414 + ": readyToShow=" + mReadyToShow + " readyForDisplay=" + isReadyForDisplay()
7415 + " starting=" + (mAttrs.type == TYPE_APPLICATION_STARTING), e);
7416 }
7417 if (mReadyToShow && isReadyForDisplay()) {
7418 if (SHOW_TRANSACTIONS || DEBUG_ORIENTATION) Log.i(
7419 TAG, " SURFACE " + mSurface + ": SHOW (performShowLocked)");
7420 if (DEBUG_VISIBILITY) Log.v(TAG, "Showing " + this
7421 + " during animation: policyVis=" + mPolicyVisibility
7422 + " attHidden=" + mAttachedHidden
7423 + " tok.hiddenRequested="
7424 + (mAppToken != null ? mAppToken.hiddenRequested : false)
Dianne Hackborn248b1882009-09-16 16:46:44 -07007425 + " tok.hidden="
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007426 + (mAppToken != null ? mAppToken.hidden : false)
7427 + " animating=" + mAnimating
7428 + " tok animating="
7429 + (mAppToken != null ? mAppToken.animating : false));
7430 if (!showSurfaceRobustlyLocked(this)) {
7431 return false;
7432 }
7433 mLastAlpha = -1;
7434 mHasDrawn = true;
7435 mLastHidden = false;
7436 mReadyToShow = false;
7437 enableScreenIfNeededLocked();
7438
7439 applyEnterAnimationLocked(this);
Romain Guy06882f82009-06-10 13:36:04 -07007440
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007441 int i = mChildWindows.size();
7442 while (i > 0) {
7443 i--;
7444 WindowState c = (WindowState)mChildWindows.get(i);
7445 if (c.mSurface != null && c.mAttachedHidden) {
7446 c.mAttachedHidden = false;
7447 c.performShowLocked();
7448 }
7449 }
Romain Guy06882f82009-06-10 13:36:04 -07007450
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007451 if (mAttrs.type != TYPE_APPLICATION_STARTING
7452 && mAppToken != null) {
7453 mAppToken.firstWindowDrawn = true;
Dianne Hackborn248b1882009-09-16 16:46:44 -07007454
7455 if (mAppToken.startingData != null) {
Dianne Hackborn6136b7e2009-09-18 01:53:49 -07007456 if (DEBUG_STARTING_WINDOW || DEBUG_ANIM) Log.v(TAG,
7457 "Finish starting " + mToken
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007458 + ": first real window is shown, no animation");
Dianne Hackborn248b1882009-09-16 16:46:44 -07007459 // If this initial window is animating, stop it -- we
7460 // will do an animation to reveal it from behind the
7461 // starting window, so there is no need for it to also
7462 // be doing its own stuff.
7463 if (mAnimation != null) {
7464 mAnimation = null;
7465 // Make sure we clean up the animation.
7466 mAnimating = true;
7467 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007468 mFinishedStarting.add(mAppToken);
7469 mH.sendEmptyMessage(H.FINISHED_STARTING);
7470 }
7471 mAppToken.updateReportedVisibilityLocked();
7472 }
7473 }
7474 return true;
7475 }
Romain Guy06882f82009-06-10 13:36:04 -07007476
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007477 // This must be called while inside a transaction. Returns true if
7478 // there is more animation to run.
7479 boolean stepAnimationLocked(long currentTime, int dw, int dh) {
7480 if (!mDisplayFrozen) {
7481 // We will run animations as long as the display isn't frozen.
Romain Guy06882f82009-06-10 13:36:04 -07007482
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007483 if (!mDrawPending && !mCommitDrawPending && mAnimation != null) {
7484 mHasTransformation = true;
7485 mHasLocalTransformation = true;
7486 if (!mLocalAnimating) {
7487 if (DEBUG_ANIM) Log.v(
7488 TAG, "Starting animation in " + this +
7489 " @ " + currentTime + ": ww=" + mFrame.width() + " wh=" + mFrame.height() +
7490 " dw=" + dw + " dh=" + dh + " scale=" + mWindowAnimationScale);
7491 mAnimation.initialize(mFrame.width(), mFrame.height(), dw, dh);
7492 mAnimation.setStartTime(currentTime);
7493 mLocalAnimating = true;
7494 mAnimating = true;
7495 }
7496 mTransformation.clear();
7497 final boolean more = mAnimation.getTransformation(
7498 currentTime, mTransformation);
7499 if (DEBUG_ANIM) Log.v(
7500 TAG, "Stepped animation in " + this +
7501 ": more=" + more + ", xform=" + mTransformation);
7502 if (more) {
7503 // we're not done!
7504 return true;
7505 }
7506 if (DEBUG_ANIM) Log.v(
7507 TAG, "Finished animation in " + this +
7508 " @ " + currentTime);
7509 mAnimation = null;
7510 //WindowManagerService.this.dump();
7511 }
7512 mHasLocalTransformation = false;
7513 if ((!mLocalAnimating || mAnimationIsEntrance) && mAppToken != null
Dianne Hackborn3be63c02009-08-20 19:31:38 -07007514 && mAppToken.animation != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007515 // When our app token is animating, we kind-of pretend like
7516 // we are as well. Note the mLocalAnimating mAnimationIsEntrance
7517 // part of this check means that we will only do this if
7518 // our window is not currently exiting, or it is not
7519 // locally animating itself. The idea being that one that
7520 // is exiting and doing a local animation should be removed
7521 // once that animation is done.
7522 mAnimating = true;
7523 mHasTransformation = true;
7524 mTransformation.clear();
7525 return false;
7526 } else if (mHasTransformation) {
7527 // Little trick to get through the path below to act like
7528 // we have finished an animation.
7529 mAnimating = true;
7530 } else if (isAnimating()) {
7531 mAnimating = true;
7532 }
7533 } else if (mAnimation != null) {
7534 // If the display is frozen, and there is a pending animation,
7535 // clear it and make sure we run the cleanup code.
7536 mAnimating = true;
7537 mLocalAnimating = true;
7538 mAnimation = null;
7539 }
Romain Guy06882f82009-06-10 13:36:04 -07007540
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007541 if (!mAnimating && !mLocalAnimating) {
7542 return false;
7543 }
7544
7545 if (DEBUG_ANIM) Log.v(
7546 TAG, "Animation done in " + this + ": exiting=" + mExiting
7547 + ", reportedVisible="
7548 + (mAppToken != null ? mAppToken.reportedVisible : false));
Romain Guy06882f82009-06-10 13:36:04 -07007549
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007550 mAnimating = false;
7551 mLocalAnimating = false;
7552 mAnimation = null;
7553 mAnimLayer = mLayer;
7554 if (mIsImWindow) {
7555 mAnimLayer += mInputMethodAnimLayerAdjustment;
Dianne Hackborn759a39e2009-08-09 17:20:27 -07007556 } else if (mIsWallpaper) {
7557 mAnimLayer += mWallpaperAnimLayerAdjustment;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007558 }
7559 if (DEBUG_LAYERS) Log.v(TAG, "Stepping win " + this
7560 + " anim layer: " + mAnimLayer);
7561 mHasTransformation = false;
7562 mHasLocalTransformation = false;
7563 mPolicyVisibility = mPolicyVisibilityAfterAnim;
7564 mTransformation.clear();
7565 if (mHasDrawn
7566 && mAttrs.type == WindowManager.LayoutParams.TYPE_APPLICATION_STARTING
7567 && mAppToken != null
7568 && mAppToken.firstWindowDrawn
7569 && mAppToken.startingData != null) {
7570 if (DEBUG_STARTING_WINDOW) Log.v(TAG, "Finish starting "
7571 + mToken + ": first real window done animating");
7572 mFinishedStarting.add(mAppToken);
7573 mH.sendEmptyMessage(H.FINISHED_STARTING);
7574 }
Romain Guy06882f82009-06-10 13:36:04 -07007575
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007576 finishExit();
7577
7578 if (mAppToken != null) {
7579 mAppToken.updateReportedVisibilityLocked();
7580 }
7581
7582 return false;
7583 }
7584
7585 void finishExit() {
7586 if (DEBUG_ANIM) Log.v(
7587 TAG, "finishExit in " + this
7588 + ": exiting=" + mExiting
7589 + " remove=" + mRemoveOnExit
7590 + " windowAnimating=" + isWindowAnimating());
Romain Guy06882f82009-06-10 13:36:04 -07007591
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007592 final int N = mChildWindows.size();
7593 for (int i=0; i<N; i++) {
7594 ((WindowState)mChildWindows.get(i)).finishExit();
7595 }
Romain Guy06882f82009-06-10 13:36:04 -07007596
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007597 if (!mExiting) {
7598 return;
7599 }
Romain Guy06882f82009-06-10 13:36:04 -07007600
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007601 if (isWindowAnimating()) {
7602 return;
7603 }
7604
7605 if (localLOGV) Log.v(
7606 TAG, "Exit animation finished in " + this
7607 + ": remove=" + mRemoveOnExit);
7608 if (mSurface != null) {
7609 mDestroySurface.add(this);
7610 mDestroying = true;
7611 if (SHOW_TRANSACTIONS) Log.i(
7612 TAG, " SURFACE " + mSurface + ": HIDE (finishExit)");
7613 try {
7614 mSurface.hide();
7615 } catch (RuntimeException e) {
7616 Log.w(TAG, "Error hiding surface in " + this, e);
7617 }
7618 mLastHidden = true;
7619 mKeyWaiter.releasePendingPointerLocked(mSession);
7620 }
7621 mExiting = false;
7622 if (mRemoveOnExit) {
7623 mPendingRemove.add(this);
7624 mRemoveOnExit = false;
7625 }
7626 }
Romain Guy06882f82009-06-10 13:36:04 -07007627
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007628 boolean isIdentityMatrix(float dsdx, float dtdx, float dsdy, float dtdy) {
7629 if (dsdx < .99999f || dsdx > 1.00001f) return false;
7630 if (dtdy < .99999f || dtdy > 1.00001f) return false;
7631 if (dtdx < -.000001f || dtdx > .000001f) return false;
7632 if (dsdy < -.000001f || dsdy > .000001f) return false;
7633 return true;
7634 }
Romain Guy06882f82009-06-10 13:36:04 -07007635
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007636 void computeShownFrameLocked() {
7637 final boolean selfTransformation = mHasLocalTransformation;
7638 Transformation attachedTransformation =
7639 (mAttachedWindow != null && mAttachedWindow.mHasLocalTransformation)
7640 ? mAttachedWindow.mTransformation : null;
7641 Transformation appTransformation =
7642 (mAppToken != null && mAppToken.hasTransformation)
7643 ? mAppToken.transformation : null;
Dianne Hackborn759a39e2009-08-09 17:20:27 -07007644
7645 // Wallpapers are animated based on the "real" window they
7646 // are currently targeting.
Dianne Hackborn3be63c02009-08-20 19:31:38 -07007647 if (mAttrs.type == TYPE_WALLPAPER && mLowerWallpaperTarget == null
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07007648 && mWallpaperTarget != null) {
Dianne Hackborn5baba162009-09-23 17:01:12 -07007649 if (mWallpaperTarget.mHasLocalTransformation &&
7650 mWallpaperTarget.mAnimation != null &&
7651 !mWallpaperTarget.mAnimation.getDetachWallpaper()) {
Dianne Hackborn759a39e2009-08-09 17:20:27 -07007652 attachedTransformation = mWallpaperTarget.mTransformation;
Dianne Hackborn5baba162009-09-23 17:01:12 -07007653 if (DEBUG_WALLPAPER && attachedTransformation != null) {
7654 Log.v(TAG, "WP target attached xform: " + attachedTransformation);
7655 }
Dianne Hackborn759a39e2009-08-09 17:20:27 -07007656 }
7657 if (mWallpaperTarget.mAppToken != null &&
Dianne Hackborn5baba162009-09-23 17:01:12 -07007658 mWallpaperTarget.mAppToken.hasTransformation &&
7659 mWallpaperTarget.mAppToken.animation != null &&
7660 !mWallpaperTarget.mAppToken.animation.getDetachWallpaper()) {
Dianne Hackborn759a39e2009-08-09 17:20:27 -07007661 appTransformation = mWallpaperTarget.mAppToken.transformation;
Dianne Hackborn5baba162009-09-23 17:01:12 -07007662 if (DEBUG_WALLPAPER && appTransformation != null) {
7663 Log.v(TAG, "WP target app xform: " + appTransformation);
7664 }
Dianne Hackborn7341d7a2009-08-14 11:37:52 -07007665 }
Dianne Hackborn759a39e2009-08-09 17:20:27 -07007666 }
7667
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007668 if (selfTransformation || attachedTransformation != null
7669 || appTransformation != null) {
Romain Guy06882f82009-06-10 13:36:04 -07007670 // cache often used attributes locally
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007671 final Rect frame = mFrame;
7672 final float tmpFloats[] = mTmpFloats;
7673 final Matrix tmpMatrix = mTmpMatrix;
7674
7675 // Compute the desired transformation.
Dianne Hackborn65c23872009-09-18 17:47:02 -07007676 tmpMatrix.setTranslate(0, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007677 if (selfTransformation) {
Dianne Hackborn6136b7e2009-09-18 01:53:49 -07007678 tmpMatrix.postConcat(mTransformation.getMatrix());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007679 }
Dianne Hackborn65c23872009-09-18 17:47:02 -07007680 tmpMatrix.postTranslate(frame.left, frame.top);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007681 if (attachedTransformation != null) {
Dianne Hackborn6136b7e2009-09-18 01:53:49 -07007682 tmpMatrix.postConcat(attachedTransformation.getMatrix());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007683 }
7684 if (appTransformation != null) {
Dianne Hackborn6136b7e2009-09-18 01:53:49 -07007685 tmpMatrix.postConcat(appTransformation.getMatrix());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007686 }
7687
7688 // "convert" it into SurfaceFlinger's format
7689 // (a 2x2 matrix + an offset)
7690 // Here we must not transform the position of the surface
7691 // since it is already included in the transformation.
7692 //Log.i(TAG, "Transform: " + matrix);
Romain Guy06882f82009-06-10 13:36:04 -07007693
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007694 tmpMatrix.getValues(tmpFloats);
7695 mDsDx = tmpFloats[Matrix.MSCALE_X];
7696 mDtDx = tmpFloats[Matrix.MSKEW_X];
7697 mDsDy = tmpFloats[Matrix.MSKEW_Y];
7698 mDtDy = tmpFloats[Matrix.MSCALE_Y];
Dianne Hackbornc8a0a752009-08-10 23:05:49 -07007699 int x = (int)tmpFloats[Matrix.MTRANS_X] + mXOffset;
7700 int y = (int)tmpFloats[Matrix.MTRANS_Y] + mYOffset;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007701 int w = frame.width();
7702 int h = frame.height();
7703 mShownFrame.set(x, y, x+w, y+h);
7704
7705 // Now set the alpha... but because our current hardware
7706 // can't do alpha transformation on a non-opaque surface,
7707 // turn it off if we are running an animation that is also
7708 // transforming since it is more important to have that
7709 // animation be smooth.
7710 mShownAlpha = mAlpha;
7711 if (!mLimitedAlphaCompositing
7712 || (!PixelFormat.formatHasAlpha(mAttrs.format)
7713 || (isIdentityMatrix(mDsDx, mDtDx, mDsDy, mDtDy)
7714 && x == frame.left && y == frame.top))) {
7715 //Log.i(TAG, "Applying alpha transform");
7716 if (selfTransformation) {
7717 mShownAlpha *= mTransformation.getAlpha();
7718 }
7719 if (attachedTransformation != null) {
7720 mShownAlpha *= attachedTransformation.getAlpha();
7721 }
7722 if (appTransformation != null) {
7723 mShownAlpha *= appTransformation.getAlpha();
7724 }
7725 } else {
7726 //Log.i(TAG, "Not applying alpha transform");
7727 }
Romain Guy06882f82009-06-10 13:36:04 -07007728
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007729 if (localLOGV) Log.v(
7730 TAG, "Continuing animation in " + this +
7731 ": " + mShownFrame +
7732 ", alpha=" + mTransformation.getAlpha());
7733 return;
7734 }
Romain Guy06882f82009-06-10 13:36:04 -07007735
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007736 mShownFrame.set(mFrame);
Dianne Hackbornc8a0a752009-08-10 23:05:49 -07007737 if (mXOffset != 0 || mYOffset != 0) {
7738 mShownFrame.offset(mXOffset, mYOffset);
7739 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007740 mShownAlpha = mAlpha;
7741 mDsDx = 1;
7742 mDtDx = 0;
7743 mDsDy = 0;
7744 mDtDy = 1;
7745 }
Romain Guy06882f82009-06-10 13:36:04 -07007746
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007747 /**
7748 * Is this window visible? It is not visible if there is no
7749 * surface, or we are in the process of running an exit animation
7750 * that will remove the surface, or its app token has been hidden.
7751 */
7752 public boolean isVisibleLw() {
7753 final AppWindowToken atoken = mAppToken;
7754 return mSurface != null && mPolicyVisibility && !mAttachedHidden
7755 && (atoken == null || !atoken.hiddenRequested)
7756 && !mExiting && !mDestroying;
7757 }
7758
7759 /**
Dianne Hackborn3d163f072009-10-07 21:26:57 -07007760 * Like {@link #isVisibleLw}, but also counts a window that is currently
7761 * "hidden" behind the keyguard as visible. This allows us to apply
7762 * things like window flags that impact the keyguard.
7763 * XXX I am starting to think we need to have ANOTHER visibility flag
7764 * for this "hidden behind keyguard" state rather than overloading
7765 * mPolicyVisibility. Ungh.
7766 */
7767 public boolean isVisibleOrBehindKeyguardLw() {
7768 final AppWindowToken atoken = mAppToken;
7769 return mSurface != null && !mAttachedHidden
7770 && (atoken == null ? mPolicyVisibility : !atoken.hiddenRequested)
7771 && !mExiting && !mDestroying;
7772 }
7773
7774 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007775 * Is this window visible, ignoring its app token? It is not visible
7776 * if there is no surface, or we are in the process of running an exit animation
7777 * that will remove the surface.
7778 */
7779 public boolean isWinVisibleLw() {
7780 final AppWindowToken atoken = mAppToken;
7781 return mSurface != null && mPolicyVisibility && !mAttachedHidden
7782 && (atoken == null || !atoken.hiddenRequested || atoken.animating)
7783 && !mExiting && !mDestroying;
7784 }
7785
7786 /**
7787 * The same as isVisible(), but follows the current hidden state of
7788 * the associated app token, not the pending requested hidden state.
7789 */
7790 boolean isVisibleNow() {
7791 return mSurface != null && mPolicyVisibility && !mAttachedHidden
The Android Open Source Project10592532009-03-18 17:39:46 -07007792 && !mRootToken.hidden && !mExiting && !mDestroying;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007793 }
7794
7795 /**
7796 * Same as isVisible(), but we also count it as visible between the
7797 * call to IWindowSession.add() and the first relayout().
7798 */
7799 boolean isVisibleOrAdding() {
7800 final AppWindowToken atoken = mAppToken;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07007801 return ((mSurface != null && !mReportDestroySurface)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007802 || (!mRelayoutCalled && mViewVisibility == View.VISIBLE))
7803 && mPolicyVisibility && !mAttachedHidden
7804 && (atoken == null || !atoken.hiddenRequested)
7805 && !mExiting && !mDestroying;
7806 }
7807
7808 /**
7809 * Is this window currently on-screen? It is on-screen either if it
7810 * is visible or it is currently running an animation before no longer
7811 * being visible.
7812 */
7813 boolean isOnScreen() {
7814 final AppWindowToken atoken = mAppToken;
7815 if (atoken != null) {
7816 return mSurface != null && mPolicyVisibility && !mDestroying
7817 && ((!mAttachedHidden && !atoken.hiddenRequested)
Dianne Hackborn0cd48872009-08-13 18:51:59 -07007818 || mAnimation != null || atoken.animation != null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007819 } else {
7820 return mSurface != null && mPolicyVisibility && !mDestroying
Dianne Hackborn0cd48872009-08-13 18:51:59 -07007821 && (!mAttachedHidden || mAnimation != null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007822 }
7823 }
Romain Guy06882f82009-06-10 13:36:04 -07007824
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007825 /**
7826 * Like isOnScreen(), but we don't return true if the window is part
7827 * of a transition that has not yet been started.
7828 */
7829 boolean isReadyForDisplay() {
Dianne Hackborna8f60182009-09-01 19:01:50 -07007830 if (mRootToken.waitingToShow &&
Dianne Hackbornbfe319e2009-09-21 00:34:05 -07007831 mNextAppTransition != WindowManagerPolicy.TRANSIT_UNSET) {
Dianne Hackborna8f60182009-09-01 19:01:50 -07007832 return false;
7833 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007834 final AppWindowToken atoken = mAppToken;
Dianne Hackborn0cd48872009-08-13 18:51:59 -07007835 final boolean animating = atoken != null
7836 ? (atoken.animation != null) : false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007837 return mSurface != null && mPolicyVisibility && !mDestroying
Dianne Hackborn7341d7a2009-08-14 11:37:52 -07007838 && ((!mAttachedHidden && mViewVisibility == View.VISIBLE
7839 && !mRootToken.hidden)
Dianne Hackborn0cd48872009-08-13 18:51:59 -07007840 || mAnimation != null || animating);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007841 }
7842
7843 /** Is the window or its container currently animating? */
7844 boolean isAnimating() {
7845 final WindowState attached = mAttachedWindow;
7846 final AppWindowToken atoken = mAppToken;
7847 return mAnimation != null
7848 || (attached != null && attached.mAnimation != null)
Romain Guy06882f82009-06-10 13:36:04 -07007849 || (atoken != null &&
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007850 (atoken.animation != null
7851 || atoken.inPendingTransaction));
7852 }
7853
7854 /** Is this window currently animating? */
7855 boolean isWindowAnimating() {
7856 return mAnimation != null;
7857 }
7858
7859 /**
7860 * Like isOnScreen, but returns false if the surface hasn't yet
7861 * been drawn.
7862 */
7863 public boolean isDisplayedLw() {
7864 final AppWindowToken atoken = mAppToken;
7865 return mSurface != null && mPolicyVisibility && !mDestroying
7866 && !mDrawPending && !mCommitDrawPending
7867 && ((!mAttachedHidden &&
7868 (atoken == null || !atoken.hiddenRequested))
7869 || mAnimating);
7870 }
7871
Dianne Hackborn7433e8a2009-09-27 13:21:20 -07007872 /**
7873 * Returns true if the window has a surface that it has drawn a
7874 * complete UI in to.
7875 */
7876 public boolean isDrawnLw() {
7877 final AppWindowToken atoken = mAppToken;
7878 return mSurface != null && !mDestroying
7879 && !mDrawPending && !mCommitDrawPending;
7880 }
7881
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007882 public boolean fillsScreenLw(int screenWidth, int screenHeight,
7883 boolean shownFrame, boolean onlyOpaque) {
7884 if (mSurface == null) {
7885 return false;
7886 }
7887 if (mAppToken != null && !mAppToken.appFullscreen) {
7888 return false;
7889 }
7890 if (onlyOpaque && mAttrs.format != PixelFormat.OPAQUE) {
7891 return false;
7892 }
7893 final Rect frame = shownFrame ? mShownFrame : mFrame;
Mitsuru Oshimad2967e22009-07-20 14:01:43 -07007894
7895 if ((mAttrs.flags & FLAG_COMPATIBLE_WINDOW) != 0) {
7896 return frame.left <= mCompatibleScreenFrame.left &&
7897 frame.top <= mCompatibleScreenFrame.top &&
7898 frame.right >= mCompatibleScreenFrame.right &&
7899 frame.bottom >= mCompatibleScreenFrame.bottom;
7900 } else {
7901 return frame.left <= 0 && frame.top <= 0
7902 && frame.right >= screenWidth
7903 && frame.bottom >= screenHeight;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007904 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007905 }
Romain Guy06882f82009-06-10 13:36:04 -07007906
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -07007907 /**
Dianne Hackborn25994b42009-09-04 14:21:19 -07007908 * Return true if the window is opaque and fully drawn. This indicates
7909 * it may obscure windows behind it.
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -07007910 */
7911 boolean isOpaqueDrawn() {
Dianne Hackborn25994b42009-09-04 14:21:19 -07007912 return (mAttrs.format == PixelFormat.OPAQUE
7913 || mAttrs.type == TYPE_WALLPAPER)
7914 && mSurface != null && mAnimation == null
7915 && (mAppToken == null || mAppToken.animation == null)
7916 && !mDrawPending && !mCommitDrawPending;
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -07007917 }
7918
7919 boolean needsBackgroundFiller(int screenWidth, int screenHeight) {
7920 return
7921 // only if the application is requesting compatible window
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -07007922 (mAttrs.flags & FLAG_COMPATIBLE_WINDOW) != 0 &&
7923 // only if it's visible
7924 mHasDrawn && mViewVisibility == View.VISIBLE &&
Mitsuru Oshimad2967e22009-07-20 14:01:43 -07007925 // and only if the application fills the compatible screen
7926 mFrame.left <= mCompatibleScreenFrame.left &&
7927 mFrame.top <= mCompatibleScreenFrame.top &&
7928 mFrame.right >= mCompatibleScreenFrame.right &&
7929 mFrame.bottom >= mCompatibleScreenFrame.bottom &&
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -07007930 // and starting window do not need background filler
Mitsuru Oshimad2967e22009-07-20 14:01:43 -07007931 mAttrs.type != mAttrs.TYPE_APPLICATION_STARTING;
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -07007932 }
7933
7934 boolean isFullscreen(int screenWidth, int screenHeight) {
7935 return mFrame.left <= 0 && mFrame.top <= 0 &&
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07007936 mFrame.right >= screenWidth && mFrame.bottom >= screenHeight;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007937 }
7938
7939 void removeLocked() {
7940 if (mAttachedWindow != null) {
7941 mAttachedWindow.mChildWindows.remove(this);
7942 }
7943 destroySurfaceLocked();
7944 mSession.windowRemovedLocked();
7945 try {
7946 mClient.asBinder().unlinkToDeath(mDeathRecipient, 0);
7947 } catch (RuntimeException e) {
7948 // Ignore if it has already been removed (usually because
7949 // we are doing this as part of processing a death note.)
7950 }
7951 }
7952
7953 private class DeathRecipient implements IBinder.DeathRecipient {
7954 public void binderDied() {
7955 try {
7956 synchronized(mWindowMap) {
7957 WindowState win = windowForClientLocked(mSession, mClient);
7958 Log.i(TAG, "WIN DEATH: " + win);
7959 if (win != null) {
7960 removeWindowLocked(mSession, win);
7961 }
7962 }
7963 } catch (IllegalArgumentException ex) {
7964 // This will happen if the window has already been
7965 // removed.
7966 }
7967 }
7968 }
7969
7970 /** Returns true if this window desires key events. */
7971 public final boolean canReceiveKeys() {
7972 return isVisibleOrAdding()
7973 && (mViewVisibility == View.VISIBLE)
7974 && ((mAttrs.flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) == 0);
7975 }
7976
7977 public boolean hasDrawnLw() {
7978 return mHasDrawn;
7979 }
7980
7981 public boolean showLw(boolean doAnimation) {
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07007982 return showLw(doAnimation, true);
7983 }
7984
7985 boolean showLw(boolean doAnimation, boolean requestAnim) {
7986 if (mPolicyVisibility && mPolicyVisibilityAfterAnim) {
7987 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007988 }
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07007989 mPolicyVisibility = true;
7990 mPolicyVisibilityAfterAnim = true;
7991 if (doAnimation) {
7992 applyAnimationLocked(this, WindowManagerPolicy.TRANSIT_ENTER, true);
7993 }
7994 if (requestAnim) {
7995 requestAnimationLocked(0);
7996 }
7997 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08007998 }
7999
8000 public boolean hideLw(boolean doAnimation) {
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07008001 return hideLw(doAnimation, true);
8002 }
8003
8004 boolean hideLw(boolean doAnimation, boolean requestAnim) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008005 boolean current = doAnimation ? mPolicyVisibilityAfterAnim
8006 : mPolicyVisibility;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07008007 if (!current) {
8008 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008009 }
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07008010 if (doAnimation) {
8011 applyAnimationLocked(this, WindowManagerPolicy.TRANSIT_EXIT, false);
8012 if (mAnimation == null) {
8013 doAnimation = false;
8014 }
8015 }
8016 if (doAnimation) {
8017 mPolicyVisibilityAfterAnim = false;
8018 } else {
8019 mPolicyVisibilityAfterAnim = false;
8020 mPolicyVisibility = false;
8021 }
8022 if (requestAnim) {
8023 requestAnimationLocked(0);
8024 }
8025 return true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008026 }
8027
8028 void dump(PrintWriter pw, String prefix) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008029 StringBuilder sb = new StringBuilder(64);
Romain Guy06882f82009-06-10 13:36:04 -07008030
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008031 pw.print(prefix); pw.print("mSession="); pw.print(mSession);
8032 pw.print(" mClient="); pw.println(mClient.asBinder());
8033 pw.print(prefix); pw.print("mAttrs="); pw.println(mAttrs);
8034 if (mAttachedWindow != null || mLayoutAttached) {
8035 pw.print(prefix); pw.print("mAttachedWindow="); pw.print(mAttachedWindow);
8036 pw.print(" mLayoutAttached="); pw.println(mLayoutAttached);
8037 }
Dianne Hackborn4c62fc02009-08-08 20:40:27 -07008038 if (mIsImWindow || mIsWallpaper || mIsFloatingLayer) {
8039 pw.print(prefix); pw.print("mIsImWindow="); pw.print(mIsImWindow);
8040 pw.print(" mIsWallpaper="); pw.print(mIsWallpaper);
Dianne Hackborn759a39e2009-08-09 17:20:27 -07008041 pw.print(" mIsFloatingLayer="); pw.print(mIsFloatingLayer);
8042 pw.print(" mWallpaperVisible="); pw.println(mWallpaperVisible);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008043 }
8044 pw.print(prefix); pw.print("mBaseLayer="); pw.print(mBaseLayer);
8045 pw.print(" mSubLayer="); pw.print(mSubLayer);
8046 pw.print(" mAnimLayer="); pw.print(mLayer); pw.print("+");
8047 pw.print((mTargetAppToken != null ? mTargetAppToken.animLayerAdjustment
8048 : (mAppToken != null ? mAppToken.animLayerAdjustment : 0)));
8049 pw.print("="); pw.print(mAnimLayer);
8050 pw.print(" mLastLayer="); pw.println(mLastLayer);
8051 if (mSurface != null) {
8052 pw.print(prefix); pw.print("mSurface="); pw.println(mSurface);
8053 }
8054 pw.print(prefix); pw.print("mToken="); pw.println(mToken);
8055 pw.print(prefix); pw.print("mRootToken="); pw.println(mRootToken);
8056 if (mAppToken != null) {
8057 pw.print(prefix); pw.print("mAppToken="); pw.println(mAppToken);
8058 }
8059 if (mTargetAppToken != null) {
8060 pw.print(prefix); pw.print("mTargetAppToken="); pw.println(mTargetAppToken);
8061 }
8062 pw.print(prefix); pw.print("mViewVisibility=0x");
8063 pw.print(Integer.toHexString(mViewVisibility));
8064 pw.print(" mLastHidden="); pw.print(mLastHidden);
Dianne Hackborn7341d7a2009-08-14 11:37:52 -07008065 pw.print(" mHaveFrame="); pw.print(mHaveFrame);
8066 pw.print(" mObscured="); pw.println(mObscured);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008067 if (!mPolicyVisibility || !mPolicyVisibilityAfterAnim || mAttachedHidden) {
8068 pw.print(prefix); pw.print("mPolicyVisibility=");
8069 pw.print(mPolicyVisibility);
8070 pw.print(" mPolicyVisibilityAfterAnim=");
8071 pw.print(mPolicyVisibilityAfterAnim);
8072 pw.print(" mAttachedHidden="); pw.println(mAttachedHidden);
8073 }
8074 pw.print(prefix); pw.print("Requested w="); pw.print(mRequestedWidth);
Dianne Hackbornc8a0a752009-08-10 23:05:49 -07008075 pw.print(" h="); pw.println(mRequestedHeight);
8076 if (mXOffset != 0 || mYOffset != 0) {
8077 pw.print(prefix); pw.print("Offsets x="); pw.print(mXOffset);
8078 pw.print(" y="); pw.println(mYOffset);
8079 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008080 pw.print(prefix); pw.print("mGivenContentInsets=");
8081 mGivenContentInsets.printShortString(pw);
8082 pw.print(" mGivenVisibleInsets=");
8083 mGivenVisibleInsets.printShortString(pw);
8084 pw.println();
8085 if (mTouchableInsets != 0 || mGivenInsetsPending) {
8086 pw.print(prefix); pw.print("mTouchableInsets="); pw.print(mTouchableInsets);
8087 pw.print(" mGivenInsetsPending="); pw.println(mGivenInsetsPending);
8088 }
8089 pw.print(prefix); pw.print("mShownFrame=");
8090 mShownFrame.printShortString(pw);
8091 pw.print(" last="); mLastShownFrame.printShortString(pw);
8092 pw.println();
8093 pw.print(prefix); pw.print("mFrame="); mFrame.printShortString(pw);
8094 pw.print(" last="); mLastFrame.printShortString(pw);
8095 pw.println();
8096 pw.print(prefix); pw.print("mContainingFrame=");
8097 mContainingFrame.printShortString(pw);
8098 pw.print(" mDisplayFrame=");
8099 mDisplayFrame.printShortString(pw);
8100 pw.println();
8101 pw.print(prefix); pw.print("mContentFrame="); mContentFrame.printShortString(pw);
8102 pw.print(" mVisibleFrame="); mVisibleFrame.printShortString(pw);
8103 pw.println();
8104 pw.print(prefix); pw.print("mContentInsets="); mContentInsets.printShortString(pw);
8105 pw.print(" last="); mLastContentInsets.printShortString(pw);
8106 pw.print(" mVisibleInsets="); mVisibleInsets.printShortString(pw);
8107 pw.print(" last="); mLastVisibleInsets.printShortString(pw);
8108 pw.println();
8109 if (mShownAlpha != 1 || mAlpha != 1 || mLastAlpha != 1) {
8110 pw.print(prefix); pw.print("mShownAlpha="); pw.print(mShownAlpha);
8111 pw.print(" mAlpha="); pw.print(mAlpha);
8112 pw.print(" mLastAlpha="); pw.println(mLastAlpha);
8113 }
8114 if (mAnimating || mLocalAnimating || mAnimationIsEntrance
8115 || mAnimation != null) {
8116 pw.print(prefix); pw.print("mAnimating="); pw.print(mAnimating);
8117 pw.print(" mLocalAnimating="); pw.print(mLocalAnimating);
8118 pw.print(" mAnimationIsEntrance="); pw.print(mAnimationIsEntrance);
8119 pw.print(" mAnimation="); pw.println(mAnimation);
8120 }
8121 if (mHasTransformation || mHasLocalTransformation) {
8122 pw.print(prefix); pw.print("XForm: has=");
8123 pw.print(mHasTransformation);
8124 pw.print(" hasLocal="); pw.print(mHasLocalTransformation);
8125 pw.print(" "); mTransformation.printShortString(pw);
8126 pw.println();
8127 }
8128 pw.print(prefix); pw.print("mDrawPending="); pw.print(mDrawPending);
8129 pw.print(" mCommitDrawPending="); pw.print(mCommitDrawPending);
8130 pw.print(" mReadyToShow="); pw.print(mReadyToShow);
8131 pw.print(" mHasDrawn="); pw.println(mHasDrawn);
8132 if (mExiting || mRemoveOnExit || mDestroying || mRemoved) {
8133 pw.print(prefix); pw.print("mExiting="); pw.print(mExiting);
8134 pw.print(" mRemoveOnExit="); pw.print(mRemoveOnExit);
8135 pw.print(" mDestroying="); pw.print(mDestroying);
8136 pw.print(" mRemoved="); pw.println(mRemoved);
8137 }
Dianne Hackborn93e462b2009-09-15 22:50:40 -07008138 if (mOrientationChanging || mAppFreezing || mTurnOnScreen) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008139 pw.print(prefix); pw.print("mOrientationChanging=");
8140 pw.print(mOrientationChanging);
Dianne Hackborn93e462b2009-09-15 22:50:40 -07008141 pw.print(" mAppFreezing="); pw.print(mAppFreezing);
8142 pw.print(" mTurnOnScreen="); pw.println(mTurnOnScreen);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008143 }
Mitsuru Oshima589cebe2009-07-22 20:38:58 -07008144 if (mHScale != 1 || mVScale != 1) {
8145 pw.print(prefix); pw.print("mHScale="); pw.print(mHScale);
8146 pw.print(" mVScale="); pw.println(mVScale);
8147 }
Dianne Hackborn72c82ab2009-08-11 21:13:54 -07008148 if (mWallpaperX != -1 || mWallpaperY != -1) {
Dianne Hackbornc8a0a752009-08-10 23:05:49 -07008149 pw.print(prefix); pw.print("mWallpaperX="); pw.print(mWallpaperX);
8150 pw.print(" mWallpaperY="); pw.println(mWallpaperY);
8151 }
Marco Nelissenbf6956b2009-11-09 15:21:13 -08008152 if (mWallpaperXStep != -1 || mWallpaperYStep != -1) {
8153 pw.print(prefix); pw.print("mWallpaperXStep="); pw.print(mWallpaperXStep);
8154 pw.print(" mWallpaperYStep="); pw.println(mWallpaperYStep);
8155 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008156 }
8157
8158 @Override
8159 public String toString() {
8160 return "Window{"
8161 + Integer.toHexString(System.identityHashCode(this))
8162 + " " + mAttrs.getTitle() + " paused=" + mToken.paused + "}";
8163 }
8164 }
Romain Guy06882f82009-06-10 13:36:04 -07008165
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008166 // -------------------------------------------------------------
8167 // Window Token State
8168 // -------------------------------------------------------------
8169
8170 class WindowToken {
8171 // The actual token.
8172 final IBinder token;
8173
8174 // The type of window this token is for, as per WindowManager.LayoutParams.
8175 final int windowType;
Romain Guy06882f82009-06-10 13:36:04 -07008176
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008177 // Set if this token was explicitly added by a client, so should
8178 // not be removed when all windows are removed.
8179 final boolean explicit;
Romain Guy06882f82009-06-10 13:36:04 -07008180
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008181 // For printing.
8182 String stringName;
Romain Guy06882f82009-06-10 13:36:04 -07008183
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008184 // If this is an AppWindowToken, this is non-null.
8185 AppWindowToken appWindowToken;
Romain Guy06882f82009-06-10 13:36:04 -07008186
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008187 // All of the windows associated with this token.
8188 final ArrayList<WindowState> windows = new ArrayList<WindowState>();
8189
8190 // Is key dispatching paused for this token?
8191 boolean paused = false;
8192
8193 // Should this token's windows be hidden?
8194 boolean hidden;
8195
8196 // Temporary for finding which tokens no longer have visible windows.
8197 boolean hasVisible;
8198
Dianne Hackborna8f60182009-09-01 19:01:50 -07008199 // Set to true when this token is in a pending transaction where it
8200 // will be shown.
8201 boolean waitingToShow;
8202
8203 // Set to true when this token is in a pending transaction where it
8204 // will be hidden.
8205 boolean waitingToHide;
8206
8207 // Set to true when this token is in a pending transaction where its
8208 // windows will be put to the bottom of the list.
8209 boolean sendingToBottom;
8210
8211 // Set to true when this token is in a pending transaction where its
8212 // windows will be put to the top of the list.
8213 boolean sendingToTop;
8214
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008215 WindowToken(IBinder _token, int type, boolean _explicit) {
8216 token = _token;
8217 windowType = type;
8218 explicit = _explicit;
8219 }
8220
8221 void dump(PrintWriter pw, String prefix) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008222 pw.print(prefix); pw.print("token="); pw.println(token);
8223 pw.print(prefix); pw.print("windows="); pw.println(windows);
8224 pw.print(prefix); pw.print("windowType="); pw.print(windowType);
8225 pw.print(" hidden="); pw.print(hidden);
8226 pw.print(" hasVisible="); pw.println(hasVisible);
Dianne Hackborna8f60182009-09-01 19:01:50 -07008227 if (waitingToShow || waitingToHide || sendingToBottom || sendingToTop) {
8228 pw.print(prefix); pw.print("waitingToShow="); pw.print(waitingToShow);
8229 pw.print(" waitingToHide="); pw.print(waitingToHide);
8230 pw.print(" sendingToBottom="); pw.print(sendingToBottom);
8231 pw.print(" sendingToTop="); pw.println(sendingToTop);
8232 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008233 }
8234
8235 @Override
8236 public String toString() {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008237 if (stringName == null) {
8238 StringBuilder sb = new StringBuilder();
8239 sb.append("WindowToken{");
8240 sb.append(Integer.toHexString(System.identityHashCode(this)));
8241 sb.append(" token="); sb.append(token); sb.append('}');
8242 stringName = sb.toString();
8243 }
8244 return stringName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008245 }
8246 };
8247
8248 class AppWindowToken extends WindowToken {
8249 // Non-null only for application tokens.
8250 final IApplicationToken appToken;
8251
8252 // All of the windows and child windows that are included in this
8253 // application token. Note this list is NOT sorted!
8254 final ArrayList<WindowState> allAppWindows = new ArrayList<WindowState>();
8255
8256 int groupId = -1;
8257 boolean appFullscreen;
8258 int requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
Romain Guy06882f82009-06-10 13:36:04 -07008259
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008260 // These are used for determining when all windows associated with
8261 // an activity have been drawn, so they can be made visible together
8262 // at the same time.
8263 int lastTransactionSequence = mTransactionSequence-1;
8264 int numInterestingWindows;
8265 int numDrawnWindows;
8266 boolean inPendingTransaction;
8267 boolean allDrawn;
Romain Guy06882f82009-06-10 13:36:04 -07008268
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008269 // Is this token going to be hidden in a little while? If so, it
8270 // won't be taken into account for setting the screen orientation.
8271 boolean willBeHidden;
Romain Guy06882f82009-06-10 13:36:04 -07008272
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008273 // Is this window's surface needed? This is almost like hidden, except
8274 // it will sometimes be true a little earlier: when the token has
8275 // been shown, but is still waiting for its app transition to execute
8276 // before making its windows shown.
8277 boolean hiddenRequested;
Romain Guy06882f82009-06-10 13:36:04 -07008278
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008279 // Have we told the window clients to hide themselves?
8280 boolean clientHidden;
Romain Guy06882f82009-06-10 13:36:04 -07008281
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008282 // Last visibility state we reported to the app token.
8283 boolean reportedVisible;
8284
8285 // Set to true when the token has been removed from the window mgr.
8286 boolean removed;
8287
8288 // Have we been asked to have this token keep the screen frozen?
8289 boolean freezingScreen;
Romain Guy06882f82009-06-10 13:36:04 -07008290
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008291 boolean animating;
8292 Animation animation;
8293 boolean hasTransformation;
8294 final Transformation transformation = new Transformation();
Romain Guy06882f82009-06-10 13:36:04 -07008295
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008296 // Offset to the window of all layers in the token, for use by
8297 // AppWindowToken animations.
8298 int animLayerAdjustment;
Romain Guy06882f82009-06-10 13:36:04 -07008299
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008300 // Information about an application starting window if displayed.
8301 StartingData startingData;
8302 WindowState startingWindow;
8303 View startingView;
8304 boolean startingDisplayed;
8305 boolean startingMoved;
8306 boolean firstWindowDrawn;
8307
8308 AppWindowToken(IApplicationToken _token) {
8309 super(_token.asBinder(),
8310 WindowManager.LayoutParams.TYPE_APPLICATION, true);
8311 appWindowToken = this;
8312 appToken = _token;
8313 }
Romain Guy06882f82009-06-10 13:36:04 -07008314
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008315 public void setAnimation(Animation anim) {
8316 if (localLOGV) Log.v(
8317 TAG, "Setting animation in " + this + ": " + anim);
8318 animation = anim;
8319 animating = false;
8320 anim.restrictDuration(MAX_ANIMATION_DURATION);
8321 anim.scaleCurrentDuration(mTransitionAnimationScale);
8322 int zorder = anim.getZAdjustment();
8323 int adj = 0;
8324 if (zorder == Animation.ZORDER_TOP) {
8325 adj = TYPE_LAYER_OFFSET;
8326 } else if (zorder == Animation.ZORDER_BOTTOM) {
8327 adj = -TYPE_LAYER_OFFSET;
8328 }
Romain Guy06882f82009-06-10 13:36:04 -07008329
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008330 if (animLayerAdjustment != adj) {
8331 animLayerAdjustment = adj;
8332 updateLayers();
8333 }
8334 }
Romain Guy06882f82009-06-10 13:36:04 -07008335
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008336 public void setDummyAnimation() {
8337 if (animation == null) {
8338 if (localLOGV) Log.v(
8339 TAG, "Setting dummy animation in " + this);
8340 animation = sDummyAnimation;
8341 }
8342 }
8343
8344 public void clearAnimation() {
8345 if (animation != null) {
8346 animation = null;
8347 animating = true;
8348 }
8349 }
Romain Guy06882f82009-06-10 13:36:04 -07008350
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008351 void updateLayers() {
8352 final int N = allAppWindows.size();
8353 final int adj = animLayerAdjustment;
8354 for (int i=0; i<N; i++) {
8355 WindowState w = allAppWindows.get(i);
8356 w.mAnimLayer = w.mLayer + adj;
8357 if (DEBUG_LAYERS) Log.v(TAG, "Updating layer " + w + ": "
8358 + w.mAnimLayer);
8359 if (w == mInputMethodTarget) {
8360 setInputMethodAnimLayerAdjustment(adj);
8361 }
Dianne Hackborn3be63c02009-08-20 19:31:38 -07008362 if (w == mWallpaperTarget && mLowerWallpaperTarget == null) {
Dianne Hackbornc8a0a752009-08-10 23:05:49 -07008363 setWallpaperAnimLayerAdjustmentLocked(adj);
Dianne Hackborn759a39e2009-08-09 17:20:27 -07008364 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008365 }
8366 }
Romain Guy06882f82009-06-10 13:36:04 -07008367
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008368 void sendAppVisibilityToClients() {
8369 final int N = allAppWindows.size();
8370 for (int i=0; i<N; i++) {
8371 WindowState win = allAppWindows.get(i);
8372 if (win == startingWindow && clientHidden) {
8373 // Don't hide the starting window.
8374 continue;
8375 }
8376 try {
8377 if (DEBUG_VISIBILITY) Log.v(TAG,
8378 "Setting visibility of " + win + ": " + (!clientHidden));
8379 win.mClient.dispatchAppVisibility(!clientHidden);
8380 } catch (RemoteException e) {
8381 }
8382 }
8383 }
Romain Guy06882f82009-06-10 13:36:04 -07008384
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008385 void showAllWindowsLocked() {
8386 final int NW = allAppWindows.size();
8387 for (int i=0; i<NW; i++) {
8388 WindowState w = allAppWindows.get(i);
8389 if (DEBUG_VISIBILITY) Log.v(TAG,
8390 "performing show on: " + w);
8391 w.performShowLocked();
8392 }
8393 }
Romain Guy06882f82009-06-10 13:36:04 -07008394
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008395 // This must be called while inside a transaction.
8396 boolean stepAnimationLocked(long currentTime, int dw, int dh) {
8397 if (!mDisplayFrozen) {
8398 // We will run animations as long as the display isn't frozen.
Romain Guy06882f82009-06-10 13:36:04 -07008399
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008400 if (animation == sDummyAnimation) {
8401 // This guy is going to animate, but not yet. For now count
Dianne Hackborn3be63c02009-08-20 19:31:38 -07008402 // it as not animating for purposes of scheduling transactions;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008403 // when it is really time to animate, this will be set to
8404 // a real animation and the next call will execute normally.
8405 return false;
8406 }
Romain Guy06882f82009-06-10 13:36:04 -07008407
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008408 if ((allDrawn || animating || startingDisplayed) && animation != null) {
8409 if (!animating) {
8410 if (DEBUG_ANIM) Log.v(
8411 TAG, "Starting animation in " + this +
8412 " @ " + currentTime + ": dw=" + dw + " dh=" + dh
8413 + " scale=" + mTransitionAnimationScale
8414 + " allDrawn=" + allDrawn + " animating=" + animating);
8415 animation.initialize(dw, dh, dw, dh);
8416 animation.setStartTime(currentTime);
8417 animating = true;
8418 }
8419 transformation.clear();
8420 final boolean more = animation.getTransformation(
8421 currentTime, transformation);
8422 if (DEBUG_ANIM) Log.v(
8423 TAG, "Stepped animation in " + this +
8424 ": more=" + more + ", xform=" + transformation);
8425 if (more) {
8426 // we're done!
8427 hasTransformation = true;
8428 return true;
8429 }
8430 if (DEBUG_ANIM) Log.v(
8431 TAG, "Finished animation in " + this +
8432 " @ " + currentTime);
8433 animation = null;
8434 }
8435 } else if (animation != null) {
8436 // If the display is frozen, and there is a pending animation,
8437 // clear it and make sure we run the cleanup code.
8438 animating = true;
8439 animation = null;
8440 }
8441
8442 hasTransformation = false;
Romain Guy06882f82009-06-10 13:36:04 -07008443
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008444 if (!animating) {
8445 return false;
8446 }
8447
8448 clearAnimation();
8449 animating = false;
8450 if (mInputMethodTarget != null && mInputMethodTarget.mAppToken == this) {
8451 moveInputMethodWindowsIfNeededLocked(true);
8452 }
Romain Guy06882f82009-06-10 13:36:04 -07008453
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008454 if (DEBUG_ANIM) Log.v(
8455 TAG, "Animation done in " + this
8456 + ": reportedVisible=" + reportedVisible);
8457
8458 transformation.clear();
8459 if (animLayerAdjustment != 0) {
8460 animLayerAdjustment = 0;
8461 updateLayers();
8462 }
Romain Guy06882f82009-06-10 13:36:04 -07008463
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008464 final int N = windows.size();
8465 for (int i=0; i<N; i++) {
8466 ((WindowState)windows.get(i)).finishExit();
8467 }
8468 updateReportedVisibilityLocked();
Romain Guy06882f82009-06-10 13:36:04 -07008469
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008470 return false;
8471 }
8472
8473 void updateReportedVisibilityLocked() {
8474 if (appToken == null) {
8475 return;
8476 }
Romain Guy06882f82009-06-10 13:36:04 -07008477
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008478 int numInteresting = 0;
8479 int numVisible = 0;
8480 boolean nowGone = true;
Romain Guy06882f82009-06-10 13:36:04 -07008481
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008482 if (DEBUG_VISIBILITY) Log.v(TAG, "Update reported visibility: " + this);
8483 final int N = allAppWindows.size();
8484 for (int i=0; i<N; i++) {
8485 WindowState win = allAppWindows.get(i);
8486 if (win == startingWindow || win.mAppFreezing) {
8487 continue;
8488 }
8489 if (DEBUG_VISIBILITY) {
Dianne Hackborn7433e8a2009-09-27 13:21:20 -07008490 Log.v(TAG, "Win " + win + ": isDrawn="
8491 + win.isDrawnLw()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008492 + ", isAnimating=" + win.isAnimating());
Dianne Hackborn7433e8a2009-09-27 13:21:20 -07008493 if (!win.isDrawnLw()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008494 Log.v(TAG, "Not displayed: s=" + win.mSurface
8495 + " pv=" + win.mPolicyVisibility
8496 + " dp=" + win.mDrawPending
8497 + " cdp=" + win.mCommitDrawPending
8498 + " ah=" + win.mAttachedHidden
8499 + " th="
8500 + (win.mAppToken != null
8501 ? win.mAppToken.hiddenRequested : false)
8502 + " a=" + win.mAnimating);
8503 }
8504 }
8505 numInteresting++;
Dianne Hackborn7433e8a2009-09-27 13:21:20 -07008506 if (win.isDrawnLw()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008507 if (!win.isAnimating()) {
8508 numVisible++;
8509 }
8510 nowGone = false;
8511 } else if (win.isAnimating()) {
8512 nowGone = false;
8513 }
8514 }
Romain Guy06882f82009-06-10 13:36:04 -07008515
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008516 boolean nowVisible = numInteresting > 0 && numVisible >= numInteresting;
8517 if (DEBUG_VISIBILITY) Log.v(TAG, "VIS " + this + ": interesting="
8518 + numInteresting + " visible=" + numVisible);
8519 if (nowVisible != reportedVisible) {
8520 if (DEBUG_VISIBILITY) Log.v(
8521 TAG, "Visibility changed in " + this
8522 + ": vis=" + nowVisible);
8523 reportedVisible = nowVisible;
8524 Message m = mH.obtainMessage(
8525 H.REPORT_APPLICATION_TOKEN_WINDOWS,
8526 nowVisible ? 1 : 0,
8527 nowGone ? 1 : 0,
8528 this);
8529 mH.sendMessage(m);
8530 }
8531 }
Romain Guy06882f82009-06-10 13:36:04 -07008532
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -07008533 WindowState findMainWindow() {
8534 int j = windows.size();
8535 while (j > 0) {
8536 j--;
8537 WindowState win = windows.get(j);
8538 if (win.mAttrs.type == WindowManager.LayoutParams.TYPE_BASE_APPLICATION
8539 || win.mAttrs.type == WindowManager.LayoutParams.TYPE_APPLICATION_STARTING) {
8540 return win;
8541 }
8542 }
8543 return null;
8544 }
8545
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008546 void dump(PrintWriter pw, String prefix) {
8547 super.dump(pw, prefix);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008548 if (appToken != null) {
8549 pw.print(prefix); pw.println("app=true");
8550 }
8551 if (allAppWindows.size() > 0) {
8552 pw.print(prefix); pw.print("allAppWindows="); pw.println(allAppWindows);
8553 }
8554 pw.print(prefix); pw.print("groupId="); pw.print(groupId);
Dianne Hackborna8f60182009-09-01 19:01:50 -07008555 pw.print(" appFullscreen="); pw.print(appFullscreen);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008556 pw.print(" requestedOrientation="); pw.println(requestedOrientation);
8557 pw.print(prefix); pw.print("hiddenRequested="); pw.print(hiddenRequested);
8558 pw.print(" clientHidden="); pw.print(clientHidden);
8559 pw.print(" willBeHidden="); pw.print(willBeHidden);
8560 pw.print(" reportedVisible="); pw.println(reportedVisible);
8561 if (paused || freezingScreen) {
8562 pw.print(prefix); pw.print("paused="); pw.print(paused);
8563 pw.print(" freezingScreen="); pw.println(freezingScreen);
8564 }
8565 if (numInterestingWindows != 0 || numDrawnWindows != 0
8566 || inPendingTransaction || allDrawn) {
8567 pw.print(prefix); pw.print("numInterestingWindows=");
8568 pw.print(numInterestingWindows);
8569 pw.print(" numDrawnWindows="); pw.print(numDrawnWindows);
8570 pw.print(" inPendingTransaction="); pw.print(inPendingTransaction);
8571 pw.print(" allDrawn="); pw.println(allDrawn);
8572 }
8573 if (animating || animation != null) {
8574 pw.print(prefix); pw.print("animating="); pw.print(animating);
8575 pw.print(" animation="); pw.println(animation);
8576 }
8577 if (animLayerAdjustment != 0) {
8578 pw.print(prefix); pw.print("animLayerAdjustment="); pw.println(animLayerAdjustment);
8579 }
8580 if (hasTransformation) {
8581 pw.print(prefix); pw.print("hasTransformation="); pw.print(hasTransformation);
8582 pw.print(" transformation="); transformation.printShortString(pw);
8583 pw.println();
8584 }
8585 if (startingData != null || removed || firstWindowDrawn) {
8586 pw.print(prefix); pw.print("startingData="); pw.print(startingData);
8587 pw.print(" removed="); pw.print(removed);
8588 pw.print(" firstWindowDrawn="); pw.println(firstWindowDrawn);
8589 }
8590 if (startingWindow != null || startingView != null
8591 || startingDisplayed || startingMoved) {
8592 pw.print(prefix); pw.print("startingWindow="); pw.print(startingWindow);
8593 pw.print(" startingView="); pw.print(startingView);
8594 pw.print(" startingDisplayed="); pw.print(startingDisplayed);
8595 pw.print(" startingMoved"); pw.println(startingMoved);
8596 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008597 }
8598
8599 @Override
8600 public String toString() {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07008601 if (stringName == null) {
8602 StringBuilder sb = new StringBuilder();
8603 sb.append("AppWindowToken{");
8604 sb.append(Integer.toHexString(System.identityHashCode(this)));
8605 sb.append(" token="); sb.append(token); sb.append('}');
8606 stringName = sb.toString();
8607 }
8608 return stringName;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008609 }
8610 }
Romain Guy06882f82009-06-10 13:36:04 -07008611
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008612 // -------------------------------------------------------------
8613 // DummyAnimation
8614 // -------------------------------------------------------------
8615
8616 // This is an animation that does nothing: it just immediately finishes
8617 // itself every time it is called. It is used as a stub animation in cases
8618 // where we want to synchronize multiple things that may be animating.
8619 static final class DummyAnimation extends Animation {
8620 public boolean getTransformation(long currentTime, Transformation outTransformation) {
8621 return false;
8622 }
8623 }
8624 static final Animation sDummyAnimation = new DummyAnimation();
Romain Guy06882f82009-06-10 13:36:04 -07008625
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008626 // -------------------------------------------------------------
8627 // Async Handler
8628 // -------------------------------------------------------------
8629
8630 static final class StartingData {
8631 final String pkg;
8632 final int theme;
8633 final CharSequence nonLocalizedLabel;
8634 final int labelRes;
8635 final int icon;
Romain Guy06882f82009-06-10 13:36:04 -07008636
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008637 StartingData(String _pkg, int _theme, CharSequence _nonLocalizedLabel,
8638 int _labelRes, int _icon) {
8639 pkg = _pkg;
8640 theme = _theme;
8641 nonLocalizedLabel = _nonLocalizedLabel;
8642 labelRes = _labelRes;
8643 icon = _icon;
8644 }
8645 }
8646
8647 private final class H extends Handler {
8648 public static final int REPORT_FOCUS_CHANGE = 2;
8649 public static final int REPORT_LOSING_FOCUS = 3;
8650 public static final int ANIMATE = 4;
8651 public static final int ADD_STARTING = 5;
8652 public static final int REMOVE_STARTING = 6;
8653 public static final int FINISHED_STARTING = 7;
8654 public static final int REPORT_APPLICATION_TOKEN_WINDOWS = 8;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008655 public static final int WINDOW_FREEZE_TIMEOUT = 11;
8656 public static final int HOLD_SCREEN_CHANGED = 12;
8657 public static final int APP_TRANSITION_TIMEOUT = 13;
8658 public static final int PERSIST_ANIMATION_SCALE = 14;
8659 public static final int FORCE_GC = 15;
8660 public static final int ENABLE_SCREEN = 16;
8661 public static final int APP_FREEZE_TIMEOUT = 17;
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07008662 public static final int COMPUTE_AND_SEND_NEW_CONFIGURATION = 18;
Romain Guy06882f82009-06-10 13:36:04 -07008663
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008664 private Session mLastReportedHold;
Romain Guy06882f82009-06-10 13:36:04 -07008665
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008666 public H() {
8667 }
Romain Guy06882f82009-06-10 13:36:04 -07008668
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008669 @Override
8670 public void handleMessage(Message msg) {
8671 switch (msg.what) {
8672 case REPORT_FOCUS_CHANGE: {
8673 WindowState lastFocus;
8674 WindowState newFocus;
Romain Guy06882f82009-06-10 13:36:04 -07008675
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008676 synchronized(mWindowMap) {
8677 lastFocus = mLastFocus;
8678 newFocus = mCurrentFocus;
8679 if (lastFocus == newFocus) {
8680 // Focus is not changing, so nothing to do.
8681 return;
8682 }
8683 mLastFocus = newFocus;
8684 //Log.i(TAG, "Focus moving from " + lastFocus
8685 // + " to " + newFocus);
8686 if (newFocus != null && lastFocus != null
8687 && !newFocus.isDisplayedLw()) {
8688 //Log.i(TAG, "Delaying loss of focus...");
8689 mLosingFocus.add(lastFocus);
8690 lastFocus = null;
8691 }
8692 }
8693
8694 if (lastFocus != newFocus) {
8695 //System.out.println("Changing focus from " + lastFocus
8696 // + " to " + newFocus);
8697 if (newFocus != null) {
8698 try {
8699 //Log.i(TAG, "Gaining focus: " + newFocus);
8700 newFocus.mClient.windowFocusChanged(true, mInTouchMode);
8701 } catch (RemoteException e) {
8702 // Ignore if process has died.
8703 }
8704 }
8705
8706 if (lastFocus != null) {
8707 try {
8708 //Log.i(TAG, "Losing focus: " + lastFocus);
8709 lastFocus.mClient.windowFocusChanged(false, mInTouchMode);
8710 } catch (RemoteException e) {
8711 // Ignore if process has died.
8712 }
8713 }
8714 }
8715 } break;
8716
8717 case REPORT_LOSING_FOCUS: {
8718 ArrayList<WindowState> losers;
Romain Guy06882f82009-06-10 13:36:04 -07008719
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008720 synchronized(mWindowMap) {
8721 losers = mLosingFocus;
8722 mLosingFocus = new ArrayList<WindowState>();
8723 }
8724
8725 final int N = losers.size();
8726 for (int i=0; i<N; i++) {
8727 try {
8728 //Log.i(TAG, "Losing delayed focus: " + losers.get(i));
8729 losers.get(i).mClient.windowFocusChanged(false, mInTouchMode);
8730 } catch (RemoteException e) {
8731 // Ignore if process has died.
8732 }
8733 }
8734 } break;
8735
8736 case ANIMATE: {
8737 synchronized(mWindowMap) {
8738 mAnimationPending = false;
8739 performLayoutAndPlaceSurfacesLocked();
8740 }
8741 } break;
8742
8743 case ADD_STARTING: {
8744 final AppWindowToken wtoken = (AppWindowToken)msg.obj;
8745 final StartingData sd = wtoken.startingData;
8746
8747 if (sd == null) {
8748 // Animation has been canceled... do nothing.
8749 return;
8750 }
Romain Guy06882f82009-06-10 13:36:04 -07008751
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008752 if (DEBUG_STARTING_WINDOW) Log.v(TAG, "Add starting "
8753 + wtoken + ": pkg=" + sd.pkg);
Romain Guy06882f82009-06-10 13:36:04 -07008754
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008755 View view = null;
8756 try {
8757 view = mPolicy.addStartingWindow(
8758 wtoken.token, sd.pkg,
8759 sd.theme, sd.nonLocalizedLabel, sd.labelRes,
8760 sd.icon);
8761 } catch (Exception e) {
8762 Log.w(TAG, "Exception when adding starting window", e);
8763 }
8764
8765 if (view != null) {
8766 boolean abort = false;
8767
8768 synchronized(mWindowMap) {
8769 if (wtoken.removed || wtoken.startingData == null) {
8770 // If the window was successfully added, then
8771 // we need to remove it.
8772 if (wtoken.startingWindow != null) {
8773 if (DEBUG_STARTING_WINDOW) Log.v(TAG,
8774 "Aborted starting " + wtoken
8775 + ": removed=" + wtoken.removed
8776 + " startingData=" + wtoken.startingData);
8777 wtoken.startingWindow = null;
8778 wtoken.startingData = null;
8779 abort = true;
8780 }
8781 } else {
8782 wtoken.startingView = view;
8783 }
8784 if (DEBUG_STARTING_WINDOW && !abort) Log.v(TAG,
8785 "Added starting " + wtoken
8786 + ": startingWindow="
8787 + wtoken.startingWindow + " startingView="
8788 + wtoken.startingView);
8789 }
8790
8791 if (abort) {
8792 try {
8793 mPolicy.removeStartingWindow(wtoken.token, view);
8794 } catch (Exception e) {
8795 Log.w(TAG, "Exception when removing starting window", e);
8796 }
8797 }
8798 }
8799 } break;
8800
8801 case REMOVE_STARTING: {
8802 final AppWindowToken wtoken = (AppWindowToken)msg.obj;
8803 IBinder token = null;
8804 View view = null;
8805 synchronized (mWindowMap) {
8806 if (DEBUG_STARTING_WINDOW) Log.v(TAG, "Remove starting "
8807 + wtoken + ": startingWindow="
8808 + wtoken.startingWindow + " startingView="
8809 + wtoken.startingView);
8810 if (wtoken.startingWindow != null) {
8811 view = wtoken.startingView;
8812 token = wtoken.token;
8813 wtoken.startingData = null;
8814 wtoken.startingView = null;
8815 wtoken.startingWindow = null;
8816 }
8817 }
8818 if (view != null) {
8819 try {
8820 mPolicy.removeStartingWindow(token, view);
8821 } catch (Exception e) {
8822 Log.w(TAG, "Exception when removing starting window", e);
8823 }
8824 }
8825 } break;
8826
8827 case FINISHED_STARTING: {
8828 IBinder token = null;
8829 View view = null;
8830 while (true) {
8831 synchronized (mWindowMap) {
8832 final int N = mFinishedStarting.size();
8833 if (N <= 0) {
8834 break;
8835 }
8836 AppWindowToken wtoken = mFinishedStarting.remove(N-1);
8837
8838 if (DEBUG_STARTING_WINDOW) Log.v(TAG,
8839 "Finished starting " + wtoken
8840 + ": startingWindow=" + wtoken.startingWindow
8841 + " startingView=" + wtoken.startingView);
8842
8843 if (wtoken.startingWindow == null) {
8844 continue;
8845 }
8846
8847 view = wtoken.startingView;
8848 token = wtoken.token;
8849 wtoken.startingData = null;
8850 wtoken.startingView = null;
8851 wtoken.startingWindow = null;
8852 }
8853
8854 try {
8855 mPolicy.removeStartingWindow(token, view);
8856 } catch (Exception e) {
8857 Log.w(TAG, "Exception when removing starting window", e);
8858 }
8859 }
8860 } break;
8861
8862 case REPORT_APPLICATION_TOKEN_WINDOWS: {
8863 final AppWindowToken wtoken = (AppWindowToken)msg.obj;
8864
8865 boolean nowVisible = msg.arg1 != 0;
8866 boolean nowGone = msg.arg2 != 0;
8867
8868 try {
8869 if (DEBUG_VISIBILITY) Log.v(
8870 TAG, "Reporting visible in " + wtoken
8871 + " visible=" + nowVisible
8872 + " gone=" + nowGone);
8873 if (nowVisible) {
8874 wtoken.appToken.windowsVisible();
8875 } else {
8876 wtoken.appToken.windowsGone();
8877 }
8878 } catch (RemoteException ex) {
8879 }
8880 } break;
Romain Guy06882f82009-06-10 13:36:04 -07008881
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008882 case WINDOW_FREEZE_TIMEOUT: {
8883 synchronized (mWindowMap) {
8884 Log.w(TAG, "Window freeze timeout expired.");
8885 int i = mWindows.size();
8886 while (i > 0) {
8887 i--;
8888 WindowState w = (WindowState)mWindows.get(i);
8889 if (w.mOrientationChanging) {
8890 w.mOrientationChanging = false;
8891 Log.w(TAG, "Force clearing orientation change: " + w);
8892 }
8893 }
8894 performLayoutAndPlaceSurfacesLocked();
8895 }
8896 break;
8897 }
Romain Guy06882f82009-06-10 13:36:04 -07008898
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008899 case HOLD_SCREEN_CHANGED: {
8900 Session oldHold;
8901 Session newHold;
8902 synchronized (mWindowMap) {
8903 oldHold = mLastReportedHold;
8904 newHold = (Session)msg.obj;
8905 mLastReportedHold = newHold;
8906 }
Romain Guy06882f82009-06-10 13:36:04 -07008907
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008908 if (oldHold != newHold) {
8909 try {
8910 if (oldHold != null) {
8911 mBatteryStats.noteStopWakelock(oldHold.mUid,
8912 "window",
8913 BatteryStats.WAKE_TYPE_WINDOW);
8914 }
8915 if (newHold != null) {
8916 mBatteryStats.noteStartWakelock(newHold.mUid,
8917 "window",
8918 BatteryStats.WAKE_TYPE_WINDOW);
8919 }
8920 } catch (RemoteException e) {
8921 }
8922 }
8923 break;
8924 }
Romain Guy06882f82009-06-10 13:36:04 -07008925
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008926 case APP_TRANSITION_TIMEOUT: {
8927 synchronized (mWindowMap) {
Dianne Hackbornbfe319e2009-09-21 00:34:05 -07008928 if (mNextAppTransition != WindowManagerPolicy.TRANSIT_UNSET) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008929 if (DEBUG_APP_TRANSITIONS) Log.v(TAG,
8930 "*** APP TRANSITION TIMEOUT");
8931 mAppTransitionReady = true;
8932 mAppTransitionTimeout = true;
8933 performLayoutAndPlaceSurfacesLocked();
8934 }
8935 }
8936 break;
8937 }
Romain Guy06882f82009-06-10 13:36:04 -07008938
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008939 case PERSIST_ANIMATION_SCALE: {
8940 Settings.System.putFloat(mContext.getContentResolver(),
8941 Settings.System.WINDOW_ANIMATION_SCALE, mWindowAnimationScale);
8942 Settings.System.putFloat(mContext.getContentResolver(),
8943 Settings.System.TRANSITION_ANIMATION_SCALE, mTransitionAnimationScale);
8944 break;
8945 }
Romain Guy06882f82009-06-10 13:36:04 -07008946
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008947 case FORCE_GC: {
8948 synchronized(mWindowMap) {
8949 if (mAnimationPending) {
8950 // If we are animating, don't do the gc now but
8951 // delay a bit so we don't interrupt the animation.
8952 mH.sendMessageDelayed(mH.obtainMessage(H.FORCE_GC),
8953 2000);
8954 return;
8955 }
8956 // If we are currently rotating the display, it will
8957 // schedule a new message when done.
8958 if (mDisplayFrozen) {
8959 return;
8960 }
8961 mFreezeGcPending = 0;
8962 }
8963 Runtime.getRuntime().gc();
8964 break;
8965 }
Romain Guy06882f82009-06-10 13:36:04 -07008966
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008967 case ENABLE_SCREEN: {
8968 performEnableScreen();
8969 break;
8970 }
Romain Guy06882f82009-06-10 13:36:04 -07008971
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008972 case APP_FREEZE_TIMEOUT: {
8973 synchronized (mWindowMap) {
8974 Log.w(TAG, "App freeze timeout expired.");
8975 int i = mAppTokens.size();
8976 while (i > 0) {
8977 i--;
8978 AppWindowToken tok = mAppTokens.get(i);
8979 if (tok.freezingScreen) {
8980 Log.w(TAG, "Force clearing freeze: " + tok);
8981 unsetAppFreezingScreenLocked(tok, true, true);
8982 }
8983 }
8984 }
8985 break;
8986 }
Romain Guy06882f82009-06-10 13:36:04 -07008987
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07008988 case COMPUTE_AND_SEND_NEW_CONFIGURATION: {
Dianne Hackborncfaef692009-06-15 14:24:44 -07008989 if (updateOrientationFromAppTokensUnchecked(null, null) != null) {
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -07008990 sendNewConfiguration();
8991 }
8992 break;
8993 }
Romain Guy06882f82009-06-10 13:36:04 -07008994
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008995 }
8996 }
8997 }
8998
8999 // -------------------------------------------------------------
9000 // IWindowManager API
9001 // -------------------------------------------------------------
9002
9003 public IWindowSession openSession(IInputMethodClient client,
9004 IInputContext inputContext) {
9005 if (client == null) throw new IllegalArgumentException("null client");
9006 if (inputContext == null) throw new IllegalArgumentException("null inputContext");
9007 return new Session(client, inputContext);
9008 }
9009
9010 public boolean inputMethodClientHasFocus(IInputMethodClient client) {
9011 synchronized (mWindowMap) {
9012 // The focus for the client is the window immediately below
9013 // where we would place the input method window.
9014 int idx = findDesiredInputMethodWindowIndexLocked(false);
9015 WindowState imFocus;
9016 if (idx > 0) {
9017 imFocus = (WindowState)mWindows.get(idx-1);
9018 if (imFocus != null) {
9019 if (imFocus.mSession.mClient != null &&
9020 imFocus.mSession.mClient.asBinder() == client.asBinder()) {
9021 return true;
9022 }
9023 }
9024 }
9025 }
9026 return false;
9027 }
Romain Guy06882f82009-06-10 13:36:04 -07009028
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009029 // -------------------------------------------------------------
9030 // Internals
9031 // -------------------------------------------------------------
9032
9033 final WindowState windowForClientLocked(Session session, IWindow client) {
9034 return windowForClientLocked(session, client.asBinder());
9035 }
Romain Guy06882f82009-06-10 13:36:04 -07009036
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009037 final WindowState windowForClientLocked(Session session, IBinder client) {
9038 WindowState win = mWindowMap.get(client);
9039 if (localLOGV) Log.v(
9040 TAG, "Looking up client " + client + ": " + win);
9041 if (win == null) {
9042 RuntimeException ex = new RuntimeException();
9043 Log.w(TAG, "Requested window " + client + " does not exist", ex);
9044 return null;
9045 }
9046 if (session != null && win.mSession != session) {
9047 RuntimeException ex = new RuntimeException();
9048 Log.w(TAG, "Requested window " + client + " is in session " +
9049 win.mSession + ", not " + session, ex);
9050 return null;
9051 }
9052
9053 return win;
9054 }
9055
Dianne Hackborna8f60182009-09-01 19:01:50 -07009056 final void rebuildAppWindowListLocked() {
9057 int NW = mWindows.size();
9058 int i;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009059 int lastWallpaper = -1;
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07009060 int numRemoved = 0;
Dianne Hackborna8f60182009-09-01 19:01:50 -07009061
9062 // First remove all existing app windows.
9063 i=0;
9064 while (i < NW) {
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009065 WindowState w = (WindowState)mWindows.get(i);
9066 if (w.mAppToken != null) {
Dianne Hackbornbdd52b22009-09-02 21:46:19 -07009067 WindowState win = (WindowState)mWindows.remove(i);
9068 if (DEBUG_WINDOW_MOVEMENT) Log.v(TAG,
9069 "Rebuild removing window: " + win);
Dianne Hackborna8f60182009-09-01 19:01:50 -07009070 NW--;
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07009071 numRemoved++;
Dianne Hackborna8f60182009-09-01 19:01:50 -07009072 continue;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009073 } else if (w.mAttrs.type == WindowManager.LayoutParams.TYPE_WALLPAPER
9074 && lastWallpaper == i-1) {
9075 lastWallpaper = i;
Dianne Hackborna8f60182009-09-01 19:01:50 -07009076 }
9077 i++;
9078 }
9079
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009080 // The wallpaper window(s) typically live at the bottom of the stack,
9081 // so skip them before adding app tokens.
9082 lastWallpaper++;
9083 i = lastWallpaper;
9084
Dianne Hackbornbdd52b22009-09-02 21:46:19 -07009085 // First add all of the exiting app tokens... these are no longer
9086 // in the main app list, but still have windows shown. We put them
9087 // in the back because now that the animation is over we no longer
9088 // will care about them.
9089 int NT = mExitingAppTokens.size();
Dianne Hackborna8f60182009-09-01 19:01:50 -07009090 for (int j=0; j<NT; j++) {
Dianne Hackbornbdd52b22009-09-02 21:46:19 -07009091 i = reAddAppWindowsLocked(i, mExitingAppTokens.get(j));
9092 }
9093
9094 // And add in the still active app tokens in Z order.
9095 NT = mAppTokens.size();
9096 for (int j=0; j<NT; j++) {
9097 i = reAddAppWindowsLocked(i, mAppTokens.get(j));
Dianne Hackborna8f60182009-09-01 19:01:50 -07009098 }
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07009099
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009100 i -= lastWallpaper;
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07009101 if (i != numRemoved) {
9102 Log.w(TAG, "Rebuild removed " + numRemoved
9103 + " windows but added " + i);
9104 }
Dianne Hackborna8f60182009-09-01 19:01:50 -07009105 }
9106
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009107 private final void assignLayersLocked() {
9108 int N = mWindows.size();
9109 int curBaseLayer = 0;
9110 int curLayer = 0;
9111 int i;
Romain Guy06882f82009-06-10 13:36:04 -07009112
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009113 for (i=0; i<N; i++) {
9114 WindowState w = (WindowState)mWindows.get(i);
Dianne Hackborn7341d7a2009-08-14 11:37:52 -07009115 if (w.mBaseLayer == curBaseLayer || w.mIsImWindow
9116 || (i > 0 && w.mIsWallpaper)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009117 curLayer += WINDOW_LAYER_MULTIPLIER;
9118 w.mLayer = curLayer;
9119 } else {
9120 curBaseLayer = curLayer = w.mBaseLayer;
9121 w.mLayer = curLayer;
9122 }
9123 if (w.mTargetAppToken != null) {
9124 w.mAnimLayer = w.mLayer + w.mTargetAppToken.animLayerAdjustment;
9125 } else if (w.mAppToken != null) {
9126 w.mAnimLayer = w.mLayer + w.mAppToken.animLayerAdjustment;
9127 } else {
9128 w.mAnimLayer = w.mLayer;
9129 }
9130 if (w.mIsImWindow) {
9131 w.mAnimLayer += mInputMethodAnimLayerAdjustment;
Dianne Hackborn759a39e2009-08-09 17:20:27 -07009132 } else if (w.mIsWallpaper) {
9133 w.mAnimLayer += mWallpaperAnimLayerAdjustment;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009134 }
9135 if (DEBUG_LAYERS) Log.v(TAG, "Assign layer " + w + ": "
9136 + w.mAnimLayer);
9137 //System.out.println(
9138 // "Assigned layer " + curLayer + " to " + w.mClient.asBinder());
9139 }
9140 }
9141
9142 private boolean mInLayout = false;
9143 private final void performLayoutAndPlaceSurfacesLocked() {
9144 if (mInLayout) {
Dave Bortcfe65242009-04-09 14:51:04 -07009145 if (DEBUG) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009146 throw new RuntimeException("Recursive call!");
9147 }
9148 Log.w(TAG, "performLayoutAndPlaceSurfacesLocked called while in layout");
9149 return;
9150 }
9151
9152 boolean recoveringMemory = false;
9153 if (mForceRemoves != null) {
9154 recoveringMemory = true;
9155 // Wait a little it for things to settle down, and off we go.
9156 for (int i=0; i<mForceRemoves.size(); i++) {
9157 WindowState ws = mForceRemoves.get(i);
9158 Log.i(TAG, "Force removing: " + ws);
9159 removeWindowInnerLocked(ws.mSession, ws);
9160 }
9161 mForceRemoves = null;
9162 Log.w(TAG, "Due to memory failure, waiting a bit for next layout");
9163 Object tmp = new Object();
9164 synchronized (tmp) {
9165 try {
9166 tmp.wait(250);
9167 } catch (InterruptedException e) {
9168 }
9169 }
9170 }
Romain Guy06882f82009-06-10 13:36:04 -07009171
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009172 mInLayout = true;
9173 try {
9174 performLayoutAndPlaceSurfacesLockedInner(recoveringMemory);
Romain Guy06882f82009-06-10 13:36:04 -07009175
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009176 int i = mPendingRemove.size()-1;
9177 if (i >= 0) {
9178 while (i >= 0) {
9179 WindowState w = mPendingRemove.get(i);
9180 removeWindowInnerLocked(w.mSession, w);
9181 i--;
9182 }
9183 mPendingRemove.clear();
9184
9185 mInLayout = false;
9186 assignLayersLocked();
9187 mLayoutNeeded = true;
9188 performLayoutAndPlaceSurfacesLocked();
9189
9190 } else {
9191 mInLayout = false;
9192 if (mLayoutNeeded) {
9193 requestAnimationLocked(0);
9194 }
9195 }
9196 } catch (RuntimeException e) {
9197 mInLayout = false;
9198 Log.e(TAG, "Unhandled exception while layout out windows", e);
9199 }
9200 }
9201
9202 private final void performLayoutLockedInner() {
9203 final int dw = mDisplay.getWidth();
9204 final int dh = mDisplay.getHeight();
9205
9206 final int N = mWindows.size();
Dianne Hackborn958b9ad2009-03-31 18:00:36 -07009207 int repeats = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009208 int i;
9209
9210 // FIRST LOOP: Perform a layout, if needed.
Romain Guy06882f82009-06-10 13:36:04 -07009211
Dianne Hackborn958b9ad2009-03-31 18:00:36 -07009212 while (mLayoutNeeded) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009213 mPolicy.beginLayoutLw(dw, dh);
9214
9215 // First perform layout of any root windows (not attached
9216 // to another window).
9217 int topAttached = -1;
9218 for (i = N-1; i >= 0; i--) {
9219 WindowState win = (WindowState) mWindows.get(i);
Dianne Hackborn958b9ad2009-03-31 18:00:36 -07009220
9221 // Don't do layout of a window if it is not visible, or
9222 // soon won't be visible, to avoid wasting time and funky
9223 // changes while a window is animating away.
9224 final AppWindowToken atoken = win.mAppToken;
9225 final boolean gone = win.mViewVisibility == View.GONE
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009226 || !win.mRelayoutCalled
Dianne Hackborn958b9ad2009-03-31 18:00:36 -07009227 || win.mRootToken.hidden
9228 || (atoken != null && atoken.hiddenRequested)
Dianne Hackborn958b9ad2009-03-31 18:00:36 -07009229 || win.mAttachedHidden
9230 || win.mExiting || win.mDestroying;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009231
9232 // If this view is GONE, then skip it -- keep the current
9233 // frame, and let the caller know so they can ignore it
9234 // if they want. (We do the normal layout for INVISIBLE
9235 // windows, since that means "perform layout as normal,
9236 // just don't display").
9237 if (!gone || !win.mHaveFrame) {
9238 if (!win.mLayoutAttached) {
9239 mPolicy.layoutWindowLw(win, win.mAttrs, null);
9240 } else {
9241 if (topAttached < 0) topAttached = i;
9242 }
9243 }
9244 }
Romain Guy06882f82009-06-10 13:36:04 -07009245
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009246 // Now perform layout of attached windows, which usually
9247 // depend on the position of the window they are attached to.
9248 // XXX does not deal with windows that are attached to windows
9249 // that are themselves attached.
9250 for (i = topAttached; i >= 0; i--) {
9251 WindowState win = (WindowState) mWindows.get(i);
9252
9253 // If this view is GONE, then skip it -- keep the current
9254 // frame, and let the caller know so they can ignore it
9255 // if they want. (We do the normal layout for INVISIBLE
9256 // windows, since that means "perform layout as normal,
9257 // just don't display").
9258 if (win.mLayoutAttached) {
9259 if ((win.mViewVisibility != View.GONE && win.mRelayoutCalled)
9260 || !win.mHaveFrame) {
9261 mPolicy.layoutWindowLw(win, win.mAttrs, win.mAttachedWindow);
9262 }
9263 }
9264 }
9265
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07009266 int changes = mPolicy.finishLayoutLw();
9267 if ((changes&WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER) != 0) {
9268 if ((adjustWallpaperWindowsLocked()&ADJUST_WALLPAPER_LAYERS_CHANGED) != 0) {
9269 assignLayersLocked();
9270 }
9271 }
9272 if (changes == 0) {
Dianne Hackborn958b9ad2009-03-31 18:00:36 -07009273 mLayoutNeeded = false;
9274 } else if (repeats > 2) {
9275 Log.w(TAG, "Layout repeat aborted after too many iterations");
9276 mLayoutNeeded = false;
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07009277 if ((changes&WindowManagerPolicy.FINISH_LAYOUT_REDO_CONFIG) != 0) {
9278 Configuration newConfig = updateOrientationFromAppTokensLocked(
9279 null, null);
9280 if (newConfig != null) {
9281 mLayoutNeeded = true;
9282 mH.sendEmptyMessage(H.COMPUTE_AND_SEND_NEW_CONFIGURATION);
9283 }
9284 }
Dianne Hackborn958b9ad2009-03-31 18:00:36 -07009285 } else {
9286 repeats++;
Dianne Hackborn9bfb7072009-09-22 11:37:40 -07009287 if ((changes&WindowManagerPolicy.FINISH_LAYOUT_REDO_CONFIG) != 0) {
9288 Configuration newConfig = updateOrientationFromAppTokensLocked(
9289 null, null);
9290 if (newConfig != null) {
9291 mH.sendEmptyMessage(H.COMPUTE_AND_SEND_NEW_CONFIGURATION);
9292 }
9293 }
Dianne Hackborn958b9ad2009-03-31 18:00:36 -07009294 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009295 }
9296 }
Romain Guy06882f82009-06-10 13:36:04 -07009297
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009298 private final void performLayoutAndPlaceSurfacesLockedInner(
9299 boolean recoveringMemory) {
9300 final long currentTime = SystemClock.uptimeMillis();
9301 final int dw = mDisplay.getWidth();
9302 final int dh = mDisplay.getHeight();
9303
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009304 int i;
9305
9306 // FIRST LOOP: Perform a layout, if needed.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009307 performLayoutLockedInner();
Romain Guy06882f82009-06-10 13:36:04 -07009308
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009309 if (mFxSession == null) {
9310 mFxSession = new SurfaceSession();
9311 }
Romain Guy06882f82009-06-10 13:36:04 -07009312
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009313 if (SHOW_TRANSACTIONS) Log.i(TAG, ">>> OPEN TRANSACTION");
9314
9315 // Initialize state of exiting tokens.
9316 for (i=mExitingTokens.size()-1; i>=0; i--) {
9317 mExitingTokens.get(i).hasVisible = false;
9318 }
9319
9320 // Initialize state of exiting applications.
9321 for (i=mExitingAppTokens.size()-1; i>=0; i--) {
9322 mExitingAppTokens.get(i).hasVisible = false;
9323 }
9324
9325 // SECOND LOOP: Execute animations and update visibility of windows.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009326 boolean orientationChangeComplete = true;
9327 Session holdScreen = null;
9328 float screenBrightness = -1;
9329 boolean focusDisplayed = false;
9330 boolean animating = false;
9331
9332 Surface.openTransaction();
9333 try {
9334 boolean restart;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009335 boolean forceHiding = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009336
9337 do {
9338 final int transactionSequence = ++mTransactionSequence;
9339
9340 // Update animations of all applications, including those
9341 // associated with exiting/removed apps
9342 boolean tokensAnimating = false;
9343 final int NAT = mAppTokens.size();
9344 for (i=0; i<NAT; i++) {
9345 if (mAppTokens.get(i).stepAnimationLocked(currentTime, dw, dh)) {
9346 tokensAnimating = true;
9347 }
9348 }
9349 final int NEAT = mExitingAppTokens.size();
9350 for (i=0; i<NEAT; i++) {
9351 if (mExitingAppTokens.get(i).stepAnimationLocked(currentTime, dw, dh)) {
9352 tokensAnimating = true;
9353 }
9354 }
9355
9356 animating = tokensAnimating;
9357 restart = false;
9358
9359 boolean tokenMayBeDrawn = false;
Dianne Hackborn6c3f5712009-08-25 18:42:59 -07009360 boolean wallpaperMayChange = false;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009361 boolean focusMayChange = false;
9362 boolean wallpaperForceHidingChanged = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009363
9364 mPolicy.beginAnimationLw(dw, dh);
9365
Dianne Hackbornbdd52b22009-09-02 21:46:19 -07009366 final int N = mWindows.size();
9367
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009368 for (i=N-1; i>=0; i--) {
9369 WindowState w = (WindowState)mWindows.get(i);
9370
9371 final WindowManager.LayoutParams attrs = w.mAttrs;
9372
9373 if (w.mSurface != null) {
9374 // Execute animation.
Dianne Hackborn6c3f5712009-08-25 18:42:59 -07009375 if (w.commitFinishDrawingLocked(currentTime)) {
9376 if ((w.mAttrs.flags
9377 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER) != 0) {
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07009378 if (DEBUG_WALLPAPER) Log.v(TAG,
9379 "First draw done in potential wallpaper target " + w);
Dianne Hackborn6c3f5712009-08-25 18:42:59 -07009380 wallpaperMayChange = true;
9381 }
9382 }
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009383
Dianne Hackborn6136b7e2009-09-18 01:53:49 -07009384 boolean wasAnimating = w.mAnimating;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009385 if (w.stepAnimationLocked(currentTime, dw, dh)) {
9386 animating = true;
9387 //w.dump(" ");
9388 }
Dianne Hackborn6136b7e2009-09-18 01:53:49 -07009389 if (wasAnimating && !w.mAnimating && mWallpaperTarget == w) {
9390 wallpaperMayChange = true;
9391 }
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009392
9393 if (mPolicy.doesForceHide(w, attrs)) {
9394 if (!wasAnimating && animating) {
9395 wallpaperForceHidingChanged = true;
9396 focusMayChange = true;
9397 } else if (w.isReadyForDisplay() && w.mAnimation == null) {
9398 forceHiding = true;
9399 }
9400 } else if (mPolicy.canBeForceHidden(w, attrs)) {
9401 boolean changed;
9402 if (forceHiding) {
9403 changed = w.hideLw(false, false);
9404 } else {
9405 changed = w.showLw(false, false);
9406 if (changed && wallpaperForceHidingChanged
9407 && w.isReadyForDisplay()) {
9408 // Assume we will need to animate. If
9409 // we don't (because the wallpaper will
9410 // stay with the lock screen), then we will
9411 // clean up later.
9412 Animation a = mPolicy.createForceHideEnterAnimation();
9413 if (a != null) {
9414 w.setAnimation(a);
9415 }
9416 }
9417 }
9418 if (changed && (attrs.flags
9419 & WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER) != 0) {
9420 wallpaperMayChange = true;
9421 }
Christopher Tate405d0892009-10-27 20:23:28 -07009422 if (changed && !forceHiding
9423 && (mCurrentFocus == null)
9424 && (mFocusedApp != null)) {
9425 // It's possible that the last focus recalculation left no
9426 // current focused window even though the app has come to the
9427 // foreground already. In this case, we make sure to recalculate
9428 // focus when we show a window.
9429 focusMayChange = true;
9430 }
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009431 }
9432
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009433 mPolicy.animatingWindowLw(w, attrs);
9434 }
9435
9436 final AppWindowToken atoken = w.mAppToken;
9437 if (atoken != null && (!atoken.allDrawn || atoken.freezingScreen)) {
9438 if (atoken.lastTransactionSequence != transactionSequence) {
9439 atoken.lastTransactionSequence = transactionSequence;
9440 atoken.numInterestingWindows = atoken.numDrawnWindows = 0;
9441 atoken.startingDisplayed = false;
9442 }
9443 if ((w.isOnScreen() || w.mAttrs.type
9444 == WindowManager.LayoutParams.TYPE_BASE_APPLICATION)
9445 && !w.mExiting && !w.mDestroying) {
9446 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) {
Dianne Hackborn7433e8a2009-09-27 13:21:20 -07009447 Log.v(TAG, "Eval win " + w + ": isDrawn="
9448 + w.isDrawnLw()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009449 + ", isAnimating=" + w.isAnimating());
Dianne Hackborn7433e8a2009-09-27 13:21:20 -07009450 if (!w.isDrawnLw()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009451 Log.v(TAG, "Not displayed: s=" + w.mSurface
9452 + " pv=" + w.mPolicyVisibility
9453 + " dp=" + w.mDrawPending
9454 + " cdp=" + w.mCommitDrawPending
9455 + " ah=" + w.mAttachedHidden
9456 + " th=" + atoken.hiddenRequested
9457 + " a=" + w.mAnimating);
9458 }
9459 }
9460 if (w != atoken.startingWindow) {
9461 if (!atoken.freezingScreen || !w.mAppFreezing) {
9462 atoken.numInterestingWindows++;
Dianne Hackborn7433e8a2009-09-27 13:21:20 -07009463 if (w.isDrawnLw()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009464 atoken.numDrawnWindows++;
9465 if (DEBUG_VISIBILITY || DEBUG_ORIENTATION) Log.v(TAG,
9466 "tokenMayBeDrawn: " + atoken
9467 + " freezingScreen=" + atoken.freezingScreen
9468 + " mAppFreezing=" + w.mAppFreezing);
9469 tokenMayBeDrawn = true;
9470 }
9471 }
Dianne Hackborn7433e8a2009-09-27 13:21:20 -07009472 } else if (w.isDrawnLw()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009473 atoken.startingDisplayed = true;
9474 }
9475 }
9476 } else if (w.mReadyToShow) {
9477 w.performShowLocked();
9478 }
9479 }
9480
9481 if (mPolicy.finishAnimationLw()) {
9482 restart = true;
9483 }
9484
9485 if (tokenMayBeDrawn) {
9486 // See if any windows have been drawn, so they (and others
9487 // associated with them) can now be shown.
9488 final int NT = mTokenList.size();
9489 for (i=0; i<NT; i++) {
9490 AppWindowToken wtoken = mTokenList.get(i).appWindowToken;
9491 if (wtoken == null) {
9492 continue;
9493 }
9494 if (wtoken.freezingScreen) {
9495 int numInteresting = wtoken.numInterestingWindows;
9496 if (numInteresting > 0 && wtoken.numDrawnWindows >= numInteresting) {
9497 if (DEBUG_VISIBILITY) Log.v(TAG,
9498 "allDrawn: " + wtoken
9499 + " interesting=" + numInteresting
9500 + " drawn=" + wtoken.numDrawnWindows);
9501 wtoken.showAllWindowsLocked();
9502 unsetAppFreezingScreenLocked(wtoken, false, true);
9503 orientationChangeComplete = true;
9504 }
9505 } else if (!wtoken.allDrawn) {
9506 int numInteresting = wtoken.numInterestingWindows;
9507 if (numInteresting > 0 && wtoken.numDrawnWindows >= numInteresting) {
9508 if (DEBUG_VISIBILITY) Log.v(TAG,
9509 "allDrawn: " + wtoken
9510 + " interesting=" + numInteresting
9511 + " drawn=" + wtoken.numDrawnWindows);
9512 wtoken.allDrawn = true;
9513 restart = true;
9514
9515 // We can now show all of the drawn windows!
9516 if (!mOpeningApps.contains(wtoken)) {
9517 wtoken.showAllWindowsLocked();
9518 }
9519 }
9520 }
9521 }
9522 }
9523
9524 // If we are ready to perform an app transition, check through
9525 // all of the app tokens to be shown and see if they are ready
9526 // to go.
9527 if (mAppTransitionReady) {
9528 int NN = mOpeningApps.size();
9529 boolean goodToGo = true;
9530 if (DEBUG_APP_TRANSITIONS) Log.v(TAG,
9531 "Checking " + NN + " opening apps (frozen="
9532 + mDisplayFrozen + " timeout="
9533 + mAppTransitionTimeout + ")...");
9534 if (!mDisplayFrozen && !mAppTransitionTimeout) {
9535 // If the display isn't frozen, wait to do anything until
9536 // all of the apps are ready. Otherwise just go because
9537 // we'll unfreeze the display when everyone is ready.
9538 for (i=0; i<NN && goodToGo; i++) {
9539 AppWindowToken wtoken = mOpeningApps.get(i);
9540 if (DEBUG_APP_TRANSITIONS) Log.v(TAG,
9541 "Check opening app" + wtoken + ": allDrawn="
9542 + wtoken.allDrawn + " startingDisplayed="
9543 + wtoken.startingDisplayed);
9544 if (!wtoken.allDrawn && !wtoken.startingDisplayed
9545 && !wtoken.startingMoved) {
9546 goodToGo = false;
9547 }
9548 }
9549 }
9550 if (goodToGo) {
9551 if (DEBUG_APP_TRANSITIONS) Log.v(TAG, "**** GOOD TO GO");
9552 int transit = mNextAppTransition;
9553 if (mSkipAppTransitionAnimation) {
Dianne Hackbornbfe319e2009-09-21 00:34:05 -07009554 transit = WindowManagerPolicy.TRANSIT_UNSET;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009555 }
Dianne Hackbornbfe319e2009-09-21 00:34:05 -07009556 mNextAppTransition = WindowManagerPolicy.TRANSIT_UNSET;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009557 mAppTransitionReady = false;
Dianne Hackborna8f60182009-09-01 19:01:50 -07009558 mAppTransitionRunning = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009559 mAppTransitionTimeout = false;
9560 mStartingIconInTransition = false;
9561 mSkipAppTransitionAnimation = false;
9562
9563 mH.removeMessages(H.APP_TRANSITION_TIMEOUT);
9564
Dianne Hackborna8f60182009-09-01 19:01:50 -07009565 // If there are applications waiting to come to the
9566 // top of the stack, now is the time to move their windows.
9567 // (Note that we don't do apps going to the bottom
9568 // here -- we want to keep their windows in the old
9569 // Z-order until the animation completes.)
9570 if (mToTopApps.size() > 0) {
9571 NN = mAppTokens.size();
9572 for (i=0; i<NN; i++) {
9573 AppWindowToken wtoken = mAppTokens.get(i);
9574 if (wtoken.sendingToTop) {
9575 wtoken.sendingToTop = false;
9576 moveAppWindowsLocked(wtoken, NN, false);
9577 }
9578 }
9579 mToTopApps.clear();
9580 }
9581
Dianne Hackborn25994b42009-09-04 14:21:19 -07009582 WindowState oldWallpaper = mWallpaperTarget;
9583
Dianne Hackborn3be63c02009-08-20 19:31:38 -07009584 adjustWallpaperWindowsLocked();
Dianne Hackborn6c3f5712009-08-25 18:42:59 -07009585 wallpaperMayChange = false;
9586
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -07009587 // The top-most window will supply the layout params,
9588 // and we will determine it below.
9589 LayoutParams animLp = null;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009590 AppWindowToken animToken = null;
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -07009591 int bestAnimLayer = -1;
9592
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07009593 if (DEBUG_APP_TRANSITIONS) Log.v(TAG,
Dianne Hackborn3be63c02009-08-20 19:31:38 -07009594 "New wallpaper target=" + mWallpaperTarget
9595 + ", lower target=" + mLowerWallpaperTarget
9596 + ", upper target=" + mUpperWallpaperTarget);
Dianne Hackborn25994b42009-09-04 14:21:19 -07009597 int foundWallpapers = 0;
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -07009598 // Do a first pass through the tokens for two
9599 // things:
9600 // (1) Determine if both the closing and opening
9601 // app token sets are wallpaper targets, in which
9602 // case special animations are needed
9603 // (since the wallpaper needs to stay static
9604 // behind them).
9605 // (2) Find the layout params of the top-most
9606 // application window in the tokens, which is
9607 // what will control the animation theme.
9608 final int NC = mClosingApps.size();
9609 NN = NC + mOpeningApps.size();
9610 for (i=0; i<NN; i++) {
9611 AppWindowToken wtoken;
9612 int mode;
9613 if (i < NC) {
9614 wtoken = mClosingApps.get(i);
9615 mode = 1;
9616 } else {
9617 wtoken = mOpeningApps.get(i-NC);
9618 mode = 2;
9619 }
9620 if (mLowerWallpaperTarget != null) {
9621 if (mLowerWallpaperTarget.mAppToken == wtoken
9622 || mUpperWallpaperTarget.mAppToken == wtoken) {
9623 foundWallpapers |= mode;
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07009624 }
9625 }
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -07009626 if (wtoken.appFullscreen) {
9627 WindowState ws = wtoken.findMainWindow();
9628 if (ws != null) {
9629 // If this is a compatibility mode
9630 // window, we will always use its anim.
9631 if ((ws.mAttrs.flags&FLAG_COMPATIBLE_WINDOW) != 0) {
9632 animLp = ws.mAttrs;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009633 animToken = ws.mAppToken;
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -07009634 bestAnimLayer = Integer.MAX_VALUE;
9635 } else if (ws.mLayer > bestAnimLayer) {
9636 animLp = ws.mAttrs;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009637 animToken = ws.mAppToken;
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -07009638 bestAnimLayer = ws.mLayer;
9639 }
Dianne Hackborn25994b42009-09-04 14:21:19 -07009640 }
Dianne Hackbornf8fbdb62009-08-19 12:39:43 -07009641 }
9642 }
9643
Dianne Hackborn25994b42009-09-04 14:21:19 -07009644 if (foundWallpapers == 3) {
9645 if (DEBUG_APP_TRANSITIONS) Log.v(TAG,
9646 "Wallpaper animation!");
9647 switch (transit) {
9648 case WindowManagerPolicy.TRANSIT_ACTIVITY_OPEN:
9649 case WindowManagerPolicy.TRANSIT_TASK_OPEN:
9650 case WindowManagerPolicy.TRANSIT_TASK_TO_FRONT:
9651 transit = WindowManagerPolicy.TRANSIT_WALLPAPER_INTRA_OPEN;
9652 break;
9653 case WindowManagerPolicy.TRANSIT_ACTIVITY_CLOSE:
9654 case WindowManagerPolicy.TRANSIT_TASK_CLOSE:
9655 case WindowManagerPolicy.TRANSIT_TASK_TO_BACK:
9656 transit = WindowManagerPolicy.TRANSIT_WALLPAPER_INTRA_CLOSE;
9657 break;
9658 }
9659 if (DEBUG_APP_TRANSITIONS) Log.v(TAG,
9660 "New transit: " + transit);
9661 } else if (oldWallpaper != null) {
9662 // We are transitioning from an activity with
9663 // a wallpaper to one without.
9664 transit = WindowManagerPolicy.TRANSIT_WALLPAPER_CLOSE;
9665 if (DEBUG_APP_TRANSITIONS) Log.v(TAG,
9666 "New transit away from wallpaper: " + transit);
9667 } else if (mWallpaperTarget != null) {
9668 // We are transitioning from an activity without
9669 // a wallpaper to now showing the wallpaper
9670 transit = WindowManagerPolicy.TRANSIT_WALLPAPER_OPEN;
9671 if (DEBUG_APP_TRANSITIONS) Log.v(TAG,
9672 "New transit into wallpaper: " + transit);
9673 }
9674
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009675 if ((transit&WindowManagerPolicy.TRANSIT_ENTER_MASK) != 0) {
9676 mLastEnterAnimToken = animToken;
9677 mLastEnterAnimParams = animLp;
9678 } else if (mLastEnterAnimParams != null) {
9679 animLp = mLastEnterAnimParams;
9680 mLastEnterAnimToken = null;
9681 mLastEnterAnimParams = null;
9682 }
9683
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009684 NN = mOpeningApps.size();
9685 for (i=0; i<NN; i++) {
9686 AppWindowToken wtoken = mOpeningApps.get(i);
9687 if (DEBUG_APP_TRANSITIONS) Log.v(TAG,
9688 "Now opening app" + wtoken);
9689 wtoken.reportedVisible = false;
9690 wtoken.inPendingTransaction = false;
Dianne Hackborn83360b32009-08-24 18:43:32 -07009691 wtoken.animation = null;
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -07009692 setTokenVisibilityLocked(wtoken, animLp, true, transit, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009693 wtoken.updateReportedVisibilityLocked();
Dianne Hackborna8f60182009-09-01 19:01:50 -07009694 wtoken.waitingToShow = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009695 wtoken.showAllWindowsLocked();
9696 }
9697 NN = mClosingApps.size();
9698 for (i=0; i<NN; i++) {
9699 AppWindowToken wtoken = mClosingApps.get(i);
9700 if (DEBUG_APP_TRANSITIONS) Log.v(TAG,
9701 "Now closing app" + wtoken);
9702 wtoken.inPendingTransaction = false;
Dianne Hackborn83360b32009-08-24 18:43:32 -07009703 wtoken.animation = null;
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -07009704 setTokenVisibilityLocked(wtoken, animLp, false, transit, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009705 wtoken.updateReportedVisibilityLocked();
Dianne Hackborna8f60182009-09-01 19:01:50 -07009706 wtoken.waitingToHide = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009707 // Force the allDrawn flag, because we want to start
9708 // this guy's animations regardless of whether it's
9709 // gotten drawn.
9710 wtoken.allDrawn = true;
9711 }
9712
Dianne Hackborn8b571a82009-09-25 16:09:43 -07009713 mNextAppTransitionPackage = null;
9714
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009715 mOpeningApps.clear();
9716 mClosingApps.clear();
9717
9718 // This has changed the visibility of windows, so perform
9719 // a new layout to get them all up-to-date.
9720 mLayoutNeeded = true;
Dianne Hackborn20583ff2009-07-27 21:51:05 -07009721 if (!moveInputMethodWindowsIfNeededLocked(true)) {
9722 assignLayersLocked();
9723 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009724 performLayoutLockedInner();
9725 updateFocusedWindowLocked(UPDATE_FOCUS_PLACING_SURFACES);
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009726 focusMayChange = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009727
9728 restart = true;
9729 }
9730 }
Dianne Hackborn6c3f5712009-08-25 18:42:59 -07009731
Dianne Hackborna8f60182009-09-01 19:01:50 -07009732 if (!animating && mAppTransitionRunning) {
9733 // We have finished the animation of an app transition. To do
9734 // this, we have delayed a lot of operations like showing and
9735 // hiding apps, moving apps in Z-order, etc. The app token list
9736 // reflects the correct Z-order, but the window list may now
9737 // be out of sync with it. So here we will just rebuild the
9738 // entire app window list. Fun!
9739 mAppTransitionRunning = false;
9740 // Clear information about apps that were moving.
9741 mToBottomApps.clear();
9742
9743 rebuildAppWindowListLocked();
9744 restart = true;
9745 moveInputMethodWindowsIfNeededLocked(false);
9746 wallpaperMayChange = true;
9747 mLayoutNeeded = true;
Suchi Amalapurapuc9568e32009-11-05 18:51:16 -08009748 // Since the window list has been rebuilt, focus might
9749 // have to be recomputed since the actual order of windows
9750 // might have changed again.
9751 focusMayChange = true;
Dianne Hackborna8f60182009-09-01 19:01:50 -07009752 }
9753
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009754 int adjResult = 0;
9755
9756 if (wallpaperForceHidingChanged) {
9757 // At this point, there was a window with a wallpaper that
9758 // was force hiding other windows behind it, but now it
9759 // is going away. This may be simple -- just animate
9760 // away the wallpaper and its window -- or it may be
9761 // hard -- the wallpaper now needs to be shown behind
9762 // something that was hidden.
9763 WindowState oldWallpaper = mWallpaperTarget;
9764 adjResult = adjustWallpaperWindowsLocked();
9765 wallpaperMayChange = false;
9766 if (false) Log.v(TAG, "****** OLD: " + oldWallpaper
9767 + " NEW: " + mWallpaperTarget);
9768 if (mLowerWallpaperTarget == null) {
9769 // Whoops, we don't need a special wallpaper animation.
9770 // Clear them out.
9771 forceHiding = false;
9772 for (i=N-1; i>=0; i--) {
9773 WindowState w = (WindowState)mWindows.get(i);
9774 if (w.mSurface != null) {
9775 final WindowManager.LayoutParams attrs = w.mAttrs;
Suchi Amalapurapuc03d28b2009-10-28 14:32:05 -07009776 if (mPolicy.doesForceHide(w, attrs) && w.isVisibleLw()) {
9777 if (DEBUG_FOCUS) Log.i(TAG, "win=" + w + " force hides other windows");
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009778 forceHiding = true;
9779 } else if (mPolicy.canBeForceHidden(w, attrs)) {
9780 if (!w.mAnimating) {
9781 // We set the animation above so it
9782 // is not yet running.
9783 w.clearAnimation();
9784 }
9785 }
9786 }
9787 }
9788 }
9789 }
9790
Dianne Hackborn6c3f5712009-08-25 18:42:59 -07009791 if (wallpaperMayChange) {
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07009792 if (DEBUG_WALLPAPER) Log.v(TAG,
9793 "Wallpaper may change! Adjusting");
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009794 adjResult = adjustWallpaperWindowsLocked();
9795 }
9796
9797 if ((adjResult&ADJUST_WALLPAPER_LAYERS_CHANGED) != 0) {
9798 if (DEBUG_WALLPAPER) Log.v(TAG,
9799 "Wallpaper layer changed: assigning layers + relayout");
9800 restart = true;
9801 mLayoutNeeded = true;
9802 assignLayersLocked();
9803 } else if ((adjResult&ADJUST_WALLPAPER_VISIBILITY_CHANGED) != 0) {
9804 if (DEBUG_WALLPAPER) Log.v(TAG,
9805 "Wallpaper visibility changed: relayout");
9806 restart = true;
9807 mLayoutNeeded = true;
9808 }
9809
9810 if (focusMayChange) {
9811 if (updateFocusedWindowLocked(UPDATE_FOCUS_PLACING_SURFACES)) {
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07009812 restart = true;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009813 adjResult = 0;
Dianne Hackborn6c3f5712009-08-25 18:42:59 -07009814 }
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009815 }
9816
9817 if (mLayoutNeeded) {
9818 restart = true;
9819 performLayoutLockedInner();
Dianne Hackborn6c3f5712009-08-25 18:42:59 -07009820 }
9821
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009822 } while (restart);
9823
9824 // THIRD LOOP: Update the surfaces of all windows.
9825
9826 final boolean someoneLosingFocus = mLosingFocus.size() != 0;
9827
9828 boolean obscured = false;
9829 boolean blurring = false;
9830 boolean dimming = false;
9831 boolean covered = false;
Dianne Hackborn9ed4a4b2009-03-25 17:10:37 -07009832 boolean syswin = false;
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -07009833 boolean backgroundFillerShown = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009834
Dianne Hackbornbdd52b22009-09-02 21:46:19 -07009835 final int N = mWindows.size();
9836
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009837 for (i=N-1; i>=0; i--) {
9838 WindowState w = (WindowState)mWindows.get(i);
9839
9840 boolean displayed = false;
9841 final WindowManager.LayoutParams attrs = w.mAttrs;
9842 final int attrFlags = attrs.flags;
9843
9844 if (w.mSurface != null) {
9845 w.computeShownFrameLocked();
9846 if (localLOGV) Log.v(
9847 TAG, "Placing surface #" + i + " " + w.mSurface
9848 + ": new=" + w.mShownFrame + ", old="
9849 + w.mLastShownFrame);
9850
9851 boolean resize;
9852 int width, height;
9853 if ((w.mAttrs.flags & w.mAttrs.FLAG_SCALED) != 0) {
9854 resize = w.mLastRequestedWidth != w.mRequestedWidth ||
9855 w.mLastRequestedHeight != w.mRequestedHeight;
9856 // for a scaled surface, we just want to use
9857 // the requested size.
9858 width = w.mRequestedWidth;
9859 height = w.mRequestedHeight;
9860 w.mLastRequestedWidth = width;
9861 w.mLastRequestedHeight = height;
9862 w.mLastShownFrame.set(w.mShownFrame);
9863 try {
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07009864 if (SHOW_TRANSACTIONS) Log.i(
9865 TAG, " SURFACE " + w.mSurface
9866 + ": POS " + w.mShownFrame.left
9867 + ", " + w.mShownFrame.top);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009868 w.mSurface.setPosition(w.mShownFrame.left, w.mShownFrame.top);
9869 } catch (RuntimeException e) {
9870 Log.w(TAG, "Error positioning surface in " + w, e);
9871 if (!recoveringMemory) {
9872 reclaimSomeSurfaceMemoryLocked(w, "position");
9873 }
9874 }
9875 } else {
9876 resize = !w.mLastShownFrame.equals(w.mShownFrame);
9877 width = w.mShownFrame.width();
9878 height = w.mShownFrame.height();
9879 w.mLastShownFrame.set(w.mShownFrame);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009880 }
9881
9882 if (resize) {
9883 if (width < 1) width = 1;
9884 if (height < 1) height = 1;
9885 if (w.mSurface != null) {
9886 try {
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07009887 if (SHOW_TRANSACTIONS) Log.i(
9888 TAG, " SURFACE " + w.mSurface + ": POS "
9889 + w.mShownFrame.left + ","
9890 + w.mShownFrame.top + " SIZE "
9891 + w.mShownFrame.width() + "x"
9892 + w.mShownFrame.height());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009893 w.mSurface.setSize(width, height);
9894 w.mSurface.setPosition(w.mShownFrame.left,
9895 w.mShownFrame.top);
9896 } catch (RuntimeException e) {
9897 // If something goes wrong with the surface (such
9898 // as running out of memory), don't take down the
9899 // entire system.
9900 Log.e(TAG, "Failure updating surface of " + w
9901 + "size=(" + width + "x" + height
9902 + "), pos=(" + w.mShownFrame.left
9903 + "," + w.mShownFrame.top + ")", e);
9904 if (!recoveringMemory) {
9905 reclaimSomeSurfaceMemoryLocked(w, "size");
9906 }
9907 }
9908 }
9909 }
9910 if (!w.mAppFreezing) {
9911 w.mContentInsetsChanged =
9912 !w.mLastContentInsets.equals(w.mContentInsets);
9913 w.mVisibleInsetsChanged =
9914 !w.mLastVisibleInsets.equals(w.mVisibleInsets);
Romain Guy06882f82009-06-10 13:36:04 -07009915 if (!w.mLastFrame.equals(w.mFrame)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009916 || w.mContentInsetsChanged
9917 || w.mVisibleInsetsChanged) {
9918 w.mLastFrame.set(w.mFrame);
9919 w.mLastContentInsets.set(w.mContentInsets);
9920 w.mLastVisibleInsets.set(w.mVisibleInsets);
Dianne Hackborn0586a1b2009-09-06 21:08:27 -07009921 // If the screen is currently frozen, then keep
9922 // it frozen until this window draws at its new
9923 // orientation.
9924 if (mDisplayFrozen) {
9925 if (DEBUG_ORIENTATION) Log.v(TAG,
9926 "Resizing while display frozen: " + w);
9927 w.mOrientationChanging = true;
9928 if (mWindowsFreezingScreen) {
9929 mWindowsFreezingScreen = true;
9930 // XXX should probably keep timeout from
9931 // when we first froze the display.
9932 mH.removeMessages(H.WINDOW_FREEZE_TIMEOUT);
9933 mH.sendMessageDelayed(mH.obtainMessage(
9934 H.WINDOW_FREEZE_TIMEOUT), 2000);
9935 }
9936 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009937 // If the orientation is changing, then we need to
9938 // hold off on unfreezing the display until this
9939 // window has been redrawn; to do that, we need
9940 // to go through the process of getting informed
9941 // by the application when it has finished drawing.
9942 if (w.mOrientationChanging) {
9943 if (DEBUG_ORIENTATION) Log.v(TAG,
9944 "Orientation start waiting for draw in "
9945 + w + ", surface " + w.mSurface);
9946 w.mDrawPending = true;
9947 w.mCommitDrawPending = false;
9948 w.mReadyToShow = false;
9949 if (w.mAppToken != null) {
9950 w.mAppToken.allDrawn = false;
9951 }
9952 }
Romain Guy06882f82009-06-10 13:36:04 -07009953 if (DEBUG_ORIENTATION) Log.v(TAG,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009954 "Resizing window " + w + " to " + w.mFrame);
9955 mResizingWindows.add(w);
9956 } else if (w.mOrientationChanging) {
9957 if (!w.mDrawPending && !w.mCommitDrawPending) {
9958 if (DEBUG_ORIENTATION) Log.v(TAG,
9959 "Orientation not waiting for draw in "
9960 + w + ", surface " + w.mSurface);
9961 w.mOrientationChanging = false;
9962 }
9963 }
9964 }
9965
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009966 if (w.mAttachedHidden || !w.isReadyForDisplay()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009967 if (!w.mLastHidden) {
9968 //dump();
9969 w.mLastHidden = true;
9970 if (SHOW_TRANSACTIONS) Log.i(
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07009971 TAG, " SURFACE " + w.mSurface + ": HIDE (performLayout)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009972 if (w.mSurface != null) {
9973 try {
9974 w.mSurface.hide();
9975 } catch (RuntimeException e) {
9976 Log.w(TAG, "Exception hiding surface in " + w);
9977 }
9978 }
9979 mKeyWaiter.releasePendingPointerLocked(w.mSession);
9980 }
9981 // If we are waiting for this window to handle an
9982 // orientation change, well, it is hidden, so
9983 // doesn't really matter. Note that this does
9984 // introduce a potential glitch if the window
9985 // becomes unhidden before it has drawn for the
9986 // new orientation.
9987 if (w.mOrientationChanging) {
9988 w.mOrientationChanging = false;
9989 if (DEBUG_ORIENTATION) Log.v(TAG,
9990 "Orientation change skips hidden " + w);
9991 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009992 } else if (w.mLastLayer != w.mAnimLayer
9993 || w.mLastAlpha != w.mShownAlpha
9994 || w.mLastDsDx != w.mDsDx
9995 || w.mLastDtDx != w.mDtDx
9996 || w.mLastDsDy != w.mDsDy
9997 || w.mLastDtDy != w.mDtDy
9998 || w.mLastHScale != w.mHScale
9999 || w.mLastVScale != w.mVScale
10000 || w.mLastHidden) {
10001 displayed = true;
10002 w.mLastAlpha = w.mShownAlpha;
10003 w.mLastLayer = w.mAnimLayer;
10004 w.mLastDsDx = w.mDsDx;
10005 w.mLastDtDx = w.mDtDx;
10006 w.mLastDsDy = w.mDsDy;
10007 w.mLastDtDy = w.mDtDy;
10008 w.mLastHScale = w.mHScale;
10009 w.mLastVScale = w.mVScale;
10010 if (SHOW_TRANSACTIONS) Log.i(
10011 TAG, " SURFACE " + w.mSurface + ": alpha="
Dianne Hackborn0586a1b2009-09-06 21:08:27 -070010012 + w.mShownAlpha + " layer=" + w.mAnimLayer
10013 + " matrix=[" + (w.mDsDx*w.mHScale)
10014 + "," + (w.mDtDx*w.mVScale)
10015 + "][" + (w.mDsDy*w.mHScale)
10016 + "," + (w.mDtDy*w.mVScale) + "]");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010017 if (w.mSurface != null) {
10018 try {
10019 w.mSurface.setAlpha(w.mShownAlpha);
10020 w.mSurface.setLayer(w.mAnimLayer);
10021 w.mSurface.setMatrix(
10022 w.mDsDx*w.mHScale, w.mDtDx*w.mVScale,
10023 w.mDsDy*w.mHScale, w.mDtDy*w.mVScale);
10024 } catch (RuntimeException e) {
10025 Log.w(TAG, "Error updating surface in " + w, e);
10026 if (!recoveringMemory) {
10027 reclaimSomeSurfaceMemoryLocked(w, "update");
10028 }
10029 }
10030 }
10031
10032 if (w.mLastHidden && !w.mDrawPending
10033 && !w.mCommitDrawPending
10034 && !w.mReadyToShow) {
10035 if (SHOW_TRANSACTIONS) Log.i(
10036 TAG, " SURFACE " + w.mSurface + ": SHOW (performLayout)");
10037 if (DEBUG_VISIBILITY) Log.v(TAG, "Showing " + w
10038 + " during relayout");
10039 if (showSurfaceRobustlyLocked(w)) {
10040 w.mHasDrawn = true;
10041 w.mLastHidden = false;
10042 } else {
10043 w.mOrientationChanging = false;
10044 }
10045 }
10046 if (w.mSurface != null) {
10047 w.mToken.hasVisible = true;
10048 }
10049 } else {
10050 displayed = true;
10051 }
10052
10053 if (displayed) {
10054 if (!covered) {
10055 if (attrs.width == LayoutParams.FILL_PARENT
10056 && attrs.height == LayoutParams.FILL_PARENT) {
10057 covered = true;
10058 }
10059 }
10060 if (w.mOrientationChanging) {
10061 if (w.mDrawPending || w.mCommitDrawPending) {
10062 orientationChangeComplete = false;
10063 if (DEBUG_ORIENTATION) Log.v(TAG,
10064 "Orientation continue waiting for draw in " + w);
10065 } else {
10066 w.mOrientationChanging = false;
10067 if (DEBUG_ORIENTATION) Log.v(TAG,
10068 "Orientation change complete in " + w);
10069 }
10070 }
10071 w.mToken.hasVisible = true;
10072 }
10073 } else if (w.mOrientationChanging) {
10074 if (DEBUG_ORIENTATION) Log.v(TAG,
10075 "Orientation change skips hidden " + w);
10076 w.mOrientationChanging = false;
10077 }
10078
10079 final boolean canBeSeen = w.isDisplayedLw();
10080
10081 if (someoneLosingFocus && w == mCurrentFocus && canBeSeen) {
10082 focusDisplayed = true;
10083 }
10084
Dianne Hackborne9e9bca2009-08-18 15:08:22 -070010085 final boolean obscuredChanged = w.mObscured != obscured;
10086
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010087 // Update effect.
Dianne Hackborn7341d7a2009-08-14 11:37:52 -070010088 if (!(w.mObscured=obscured)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010089 if (w.mSurface != null) {
10090 if ((attrFlags&FLAG_KEEP_SCREEN_ON) != 0) {
10091 holdScreen = w.mSession;
10092 }
Dianne Hackborn9ed4a4b2009-03-25 17:10:37 -070010093 if (!syswin && w.mAttrs.screenBrightness >= 0
10094 && screenBrightness < 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010095 screenBrightness = w.mAttrs.screenBrightness;
10096 }
Dianne Hackborn9ed4a4b2009-03-25 17:10:37 -070010097 if (attrs.type == WindowManager.LayoutParams.TYPE_SYSTEM_DIALOG
10098 || attrs.type == WindowManager.LayoutParams.TYPE_KEYGUARD
10099 || attrs.type == WindowManager.LayoutParams.TYPE_SYSTEM_ERROR) {
10100 syswin = true;
10101 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010102 }
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -070010103
Dianne Hackborn25994b42009-09-04 14:21:19 -070010104 boolean opaqueDrawn = canBeSeen && w.isOpaqueDrawn();
10105 if (opaqueDrawn && w.isFullscreen(dw, dh)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010106 // This window completely covers everything behind it,
10107 // so we want to leave all of them as unblurred (for
10108 // performance reasons).
10109 obscured = true;
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -070010110 } else if (opaqueDrawn && w.needsBackgroundFiller(dw, dh)) {
10111 if (SHOW_TRANSACTIONS) Log.d(TAG, "showing background filler");
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -070010112 // This window is in compatibility mode, and needs background filler.
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -070010113 obscured = true;
10114 if (mBackgroundFillerSurface == null) {
10115 try {
10116 mBackgroundFillerSurface = new Surface(mFxSession, 0,
10117 0, dw, dh,
10118 PixelFormat.OPAQUE,
10119 Surface.FX_SURFACE_NORMAL);
10120 } catch (Exception e) {
10121 Log.e(TAG, "Exception creating filler surface", e);
10122 }
10123 }
10124 try {
10125 mBackgroundFillerSurface.setPosition(0, 0);
10126 mBackgroundFillerSurface.setSize(dw, dh);
10127 // Using the same layer as Dim because they will never be shown at the
10128 // same time.
10129 mBackgroundFillerSurface.setLayer(w.mAnimLayer - 1);
10130 mBackgroundFillerSurface.show();
10131 } catch (RuntimeException e) {
10132 Log.e(TAG, "Exception showing filler surface");
10133 }
10134 backgroundFillerShown = true;
10135 mBackgroundFillerShown = true;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -070010136 } else if (canBeSeen && !obscured &&
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010137 (attrFlags&FLAG_BLUR_BEHIND|FLAG_DIM_BEHIND) != 0) {
10138 if (localLOGV) Log.v(TAG, "Win " + w
10139 + ": blurring=" + blurring
10140 + " obscured=" + obscured
10141 + " displayed=" + displayed);
10142 if ((attrFlags&FLAG_DIM_BEHIND) != 0) {
10143 if (!dimming) {
10144 //Log.i(TAG, "DIM BEHIND: " + w);
10145 dimming = true;
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -070010146 if (mDimAnimator == null) {
10147 mDimAnimator = new DimAnimator(mFxSession);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010148 }
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -070010149 mDimAnimator.show(dw, dh);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010150 }
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -070010151 mDimAnimator.updateParameters(w, currentTime);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010152 }
10153 if ((attrFlags&FLAG_BLUR_BEHIND) != 0) {
10154 if (!blurring) {
10155 //Log.i(TAG, "BLUR BEHIND: " + w);
10156 blurring = true;
10157 mBlurShown = true;
10158 if (mBlurSurface == null) {
10159 if (SHOW_TRANSACTIONS) Log.i(TAG, " BLUR "
10160 + mBlurSurface + ": CREATE");
10161 try {
Romain Guy06882f82009-06-10 13:36:04 -070010162 mBlurSurface = new Surface(mFxSession, 0,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010163 -1, 16, 16,
10164 PixelFormat.OPAQUE,
10165 Surface.FX_SURFACE_BLUR);
10166 } catch (Exception e) {
10167 Log.e(TAG, "Exception creating Blur surface", e);
10168 }
10169 }
10170 if (SHOW_TRANSACTIONS) Log.i(TAG, " BLUR "
10171 + mBlurSurface + ": SHOW pos=(0,0) (" +
10172 dw + "x" + dh + "), layer=" + (w.mAnimLayer-1));
10173 if (mBlurSurface != null) {
10174 mBlurSurface.setPosition(0, 0);
10175 mBlurSurface.setSize(dw, dh);
10176 try {
10177 mBlurSurface.show();
10178 } catch (RuntimeException e) {
10179 Log.w(TAG, "Failure showing blur surface", e);
10180 }
10181 }
10182 }
10183 mBlurSurface.setLayer(w.mAnimLayer-2);
10184 }
10185 }
10186 }
Dianne Hackborne9e9bca2009-08-18 15:08:22 -070010187
10188 if (obscuredChanged && mWallpaperTarget == w) {
10189 // This is the wallpaper target and its obscured state
10190 // changed... make sure the current wallaper's visibility
10191 // has been updated accordingly.
10192 updateWallpaperVisibilityLocked();
10193 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010194 }
Mitsuru Oshima1ecf5d22009-07-06 17:20:38 -070010195
10196 if (backgroundFillerShown == false && mBackgroundFillerShown) {
10197 mBackgroundFillerShown = false;
10198 if (SHOW_TRANSACTIONS) Log.d(TAG, "hiding background filler");
10199 try {
10200 mBackgroundFillerSurface.hide();
10201 } catch (RuntimeException e) {
10202 Log.e(TAG, "Exception hiding filler surface", e);
10203 }
10204 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010205
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -070010206 if (mDimAnimator != null && mDimAnimator.mDimShown) {
10207 animating |= mDimAnimator.updateSurface(dimming, currentTime, mDisplayFrozen);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010208 }
Romain Guy06882f82009-06-10 13:36:04 -070010209
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010210 if (!blurring && mBlurShown) {
10211 if (SHOW_TRANSACTIONS) Log.i(TAG, " BLUR " + mBlurSurface
10212 + ": HIDE");
10213 try {
10214 mBlurSurface.hide();
10215 } catch (IllegalArgumentException e) {
10216 Log.w(TAG, "Illegal argument exception hiding blur surface");
10217 }
10218 mBlurShown = false;
10219 }
10220
10221 if (SHOW_TRANSACTIONS) Log.i(TAG, "<<< CLOSE TRANSACTION");
10222 } catch (RuntimeException e) {
10223 Log.e(TAG, "Unhandled exception in Window Manager", e);
10224 }
10225
10226 Surface.closeTransaction();
Romain Guy06882f82009-06-10 13:36:04 -070010227
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010228 if (DEBUG_ORIENTATION && mDisplayFrozen) Log.v(TAG,
10229 "With display frozen, orientationChangeComplete="
10230 + orientationChangeComplete);
10231 if (orientationChangeComplete) {
10232 if (mWindowsFreezingScreen) {
10233 mWindowsFreezingScreen = false;
10234 mH.removeMessages(H.WINDOW_FREEZE_TIMEOUT);
10235 }
10236 if (mAppsFreezingScreen == 0) {
10237 stopFreezingDisplayLocked();
10238 }
10239 }
Romain Guy06882f82009-06-10 13:36:04 -070010240
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010241 i = mResizingWindows.size();
10242 if (i > 0) {
10243 do {
10244 i--;
10245 WindowState win = mResizingWindows.get(i);
10246 try {
Dianne Hackborn0586a1b2009-09-06 21:08:27 -070010247 if (DEBUG_ORIENTATION) Log.v(TAG, "Reporting new frame to "
10248 + win + ": " + win.mFrame);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010249 win.mClient.resized(win.mFrame.width(),
10250 win.mFrame.height(), win.mLastContentInsets,
10251 win.mLastVisibleInsets, win.mDrawPending);
10252 win.mContentInsetsChanged = false;
10253 win.mVisibleInsetsChanged = false;
10254 } catch (RemoteException e) {
10255 win.mOrientationChanging = false;
10256 }
10257 } while (i > 0);
10258 mResizingWindows.clear();
10259 }
Romain Guy06882f82009-06-10 13:36:04 -070010260
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010261 // Destroy the surface of any windows that are no longer visible.
Dianne Hackborn7341d7a2009-08-14 11:37:52 -070010262 boolean wallpaperDestroyed = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010263 i = mDestroySurface.size();
10264 if (i > 0) {
10265 do {
10266 i--;
10267 WindowState win = mDestroySurface.get(i);
10268 win.mDestroying = false;
10269 if (mInputMethodWindow == win) {
10270 mInputMethodWindow = null;
10271 }
Dianne Hackborn7341d7a2009-08-14 11:37:52 -070010272 if (win == mWallpaperTarget) {
10273 wallpaperDestroyed = true;
10274 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010275 win.destroySurfaceLocked();
10276 } while (i > 0);
10277 mDestroySurface.clear();
10278 }
10279
10280 // Time to remove any exiting tokens?
10281 for (i=mExitingTokens.size()-1; i>=0; i--) {
10282 WindowToken token = mExitingTokens.get(i);
10283 if (!token.hasVisible) {
10284 mExitingTokens.remove(i);
Dianne Hackborn4c62fc02009-08-08 20:40:27 -070010285 if (token.windowType == TYPE_WALLPAPER) {
10286 mWallpaperTokens.remove(token);
10287 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010288 }
10289 }
10290
10291 // Time to remove any exiting applications?
10292 for (i=mExitingAppTokens.size()-1; i>=0; i--) {
10293 AppWindowToken token = mExitingAppTokens.get(i);
10294 if (!token.hasVisible && !mClosingApps.contains(token)) {
Dianne Hackborn9bfb7072009-09-22 11:37:40 -070010295 // Make sure there is no animation running on this token,
10296 // so any windows associated with it will be removed as
10297 // soon as their animations are complete
10298 token.animation = null;
10299 token.animating = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010300 mAppTokens.remove(token);
10301 mExitingAppTokens.remove(i);
Dianne Hackborn3b3e1452009-09-24 19:22:12 -070010302 if (mLastEnterAnimToken == token) {
10303 mLastEnterAnimToken = null;
10304 mLastEnterAnimParams = null;
10305 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010306 }
10307 }
10308
Dianne Hackborna8f60182009-09-01 19:01:50 -070010309 boolean needRelayout = false;
10310
10311 if (!animating && mAppTransitionRunning) {
10312 // We have finished the animation of an app transition. To do
10313 // this, we have delayed a lot of operations like showing and
10314 // hiding apps, moving apps in Z-order, etc. The app token list
10315 // reflects the correct Z-order, but the window list may now
10316 // be out of sync with it. So here we will just rebuild the
10317 // entire app window list. Fun!
10318 mAppTransitionRunning = false;
10319 needRelayout = true;
10320 rebuildAppWindowListLocked();
10321 // Clear information about apps that were moving.
10322 mToBottomApps.clear();
10323 }
10324
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010325 if (focusDisplayed) {
10326 mH.sendEmptyMessage(H.REPORT_LOSING_FOCUS);
10327 }
Dianne Hackborn7341d7a2009-08-14 11:37:52 -070010328 if (wallpaperDestroyed) {
Dianne Hackborn0586a1b2009-09-06 21:08:27 -070010329 needRelayout = adjustWallpaperWindowsLocked() != 0;
Dianne Hackborn7341d7a2009-08-14 11:37:52 -070010330 }
Dianne Hackborna8f60182009-09-01 19:01:50 -070010331 if (needRelayout) {
Dianne Hackborn7341d7a2009-08-14 11:37:52 -070010332 requestAnimationLocked(0);
10333 } else if (animating) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010334 requestAnimationLocked(currentTime+(1000/60)-SystemClock.uptimeMillis());
10335 }
10336 mQueue.setHoldScreenLocked(holdScreen != null);
10337 if (screenBrightness < 0 || screenBrightness > 1.0f) {
10338 mPowerManager.setScreenBrightnessOverride(-1);
10339 } else {
10340 mPowerManager.setScreenBrightnessOverride((int)
10341 (screenBrightness * Power.BRIGHTNESS_ON));
10342 }
10343 if (holdScreen != mHoldingScreenOn) {
10344 mHoldingScreenOn = holdScreen;
10345 Message m = mH.obtainMessage(H.HOLD_SCREEN_CHANGED, holdScreen);
10346 mH.sendMessage(m);
10347 }
Dianne Hackborn93e462b2009-09-15 22:50:40 -070010348
10349 if (mTurnOnScreen) {
10350 mPowerManager.userActivity(SystemClock.uptimeMillis(), false,
10351 LocalPowerManager.BUTTON_EVENT, true);
10352 mTurnOnScreen = false;
10353 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010354 }
10355
10356 void requestAnimationLocked(long delay) {
10357 if (!mAnimationPending) {
10358 mAnimationPending = true;
10359 mH.sendMessageDelayed(mH.obtainMessage(H.ANIMATE), delay);
10360 }
10361 }
Romain Guy06882f82009-06-10 13:36:04 -070010362
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010363 /**
10364 * Have the surface flinger show a surface, robustly dealing with
10365 * error conditions. In particular, if there is not enough memory
10366 * to show the surface, then we will try to get rid of other surfaces
10367 * in order to succeed.
Romain Guy06882f82009-06-10 13:36:04 -070010368 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010369 * @return Returns true if the surface was successfully shown.
10370 */
10371 boolean showSurfaceRobustlyLocked(WindowState win) {
10372 try {
10373 if (win.mSurface != null) {
10374 win.mSurface.show();
Dianne Hackborn93e462b2009-09-15 22:50:40 -070010375 if (win.mTurnOnScreen) {
10376 win.mTurnOnScreen = false;
10377 mTurnOnScreen = true;
10378 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010379 }
10380 return true;
10381 } catch (RuntimeException e) {
10382 Log.w(TAG, "Failure showing surface " + win.mSurface + " in " + win);
10383 }
Romain Guy06882f82009-06-10 13:36:04 -070010384
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010385 reclaimSomeSurfaceMemoryLocked(win, "show");
Romain Guy06882f82009-06-10 13:36:04 -070010386
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010387 return false;
10388 }
Romain Guy06882f82009-06-10 13:36:04 -070010389
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010390 void reclaimSomeSurfaceMemoryLocked(WindowState win, String operation) {
10391 final Surface surface = win.mSurface;
Romain Guy06882f82009-06-10 13:36:04 -070010392
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010393 EventLog.writeEvent(LOG_WM_NO_SURFACE_MEMORY, win.toString(),
10394 win.mSession.mPid, operation);
Romain Guy06882f82009-06-10 13:36:04 -070010395
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010396 if (mForceRemoves == null) {
10397 mForceRemoves = new ArrayList<WindowState>();
10398 }
Romain Guy06882f82009-06-10 13:36:04 -070010399
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010400 long callingIdentity = Binder.clearCallingIdentity();
10401 try {
10402 // There was some problem... first, do a sanity check of the
10403 // window list to make sure we haven't left any dangling surfaces
10404 // around.
10405 int N = mWindows.size();
10406 boolean leakedSurface = false;
10407 Log.i(TAG, "Out of memory for surface! Looking for leaks...");
10408 for (int i=0; i<N; i++) {
10409 WindowState ws = (WindowState)mWindows.get(i);
10410 if (ws.mSurface != null) {
10411 if (!mSessions.contains(ws.mSession)) {
10412 Log.w(TAG, "LEAKED SURFACE (session doesn't exist): "
10413 + ws + " surface=" + ws.mSurface
10414 + " token=" + win.mToken
10415 + " pid=" + ws.mSession.mPid
10416 + " uid=" + ws.mSession.mUid);
Dianne Hackborn0586a1b2009-09-06 21:08:27 -070010417 ws.mSurface.destroy();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010418 ws.mSurface = null;
10419 mForceRemoves.add(ws);
10420 i--;
10421 N--;
10422 leakedSurface = true;
10423 } else if (win.mAppToken != null && win.mAppToken.clientHidden) {
10424 Log.w(TAG, "LEAKED SURFACE (app token hidden): "
10425 + ws + " surface=" + ws.mSurface
10426 + " token=" + win.mAppToken);
Dianne Hackborn0586a1b2009-09-06 21:08:27 -070010427 ws.mSurface.destroy();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010428 ws.mSurface = null;
10429 leakedSurface = true;
10430 }
10431 }
10432 }
Romain Guy06882f82009-06-10 13:36:04 -070010433
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010434 boolean killedApps = false;
10435 if (!leakedSurface) {
10436 Log.w(TAG, "No leaked surfaces; killing applicatons!");
10437 SparseIntArray pidCandidates = new SparseIntArray();
10438 for (int i=0; i<N; i++) {
10439 WindowState ws = (WindowState)mWindows.get(i);
10440 if (ws.mSurface != null) {
10441 pidCandidates.append(ws.mSession.mPid, ws.mSession.mPid);
10442 }
10443 }
10444 if (pidCandidates.size() > 0) {
10445 int[] pids = new int[pidCandidates.size()];
10446 for (int i=0; i<pids.length; i++) {
10447 pids[i] = pidCandidates.keyAt(i);
10448 }
10449 try {
10450 if (mActivityManager.killPidsForMemory(pids)) {
10451 killedApps = true;
10452 }
10453 } catch (RemoteException e) {
10454 }
10455 }
10456 }
Romain Guy06882f82009-06-10 13:36:04 -070010457
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010458 if (leakedSurface || killedApps) {
10459 // We managed to reclaim some memory, so get rid of the trouble
10460 // surface and ask the app to request another one.
10461 Log.w(TAG, "Looks like we have reclaimed some memory, clearing surface for retry.");
10462 if (surface != null) {
Dianne Hackborn0586a1b2009-09-06 21:08:27 -070010463 surface.destroy();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010464 win.mSurface = null;
10465 }
Romain Guy06882f82009-06-10 13:36:04 -070010466
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010467 try {
10468 win.mClient.dispatchGetNewSurface();
10469 } catch (RemoteException e) {
10470 }
10471 }
10472 } finally {
10473 Binder.restoreCallingIdentity(callingIdentity);
10474 }
10475 }
Romain Guy06882f82009-06-10 13:36:04 -070010476
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010477 private boolean updateFocusedWindowLocked(int mode) {
10478 WindowState newFocus = computeFocusedWindowLocked();
10479 if (mCurrentFocus != newFocus) {
10480 // This check makes sure that we don't already have the focus
10481 // change message pending.
10482 mH.removeMessages(H.REPORT_FOCUS_CHANGE);
10483 mH.sendEmptyMessage(H.REPORT_FOCUS_CHANGE);
10484 if (localLOGV) Log.v(
10485 TAG, "Changing focus from " + mCurrentFocus + " to " + newFocus);
10486 final WindowState oldFocus = mCurrentFocus;
10487 mCurrentFocus = newFocus;
10488 mLosingFocus.remove(newFocus);
Romain Guy06882f82009-06-10 13:36:04 -070010489
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010490 final WindowState imWindow = mInputMethodWindow;
10491 if (newFocus != imWindow && oldFocus != imWindow) {
The Android Open Source Projectc474dec2009-03-04 09:49:09 -080010492 if (moveInputMethodWindowsIfNeededLocked(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010493 mode != UPDATE_FOCUS_WILL_ASSIGN_LAYERS &&
The Android Open Source Projectc474dec2009-03-04 09:49:09 -080010494 mode != UPDATE_FOCUS_WILL_PLACE_SURFACES)) {
10495 mLayoutNeeded = true;
10496 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010497 if (mode == UPDATE_FOCUS_PLACING_SURFACES) {
10498 performLayoutLockedInner();
The Android Open Source Projectc474dec2009-03-04 09:49:09 -080010499 } else if (mode == UPDATE_FOCUS_WILL_PLACE_SURFACES) {
10500 // Client will do the layout, but we need to assign layers
10501 // for handleNewWindowLocked() below.
10502 assignLayersLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010503 }
10504 }
Romain Guy06882f82009-06-10 13:36:04 -070010505
The Android Open Source Projectc474dec2009-03-04 09:49:09 -080010506 if (newFocus != null && mode != UPDATE_FOCUS_WILL_ASSIGN_LAYERS) {
10507 mKeyWaiter.handleNewWindowLocked(newFocus);
10508 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010509 return true;
10510 }
10511 return false;
10512 }
10513
10514 private WindowState computeFocusedWindowLocked() {
10515 WindowState result = null;
10516 WindowState win;
10517
10518 int i = mWindows.size() - 1;
10519 int nextAppIndex = mAppTokens.size()-1;
10520 WindowToken nextApp = nextAppIndex >= 0
10521 ? mAppTokens.get(nextAppIndex) : null;
10522
10523 while (i >= 0) {
10524 win = (WindowState)mWindows.get(i);
10525
10526 if (localLOGV || DEBUG_FOCUS) Log.v(
10527 TAG, "Looking for focus: " + i
10528 + " = " + win
10529 + ", flags=" + win.mAttrs.flags
10530 + ", canReceive=" + win.canReceiveKeys());
10531
10532 AppWindowToken thisApp = win.mAppToken;
Romain Guy06882f82009-06-10 13:36:04 -070010533
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010534 // If this window's application has been removed, just skip it.
10535 if (thisApp != null && thisApp.removed) {
10536 i--;
10537 continue;
10538 }
Romain Guy06882f82009-06-10 13:36:04 -070010539
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010540 // If there is a focused app, don't allow focus to go to any
10541 // windows below it. If this is an application window, step
10542 // through the app tokens until we find its app.
10543 if (thisApp != null && nextApp != null && thisApp != nextApp
10544 && win.mAttrs.type != TYPE_APPLICATION_STARTING) {
10545 int origAppIndex = nextAppIndex;
10546 while (nextAppIndex > 0) {
10547 if (nextApp == mFocusedApp) {
10548 // Whoops, we are below the focused app... no focus
10549 // for you!
10550 if (localLOGV || DEBUG_FOCUS) Log.v(
10551 TAG, "Reached focused app: " + mFocusedApp);
10552 return null;
10553 }
10554 nextAppIndex--;
10555 nextApp = mAppTokens.get(nextAppIndex);
10556 if (nextApp == thisApp) {
10557 break;
10558 }
10559 }
10560 if (thisApp != nextApp) {
10561 // Uh oh, the app token doesn't exist! This shouldn't
10562 // happen, but if it does we can get totally hosed...
10563 // so restart at the original app.
10564 nextAppIndex = origAppIndex;
10565 nextApp = mAppTokens.get(nextAppIndex);
10566 }
10567 }
10568
10569 // Dispatch to this window if it is wants key events.
10570 if (win.canReceiveKeys()) {
10571 if (DEBUG_FOCUS) Log.v(
10572 TAG, "Found focus @ " + i + " = " + win);
10573 result = win;
10574 break;
10575 }
10576
10577 i--;
10578 }
10579
10580 return result;
10581 }
10582
10583 private void startFreezingDisplayLocked() {
10584 if (mDisplayFrozen) {
Chris Tate2ad63a92009-03-25 17:36:48 -070010585 // Freezing the display also suspends key event delivery, to
10586 // keep events from going astray while the display is reconfigured.
10587 // If someone has changed orientation again while the screen is
10588 // still frozen, the events will continue to be blocked while the
10589 // successive orientation change is processed. To prevent spurious
10590 // ANRs, we reset the event dispatch timeout in this case.
10591 synchronized (mKeyWaiter) {
10592 mKeyWaiter.mWasFrozen = true;
10593 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010594 return;
10595 }
Romain Guy06882f82009-06-10 13:36:04 -070010596
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010597 mScreenFrozenLock.acquire();
Romain Guy06882f82009-06-10 13:36:04 -070010598
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010599 long now = SystemClock.uptimeMillis();
10600 //Log.i(TAG, "Freezing, gc pending: " + mFreezeGcPending + ", now " + now);
10601 if (mFreezeGcPending != 0) {
10602 if (now > (mFreezeGcPending+1000)) {
10603 //Log.i(TAG, "Gc! " + now + " > " + (mFreezeGcPending+1000));
10604 mH.removeMessages(H.FORCE_GC);
10605 Runtime.getRuntime().gc();
10606 mFreezeGcPending = now;
10607 }
10608 } else {
10609 mFreezeGcPending = now;
10610 }
Romain Guy06882f82009-06-10 13:36:04 -070010611
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010612 mDisplayFrozen = true;
Dianne Hackbornbfe319e2009-09-21 00:34:05 -070010613 if (mNextAppTransition != WindowManagerPolicy.TRANSIT_UNSET) {
10614 mNextAppTransition = WindowManagerPolicy.TRANSIT_UNSET;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -070010615 mNextAppTransitionPackage = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010616 mAppTransitionReady = true;
10617 }
Romain Guy06882f82009-06-10 13:36:04 -070010618
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010619 if (PROFILE_ORIENTATION) {
10620 File file = new File("/data/system/frozen");
10621 Debug.startMethodTracing(file.toString(), 8 * 1024 * 1024);
10622 }
10623 Surface.freezeDisplay(0);
10624 }
Romain Guy06882f82009-06-10 13:36:04 -070010625
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010626 private void stopFreezingDisplayLocked() {
10627 if (!mDisplayFrozen) {
10628 return;
10629 }
Romain Guy06882f82009-06-10 13:36:04 -070010630
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010631 mDisplayFrozen = false;
10632 mH.removeMessages(H.APP_FREEZE_TIMEOUT);
10633 if (PROFILE_ORIENTATION) {
10634 Debug.stopMethodTracing();
10635 }
10636 Surface.unfreezeDisplay(0);
Romain Guy06882f82009-06-10 13:36:04 -070010637
Chris Tate2ad63a92009-03-25 17:36:48 -070010638 // Reset the key delivery timeout on unfreeze, too. We force a wakeup here
10639 // too because regular key delivery processing should resume immediately.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010640 synchronized (mKeyWaiter) {
10641 mKeyWaiter.mWasFrozen = true;
10642 mKeyWaiter.notifyAll();
10643 }
10644
10645 // A little kludge: a lot could have happened while the
10646 // display was frozen, so now that we are coming back we
10647 // do a gc so that any remote references the system
10648 // processes holds on others can be released if they are
10649 // no longer needed.
10650 mH.removeMessages(H.FORCE_GC);
10651 mH.sendMessageDelayed(mH.obtainMessage(H.FORCE_GC),
10652 2000);
Romain Guy06882f82009-06-10 13:36:04 -070010653
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010654 mScreenFrozenLock.release();
10655 }
Romain Guy06882f82009-06-10 13:36:04 -070010656
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010657 @Override
10658 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
10659 if (mContext.checkCallingOrSelfPermission("android.permission.DUMP")
10660 != PackageManager.PERMISSION_GRANTED) {
10661 pw.println("Permission Denial: can't dump WindowManager from from pid="
10662 + Binder.getCallingPid()
10663 + ", uid=" + Binder.getCallingUid());
10664 return;
10665 }
Romain Guy06882f82009-06-10 13:36:04 -070010666
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010667 synchronized(mWindowMap) {
10668 pw.println("Current Window Manager state:");
10669 for (int i=mWindows.size()-1; i>=0; i--) {
10670 WindowState w = (WindowState)mWindows.get(i);
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010671 pw.print(" Window #"); pw.print(i); pw.print(' ');
10672 pw.print(w); pw.println(":");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010673 w.dump(pw, " ");
10674 }
10675 if (mInputMethodDialogs.size() > 0) {
10676 pw.println(" ");
10677 pw.println(" Input method dialogs:");
10678 for (int i=mInputMethodDialogs.size()-1; i>=0; i--) {
10679 WindowState w = mInputMethodDialogs.get(i);
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010680 pw.print(" IM Dialog #"); pw.print(i); pw.print(": "); pw.println(w);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010681 }
10682 }
10683 if (mPendingRemove.size() > 0) {
10684 pw.println(" ");
10685 pw.println(" Remove pending for:");
10686 for (int i=mPendingRemove.size()-1; i>=0; i--) {
10687 WindowState w = mPendingRemove.get(i);
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010688 pw.print(" Remove #"); pw.print(i); pw.print(' ');
10689 pw.print(w); pw.println(":");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010690 w.dump(pw, " ");
10691 }
10692 }
10693 if (mForceRemoves != null && mForceRemoves.size() > 0) {
10694 pw.println(" ");
10695 pw.println(" Windows force removing:");
10696 for (int i=mForceRemoves.size()-1; i>=0; i--) {
10697 WindowState w = mForceRemoves.get(i);
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010698 pw.print(" Removing #"); pw.print(i); pw.print(' ');
10699 pw.print(w); pw.println(":");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010700 w.dump(pw, " ");
10701 }
10702 }
10703 if (mDestroySurface.size() > 0) {
10704 pw.println(" ");
10705 pw.println(" Windows waiting to destroy their surface:");
10706 for (int i=mDestroySurface.size()-1; i>=0; i--) {
10707 WindowState w = mDestroySurface.get(i);
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010708 pw.print(" Destroy #"); pw.print(i); pw.print(' ');
10709 pw.print(w); pw.println(":");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010710 w.dump(pw, " ");
10711 }
10712 }
10713 if (mLosingFocus.size() > 0) {
10714 pw.println(" ");
10715 pw.println(" Windows losing focus:");
10716 for (int i=mLosingFocus.size()-1; i>=0; i--) {
10717 WindowState w = mLosingFocus.get(i);
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010718 pw.print(" Losing #"); pw.print(i); pw.print(' ');
10719 pw.print(w); pw.println(":");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010720 w.dump(pw, " ");
10721 }
10722 }
Dianne Hackborn0586a1b2009-09-06 21:08:27 -070010723 if (mResizingWindows.size() > 0) {
10724 pw.println(" ");
10725 pw.println(" Windows waiting to resize:");
10726 for (int i=mResizingWindows.size()-1; i>=0; i--) {
10727 WindowState w = mResizingWindows.get(i);
10728 pw.print(" Resizing #"); pw.print(i); pw.print(' ');
10729 pw.print(w); pw.println(":");
10730 w.dump(pw, " ");
10731 }
10732 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010733 if (mSessions.size() > 0) {
10734 pw.println(" ");
10735 pw.println(" All active sessions:");
10736 Iterator<Session> it = mSessions.iterator();
10737 while (it.hasNext()) {
10738 Session s = it.next();
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010739 pw.print(" Session "); pw.print(s); pw.println(':');
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010740 s.dump(pw, " ");
10741 }
10742 }
10743 if (mTokenMap.size() > 0) {
10744 pw.println(" ");
10745 pw.println(" All tokens:");
10746 Iterator<WindowToken> it = mTokenMap.values().iterator();
10747 while (it.hasNext()) {
10748 WindowToken token = it.next();
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010749 pw.print(" Token "); pw.print(token.token); pw.println(':');
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010750 token.dump(pw, " ");
10751 }
10752 }
10753 if (mTokenList.size() > 0) {
10754 pw.println(" ");
10755 pw.println(" Window token list:");
10756 for (int i=0; i<mTokenList.size(); i++) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010757 pw.print(" #"); pw.print(i); pw.print(": ");
10758 pw.println(mTokenList.get(i));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010759 }
10760 }
Dianne Hackborn4c62fc02009-08-08 20:40:27 -070010761 if (mWallpaperTokens.size() > 0) {
10762 pw.println(" ");
10763 pw.println(" Wallpaper tokens:");
10764 for (int i=mWallpaperTokens.size()-1; i>=0; i--) {
10765 WindowToken token = mWallpaperTokens.get(i);
10766 pw.print(" Wallpaper #"); pw.print(i);
10767 pw.print(' '); pw.print(token); pw.println(':');
10768 token.dump(pw, " ");
10769 }
10770 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010771 if (mAppTokens.size() > 0) {
10772 pw.println(" ");
10773 pw.println(" Application tokens in Z order:");
10774 for (int i=mAppTokens.size()-1; i>=0; i--) {
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010775 pw.print(" App #"); pw.print(i); pw.print(": ");
10776 pw.println(mAppTokens.get(i));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010777 }
10778 }
10779 if (mFinishedStarting.size() > 0) {
10780 pw.println(" ");
10781 pw.println(" Finishing start of application tokens:");
10782 for (int i=mFinishedStarting.size()-1; i>=0; i--) {
10783 WindowToken token = mFinishedStarting.get(i);
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010784 pw.print(" Finished Starting #"); pw.print(i);
10785 pw.print(' '); pw.print(token); pw.println(':');
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010786 token.dump(pw, " ");
10787 }
10788 }
10789 if (mExitingTokens.size() > 0) {
10790 pw.println(" ");
10791 pw.println(" Exiting tokens:");
10792 for (int i=mExitingTokens.size()-1; i>=0; i--) {
10793 WindowToken token = mExitingTokens.get(i);
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010794 pw.print(" Exiting #"); pw.print(i);
10795 pw.print(' '); pw.print(token); pw.println(':');
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010796 token.dump(pw, " ");
10797 }
10798 }
10799 if (mExitingAppTokens.size() > 0) {
10800 pw.println(" ");
10801 pw.println(" Exiting application tokens:");
10802 for (int i=mExitingAppTokens.size()-1; i>=0; i--) {
10803 WindowToken token = mExitingAppTokens.get(i);
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010804 pw.print(" Exiting App #"); pw.print(i);
10805 pw.print(' '); pw.print(token); pw.println(':');
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010806 token.dump(pw, " ");
10807 }
10808 }
10809 pw.println(" ");
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010810 pw.print(" mCurrentFocus="); pw.println(mCurrentFocus);
10811 pw.print(" mLastFocus="); pw.println(mLastFocus);
10812 pw.print(" mFocusedApp="); pw.println(mFocusedApp);
10813 pw.print(" mInputMethodTarget="); pw.println(mInputMethodTarget);
10814 pw.print(" mInputMethodWindow="); pw.println(mInputMethodWindow);
Dianne Hackbornf21adf62009-08-13 10:20:21 -070010815 pw.print(" mWallpaperTarget="); pw.println(mWallpaperTarget);
Dianne Hackborn284ac932009-08-28 10:34:25 -070010816 if (mLowerWallpaperTarget != null && mUpperWallpaperTarget != null) {
10817 pw.print(" mLowerWallpaperTarget="); pw.println(mLowerWallpaperTarget);
10818 pw.print(" mUpperWallpaperTarget="); pw.println(mUpperWallpaperTarget);
10819 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010820 pw.print(" mInTouchMode="); pw.println(mInTouchMode);
10821 pw.print(" mSystemBooted="); pw.print(mSystemBooted);
10822 pw.print(" mDisplayEnabled="); pw.println(mDisplayEnabled);
10823 pw.print(" mLayoutNeeded="); pw.print(mLayoutNeeded);
10824 pw.print(" mBlurShown="); pw.println(mBlurShown);
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -070010825 if (mDimAnimator != null) {
10826 mDimAnimator.printTo(pw);
10827 } else {
10828 pw.print( " no DimAnimator ");
10829 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010830 pw.print(" mInputMethodAnimLayerAdjustment=");
Dianne Hackborn759a39e2009-08-09 17:20:27 -070010831 pw.print(mInputMethodAnimLayerAdjustment);
10832 pw.print(" mWallpaperAnimLayerAdjustment=");
10833 pw.println(mWallpaperAnimLayerAdjustment);
Dianne Hackborn284ac932009-08-28 10:34:25 -070010834 pw.print(" mLastWallpaperX="); pw.print(mLastWallpaperX);
10835 pw.print(" mLastWallpaperY="); pw.println(mLastWallpaperY);
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010836 pw.print(" mDisplayFrozen="); pw.print(mDisplayFrozen);
10837 pw.print(" mWindowsFreezingScreen="); pw.print(mWindowsFreezingScreen);
10838 pw.print(" mAppsFreezingScreen="); pw.println(mAppsFreezingScreen);
10839 pw.print(" mRotation="); pw.print(mRotation);
10840 pw.print(", mForcedAppOrientation="); pw.print(mForcedAppOrientation);
10841 pw.print(", mRequestedRotation="); pw.println(mRequestedRotation);
10842 pw.print(" mAnimationPending="); pw.print(mAnimationPending);
10843 pw.print(" mWindowAnimationScale="); pw.print(mWindowAnimationScale);
10844 pw.print(" mTransitionWindowAnimationScale="); pw.println(mTransitionAnimationScale);
10845 pw.print(" mNextAppTransition=0x");
10846 pw.print(Integer.toHexString(mNextAppTransition));
10847 pw.print(", mAppTransitionReady="); pw.print(mAppTransitionReady);
Dianne Hackborna8f60182009-09-01 19:01:50 -070010848 pw.print(", mAppTransitionRunning="); pw.print(mAppTransitionRunning);
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010849 pw.print(", mAppTransitionTimeout="); pw.println( mAppTransitionTimeout);
Dianne Hackborn3b3e1452009-09-24 19:22:12 -070010850 if (mNextAppTransitionPackage != null) {
10851 pw.print(" mNextAppTransitionPackage=");
10852 pw.print(mNextAppTransitionPackage);
10853 pw.print(", mNextAppTransitionEnter=0x");
10854 pw.print(Integer.toHexString(mNextAppTransitionEnter));
10855 pw.print(", mNextAppTransitionExit=0x");
10856 pw.print(Integer.toHexString(mNextAppTransitionExit));
10857 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010858 pw.print(" mStartingIconInTransition="); pw.print(mStartingIconInTransition);
10859 pw.print(", mSkipAppTransitionAnimation="); pw.println(mSkipAppTransitionAnimation);
Dianne Hackborn3b3e1452009-09-24 19:22:12 -070010860 if (mLastEnterAnimToken != null || mLastEnterAnimToken != null) {
10861 pw.print(" mLastEnterAnimToken="); pw.print(mLastEnterAnimToken);
10862 pw.print(", mLastEnterAnimParams="); pw.println(mLastEnterAnimParams);
10863 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010864 if (mOpeningApps.size() > 0) {
10865 pw.print(" mOpeningApps="); pw.println(mOpeningApps);
10866 }
10867 if (mClosingApps.size() > 0) {
10868 pw.print(" mClosingApps="); pw.println(mClosingApps);
10869 }
Dianne Hackborna8f60182009-09-01 19:01:50 -070010870 if (mToTopApps.size() > 0) {
10871 pw.print(" mToTopApps="); pw.println(mToTopApps);
10872 }
10873 if (mToBottomApps.size() > 0) {
10874 pw.print(" mToBottomApps="); pw.println(mToBottomApps);
10875 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010876 pw.print(" DisplayWidth="); pw.print(mDisplay.getWidth());
10877 pw.print(" DisplayHeight="); pw.println(mDisplay.getHeight());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010878 pw.println(" KeyWaiter state:");
Dianne Hackborn1d442e02009-04-20 18:14:05 -070010879 pw.print(" mLastWin="); pw.print(mKeyWaiter.mLastWin);
10880 pw.print(" mLastBinder="); pw.println(mKeyWaiter.mLastBinder);
10881 pw.print(" mFinished="); pw.print(mKeyWaiter.mFinished);
10882 pw.print(" mGotFirstWindow="); pw.print(mKeyWaiter.mGotFirstWindow);
10883 pw.print(" mEventDispatching="); pw.print(mKeyWaiter.mEventDispatching);
10884 pw.print(" mTimeToSwitch="); pw.println(mKeyWaiter.mTimeToSwitch);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010885 }
10886 }
10887
10888 public void monitor() {
10889 synchronized (mWindowMap) { }
Mike Lockwood983ee092009-11-22 01:42:24 -050010890 synchronized (mKeyguardTokenWatcher) { }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080010891 synchronized (mKeyWaiter) { }
10892 }
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -070010893
Dianne Hackbornddca3ee2009-07-23 19:01:31 -070010894 public void virtualKeyFeedback(KeyEvent event) {
10895 mPolicy.keyFeedbackFromInput(event);
10896 }
10897
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -070010898 /**
10899 * DimAnimator class that controls the dim animation. This holds the surface and
10900 * all state used for dim animation.
10901 */
10902 private static class DimAnimator {
10903 Surface mDimSurface;
10904 boolean mDimShown = false;
10905 float mDimCurrentAlpha;
10906 float mDimTargetAlpha;
10907 float mDimDeltaPerMs;
10908 long mLastDimAnimTime;
10909
10910 DimAnimator (SurfaceSession session) {
10911 if (mDimSurface == null) {
10912 if (SHOW_TRANSACTIONS) Log.i(TAG, " DIM "
10913 + mDimSurface + ": CREATE");
10914 try {
10915 mDimSurface = new Surface(session, 0, -1, 16, 16, PixelFormat.OPAQUE,
10916 Surface.FX_SURFACE_DIM);
10917 } catch (Exception e) {
10918 Log.e(TAG, "Exception creating Dim surface", e);
10919 }
10920 }
10921 }
10922
10923 /**
10924 * Show the dim surface.
10925 */
10926 void show(int dw, int dh) {
10927 if (SHOW_TRANSACTIONS) Log.i(TAG, " DIM " + mDimSurface + ": SHOW pos=(0,0) (" +
10928 dw + "x" + dh + ")");
10929 mDimShown = true;
10930 try {
10931 mDimSurface.setPosition(0, 0);
10932 mDimSurface.setSize(dw, dh);
10933 mDimSurface.show();
10934 } catch (RuntimeException e) {
10935 Log.w(TAG, "Failure showing dim surface", e);
10936 }
10937 }
10938
10939 /**
10940 * Set's the dim surface's layer and update dim parameters that will be used in
10941 * {@link updateSurface} after all windows are examined.
10942 */
10943 void updateParameters(WindowState w, long currentTime) {
10944 mDimSurface.setLayer(w.mAnimLayer-1);
10945
10946 final float target = w.mExiting ? 0 : w.mAttrs.dimAmount;
Dianne Hackborn0586a1b2009-09-06 21:08:27 -070010947 if (SHOW_TRANSACTIONS) Log.i(TAG, " DIM " + mDimSurface
10948 + ": layer=" + (w.mAnimLayer-1) + " target=" + target);
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -070010949 if (mDimTargetAlpha != target) {
10950 // If the desired dim level has changed, then
10951 // start an animation to it.
10952 mLastDimAnimTime = currentTime;
10953 long duration = (w.mAnimating && w.mAnimation != null)
10954 ? w.mAnimation.computeDurationHint()
10955 : DEFAULT_DIM_DURATION;
10956 if (target > mDimTargetAlpha) {
10957 // This is happening behind the activity UI,
10958 // so we can make it run a little longer to
10959 // give a stronger impression without disrupting
10960 // the user.
10961 duration *= DIM_DURATION_MULTIPLIER;
10962 }
10963 if (duration < 1) {
10964 // Don't divide by zero
10965 duration = 1;
10966 }
10967 mDimTargetAlpha = target;
10968 mDimDeltaPerMs = (mDimTargetAlpha-mDimCurrentAlpha) / duration;
10969 }
10970 }
10971
10972 /**
10973 * Updating the surface's alpha. Returns true if the animation continues, or returns
10974 * false when the animation is finished and the dim surface is hidden.
10975 */
10976 boolean updateSurface(boolean dimming, long currentTime, boolean displayFrozen) {
10977 if (!dimming) {
10978 if (mDimTargetAlpha != 0) {
10979 mLastDimAnimTime = currentTime;
10980 mDimTargetAlpha = 0;
10981 mDimDeltaPerMs = (-mDimCurrentAlpha) / DEFAULT_DIM_DURATION;
10982 }
10983 }
10984
10985 boolean animating = false;
10986 if (mLastDimAnimTime != 0) {
10987 mDimCurrentAlpha += mDimDeltaPerMs
10988 * (currentTime-mLastDimAnimTime);
10989 boolean more = true;
10990 if (displayFrozen) {
10991 // If the display is frozen, there is no reason to animate.
10992 more = false;
10993 } else if (mDimDeltaPerMs > 0) {
10994 if (mDimCurrentAlpha > mDimTargetAlpha) {
10995 more = false;
10996 }
10997 } else if (mDimDeltaPerMs < 0) {
10998 if (mDimCurrentAlpha < mDimTargetAlpha) {
10999 more = false;
11000 }
11001 } else {
11002 more = false;
11003 }
11004
11005 // Do we need to continue animating?
11006 if (more) {
11007 if (SHOW_TRANSACTIONS) Log.i(TAG, " DIM "
11008 + mDimSurface + ": alpha=" + mDimCurrentAlpha);
11009 mLastDimAnimTime = currentTime;
11010 mDimSurface.setAlpha(mDimCurrentAlpha);
11011 animating = true;
11012 } else {
11013 mDimCurrentAlpha = mDimTargetAlpha;
11014 mLastDimAnimTime = 0;
11015 if (SHOW_TRANSACTIONS) Log.i(TAG, " DIM "
11016 + mDimSurface + ": final alpha=" + mDimCurrentAlpha);
11017 mDimSurface.setAlpha(mDimCurrentAlpha);
11018 if (!dimming) {
11019 if (SHOW_TRANSACTIONS) Log.i(TAG, " DIM " + mDimSurface
11020 + ": HIDE");
11021 try {
11022 mDimSurface.hide();
11023 } catch (RuntimeException e) {
11024 Log.w(TAG, "Illegal argument exception hiding dim surface");
11025 }
11026 mDimShown = false;
11027 }
11028 }
11029 }
11030 return animating;
11031 }
11032
11033 public void printTo(PrintWriter pw) {
11034 pw.print(" mDimShown="); pw.print(mDimShown);
11035 pw.print(" current="); pw.print(mDimCurrentAlpha);
11036 pw.print(" target="); pw.print(mDimTargetAlpha);
11037 pw.print(" delta="); pw.print(mDimDeltaPerMs);
11038 pw.print(" lastAnimTime="); pw.println(mLastDimAnimTime);
11039 }
11040 }
11041
11042 /**
11043 * Animation that fade in after 0.5 interpolate time, or fade out in reverse order.
11044 * This is used for opening/closing transition for apps in compatible mode.
11045 */
11046 private static class FadeInOutAnimation extends Animation {
11047 int mWidth;
11048 boolean mFadeIn;
11049
11050 public FadeInOutAnimation(boolean fadeIn) {
11051 setInterpolator(new AccelerateInterpolator());
11052 setDuration(DEFAULT_FADE_IN_OUT_DURATION);
11053 mFadeIn = fadeIn;
11054 }
11055
11056 @Override
11057 protected void applyTransformation(float interpolatedTime, Transformation t) {
11058 float x = interpolatedTime;
11059 if (!mFadeIn) {
11060 x = 1.0f - x; // reverse the interpolation for fade out
11061 }
11062 if (x < 0.5) {
11063 // move the window out of the screen.
11064 t.getMatrix().setTranslate(mWidth, 0);
11065 } else {
11066 t.getMatrix().setTranslate(0, 0);// show
11067 t.setAlpha((x - 0.5f) * 2);
11068 }
11069 }
11070
11071 @Override
11072 public void initialize(int width, int height, int parentWidth, int parentHeight) {
11073 // width is the screen width {@see AppWindowToken#stepAnimatinoLocked}
11074 mWidth = width;
11075 }
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -070011076
11077 @Override
Mitsuru Oshima5a2b91d2009-07-16 16:30:02 -070011078 public int getZAdjustment() {
11079 return Animation.ZORDER_TOP;
Mitsuru Oshima0a5d2c42009-07-14 14:10:30 -070011080 }
11081 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011082}