PhoneWindowManager.java revision cd3884dfb246855c059e15db376f0935af68d949
1/*
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *      http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16package com.android.server.policy;
17
18import android.app.ActivityManager;
19import android.app.ActivityManagerNative;
20import android.app.AppOpsManager;
21import android.app.IUiModeManager;
22import android.app.ProgressDialog;
23import android.app.SearchManager;
24import android.app.StatusBarManager;
25import android.app.UiModeManager;
26import android.content.ActivityNotFoundException;
27import android.content.BroadcastReceiver;
28import android.content.ComponentName;
29import android.content.ContentResolver;
30import android.content.Context;
31import android.content.Intent;
32import android.content.IntentFilter;
33import android.content.ServiceConnection;
34import android.content.pm.ActivityInfo;
35import android.content.pm.PackageManager;
36import android.content.pm.ResolveInfo;
37import android.content.res.CompatibilityInfo;
38import android.content.res.Configuration;
39import android.content.res.Resources;
40import android.content.res.TypedArray;
41import android.database.ContentObserver;
42import android.graphics.PixelFormat;
43import android.graphics.Rect;
44import android.media.AudioAttributes;
45import android.media.AudioManager;
46import android.media.AudioSystem;
47import android.media.IAudioService;
48import android.media.Ringtone;
49import android.media.RingtoneManager;
50import android.media.session.MediaSessionLegacyHelper;
51import android.os.Bundle;
52import android.os.Debug;
53import android.os.FactoryTest;
54import android.os.Handler;
55import android.os.IBinder;
56import android.os.Looper;
57import android.os.Message;
58import android.os.Messenger;
59import android.os.PowerManager;
60import android.os.RemoteException;
61import android.os.ServiceManager;
62import android.os.SystemClock;
63import android.os.SystemProperties;
64import android.os.UEventObserver;
65import android.os.UserHandle;
66import android.os.Vibrator;
67import android.provider.MediaStore;
68import android.provider.Settings;
69import android.service.dreams.DreamManagerInternal;
70import android.service.dreams.DreamService;
71import android.service.dreams.IDreamManager;
72import android.speech.RecognizerIntent;
73import android.telecom.TelecomManager;
74import android.util.DisplayMetrics;
75import android.util.EventLog;
76import android.util.Log;
77import android.util.Slog;
78import android.util.SparseArray;
79import android.view.Display;
80import android.view.Gravity;
81import android.view.HapticFeedbackConstants;
82import android.view.IApplicationToken;
83import android.view.IWindowManager;
84import android.view.InputChannel;
85import android.view.InputDevice;
86import android.view.InputEvent;
87import android.view.InputEventReceiver;
88import android.view.KeyCharacterMap;
89import android.view.KeyCharacterMap.FallbackAction;
90import android.view.KeyEvent;
91import android.view.MotionEvent;
92import android.view.PhoneWindow;
93import android.view.Surface;
94import android.view.View;
95import android.view.ViewConfiguration;
96import android.view.Window;
97import android.view.WindowManager;
98import android.view.WindowManagerGlobal;
99import android.view.WindowManagerInternal;
100import android.view.WindowManagerPolicy;
101import android.view.accessibility.AccessibilityEvent;
102import android.view.accessibility.AccessibilityManager;
103import android.view.animation.Animation;
104import android.view.animation.AnimationSet;
105import android.view.animation.AnimationUtils;
106
107import com.android.internal.R;
108import com.android.internal.statusbar.IStatusBarService;
109import com.android.internal.widget.PointerLocationView;
110import com.android.server.LocalServices;
111import com.android.server.policy.keyguard.KeyguardServiceDelegate;
112import com.android.server.policy.keyguard.KeyguardServiceDelegate.ShowListener;
113
114import java.io.File;
115import java.io.FileReader;
116import java.io.IOException;
117import java.io.PrintWriter;
118import java.util.HashSet;
119import java.util.List;
120
121import static android.view.WindowManager.LayoutParams.*;
122import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_ABSENT;
123import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_OPEN;
124import static android.view.WindowManagerPolicy.WindowManagerFuncs.LID_CLOSED;
125import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVER_ABSENT;
126import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_UNCOVERED;
127import static android.view.WindowManagerPolicy.WindowManagerFuncs.CAMERA_LENS_COVERED;
128
129/**
130 * WindowManagerPolicy implementation for the Android phone UI.  This
131 * introduces a new method suffix, Lp, for an internal lock of the
132 * PhoneWindowManager.  This is used to protect some internal state, and
133 * can be acquired with either the Lw and Li lock held, so has the restrictions
134 * of both of those when held.
135 */
136public class PhoneWindowManager implements WindowManagerPolicy {
137    static final String TAG = "WindowManager";
138    static final boolean DEBUG = false;
139    static final boolean localLOGV = false;
140    static final boolean DEBUG_INPUT = false;
141    static final boolean DEBUG_KEYGUARD = false;
142    static final boolean DEBUG_LAYOUT = false;
143    static final boolean DEBUG_STARTING_WINDOW = false;
144    static final boolean DEBUG_WAKEUP = false;
145    static final boolean SHOW_STARTING_ANIMATIONS = true;
146    static final boolean SHOW_PROCESSES_ON_ALT_MENU = false;
147
148    // Whether to allow dock apps with METADATA_DOCK_HOME to temporarily take over the Home key.
149    // No longer recommended for desk docks; still useful in car docks.
150    static final boolean ENABLE_CAR_DOCK_HOME_CAPTURE = true;
151    static final boolean ENABLE_DESK_DOCK_HOME_CAPTURE = false;
152
153    static final int SHORT_PRESS_POWER_NOTHING = 0;
154    static final int SHORT_PRESS_POWER_GO_TO_SLEEP = 1;
155    static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP = 2;
156    static final int SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME = 3;
157    static final int SHORT_PRESS_POWER_GO_HOME = 4;
158
159    static final int LONG_PRESS_POWER_NOTHING = 0;
160    static final int LONG_PRESS_POWER_GLOBAL_ACTIONS = 1;
161    static final int LONG_PRESS_POWER_SHUT_OFF = 2;
162    static final int LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM = 3;
163
164    static final int MULTI_PRESS_POWER_NOTHING = 0;
165    static final int MULTI_PRESS_POWER_THEATER_MODE = 1;
166    static final int MULTI_PRESS_POWER_BRIGHTNESS_BOOST = 2;
167
168    // These need to match the documentation/constant in
169    // core/res/res/values/config.xml
170    static final int LONG_PRESS_HOME_NOTHING = 0;
171    static final int LONG_PRESS_HOME_RECENT_SYSTEM_UI = 1;
172    static final int LONG_PRESS_HOME_ASSIST = 2;
173
174    static final int DOUBLE_TAP_HOME_NOTHING = 0;
175    static final int DOUBLE_TAP_HOME_RECENT_SYSTEM_UI = 1;
176
177    static final int APPLICATION_MEDIA_SUBLAYER = -2;
178    static final int APPLICATION_MEDIA_OVERLAY_SUBLAYER = -1;
179    static final int APPLICATION_PANEL_SUBLAYER = 1;
180    static final int APPLICATION_SUB_PANEL_SUBLAYER = 2;
181
182    static public final String SYSTEM_DIALOG_REASON_KEY = "reason";
183    static public final String SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS = "globalactions";
184    static public final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps";
185    static public final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
186    static public final String SYSTEM_DIALOG_REASON_ASSIST = "assist";
187
188    /**
189     * These are the system UI flags that, when changing, can cause the layout
190     * of the screen to change.
191     */
192    static final int SYSTEM_UI_CHANGING_LAYOUT =
193              View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
194            | View.SYSTEM_UI_FLAG_FULLSCREEN
195            | View.STATUS_BAR_TRANSLUCENT
196            | View.NAVIGATION_BAR_TRANSLUCENT
197            | View.SYSTEM_UI_TRANSPARENT;
198
199    private static final AudioAttributes VIBRATION_ATTRIBUTES = new AudioAttributes.Builder()
200            .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
201            .setUsage(AudioAttributes.USAGE_ASSISTANCE_SONIFICATION)
202            .build();
203
204    /**
205     * Keyguard stuff
206     */
207    private WindowState mKeyguardScrim;
208    private boolean mKeyguardHidden;
209    private boolean mKeyguardDrawnOnce;
210
211    /* Table of Application Launch keys.  Maps from key codes to intent categories.
212     *
213     * These are special keys that are used to launch particular kinds of applications,
214     * such as a web browser.  HID defines nearly a hundred of them in the Consumer (0x0C)
215     * usage page.  We don't support quite that many yet...
216     */
217    static SparseArray<String> sApplicationLaunchKeyCategories;
218    static {
219        sApplicationLaunchKeyCategories = new SparseArray<String>();
220        sApplicationLaunchKeyCategories.append(
221                KeyEvent.KEYCODE_EXPLORER, Intent.CATEGORY_APP_BROWSER);
222        sApplicationLaunchKeyCategories.append(
223                KeyEvent.KEYCODE_ENVELOPE, Intent.CATEGORY_APP_EMAIL);
224        sApplicationLaunchKeyCategories.append(
225                KeyEvent.KEYCODE_CONTACTS, Intent.CATEGORY_APP_CONTACTS);
226        sApplicationLaunchKeyCategories.append(
227                KeyEvent.KEYCODE_CALENDAR, Intent.CATEGORY_APP_CALENDAR);
228        sApplicationLaunchKeyCategories.append(
229                KeyEvent.KEYCODE_MUSIC, Intent.CATEGORY_APP_MUSIC);
230        sApplicationLaunchKeyCategories.append(
231                KeyEvent.KEYCODE_CALCULATOR, Intent.CATEGORY_APP_CALCULATOR);
232    }
233
234    /** Amount of time (in milliseconds) to wait for windows drawn before powering on. */
235    static final int WAITING_FOR_DRAWN_TIMEOUT = 1000;
236
237    /**
238     * Lock protecting internal state.  Must not call out into window
239     * manager with lock held.  (This lock will be acquired in places
240     * where the window manager is calling in with its own lock held.)
241     */
242    private final Object mLock = new Object();
243
244    Context mContext;
245    IWindowManager mWindowManager;
246    WindowManagerFuncs mWindowManagerFuncs;
247    WindowManagerInternal mWindowManagerInternal;
248    PowerManager mPowerManager;
249    DreamManagerInternal mDreamManagerInternal;
250    IStatusBarService mStatusBarService;
251    boolean mPreloadedRecentApps;
252    final Object mServiceAquireLock = new Object();
253    Vibrator mVibrator; // Vibrator for giving feedback of orientation changes
254    SearchManager mSearchManager;
255    AccessibilityManager mAccessibilityManager;
256
257    // Vibrator pattern for haptic feedback of a long press.
258    long[] mLongPressVibePattern;
259
260    // Vibrator pattern for haptic feedback of virtual key press.
261    long[] mVirtualKeyVibePattern;
262
263    // Vibrator pattern for a short vibration.
264    long[] mKeyboardTapVibePattern;
265
266    // Vibrator pattern for a short vibration when tapping on an hour/minute tick of a Clock.
267    long[] mClockTickVibePattern;
268
269    // Vibrator pattern for a short vibration when tapping on a day/month/year date of a Calendar.
270    long[] mCalendarDateVibePattern;
271
272    // Vibrator pattern for haptic feedback during boot when safe mode is disabled.
273    long[] mSafeModeDisabledVibePattern;
274
275    // Vibrator pattern for haptic feedback during boot when safe mode is enabled.
276    long[] mSafeModeEnabledVibePattern;
277
278    /** If true, hitting shift & menu will broadcast Intent.ACTION_BUG_REPORT */
279    boolean mEnableShiftMenuBugReports = false;
280
281    boolean mSafeMode;
282    WindowState mStatusBar = null;
283    int mStatusBarHeight;
284    WindowState mNavigationBar = null;
285    boolean mHasNavigationBar = false;
286    boolean mCanHideNavigationBar = false;
287    boolean mNavigationBarCanMove = false; // can the navigation bar ever move to the side?
288    boolean mNavigationBarOnBottom = true; // is the navigation bar on the bottom *right now*?
289    int[] mNavigationBarHeightForRotation = new int[4];
290    int[] mNavigationBarWidthForRotation = new int[4];
291
292    boolean mBootMessageNeedsHiding;
293    KeyguardServiceDelegate mKeyguardDelegate;
294    final Runnable mWindowManagerDrawCallback = new Runnable() {
295        @Override
296        public void run() {
297            if (DEBUG_WAKEUP) Slog.i(TAG, "All windows ready for display!");
298            mHandler.sendEmptyMessage(MSG_WINDOW_MANAGER_DRAWN_COMPLETE);
299        }
300    };
301    final ShowListener mKeyguardDelegateCallback = new ShowListener() {
302        @Override
303        public void onShown(IBinder windowToken) {
304            if (DEBUG_WAKEUP) Slog.d(TAG, "mKeyguardDelegate.ShowListener.onShown.");
305            mHandler.sendEmptyMessage(MSG_KEYGUARD_DRAWN_COMPLETE);
306        }
307    };
308
309    GlobalActions mGlobalActions;
310    Handler mHandler;
311    WindowState mLastInputMethodWindow = null;
312    WindowState mLastInputMethodTargetWindow = null;
313
314    // FIXME This state is shared between the input reader and handler thread.
315    // Technically it's broken and buggy but it has been like this for many years
316    // and we have not yet seen any problems.  Someday we'll rewrite this logic
317    // so that only one thread is involved in handling input policy.  Unfortunately
318    // it's on a critical path for power management so we can't just post the work to the
319    // handler thread.  We'll need to resolve this someday by teaching the input dispatcher
320    // to hold wakelocks during dispatch and eliminating the critical path.
321    volatile boolean mPowerKeyHandled;
322    volatile boolean mBeganFromNonInteractive;
323    volatile int mPowerKeyPressCounter;
324    volatile boolean mEndCallKeyHandled;
325
326    boolean mRecentsVisible;
327    int mRecentAppsHeldModifiers;
328    boolean mLanguageSwitchKeyPressed;
329
330    int mLidState = LID_ABSENT;
331    int mCameraLensCoverState = CAMERA_LENS_COVER_ABSENT;
332    boolean mHaveBuiltInKeyboard;
333
334    boolean mSystemReady;
335    boolean mSystemBooted;
336    boolean mHdmiPlugged;
337    IUiModeManager mUiModeManager;
338    int mUiMode;
339    int mDockMode = Intent.EXTRA_DOCK_STATE_UNDOCKED;
340    int mLidOpenRotation;
341    int mCarDockRotation;
342    int mDeskDockRotation;
343    int mUndockedHdmiRotation;
344    int mDemoHdmiRotation;
345    boolean mDemoHdmiRotationLock;
346    int mDemoRotation;
347    boolean mDemoRotationLock;
348
349    boolean mWakeGestureEnabledSetting;
350    MyWakeGestureListener mWakeGestureListener;
351
352    // Default display does not rotate, apps that require non-default orientation will have to
353    // have the orientation emulated.
354    private boolean mForceDefaultOrientation = false;
355
356    int mUserRotationMode = WindowManagerPolicy.USER_ROTATION_FREE;
357    int mUserRotation = Surface.ROTATION_0;
358    boolean mAccelerometerDefault;
359
360    boolean mSupportAutoRotation;
361    int mAllowAllRotations = -1;
362    boolean mCarDockEnablesAccelerometer;
363    boolean mDeskDockEnablesAccelerometer;
364    int mLidKeyboardAccessibility;
365    int mLidNavigationAccessibility;
366    boolean mLidControlsSleep;
367    int mShortPressOnPowerBehavior;
368    int mLongPressOnPowerBehavior;
369    int mDoublePressOnPowerBehavior;
370    int mTriplePressOnPowerBehavior;
371    boolean mAwake;
372    boolean mScreenOnEarly;
373    boolean mScreenOnFully;
374    ScreenOnListener mScreenOnListener;
375    boolean mKeyguardDrawComplete;
376    boolean mWindowManagerDrawComplete;
377    boolean mOrientationSensorEnabled = false;
378    int mCurrentAppOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
379    boolean mHasSoftInput = false;
380    boolean mTranslucentDecorEnabled = true;
381    boolean mUseTvRouting;
382    boolean mUseMasterVolume;
383
384    int mPointerLocationMode = 0; // guarded by mLock
385
386    // The last window we were told about in focusChanged.
387    WindowState mFocusedWindow;
388    IApplicationToken mFocusedApp;
389
390    PointerLocationView mPointerLocationView;
391
392    // The current size of the screen; really; extends into the overscan area of
393    // the screen and doesn't account for any system elements like the status bar.
394    int mOverscanScreenLeft, mOverscanScreenTop;
395    int mOverscanScreenWidth, mOverscanScreenHeight;
396    // The current visible size of the screen; really; (ir)regardless of whether the status
397    // bar can be hidden but not extending into the overscan area.
398    int mUnrestrictedScreenLeft, mUnrestrictedScreenTop;
399    int mUnrestrictedScreenWidth, mUnrestrictedScreenHeight;
400    // Like mOverscanScreen*, but allowed to move into the overscan region where appropriate.
401    int mRestrictedOverscanScreenLeft, mRestrictedOverscanScreenTop;
402    int mRestrictedOverscanScreenWidth, mRestrictedOverscanScreenHeight;
403    // The current size of the screen; these may be different than (0,0)-(dw,dh)
404    // if the status bar can't be hidden; in that case it effectively carves out
405    // that area of the display from all other windows.
406    int mRestrictedScreenLeft, mRestrictedScreenTop;
407    int mRestrictedScreenWidth, mRestrictedScreenHeight;
408    // During layout, the current screen borders accounting for any currently
409    // visible system UI elements.
410    int mSystemLeft, mSystemTop, mSystemRight, mSystemBottom;
411    // For applications requesting stable content insets, these are them.
412    int mStableLeft, mStableTop, mStableRight, mStableBottom;
413    // For applications requesting stable content insets but have also set the
414    // fullscreen window flag, these are the stable dimensions without the status bar.
415    int mStableFullscreenLeft, mStableFullscreenTop;
416    int mStableFullscreenRight, mStableFullscreenBottom;
417    // During layout, the current screen borders with all outer decoration
418    // (status bar, input method dock) accounted for.
419    int mCurLeft, mCurTop, mCurRight, mCurBottom;
420    // During layout, the frame in which content should be displayed
421    // to the user, accounting for all screen decoration except for any
422    // space they deem as available for other content.  This is usually
423    // the same as mCur*, but may be larger if the screen decor has supplied
424    // content insets.
425    int mContentLeft, mContentTop, mContentRight, mContentBottom;
426    // During layout, the frame in which voice content should be displayed
427    // to the user, accounting for all screen decoration except for any
428    // space they deem as available for other content.
429    int mVoiceContentLeft, mVoiceContentTop, mVoiceContentRight, mVoiceContentBottom;
430    // During layout, the current screen borders along which input method
431    // windows are placed.
432    int mDockLeft, mDockTop, mDockRight, mDockBottom;
433    // During layout, the layer at which the doc window is placed.
434    int mDockLayer;
435    // During layout, this is the layer of the status bar.
436    int mStatusBarLayer;
437    int mLastSystemUiFlags;
438    // Bits that we are in the process of clearing, so we want to prevent
439    // them from being set by applications until everything has been updated
440    // to have them clear.
441    int mResettingSystemUiFlags = 0;
442    // Bits that we are currently always keeping cleared.
443    int mForceClearedSystemUiFlags = 0;
444    // What we last reported to system UI about whether the compatibility
445    // menu needs to be displayed.
446    boolean mLastFocusNeedsMenu = false;
447
448    FakeWindow mHideNavFakeWindow = null;
449
450    static final Rect mTmpParentFrame = new Rect();
451    static final Rect mTmpDisplayFrame = new Rect();
452    static final Rect mTmpOverscanFrame = new Rect();
453    static final Rect mTmpContentFrame = new Rect();
454    static final Rect mTmpVisibleFrame = new Rect();
455    static final Rect mTmpDecorFrame = new Rect();
456    static final Rect mTmpStableFrame = new Rect();
457    static final Rect mTmpNavigationFrame = new Rect();
458
459    WindowState mTopFullscreenOpaqueWindowState;
460    WindowState mTopFullscreenOpaqueOrDimmingWindowState;
461    HashSet<IApplicationToken> mAppsToBeHidden = new HashSet<IApplicationToken>();
462    HashSet<IApplicationToken> mAppsThatDismissKeyguard = new HashSet<IApplicationToken>();
463    boolean mTopIsFullscreen;
464    boolean mForceStatusBar;
465    boolean mForceStatusBarFromKeyguard;
466    boolean mHideLockScreen;
467    boolean mForcingShowNavBar;
468    int mForcingShowNavBarLayer;
469
470    // States of keyguard dismiss.
471    private static final int DISMISS_KEYGUARD_NONE = 0; // Keyguard not being dismissed.
472    private static final int DISMISS_KEYGUARD_START = 1; // Keyguard needs to be dismissed.
473    private static final int DISMISS_KEYGUARD_CONTINUE = 2; // Keyguard has been dismissed.
474    int mDismissKeyguard = DISMISS_KEYGUARD_NONE;
475
476    /** The window that is currently dismissing the keyguard. Dismissing the keyguard must only
477     * be done once per window. */
478    private WindowState mWinDismissingKeyguard;
479
480    /** The window that is currently showing "over" the keyguard. If there is an app window
481     * belonging to another app on top of this the keyguard shows. If there is a fullscreen
482     * app window under this, still dismiss the keyguard but don't show the app underneath. Show
483     * the wallpaper. */
484    private WindowState mWinShowWhenLocked;
485
486    boolean mShowingLockscreen;
487    boolean mShowingDream;
488    boolean mDreamingLockscreen;
489    boolean mKeyguardSecure;
490    boolean mKeyguardSecureIncludingHidden;
491    volatile boolean mKeyguardOccluded;
492    boolean mHomePressed;
493    boolean mHomeConsumed;
494    boolean mHomeDoubleTapPending;
495    Intent mHomeIntent;
496    Intent mCarDockIntent;
497    Intent mDeskDockIntent;
498    boolean mSearchKeyShortcutPending;
499    boolean mConsumeSearchKeyUp;
500    boolean mAssistKeyLongPressed;
501    boolean mPendingMetaAction;
502
503    // support for activating the lock screen while the screen is on
504    boolean mAllowLockscreenWhenOn;
505    int mLockScreenTimeout;
506    boolean mLockScreenTimerActive;
507
508    // Behavior of ENDCALL Button.  (See Settings.System.END_BUTTON_BEHAVIOR.)
509    int mEndcallBehavior;
510
511    // Behavior of POWER button while in-call and screen on.
512    // (See Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR.)
513    int mIncallPowerBehavior;
514
515    Display mDisplay;
516
517    int mLandscapeRotation = 0;  // default landscape rotation
518    int mSeascapeRotation = 0;   // "other" landscape rotation, 180 degrees from mLandscapeRotation
519    int mPortraitRotation = 0;   // default portrait rotation
520    int mUpsideDownRotation = 0; // "other" portrait rotation
521
522    int mOverscanLeft = 0;
523    int mOverscanTop = 0;
524    int mOverscanRight = 0;
525    int mOverscanBottom = 0;
526
527    // What we do when the user long presses on home
528    private int mLongPressOnHomeBehavior;
529
530    // What we do when the user double-taps on home
531    private int mDoubleTapOnHomeBehavior;
532
533    // Allowed theater mode wake actions
534    private boolean mAllowTheaterModeWakeFromKey;
535    private boolean mAllowTheaterModeWakeFromPowerKey;
536    private boolean mAllowTheaterModeWakeFromMotion;
537    private boolean mAllowTheaterModeWakeFromMotionWhenNotDreaming;
538    private boolean mAllowTheaterModeWakeFromCameraLens;
539    private boolean mAllowTheaterModeWakeFromLidSwitch;
540    private boolean mAllowTheaterModeWakeFromWakeGesture;
541
542    // Whether to go to sleep entering theater mode from power button
543    private boolean mGoToSleepOnButtonPressTheaterMode;
544
545    // Screenshot trigger states
546    // Time to volume and power must be pressed within this interval of each other.
547    private static final long SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS = 150;
548    // Increase the chord delay when taking a screenshot from the keyguard
549    private static final float KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER = 2.5f;
550    private boolean mScreenshotChordEnabled;
551    private boolean mScreenshotChordVolumeDownKeyTriggered;
552    private long mScreenshotChordVolumeDownKeyTime;
553    private boolean mScreenshotChordVolumeDownKeyConsumed;
554    private boolean mScreenshotChordVolumeUpKeyTriggered;
555    private boolean mScreenshotChordPowerKeyTriggered;
556    private long mScreenshotChordPowerKeyTime;
557
558    /* The number of steps between min and max brightness */
559    private static final int BRIGHTNESS_STEPS = 10;
560
561    SettingsObserver mSettingsObserver;
562    ShortcutManager mShortcutManager;
563    PowerManager.WakeLock mBroadcastWakeLock;
564    PowerManager.WakeLock mPowerKeyWakeLock;
565    boolean mHavePendingMediaKeyRepeatWithWakeLock;
566
567    private int mCurrentUserId;
568
569    // Maps global key codes to the components that will handle them.
570    private GlobalKeyManager mGlobalKeyManager;
571
572    // Fallback actions by key code.
573    private final SparseArray<KeyCharacterMap.FallbackAction> mFallbackActions =
574            new SparseArray<KeyCharacterMap.FallbackAction>();
575
576    private final LogDecelerateInterpolator mLogDecelerateInterpolator
577            = new LogDecelerateInterpolator(100, 0);
578
579    private static final int MSG_ENABLE_POINTER_LOCATION = 1;
580    private static final int MSG_DISABLE_POINTER_LOCATION = 2;
581    private static final int MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK = 3;
582    private static final int MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK = 4;
583    private static final int MSG_KEYGUARD_DRAWN_COMPLETE = 5;
584    private static final int MSG_KEYGUARD_DRAWN_TIMEOUT = 6;
585    private static final int MSG_WINDOW_MANAGER_DRAWN_COMPLETE = 7;
586    private static final int MSG_DISPATCH_SHOW_RECENTS = 9;
587    private static final int MSG_DISPATCH_SHOW_GLOBAL_ACTIONS = 10;
588    private static final int MSG_HIDE_BOOT_MESSAGE = 11;
589    private static final int MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK = 12;
590    private static final int MSG_POWER_DELAYED_PRESS = 13;
591    private static final int MSG_POWER_LONG_PRESS = 14;
592
593    private class PolicyHandler extends Handler {
594        @Override
595        public void handleMessage(Message msg) {
596            switch (msg.what) {
597                case MSG_ENABLE_POINTER_LOCATION:
598                    enablePointerLocation();
599                    break;
600                case MSG_DISABLE_POINTER_LOCATION:
601                    disablePointerLocation();
602                    break;
603                case MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK:
604                    dispatchMediaKeyWithWakeLock((KeyEvent)msg.obj);
605                    break;
606                case MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK:
607                    dispatchMediaKeyRepeatWithWakeLock((KeyEvent)msg.obj);
608                    break;
609                case MSG_DISPATCH_SHOW_RECENTS:
610                    showRecentApps(false);
611                    break;
612                case MSG_DISPATCH_SHOW_GLOBAL_ACTIONS:
613                    showGlobalActionsInternal();
614                    break;
615                case MSG_KEYGUARD_DRAWN_COMPLETE:
616                    if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mKeyguardDrawComplete");
617                    finishKeyguardDrawn();
618                    break;
619                case MSG_KEYGUARD_DRAWN_TIMEOUT:
620                    Slog.w(TAG, "Keyguard drawn timeout. Setting mKeyguardDrawComplete");
621                    finishKeyguardDrawn();
622                    break;
623                case MSG_WINDOW_MANAGER_DRAWN_COMPLETE:
624                    if (DEBUG_WAKEUP) Slog.w(TAG, "Setting mWindowManagerDrawComplete");
625                    finishWindowsDrawn();
626                    break;
627                case MSG_HIDE_BOOT_MESSAGE:
628                    handleHideBootMessage();
629                    break;
630                case MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK:
631                    launchVoiceAssistWithWakeLock(msg.arg1 != 0);
632                    break;
633                case MSG_POWER_DELAYED_PRESS:
634                    powerPress((Long)msg.obj, msg.arg1 != 0, msg.arg2);
635                    finishPowerKeyPress();
636                    break;
637                case MSG_POWER_LONG_PRESS:
638                    powerLongPress();
639                    break;
640            }
641        }
642    }
643
644    private UEventObserver mHDMIObserver = new UEventObserver() {
645        @Override
646        public void onUEvent(UEventObserver.UEvent event) {
647            setHdmiPlugged("1".equals(event.get("SWITCH_STATE")));
648        }
649    };
650
651    class SettingsObserver extends ContentObserver {
652        SettingsObserver(Handler handler) {
653            super(handler);
654        }
655
656        void observe() {
657            // Observe all users' changes
658            ContentResolver resolver = mContext.getContentResolver();
659            resolver.registerContentObserver(Settings.System.getUriFor(
660                    Settings.System.END_BUTTON_BEHAVIOR), false, this,
661                    UserHandle.USER_ALL);
662            resolver.registerContentObserver(Settings.Secure.getUriFor(
663                    Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR), false, this,
664                    UserHandle.USER_ALL);
665            resolver.registerContentObserver(Settings.Secure.getUriFor(
666                    Settings.Secure.WAKE_GESTURE_ENABLED), false, this,
667                    UserHandle.USER_ALL);
668            resolver.registerContentObserver(Settings.System.getUriFor(
669                    Settings.System.ACCELEROMETER_ROTATION), false, this,
670                    UserHandle.USER_ALL);
671            resolver.registerContentObserver(Settings.System.getUriFor(
672                    Settings.System.USER_ROTATION), false, this,
673                    UserHandle.USER_ALL);
674            resolver.registerContentObserver(Settings.System.getUriFor(
675                    Settings.System.SCREEN_OFF_TIMEOUT), false, this,
676                    UserHandle.USER_ALL);
677            resolver.registerContentObserver(Settings.System.getUriFor(
678                    Settings.System.POINTER_LOCATION), false, this,
679                    UserHandle.USER_ALL);
680            resolver.registerContentObserver(Settings.Secure.getUriFor(
681                    Settings.Secure.DEFAULT_INPUT_METHOD), false, this,
682                    UserHandle.USER_ALL);
683            resolver.registerContentObserver(Settings.Secure.getUriFor(
684                    Settings.Secure.IMMERSIVE_MODE_CONFIRMATIONS), false, this,
685                    UserHandle.USER_ALL);
686            resolver.registerContentObserver(Settings.Global.getUriFor(
687                    Settings.Global.POLICY_CONTROL), false, this,
688                    UserHandle.USER_ALL);
689            updateSettings();
690        }
691
692        @Override public void onChange(boolean selfChange) {
693            updateSettings();
694            updateRotation(false);
695        }
696    }
697
698    class MyWakeGestureListener extends WakeGestureListener {
699        MyWakeGestureListener(Context context, Handler handler) {
700            super(context, handler);
701        }
702
703        @Override
704        public void onWakeUp() {
705            synchronized (mLock) {
706                if (shouldEnableWakeGestureLp()) {
707                    performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
708                    wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromWakeGesture);
709                }
710            }
711        }
712    }
713
714    class MyOrientationListener extends WindowOrientationListener {
715        MyOrientationListener(Context context, Handler handler) {
716            super(context, handler);
717        }
718
719        @Override
720        public void onProposedRotationChanged(int rotation) {
721            if (localLOGV) Slog.v(TAG, "onProposedRotationChanged, rotation=" + rotation);
722            updateRotation(false);
723        }
724    }
725    MyOrientationListener mOrientationListener;
726
727    private final BarController mStatusBarController = new BarController("StatusBar",
728            View.STATUS_BAR_TRANSIENT,
729            View.STATUS_BAR_UNHIDE,
730            View.STATUS_BAR_TRANSLUCENT,
731            StatusBarManager.WINDOW_STATUS_BAR,
732            WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
733
734    private final BarController mNavigationBarController = new BarController("NavigationBar",
735            View.NAVIGATION_BAR_TRANSIENT,
736            View.NAVIGATION_BAR_UNHIDE,
737            View.NAVIGATION_BAR_TRANSLUCENT,
738            StatusBarManager.WINDOW_NAVIGATION_BAR,
739            WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
740
741    private ImmersiveModeConfirmation mImmersiveModeConfirmation;
742
743    private SystemGesturesPointerEventListener mSystemGestures;
744
745    IStatusBarService getStatusBarService() {
746        synchronized (mServiceAquireLock) {
747            if (mStatusBarService == null) {
748                mStatusBarService = IStatusBarService.Stub.asInterface(
749                        ServiceManager.getService("statusbar"));
750            }
751            return mStatusBarService;
752        }
753    }
754
755    /*
756     * We always let the sensor be switched on by default except when
757     * the user has explicitly disabled sensor based rotation or when the
758     * screen is switched off.
759     */
760    boolean needSensorRunningLp() {
761        if (mSupportAutoRotation) {
762            if (mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
763                    || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
764                    || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
765                    || mCurrentAppOrientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE) {
766                // If the application has explicitly requested to follow the
767                // orientation, then we need to turn the sensor on.
768                return true;
769            }
770        }
771        if ((mCarDockEnablesAccelerometer && mDockMode == Intent.EXTRA_DOCK_STATE_CAR) ||
772                (mDeskDockEnablesAccelerometer && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
773                        || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
774                        || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK))) {
775            // enable accelerometer if we are docked in a dock that enables accelerometer
776            // orientation management,
777            return true;
778        }
779        if (mUserRotationMode == USER_ROTATION_LOCKED) {
780            // If the setting for using the sensor by default is enabled, then
781            // we will always leave it on.  Note that the user could go to
782            // a window that forces an orientation that does not use the
783            // sensor and in theory we could turn it off... however, when next
784            // turning it on we won't have a good value for the current
785            // orientation for a little bit, which can cause orientation
786            // changes to lag, so we'd like to keep it always on.  (It will
787            // still be turned off when the screen is off.)
788            return false;
789        }
790        return mSupportAutoRotation;
791    }
792
793    /*
794     * Various use cases for invoking this function
795     * screen turning off, should always disable listeners if already enabled
796     * screen turned on and current app has sensor based orientation, enable listeners
797     * if not already enabled
798     * screen turned on and current app does not have sensor orientation, disable listeners if
799     * already enabled
800     * screen turning on and current app has sensor based orientation, enable listeners if needed
801     * screen turning on and current app has nosensor based orientation, do nothing
802     */
803    void updateOrientationListenerLp() {
804        if (!mOrientationListener.canDetectOrientation()) {
805            // If sensor is turned off or nonexistent for some reason
806            return;
807        }
808        //Could have been invoked due to screen turning on or off or
809        //change of the currently visible window's orientation
810        if (localLOGV) Slog.v(TAG, "mScreenOnEarly=" + mScreenOnEarly
811                + ", mAwake=" + mAwake + ", mCurrentAppOrientation=" + mCurrentAppOrientation
812                + ", mOrientationSensorEnabled=" + mOrientationSensorEnabled);
813        boolean disable = true;
814        if (mScreenOnEarly && mAwake) {
815            if (needSensorRunningLp()) {
816                disable = false;
817                //enable listener if not already enabled
818                if (!mOrientationSensorEnabled) {
819                    mOrientationListener.enable();
820                    if(localLOGV) Slog.v(TAG, "Enabling listeners");
821                    mOrientationSensorEnabled = true;
822                }
823            }
824        }
825        //check if sensors need to be disabled
826        if (disable && mOrientationSensorEnabled) {
827            mOrientationListener.disable();
828            if(localLOGV) Slog.v(TAG, "Disabling listeners");
829            mOrientationSensorEnabled = false;
830        }
831    }
832
833    private void interceptPowerKeyDown(KeyEvent event, boolean interactive) {
834        // Hold a wake lock until the power key is released.
835        if (!mPowerKeyWakeLock.isHeld()) {
836            mPowerKeyWakeLock.acquire();
837        }
838
839        // Cancel multi-press detection timeout.
840        if (mPowerKeyPressCounter != 0) {
841            mHandler.removeMessages(MSG_POWER_DELAYED_PRESS);
842        }
843
844        // Detect user pressing the power button in panic when an application has
845        // taken over the whole screen.
846        boolean panic = mImmersiveModeConfirmation.onPowerKeyDown(interactive,
847                SystemClock.elapsedRealtime(), isImmersiveMode(mLastSystemUiFlags));
848        if (panic) {
849            mHandler.post(mRequestTransientNav);
850        }
851
852        // Latch power key state to detect screenshot chord.
853        if (interactive && !mScreenshotChordPowerKeyTriggered
854                && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
855            mScreenshotChordPowerKeyTriggered = true;
856            mScreenshotChordPowerKeyTime = event.getDownTime();
857            interceptScreenshotChord();
858        }
859
860        // Stop ringing or end call if configured to do so when power is pressed.
861        TelecomManager telecomManager = getTelecommService();
862        boolean hungUp = false;
863        if (telecomManager != null) {
864            if (telecomManager.isRinging()) {
865                // Pressing Power while there's a ringing incoming
866                // call should silence the ringer.
867                telecomManager.silenceRinger();
868            } else if ((mIncallPowerBehavior
869                    & Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP) != 0
870                    && telecomManager.isInCall() && interactive) {
871                // Otherwise, if "Power button ends call" is enabled,
872                // the Power button will hang up any current active call.
873                hungUp = telecomManager.endCall();
874            }
875        }
876
877        // If the power key has still not yet been handled, then detect short
878        // press, long press, or multi press and decide what to do.
879        mPowerKeyHandled = hungUp || mScreenshotChordVolumeDownKeyTriggered
880                || mScreenshotChordVolumeUpKeyTriggered;
881        if (!mPowerKeyHandled) {
882            if (interactive) {
883                // When interactive, we're already awake.
884                // Wait for a long press or for the button to be released to decide what to do.
885                if (hasLongPressOnPowerBehavior()) {
886                    Message msg = mHandler.obtainMessage(MSG_POWER_LONG_PRESS);
887                    msg.setAsynchronous(true);
888                    mHandler.sendMessageDelayed(msg,
889                            ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
890                }
891            } else {
892                wakeUpFromPowerKey(event.getDownTime());
893                final int maxCount = getMaxMultiPressPowerCount();
894
895                if (maxCount <= 1) {
896                    mPowerKeyHandled = true;
897                } else {
898                    mBeganFromNonInteractive = true;
899                }
900            }
901        }
902    }
903
904    private void interceptPowerKeyUp(KeyEvent event, boolean interactive, boolean canceled) {
905        final boolean handled = canceled || mPowerKeyHandled;
906        mScreenshotChordPowerKeyTriggered = false;
907        cancelPendingScreenshotChordAction();
908        cancelPendingPowerKeyAction();
909
910        if (!handled) {
911            // Figure out how to handle the key now that it has been released.
912            mPowerKeyPressCounter += 1;
913
914            final int maxCount = getMaxMultiPressPowerCount();
915            final long eventTime = event.getDownTime();
916            if (mPowerKeyPressCounter < maxCount) {
917                // This could be a multi-press.  Wait a little bit longer to confirm.
918                // Continue holding the wake lock.
919                Message msg = mHandler.obtainMessage(MSG_POWER_DELAYED_PRESS,
920                        interactive ? 1 : 0, mPowerKeyPressCounter, eventTime);
921                msg.setAsynchronous(true);
922                mHandler.sendMessageDelayed(msg, ViewConfiguration.getDoubleTapTimeout());
923                return;
924            }
925
926            // No other actions.  Handle it immediately.
927            powerPress(eventTime, interactive, mPowerKeyPressCounter);
928        }
929
930        // Done.  Reset our state.
931        finishPowerKeyPress();
932    }
933
934    private void finishPowerKeyPress() {
935        mBeganFromNonInteractive = false;
936        mPowerKeyPressCounter = 0;
937        if (mPowerKeyWakeLock.isHeld()) {
938            mPowerKeyWakeLock.release();
939        }
940    }
941
942    private void cancelPendingPowerKeyAction() {
943        if (!mPowerKeyHandled) {
944            mPowerKeyHandled = true;
945            mHandler.removeMessages(MSG_POWER_LONG_PRESS);
946        }
947    }
948
949    private void powerPress(long eventTime, boolean interactive, int count) {
950        if (mScreenOnEarly && !mScreenOnFully) {
951            Slog.i(TAG, "Suppressed redundant power key press while "
952                    + "already in the process of turning the screen on.");
953            return;
954        }
955
956        if (count == 2) {
957            powerMultiPressAction(eventTime, interactive, mDoublePressOnPowerBehavior);
958        } else if (count == 3) {
959            powerMultiPressAction(eventTime, interactive, mTriplePressOnPowerBehavior);
960        } else if (interactive && !mBeganFromNonInteractive) {
961            switch (mShortPressOnPowerBehavior) {
962                case SHORT_PRESS_POWER_NOTHING:
963                    break;
964                case SHORT_PRESS_POWER_GO_TO_SLEEP:
965                    mPowerManager.goToSleep(eventTime,
966                            PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
967                    break;
968                case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP:
969                    mPowerManager.goToSleep(eventTime,
970                            PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
971                            PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
972                    break;
973                case SHORT_PRESS_POWER_REALLY_GO_TO_SLEEP_AND_GO_HOME:
974                    mPowerManager.goToSleep(eventTime,
975                            PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON,
976                            PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
977                    launchHomeFromHotKey();
978                    break;
979                case SHORT_PRESS_POWER_GO_HOME:
980                    launchHomeFromHotKey();
981                    break;
982            }
983        }
984    }
985
986    private void powerMultiPressAction(long eventTime, boolean interactive, int behavior) {
987        switch (behavior) {
988            case MULTI_PRESS_POWER_NOTHING:
989                break;
990            case MULTI_PRESS_POWER_THEATER_MODE:
991                if (isTheaterModeEnabled()) {
992                    Slog.i(TAG, "Toggling theater mode off.");
993                    Settings.Global.putInt(mContext.getContentResolver(),
994                            Settings.Global.THEATER_MODE_ON, 0);
995                    if (!interactive) {
996                        wakeUpFromPowerKey(eventTime);
997                    }
998                } else {
999                    Slog.i(TAG, "Toggling theater mode on.");
1000                    Settings.Global.putInt(mContext.getContentResolver(),
1001                            Settings.Global.THEATER_MODE_ON, 1);
1002
1003                    if (mGoToSleepOnButtonPressTheaterMode && interactive) {
1004                        mPowerManager.goToSleep(eventTime,
1005                                PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
1006                    }
1007                }
1008                break;
1009            case MULTI_PRESS_POWER_BRIGHTNESS_BOOST:
1010                Slog.i(TAG, "Starting brightness boost.");
1011                if (!interactive) {
1012                    wakeUpFromPowerKey(eventTime);
1013                }
1014                mPowerManager.boostScreenBrightness(eventTime);
1015                break;
1016        }
1017    }
1018
1019    private int getMaxMultiPressPowerCount() {
1020        if (mTriplePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1021            return 3;
1022        }
1023        if (mDoublePressOnPowerBehavior != MULTI_PRESS_POWER_NOTHING) {
1024            return 2;
1025        }
1026        return 1;
1027    }
1028
1029    private void powerLongPress() {
1030        final int behavior = getResolvedLongPressOnPowerBehavior();
1031        switch (behavior) {
1032        case LONG_PRESS_POWER_NOTHING:
1033            break;
1034        case LONG_PRESS_POWER_GLOBAL_ACTIONS:
1035            mPowerKeyHandled = true;
1036            if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1037                performAuditoryFeedbackForAccessibilityIfNeed();
1038            }
1039            showGlobalActionsInternal();
1040            break;
1041        case LONG_PRESS_POWER_SHUT_OFF:
1042        case LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM:
1043            mPowerKeyHandled = true;
1044            performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1045            sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1046            mWindowManagerFuncs.shutdown(behavior == LONG_PRESS_POWER_SHUT_OFF);
1047            break;
1048        }
1049    }
1050
1051    private int getResolvedLongPressOnPowerBehavior() {
1052        if (FactoryTest.isLongPressOnPowerOffEnabled()) {
1053            return LONG_PRESS_POWER_SHUT_OFF_NO_CONFIRM;
1054        }
1055        return mLongPressOnPowerBehavior;
1056    }
1057
1058    private boolean hasLongPressOnPowerBehavior() {
1059        return getResolvedLongPressOnPowerBehavior() != LONG_PRESS_POWER_NOTHING;
1060    }
1061
1062    private void interceptScreenshotChord() {
1063        if (mScreenshotChordEnabled
1064                && mScreenshotChordVolumeDownKeyTriggered && mScreenshotChordPowerKeyTriggered
1065                && !mScreenshotChordVolumeUpKeyTriggered) {
1066            final long now = SystemClock.uptimeMillis();
1067            if (now <= mScreenshotChordVolumeDownKeyTime + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS
1068                    && now <= mScreenshotChordPowerKeyTime
1069                            + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS) {
1070                mScreenshotChordVolumeDownKeyConsumed = true;
1071                cancelPendingPowerKeyAction();
1072
1073                mHandler.postDelayed(mScreenshotRunnable, getScreenshotChordLongPressDelay());
1074            }
1075        }
1076    }
1077
1078    private long getScreenshotChordLongPressDelay() {
1079        if (mKeyguardDelegate.isShowing()) {
1080            // Double the time it takes to take a screenshot from the keyguard
1081            return (long) (KEYGUARD_SCREENSHOT_CHORD_DELAY_MULTIPLIER *
1082                    ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
1083        }
1084        return ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout();
1085    }
1086
1087    private void cancelPendingScreenshotChordAction() {
1088        mHandler.removeCallbacks(mScreenshotRunnable);
1089    }
1090
1091    private final Runnable mEndCallLongPress = new Runnable() {
1092        @Override
1093        public void run() {
1094            mEndCallKeyHandled = true;
1095            if (!performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false)) {
1096                performAuditoryFeedbackForAccessibilityIfNeed();
1097            }
1098            showGlobalActionsInternal();
1099        }
1100    };
1101
1102    private final Runnable mScreenshotRunnable = new Runnable() {
1103        @Override
1104        public void run() {
1105            takeScreenshot();
1106        }
1107    };
1108
1109    @Override
1110    public void showGlobalActions() {
1111        mHandler.removeMessages(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1112        mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_GLOBAL_ACTIONS);
1113    }
1114
1115    void showGlobalActionsInternal() {
1116        sendCloseSystemWindows(SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS);
1117        if (mGlobalActions == null) {
1118            mGlobalActions = new GlobalActions(mContext, mWindowManagerFuncs);
1119        }
1120        final boolean keyguardShowing = isKeyguardShowingAndNotOccluded();
1121        mGlobalActions.showDialog(keyguardShowing, isDeviceProvisioned());
1122        if (keyguardShowing) {
1123            // since it took two seconds of long press to bring this up,
1124            // poke the wake lock so they have some time to see the dialog.
1125            mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
1126        }
1127    }
1128
1129    boolean isDeviceProvisioned() {
1130        return Settings.Global.getInt(
1131                mContext.getContentResolver(), Settings.Global.DEVICE_PROVISIONED, 0) != 0;
1132    }
1133
1134    boolean isUserSetupComplete() {
1135        return Settings.Secure.getIntForUser(mContext.getContentResolver(),
1136                Settings.Secure.USER_SETUP_COMPLETE, 0, UserHandle.USER_CURRENT) != 0;
1137    }
1138
1139    private void handleShortPressOnHome() {
1140        // If there's a dream running then use home to escape the dream
1141        // but don't actually go home.
1142        if (mDreamManagerInternal != null && mDreamManagerInternal.isDreaming()) {
1143            mDreamManagerInternal.stopDream(false /*immediate*/);
1144            return;
1145        }
1146
1147        // Go home!
1148        launchHomeFromHotKey();
1149    }
1150
1151    private void handleLongPressOnHome() {
1152        if (mLongPressOnHomeBehavior != LONG_PRESS_HOME_NOTHING) {
1153            mHomeConsumed = true;
1154            performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
1155
1156            if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI) {
1157                toggleRecentApps();
1158            } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_ASSIST) {
1159                launchAssistAction();
1160            }
1161        }
1162    }
1163
1164    private void handleDoubleTapOnHome() {
1165        if (mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1166            mHomeConsumed = true;
1167            toggleRecentApps();
1168        }
1169    }
1170
1171    private final Runnable mHomeDoubleTapTimeoutRunnable = new Runnable() {
1172        @Override
1173        public void run() {
1174            if (mHomeDoubleTapPending) {
1175                mHomeDoubleTapPending = false;
1176                handleShortPressOnHome();
1177            }
1178        }
1179    };
1180
1181    /** {@inheritDoc} */
1182    @Override
1183    public void init(Context context, IWindowManager windowManager,
1184            WindowManagerFuncs windowManagerFuncs) {
1185        mContext = context;
1186        mWindowManager = windowManager;
1187        mWindowManagerFuncs = windowManagerFuncs;
1188        mWindowManagerInternal = LocalServices.getService(WindowManagerInternal.class);
1189        mDreamManagerInternal = LocalServices.getService(DreamManagerInternal.class);
1190
1191        mHandler = new PolicyHandler();
1192        mWakeGestureListener = new MyWakeGestureListener(mContext, mHandler);
1193        mOrientationListener = new MyOrientationListener(mContext, mHandler);
1194        try {
1195            mOrientationListener.setCurrentRotation(windowManager.getRotation());
1196        } catch (RemoteException ex) { }
1197        mSettingsObserver = new SettingsObserver(mHandler);
1198        mSettingsObserver.observe();
1199        mShortcutManager = new ShortcutManager(context);
1200        mUiMode = context.getResources().getInteger(
1201                com.android.internal.R.integer.config_defaultUiModeType);
1202        mHomeIntent =  new Intent(Intent.ACTION_MAIN, null);
1203        mHomeIntent.addCategory(Intent.CATEGORY_HOME);
1204        mHomeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1205                | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1206        mCarDockIntent =  new Intent(Intent.ACTION_MAIN, null);
1207        mCarDockIntent.addCategory(Intent.CATEGORY_CAR_DOCK);
1208        mCarDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1209                | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1210        mDeskDockIntent =  new Intent(Intent.ACTION_MAIN, null);
1211        mDeskDockIntent.addCategory(Intent.CATEGORY_DESK_DOCK);
1212        mDeskDockIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
1213                | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
1214
1215        mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
1216        mBroadcastWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1217                "PhoneWindowManager.mBroadcastWakeLock");
1218        mPowerKeyWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
1219                "PhoneWindowManager.mPowerKeyWakeLock");
1220        mEnableShiftMenuBugReports = "1".equals(SystemProperties.get("ro.debuggable"));
1221        mSupportAutoRotation = mContext.getResources().getBoolean(
1222                com.android.internal.R.bool.config_supportAutoRotation);
1223        mLidOpenRotation = readRotation(
1224                com.android.internal.R.integer.config_lidOpenRotation);
1225        mCarDockRotation = readRotation(
1226                com.android.internal.R.integer.config_carDockRotation);
1227        mDeskDockRotation = readRotation(
1228                com.android.internal.R.integer.config_deskDockRotation);
1229        mUndockedHdmiRotation = readRotation(
1230                com.android.internal.R.integer.config_undockedHdmiRotation);
1231        mCarDockEnablesAccelerometer = mContext.getResources().getBoolean(
1232                com.android.internal.R.bool.config_carDockEnablesAccelerometer);
1233        mDeskDockEnablesAccelerometer = mContext.getResources().getBoolean(
1234                com.android.internal.R.bool.config_deskDockEnablesAccelerometer);
1235        mLidKeyboardAccessibility = mContext.getResources().getInteger(
1236                com.android.internal.R.integer.config_lidKeyboardAccessibility);
1237        mLidNavigationAccessibility = mContext.getResources().getInteger(
1238                com.android.internal.R.integer.config_lidNavigationAccessibility);
1239        mLidControlsSleep = mContext.getResources().getBoolean(
1240                com.android.internal.R.bool.config_lidControlsSleep);
1241        mTranslucentDecorEnabled = mContext.getResources().getBoolean(
1242                com.android.internal.R.bool.config_enableTranslucentDecor);
1243
1244        mAllowTheaterModeWakeFromKey = mContext.getResources().getBoolean(
1245                com.android.internal.R.bool.config_allowTheaterModeWakeFromKey);
1246        mAllowTheaterModeWakeFromPowerKey = mAllowTheaterModeWakeFromKey
1247                || mContext.getResources().getBoolean(
1248                    com.android.internal.R.bool.config_allowTheaterModeWakeFromPowerKey);
1249        mAllowTheaterModeWakeFromMotion = mContext.getResources().getBoolean(
1250                com.android.internal.R.bool.config_allowTheaterModeWakeFromMotion);
1251        mAllowTheaterModeWakeFromMotionWhenNotDreaming = mContext.getResources().getBoolean(
1252                com.android.internal.R.bool.config_allowTheaterModeWakeFromMotionWhenNotDreaming);
1253        mAllowTheaterModeWakeFromCameraLens = mContext.getResources().getBoolean(
1254                com.android.internal.R.bool.config_allowTheaterModeWakeFromCameraLens);
1255        mAllowTheaterModeWakeFromLidSwitch = mContext.getResources().getBoolean(
1256                com.android.internal.R.bool.config_allowTheaterModeWakeFromLidSwitch);
1257        mAllowTheaterModeWakeFromWakeGesture = mContext.getResources().getBoolean(
1258                com.android.internal.R.bool.config_allowTheaterModeWakeFromGesture);
1259
1260        mGoToSleepOnButtonPressTheaterMode = mContext.getResources().getBoolean(
1261                com.android.internal.R.bool.config_goToSleepOnButtonPressTheaterMode);
1262
1263        mShortPressOnPowerBehavior = mContext.getResources().getInteger(
1264                com.android.internal.R.integer.config_shortPressOnPowerBehavior);
1265        mLongPressOnPowerBehavior = mContext.getResources().getInteger(
1266                com.android.internal.R.integer.config_longPressOnPowerBehavior);
1267        mDoublePressOnPowerBehavior = mContext.getResources().getInteger(
1268                com.android.internal.R.integer.config_doublePressOnPowerBehavior);
1269        mTriplePressOnPowerBehavior = mContext.getResources().getInteger(
1270                com.android.internal.R.integer.config_triplePressOnPowerBehavior);
1271
1272        mUseTvRouting = AudioSystem.getPlatformType(mContext) == AudioSystem.PLATFORM_TELEVISION;
1273        mUseMasterVolume = mContext.getResources().getBoolean(
1274                com.android.internal.R.bool.config_useMasterVolume);
1275
1276        readConfigurationDependentBehaviors();
1277
1278        mAccessibilityManager = (AccessibilityManager) context.getSystemService(
1279                Context.ACCESSIBILITY_SERVICE);
1280
1281        // register for dock events
1282        IntentFilter filter = new IntentFilter();
1283        filter.addAction(UiModeManager.ACTION_ENTER_CAR_MODE);
1284        filter.addAction(UiModeManager.ACTION_EXIT_CAR_MODE);
1285        filter.addAction(UiModeManager.ACTION_ENTER_DESK_MODE);
1286        filter.addAction(UiModeManager.ACTION_EXIT_DESK_MODE);
1287        filter.addAction(Intent.ACTION_DOCK_EVENT);
1288        Intent intent = context.registerReceiver(mDockReceiver, filter);
1289        if (intent != null) {
1290            // Retrieve current sticky dock event broadcast.
1291            mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
1292                    Intent.EXTRA_DOCK_STATE_UNDOCKED);
1293        }
1294
1295        // register for dream-related broadcasts
1296        filter = new IntentFilter();
1297        filter.addAction(Intent.ACTION_DREAMING_STARTED);
1298        filter.addAction(Intent.ACTION_DREAMING_STOPPED);
1299        context.registerReceiver(mDreamReceiver, filter);
1300
1301        // register for multiuser-relevant broadcasts
1302        filter = new IntentFilter(Intent.ACTION_USER_SWITCHED);
1303        context.registerReceiver(mMultiuserReceiver, filter);
1304
1305        // monitor for system gestures
1306        mSystemGestures = new SystemGesturesPointerEventListener(context,
1307                new SystemGesturesPointerEventListener.Callbacks() {
1308                    @Override
1309                    public void onSwipeFromTop() {
1310                        if (mStatusBar != null) {
1311                            requestTransientBars(mStatusBar);
1312                        }
1313                    }
1314                    @Override
1315                    public void onSwipeFromBottom() {
1316                        if (mNavigationBar != null && mNavigationBarOnBottom) {
1317                            requestTransientBars(mNavigationBar);
1318                        }
1319                    }
1320                    @Override
1321                    public void onSwipeFromRight() {
1322                        if (mNavigationBar != null && !mNavigationBarOnBottom) {
1323                            requestTransientBars(mNavigationBar);
1324                        }
1325                    }
1326                    @Override
1327                    public void onDebug() {
1328                        // no-op
1329                    }
1330                });
1331        mImmersiveModeConfirmation = new ImmersiveModeConfirmation(mContext);
1332        mWindowManagerFuncs.registerPointerEventListener(mSystemGestures);
1333
1334        mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
1335        mLongPressVibePattern = getLongIntArray(mContext.getResources(),
1336                com.android.internal.R.array.config_longPressVibePattern);
1337        mVirtualKeyVibePattern = getLongIntArray(mContext.getResources(),
1338                com.android.internal.R.array.config_virtualKeyVibePattern);
1339        mKeyboardTapVibePattern = getLongIntArray(mContext.getResources(),
1340                com.android.internal.R.array.config_keyboardTapVibePattern);
1341        mClockTickVibePattern = getLongIntArray(mContext.getResources(),
1342                com.android.internal.R.array.config_clockTickVibePattern);
1343        mCalendarDateVibePattern = getLongIntArray(mContext.getResources(),
1344                com.android.internal.R.array.config_calendarDateVibePattern);
1345        mSafeModeDisabledVibePattern = getLongIntArray(mContext.getResources(),
1346                com.android.internal.R.array.config_safeModeDisabledVibePattern);
1347        mSafeModeEnabledVibePattern = getLongIntArray(mContext.getResources(),
1348                com.android.internal.R.array.config_safeModeEnabledVibePattern);
1349
1350        mScreenshotChordEnabled = mContext.getResources().getBoolean(
1351                com.android.internal.R.bool.config_enableScreenshotChord);
1352
1353        mGlobalKeyManager = new GlobalKeyManager(mContext);
1354
1355        // Controls rotation and the like.
1356        initializeHdmiState();
1357
1358        // Match current screen state.
1359        if (!mPowerManager.isInteractive()) {
1360            goingToSleep(WindowManagerPolicy.OFF_BECAUSE_OF_USER);
1361        }
1362    }
1363
1364    /**
1365     * Read values from config.xml that may be overridden depending on
1366     * the configuration of the device.
1367     * eg. Disable long press on home goes to recents on sw600dp.
1368     */
1369    private void readConfigurationDependentBehaviors() {
1370        mLongPressOnHomeBehavior = mContext.getResources().getInteger(
1371                com.android.internal.R.integer.config_longPressOnHomeBehavior);
1372        if (mLongPressOnHomeBehavior < LONG_PRESS_HOME_NOTHING ||
1373                mLongPressOnHomeBehavior > LONG_PRESS_HOME_ASSIST) {
1374            mLongPressOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1375        }
1376
1377        mDoubleTapOnHomeBehavior = mContext.getResources().getInteger(
1378                com.android.internal.R.integer.config_doubleTapOnHomeBehavior);
1379        if (mDoubleTapOnHomeBehavior < DOUBLE_TAP_HOME_NOTHING ||
1380                mDoubleTapOnHomeBehavior > DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
1381            mDoubleTapOnHomeBehavior = LONG_PRESS_HOME_NOTHING;
1382        }
1383    }
1384
1385    @Override
1386    public void setInitialDisplaySize(Display display, int width, int height, int density) {
1387        // This method might be called before the policy has been fully initialized
1388        // or for other displays we don't care about.
1389        if (mContext == null || display.getDisplayId() != Display.DEFAULT_DISPLAY) {
1390            return;
1391        }
1392        mDisplay = display;
1393
1394        final Resources res = mContext.getResources();
1395        int shortSize, longSize;
1396        if (width > height) {
1397            shortSize = height;
1398            longSize = width;
1399            mLandscapeRotation = Surface.ROTATION_0;
1400            mSeascapeRotation = Surface.ROTATION_180;
1401            if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
1402                mPortraitRotation = Surface.ROTATION_90;
1403                mUpsideDownRotation = Surface.ROTATION_270;
1404            } else {
1405                mPortraitRotation = Surface.ROTATION_270;
1406                mUpsideDownRotation = Surface.ROTATION_90;
1407            }
1408        } else {
1409            shortSize = width;
1410            longSize = height;
1411            mPortraitRotation = Surface.ROTATION_0;
1412            mUpsideDownRotation = Surface.ROTATION_180;
1413            if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {
1414                mLandscapeRotation = Surface.ROTATION_270;
1415                mSeascapeRotation = Surface.ROTATION_90;
1416            } else {
1417                mLandscapeRotation = Surface.ROTATION_90;
1418                mSeascapeRotation = Surface.ROTATION_270;
1419            }
1420        }
1421
1422        mStatusBarHeight =
1423                res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);
1424
1425        // Height of the navigation bar when presented horizontally at bottom
1426        mNavigationBarHeightForRotation[mPortraitRotation] =
1427        mNavigationBarHeightForRotation[mUpsideDownRotation] =
1428                res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);
1429        mNavigationBarHeightForRotation[mLandscapeRotation] =
1430        mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(
1431                com.android.internal.R.dimen.navigation_bar_height_landscape);
1432
1433        // Width of the navigation bar when presented vertically along one side
1434        mNavigationBarWidthForRotation[mPortraitRotation] =
1435        mNavigationBarWidthForRotation[mUpsideDownRotation] =
1436        mNavigationBarWidthForRotation[mLandscapeRotation] =
1437        mNavigationBarWidthForRotation[mSeascapeRotation] =
1438                res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);
1439
1440        // SystemUI (status bar) layout policy
1441        int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;
1442        int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;
1443
1444        // Allow the navigation bar to move on non-square small devices (phones).
1445        mNavigationBarCanMove = width != height && shortSizeDp < 600;
1446
1447        mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);
1448        // Allow a system property to override this. Used by the emulator.
1449        // See also hasNavigationBar().
1450        String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
1451        if ("1".equals(navBarOverride)) {
1452            mHasNavigationBar = false;
1453        } else if ("0".equals(navBarOverride)) {
1454            mHasNavigationBar = true;
1455        }
1456
1457        // For demo purposes, allow the rotation of the HDMI display to be controlled.
1458        // By default, HDMI locks rotation to landscape.
1459        if ("portrait".equals(SystemProperties.get("persist.demo.hdmirotation"))) {
1460            mDemoHdmiRotation = mPortraitRotation;
1461        } else {
1462            mDemoHdmiRotation = mLandscapeRotation;
1463        }
1464        mDemoHdmiRotationLock = SystemProperties.getBoolean("persist.demo.hdmirotationlock", false);
1465
1466        // For demo purposes, allow the rotation of the remote display to be controlled.
1467        // By default, remote display locks rotation to landscape.
1468        if ("portrait".equals(SystemProperties.get("persist.demo.remoterotation"))) {
1469            mDemoRotation = mPortraitRotation;
1470        } else {
1471            mDemoRotation = mLandscapeRotation;
1472        }
1473        mDemoRotationLock = SystemProperties.getBoolean(
1474                "persist.demo.rotationlock", false);
1475
1476        // Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per
1477        // http://developer.android.com/guide/practices/screens_support.html#range
1478        mForceDefaultOrientation = longSizeDp >= 960 && shortSizeDp >= 720 &&
1479                res.getBoolean(com.android.internal.R.bool.config_forceDefaultOrientation) &&
1480                // For debug purposes the next line turns this feature off with:
1481                // $ adb shell setprop config.override_forced_orient true
1482                // $ adb shell wm size reset
1483                !"true".equals(SystemProperties.get("config.override_forced_orient"));
1484    }
1485
1486    /**
1487     * @return whether the navigation bar can be hidden, e.g. the device has a
1488     *         navigation bar and touch exploration is not enabled
1489     */
1490    private boolean canHideNavigationBar() {
1491        return mHasNavigationBar
1492                && !mAccessibilityManager.isTouchExplorationEnabled();
1493    }
1494
1495    @Override
1496    public boolean isDefaultOrientationForced() {
1497        return mForceDefaultOrientation;
1498    }
1499
1500    @Override
1501    public void setDisplayOverscan(Display display, int left, int top, int right, int bottom) {
1502        if (display.getDisplayId() == Display.DEFAULT_DISPLAY) {
1503            mOverscanLeft = left;
1504            mOverscanTop = top;
1505            mOverscanRight = right;
1506            mOverscanBottom = bottom;
1507        }
1508    }
1509
1510    public void updateSettings() {
1511        ContentResolver resolver = mContext.getContentResolver();
1512        boolean updateRotation = false;
1513        synchronized (mLock) {
1514            mEndcallBehavior = Settings.System.getIntForUser(resolver,
1515                    Settings.System.END_BUTTON_BEHAVIOR,
1516                    Settings.System.END_BUTTON_BEHAVIOR_DEFAULT,
1517                    UserHandle.USER_CURRENT);
1518            mIncallPowerBehavior = Settings.Secure.getIntForUser(resolver,
1519                    Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
1520                    Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT,
1521                    UserHandle.USER_CURRENT);
1522
1523            // Configure wake gesture.
1524            boolean wakeGestureEnabledSetting = Settings.Secure.getIntForUser(resolver,
1525                    Settings.Secure.WAKE_GESTURE_ENABLED, 0,
1526                    UserHandle.USER_CURRENT) != 0;
1527            if (mWakeGestureEnabledSetting != wakeGestureEnabledSetting) {
1528                mWakeGestureEnabledSetting = wakeGestureEnabledSetting;
1529                updateWakeGestureListenerLp();
1530            }
1531
1532            // Configure rotation lock.
1533            int userRotation = Settings.System.getIntForUser(resolver,
1534                    Settings.System.USER_ROTATION, Surface.ROTATION_0,
1535                    UserHandle.USER_CURRENT);
1536            if (mUserRotation != userRotation) {
1537                mUserRotation = userRotation;
1538                updateRotation = true;
1539            }
1540            int userRotationMode = Settings.System.getIntForUser(resolver,
1541                    Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
1542                            WindowManagerPolicy.USER_ROTATION_FREE :
1543                                    WindowManagerPolicy.USER_ROTATION_LOCKED;
1544            if (mUserRotationMode != userRotationMode) {
1545                mUserRotationMode = userRotationMode;
1546                updateRotation = true;
1547                updateOrientationListenerLp();
1548            }
1549
1550            if (mSystemReady) {
1551                int pointerLocation = Settings.System.getIntForUser(resolver,
1552                        Settings.System.POINTER_LOCATION, 0, UserHandle.USER_CURRENT);
1553                if (mPointerLocationMode != pointerLocation) {
1554                    mPointerLocationMode = pointerLocation;
1555                    mHandler.sendEmptyMessage(pointerLocation != 0 ?
1556                            MSG_ENABLE_POINTER_LOCATION : MSG_DISABLE_POINTER_LOCATION);
1557                }
1558            }
1559            // use screen off timeout setting as the timeout for the lockscreen
1560            mLockScreenTimeout = Settings.System.getIntForUser(resolver,
1561                    Settings.System.SCREEN_OFF_TIMEOUT, 0, UserHandle.USER_CURRENT);
1562            String imId = Settings.Secure.getStringForUser(resolver,
1563                    Settings.Secure.DEFAULT_INPUT_METHOD, UserHandle.USER_CURRENT);
1564            boolean hasSoftInput = imId != null && imId.length() > 0;
1565            if (mHasSoftInput != hasSoftInput) {
1566                mHasSoftInput = hasSoftInput;
1567                updateRotation = true;
1568            }
1569            if (mImmersiveModeConfirmation != null) {
1570                mImmersiveModeConfirmation.loadSetting(mCurrentUserId);
1571            }
1572            PolicyControl.reloadFromSetting(mContext);
1573        }
1574        if (updateRotation) {
1575            updateRotation(true);
1576        }
1577    }
1578
1579    private void updateWakeGestureListenerLp() {
1580        if (shouldEnableWakeGestureLp()) {
1581            mWakeGestureListener.requestWakeUpTrigger();
1582        } else {
1583            mWakeGestureListener.cancelWakeUpTrigger();
1584        }
1585    }
1586
1587    private boolean shouldEnableWakeGestureLp() {
1588        return mWakeGestureEnabledSetting && !mAwake
1589                && (!mLidControlsSleep || mLidState != LID_CLOSED)
1590                && mWakeGestureListener.isSupported();
1591    }
1592
1593    private void enablePointerLocation() {
1594        if (mPointerLocationView == null) {
1595            mPointerLocationView = new PointerLocationView(mContext);
1596            mPointerLocationView.setPrintCoords(false);
1597            WindowManager.LayoutParams lp = new WindowManager.LayoutParams(
1598                    WindowManager.LayoutParams.MATCH_PARENT,
1599                    WindowManager.LayoutParams.MATCH_PARENT);
1600            lp.type = WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY;
1601            lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN
1602                    | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE
1603                    | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1604                    | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
1605            if (ActivityManager.isHighEndGfx()) {
1606                lp.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
1607                lp.privateFlags |=
1608                        WindowManager.LayoutParams.PRIVATE_FLAG_FORCE_HARDWARE_ACCELERATED;
1609            }
1610            lp.format = PixelFormat.TRANSLUCENT;
1611            lp.setTitle("PointerLocation");
1612            WindowManager wm = (WindowManager)
1613                    mContext.getSystemService(Context.WINDOW_SERVICE);
1614            lp.inputFeatures |= WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL;
1615            wm.addView(mPointerLocationView, lp);
1616            mWindowManagerFuncs.registerPointerEventListener(mPointerLocationView);
1617        }
1618    }
1619
1620    private void disablePointerLocation() {
1621        if (mPointerLocationView != null) {
1622            mWindowManagerFuncs.unregisterPointerEventListener(mPointerLocationView);
1623            WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
1624            wm.removeView(mPointerLocationView);
1625            mPointerLocationView = null;
1626        }
1627    }
1628
1629    private int readRotation(int resID) {
1630        try {
1631            int rotation = mContext.getResources().getInteger(resID);
1632            switch (rotation) {
1633                case 0:
1634                    return Surface.ROTATION_0;
1635                case 90:
1636                    return Surface.ROTATION_90;
1637                case 180:
1638                    return Surface.ROTATION_180;
1639                case 270:
1640                    return Surface.ROTATION_270;
1641            }
1642        } catch (Resources.NotFoundException e) {
1643            // fall through
1644        }
1645        return -1;
1646    }
1647
1648    /** {@inheritDoc} */
1649    @Override
1650    public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp) {
1651        int type = attrs.type;
1652
1653        outAppOp[0] = AppOpsManager.OP_NONE;
1654
1655        if (!((type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW)
1656                || (type >= FIRST_SUB_WINDOW && type <= LAST_SUB_WINDOW)
1657                || (type >= FIRST_SYSTEM_WINDOW && type <= LAST_SYSTEM_WINDOW))) {
1658            return WindowManagerGlobal.ADD_INVALID_TYPE;
1659        }
1660
1661        if (type < FIRST_SYSTEM_WINDOW || type > LAST_SYSTEM_WINDOW) {
1662            // Window manager will make sure these are okay.
1663            return WindowManagerGlobal.ADD_OKAY;
1664        }
1665        String permission = null;
1666        switch (type) {
1667            case TYPE_TOAST:
1668                // XXX right now the app process has complete control over
1669                // this...  should introduce a token to let the system
1670                // monitor/control what they are doing.
1671                outAppOp[0] = AppOpsManager.OP_TOAST_WINDOW;
1672                break;
1673            case TYPE_DREAM:
1674            case TYPE_INPUT_METHOD:
1675            case TYPE_WALLPAPER:
1676            case TYPE_PRIVATE_PRESENTATION:
1677            case TYPE_VOICE_INTERACTION:
1678            case TYPE_ACCESSIBILITY_OVERLAY:
1679                // The window manager will check these.
1680                break;
1681            case TYPE_PHONE:
1682            case TYPE_PRIORITY_PHONE:
1683            case TYPE_SYSTEM_ALERT:
1684            case TYPE_SYSTEM_ERROR:
1685            case TYPE_SYSTEM_OVERLAY:
1686                permission = android.Manifest.permission.SYSTEM_ALERT_WINDOW;
1687                outAppOp[0] = AppOpsManager.OP_SYSTEM_ALERT_WINDOW;
1688                break;
1689            default:
1690                permission = android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
1691        }
1692        if (permission != null) {
1693            if (mContext.checkCallingOrSelfPermission(permission)
1694                    != PackageManager.PERMISSION_GRANTED) {
1695                return WindowManagerGlobal.ADD_PERMISSION_DENIED;
1696            }
1697        }
1698        return WindowManagerGlobal.ADD_OKAY;
1699    }
1700
1701    @Override
1702    public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs) {
1703
1704        // If this switch statement is modified, modify the comment in the declarations of
1705        // the type in {@link WindowManager.LayoutParams} as well.
1706        switch (attrs.type) {
1707            default:
1708                // These are the windows that by default are shown only to the user that created
1709                // them. If this needs to be overridden, set
1710                // {@link WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS} in
1711                // {@link WindowManager.LayoutParams}. Note that permission
1712                // {@link android.Manifest.permission.INTERNAL_SYSTEM_WINDOW} is required as well.
1713                if ((attrs.privateFlags & PRIVATE_FLAG_SHOW_FOR_ALL_USERS) == 0) {
1714                    return true;
1715                }
1716                break;
1717
1718            // These are the windows that by default are shown to all users. However, to
1719            // protect against spoofing, check permissions below.
1720            case TYPE_APPLICATION_STARTING:
1721            case TYPE_BOOT_PROGRESS:
1722            case TYPE_DISPLAY_OVERLAY:
1723            case TYPE_HIDDEN_NAV_CONSUMER:
1724            case TYPE_KEYGUARD_SCRIM:
1725            case TYPE_KEYGUARD_DIALOG:
1726            case TYPE_MAGNIFICATION_OVERLAY:
1727            case TYPE_NAVIGATION_BAR:
1728            case TYPE_NAVIGATION_BAR_PANEL:
1729            case TYPE_PHONE:
1730            case TYPE_POINTER:
1731            case TYPE_PRIORITY_PHONE:
1732            case TYPE_SEARCH_BAR:
1733            case TYPE_STATUS_BAR:
1734            case TYPE_STATUS_BAR_PANEL:
1735            case TYPE_STATUS_BAR_SUB_PANEL:
1736            case TYPE_SYSTEM_DIALOG:
1737            case TYPE_VOLUME_OVERLAY:
1738            case TYPE_PRIVATE_PRESENTATION:
1739                break;
1740        }
1741
1742        // Check if third party app has set window to system window type.
1743        return mContext.checkCallingOrSelfPermission(
1744                android.Manifest.permission.INTERNAL_SYSTEM_WINDOW)
1745                        != PackageManager.PERMISSION_GRANTED;
1746    }
1747
1748    @Override
1749    public void adjustWindowParamsLw(WindowManager.LayoutParams attrs) {
1750        switch (attrs.type) {
1751            case TYPE_SYSTEM_OVERLAY:
1752            case TYPE_SECURE_SYSTEM_OVERLAY:
1753                // These types of windows can't receive input events.
1754                attrs.flags |= WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
1755                        | WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
1756                attrs.flags &= ~WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
1757                break;
1758            case TYPE_STATUS_BAR:
1759
1760                // If the Keyguard is in a hidden state (occluded by another window), we force to
1761                // remove the wallpaper and keyguard flag so that any change in-flight after setting
1762                // the keyguard as occluded wouldn't set these flags again.
1763                // See {@link #processKeyguardSetHiddenResultLw}.
1764                if (mKeyguardHidden) {
1765                    attrs.flags &= ~WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER;
1766                    attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1767                }
1768                break;
1769        }
1770
1771        if (attrs.type != TYPE_STATUS_BAR) {
1772            // The status bar is the only window allowed to exhibit keyguard behavior.
1773            attrs.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_KEYGUARD;
1774        }
1775
1776        if (ActivityManager.isHighEndGfx()
1777                && (attrs.flags & FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) != 0) {
1778            attrs.subtreeSystemUiVisibility |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
1779                    | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
1780        }
1781    }
1782
1783    void readLidState() {
1784        mLidState = mWindowManagerFuncs.getLidState();
1785    }
1786
1787    private void readCameraLensCoverState() {
1788        mCameraLensCoverState = mWindowManagerFuncs.getCameraLensCoverState();
1789    }
1790
1791    private boolean isHidden(int accessibilityMode) {
1792        switch (accessibilityMode) {
1793            case 1:
1794                return mLidState == LID_CLOSED;
1795            case 2:
1796                return mLidState == LID_OPEN;
1797            default:
1798                return false;
1799        }
1800    }
1801
1802    /** {@inheritDoc} */
1803    @Override
1804    public void adjustConfigurationLw(Configuration config, int keyboardPresence,
1805            int navigationPresence) {
1806        mHaveBuiltInKeyboard = (keyboardPresence & PRESENCE_INTERNAL) != 0;
1807
1808        readConfigurationDependentBehaviors();
1809        readLidState();
1810        applyLidSwitchState();
1811
1812        if (config.keyboard == Configuration.KEYBOARD_NOKEYS
1813                || (keyboardPresence == PRESENCE_INTERNAL
1814                        && isHidden(mLidKeyboardAccessibility))) {
1815            config.hardKeyboardHidden = Configuration.HARDKEYBOARDHIDDEN_YES;
1816            if (!mHasSoftInput) {
1817                config.keyboardHidden = Configuration.KEYBOARDHIDDEN_YES;
1818            }
1819        }
1820
1821        if (config.navigation == Configuration.NAVIGATION_NONAV
1822                || (navigationPresence == PRESENCE_INTERNAL
1823                        && isHidden(mLidNavigationAccessibility))) {
1824            config.navigationHidden = Configuration.NAVIGATIONHIDDEN_YES;
1825        }
1826    }
1827
1828    /** {@inheritDoc} */
1829    @Override
1830    public int windowTypeToLayerLw(int type) {
1831        if (type >= FIRST_APPLICATION_WINDOW && type <= LAST_APPLICATION_WINDOW) {
1832            return 2;
1833        }
1834        switch (type) {
1835        case TYPE_PRIVATE_PRESENTATION:
1836            return 2;
1837        case TYPE_WALLPAPER:
1838            // wallpaper is at the bottom, though the window manager may move it.
1839            return 2;
1840        case TYPE_PHONE:
1841            return 3;
1842        case TYPE_SEARCH_BAR:
1843            return 4;
1844        case TYPE_VOICE_INTERACTION:
1845            // voice interaction layer is almost immediately above apps.
1846            return 5;
1847        case TYPE_SYSTEM_DIALOG:
1848            return 6;
1849        case TYPE_TOAST:
1850            // toasts and the plugged-in battery thing
1851            return 7;
1852        case TYPE_PRIORITY_PHONE:
1853            // SIM errors and unlock.  Not sure if this really should be in a high layer.
1854            return 8;
1855        case TYPE_DREAM:
1856            // used for Dreams (screensavers with TYPE_DREAM windows)
1857            return 9;
1858        case TYPE_SYSTEM_ALERT:
1859            // like the ANR / app crashed dialogs
1860            return 10;
1861        case TYPE_INPUT_METHOD:
1862            // on-screen keyboards and other such input method user interfaces go here.
1863            return 11;
1864        case TYPE_INPUT_METHOD_DIALOG:
1865            // on-screen keyboards and other such input method user interfaces go here.
1866            return 12;
1867        case TYPE_KEYGUARD_SCRIM:
1868            // the safety window that shows behind keyguard while keyguard is starting
1869            return 13;
1870        case TYPE_STATUS_BAR_SUB_PANEL:
1871            return 14;
1872        case TYPE_STATUS_BAR:
1873            return 15;
1874        case TYPE_STATUS_BAR_PANEL:
1875            return 16;
1876        case TYPE_KEYGUARD_DIALOG:
1877            return 17;
1878        case TYPE_VOLUME_OVERLAY:
1879            // the on-screen volume indicator and controller shown when the user
1880            // changes the device volume
1881            return 18;
1882        case TYPE_SYSTEM_OVERLAY:
1883            // the on-screen volume indicator and controller shown when the user
1884            // changes the device volume
1885            return 19;
1886        case TYPE_NAVIGATION_BAR:
1887            // the navigation bar, if available, shows atop most things
1888            return 20;
1889        case TYPE_NAVIGATION_BAR_PANEL:
1890            // some panels (e.g. search) need to show on top of the navigation bar
1891            return 21;
1892        case TYPE_SYSTEM_ERROR:
1893            // system-level error dialogs
1894            return 22;
1895        case TYPE_MAGNIFICATION_OVERLAY:
1896            // used to highlight the magnified portion of a display
1897            return 23;
1898        case TYPE_DISPLAY_OVERLAY:
1899            // used to simulate secondary display devices
1900            return 24;
1901        case TYPE_DRAG:
1902            // the drag layer: input for drag-and-drop is associated with this window,
1903            // which sits above all other focusable windows
1904            return 25;
1905        case TYPE_ACCESSIBILITY_OVERLAY:
1906            // overlay put by accessibility services to intercept user interaction
1907            return 26;
1908        case TYPE_SECURE_SYSTEM_OVERLAY:
1909            return 27;
1910        case TYPE_BOOT_PROGRESS:
1911            return 28;
1912        case TYPE_POINTER:
1913            // the (mouse) pointer layer
1914            return 29;
1915        case TYPE_HIDDEN_NAV_CONSUMER:
1916            return 30;
1917        }
1918        Log.e(TAG, "Unknown window type: " + type);
1919        return 2;
1920    }
1921
1922    /** {@inheritDoc} */
1923    @Override
1924    public int subWindowTypeToLayerLw(int type) {
1925        switch (type) {
1926        case TYPE_APPLICATION_PANEL:
1927        case TYPE_APPLICATION_ATTACHED_DIALOG:
1928            return APPLICATION_PANEL_SUBLAYER;
1929        case TYPE_APPLICATION_MEDIA:
1930            return APPLICATION_MEDIA_SUBLAYER;
1931        case TYPE_APPLICATION_MEDIA_OVERLAY:
1932            return APPLICATION_MEDIA_OVERLAY_SUBLAYER;
1933        case TYPE_APPLICATION_SUB_PANEL:
1934            return APPLICATION_SUB_PANEL_SUBLAYER;
1935        }
1936        Log.e(TAG, "Unknown sub-window type: " + type);
1937        return 0;
1938    }
1939
1940    @Override
1941    public int getMaxWallpaperLayer() {
1942        return windowTypeToLayerLw(TYPE_STATUS_BAR);
1943    }
1944
1945    @Override
1946    public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) {
1947        if (mHasNavigationBar) {
1948            // For a basic navigation bar, when we are in landscape mode we place
1949            // the navigation bar to the side.
1950            if (mNavigationBarCanMove && fullWidth > fullHeight) {
1951                return fullWidth - mNavigationBarWidthForRotation[rotation];
1952            }
1953        }
1954        return fullWidth;
1955    }
1956
1957    @Override
1958    public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) {
1959        if (mHasNavigationBar) {
1960            // For a basic navigation bar, when we are in portrait mode we place
1961            // the navigation bar to the bottom.
1962            if (!mNavigationBarCanMove || fullWidth < fullHeight) {
1963                return fullHeight - mNavigationBarHeightForRotation[rotation];
1964            }
1965        }
1966        return fullHeight;
1967    }
1968
1969    @Override
1970    public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) {
1971        return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
1972    }
1973
1974    @Override
1975    public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) {
1976        // There is a separate status bar at the top of the display.  We don't count that as part
1977        // of the fixed decor, since it can hide; however, for purposes of configurations,
1978        // we do want to exclude it since applications can't generally use that part
1979        // of the screen.
1980        return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight;
1981    }
1982
1983    @Override
1984    public boolean isForceHiding(WindowManager.LayoutParams attrs) {
1985        return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
1986                (isKeyguardHostWindow(attrs) &&
1987                        (mKeyguardDelegate != null && mKeyguardDelegate.isShowing())) ||
1988                (attrs.type == TYPE_KEYGUARD_SCRIM);
1989    }
1990
1991    @Override
1992    public boolean isKeyguardHostWindow(WindowManager.LayoutParams attrs) {
1993        return attrs.type == TYPE_STATUS_BAR;
1994    }
1995
1996    @Override
1997    public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs) {
1998        switch (attrs.type) {
1999            case TYPE_STATUS_BAR:
2000            case TYPE_NAVIGATION_BAR:
2001            case TYPE_WALLPAPER:
2002            case TYPE_DREAM:
2003            case TYPE_KEYGUARD_SCRIM:
2004                return false;
2005            default:
2006                return true;
2007        }
2008    }
2009
2010    @Override
2011    public WindowState getWinShowWhenLockedLw() {
2012        return mWinShowWhenLocked;
2013    }
2014
2015    /** {@inheritDoc} */
2016    @Override
2017    public View addStartingWindow(IBinder appToken, String packageName, int theme,
2018            CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, int labelRes,
2019            int icon, int logo, int windowFlags) {
2020        if (!SHOW_STARTING_ANIMATIONS) {
2021            return null;
2022        }
2023        if (packageName == null) {
2024            return null;
2025        }
2026
2027        WindowManager wm = null;
2028        View view = null;
2029
2030        try {
2031            Context context = mContext;
2032            if (DEBUG_STARTING_WINDOW) Slog.d(TAG, "addStartingWindow " + packageName
2033                    + ": nonLocalizedLabel=" + nonLocalizedLabel + " theme="
2034                    + Integer.toHexString(theme));
2035            if (theme != context.getThemeResId() || labelRes != 0) {
2036                try {
2037                    context = context.createPackageContext(packageName, 0);
2038                    context.setTheme(theme);
2039                } catch (PackageManager.NameNotFoundException e) {
2040                    // Ignore
2041                }
2042            }
2043
2044            Window win = new PhoneWindow(context);
2045            final TypedArray ta = win.getWindowStyle();
2046            if (ta.getBoolean(
2047                        com.android.internal.R.styleable.Window_windowDisablePreview, false)
2048                || ta.getBoolean(
2049                        com.android.internal.R.styleable.Window_windowShowWallpaper,false)) {
2050                return null;
2051            }
2052
2053            Resources r = context.getResources();
2054            win.setTitle(r.getText(labelRes, nonLocalizedLabel));
2055
2056            win.setType(
2057                WindowManager.LayoutParams.TYPE_APPLICATION_STARTING);
2058            // Force the window flags: this is a fake window, so it is not really
2059            // touchable or focusable by the user.  We also add in the ALT_FOCUSABLE_IM
2060            // flag because we do know that the next window will take input
2061            // focus, so we want to get the IME window up on top of us right away.
2062            win.setFlags(
2063                windowFlags|
2064                WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2065                WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2066                WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
2067                windowFlags|
2068                WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE|
2069                WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
2070                WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
2071
2072            win.setDefaultIcon(icon);
2073            win.setDefaultLogo(logo);
2074
2075            win.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
2076                    WindowManager.LayoutParams.MATCH_PARENT);
2077
2078            final WindowManager.LayoutParams params = win.getAttributes();
2079            params.token = appToken;
2080            params.packageName = packageName;
2081            params.windowAnimations = win.getWindowStyle().getResourceId(
2082                    com.android.internal.R.styleable.Window_windowAnimationStyle, 0);
2083            params.privateFlags |=
2084                    WindowManager.LayoutParams.PRIVATE_FLAG_FAKE_HARDWARE_ACCELERATED;
2085            params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
2086
2087            if (!compatInfo.supportsScreen()) {
2088                params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
2089            }
2090
2091            params.setTitle("Starting " + packageName);
2092
2093            wm = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
2094            view = win.getDecorView();
2095
2096            if (win.isFloating()) {
2097                // Whoops, there is no way to display an animation/preview
2098                // of such a thing!  After all that work...  let's skip it.
2099                // (Note that we must do this here because it is in
2100                // getDecorView() where the theme is evaluated...  maybe
2101                // we should peek the floating attribute from the theme
2102                // earlier.)
2103                return null;
2104            }
2105
2106            if (DEBUG_STARTING_WINDOW) Slog.d(
2107                TAG, "Adding starting window for " + packageName
2108                + " / " + appToken + ": "
2109                + (view.getParent() != null ? view : null));
2110
2111            wm.addView(view, params);
2112
2113            // Only return the view if it was successfully added to the
2114            // window manager... which we can tell by it having a parent.
2115            return view.getParent() != null ? view : null;
2116        } catch (WindowManager.BadTokenException e) {
2117            // ignore
2118            Log.w(TAG, appToken + " already running, starting window not displayed. " +
2119                    e.getMessage());
2120        } catch (RuntimeException e) {
2121            // don't crash if something else bad happens, for example a
2122            // failure loading resources because we are loading from an app
2123            // on external storage that has been unmounted.
2124            Log.w(TAG, appToken + " failed creating starting window", e);
2125        } finally {
2126            if (view != null && view.getParent() == null) {
2127                Log.w(TAG, "view not successfully added to wm, removing view");
2128                wm.removeViewImmediate(view);
2129            }
2130        }
2131
2132        return null;
2133    }
2134
2135    /** {@inheritDoc} */
2136    @Override
2137    public void removeStartingWindow(IBinder appToken, View window) {
2138        if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Removing starting window for " + appToken + ": "
2139                + window + " Callers=" + Debug.getCallers(4));
2140
2141        if (window != null) {
2142            WindowManager wm = (WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE);
2143            wm.removeView(window);
2144        }
2145    }
2146
2147    /**
2148     * Preflight adding a window to the system.
2149     *
2150     * Currently enforces that three window types are singletons:
2151     * <ul>
2152     * <li>STATUS_BAR_TYPE</li>
2153     * <li>KEYGUARD_TYPE</li>
2154     * </ul>
2155     *
2156     * @param win The window to be added
2157     * @param attrs Information about the window to be added
2158     *
2159     * @return If ok, WindowManagerImpl.ADD_OKAY.  If too many singletons,
2160     * WindowManagerImpl.ADD_MULTIPLE_SINGLETON
2161     */
2162    @Override
2163    public int prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) {
2164        switch (attrs.type) {
2165            case TYPE_STATUS_BAR:
2166                mContext.enforceCallingOrSelfPermission(
2167                        android.Manifest.permission.STATUS_BAR_SERVICE,
2168                        "PhoneWindowManager");
2169                if (mStatusBar != null) {
2170                    if (mStatusBar.isAlive()) {
2171                        return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2172                    }
2173                }
2174                mStatusBar = win;
2175                mStatusBarController.setWindow(win);
2176                break;
2177            case TYPE_NAVIGATION_BAR:
2178                mContext.enforceCallingOrSelfPermission(
2179                        android.Manifest.permission.STATUS_BAR_SERVICE,
2180                        "PhoneWindowManager");
2181                if (mNavigationBar != null) {
2182                    if (mNavigationBar.isAlive()) {
2183                        return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2184                    }
2185                }
2186                mNavigationBar = win;
2187                mNavigationBarController.setWindow(win);
2188                if (DEBUG_LAYOUT) Slog.i(TAG, "NAVIGATION BAR: " + mNavigationBar);
2189                break;
2190            case TYPE_NAVIGATION_BAR_PANEL:
2191                mContext.enforceCallingOrSelfPermission(
2192                        android.Manifest.permission.STATUS_BAR_SERVICE,
2193                        "PhoneWindowManager");
2194                break;
2195            case TYPE_STATUS_BAR_PANEL:
2196                mContext.enforceCallingOrSelfPermission(
2197                        android.Manifest.permission.STATUS_BAR_SERVICE,
2198                        "PhoneWindowManager");
2199                break;
2200            case TYPE_STATUS_BAR_SUB_PANEL:
2201                mContext.enforceCallingOrSelfPermission(
2202                        android.Manifest.permission.STATUS_BAR_SERVICE,
2203                        "PhoneWindowManager");
2204                break;
2205            case TYPE_KEYGUARD_SCRIM:
2206                if (mKeyguardScrim != null) {
2207                    return WindowManagerGlobal.ADD_MULTIPLE_SINGLETON;
2208                }
2209                mKeyguardScrim = win;
2210                break;
2211        }
2212        return WindowManagerGlobal.ADD_OKAY;
2213    }
2214
2215    /** {@inheritDoc} */
2216    @Override
2217    public void removeWindowLw(WindowState win) {
2218        if (mStatusBar == win) {
2219            mStatusBar = null;
2220            mStatusBarController.setWindow(null);
2221            mKeyguardDelegate.showScrim();
2222        } else if (mKeyguardScrim == win) {
2223            Log.v(TAG, "Removing keyguard scrim");
2224            mKeyguardScrim = null;
2225        } if (mNavigationBar == win) {
2226            mNavigationBar = null;
2227            mNavigationBarController.setWindow(null);
2228        }
2229    }
2230
2231    static final boolean PRINT_ANIM = false;
2232
2233    /** {@inheritDoc} */
2234    @Override
2235    public int selectAnimationLw(WindowState win, int transit) {
2236        if (PRINT_ANIM) Log.i(TAG, "selectAnimation in " + win
2237              + ": transit=" + transit);
2238        if (win == mStatusBar) {
2239            boolean isKeyguard = (win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
2240            if (transit == TRANSIT_EXIT
2241                    || transit == TRANSIT_HIDE) {
2242                return isKeyguard ? -1 : R.anim.dock_top_exit;
2243            } else if (transit == TRANSIT_ENTER
2244                    || transit == TRANSIT_SHOW) {
2245                return isKeyguard ? -1 : R.anim.dock_top_enter;
2246            }
2247        } else if (win == mNavigationBar) {
2248            // This can be on either the bottom or the right.
2249            if (mNavigationBarOnBottom) {
2250                if (transit == TRANSIT_EXIT
2251                        || transit == TRANSIT_HIDE) {
2252                    return R.anim.dock_bottom_exit;
2253                } else if (transit == TRANSIT_ENTER
2254                        || transit == TRANSIT_SHOW) {
2255                    return R.anim.dock_bottom_enter;
2256                }
2257            } else {
2258                if (transit == TRANSIT_EXIT
2259                        || transit == TRANSIT_HIDE) {
2260                    return R.anim.dock_right_exit;
2261                } else if (transit == TRANSIT_ENTER
2262                        || transit == TRANSIT_SHOW) {
2263                    return R.anim.dock_right_enter;
2264                }
2265            }
2266        }
2267
2268        if (transit == TRANSIT_PREVIEW_DONE) {
2269            if (win.hasAppShownWindows()) {
2270                if (PRINT_ANIM) Log.i(TAG, "**** STARTING EXIT");
2271                return com.android.internal.R.anim.app_starting_exit;
2272            }
2273        } else if (win.getAttrs().type == TYPE_DREAM && mDreamingLockscreen
2274                && transit == TRANSIT_ENTER) {
2275            // Special case: we are animating in a dream, while the keyguard
2276            // is shown.  We don't want an animation on the dream, because
2277            // we need it shown immediately with the keyguard animating away
2278            // to reveal it.
2279            return -1;
2280        }
2281
2282        return 0;
2283    }
2284
2285    @Override
2286    public void selectRotationAnimationLw(int anim[]) {
2287        if (PRINT_ANIM) Slog.i(TAG, "selectRotationAnimation mTopFullscreen="
2288                + mTopFullscreenOpaqueWindowState + " rotationAnimation="
2289                + (mTopFullscreenOpaqueWindowState == null ?
2290                        "0" : mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation));
2291        if (mTopFullscreenOpaqueWindowState != null && mTopIsFullscreen) {
2292            switch (mTopFullscreenOpaqueWindowState.getAttrs().rotationAnimation) {
2293                case ROTATION_ANIMATION_CROSSFADE:
2294                    anim[0] = R.anim.rotation_animation_xfade_exit;
2295                    anim[1] = R.anim.rotation_animation_enter;
2296                    break;
2297                case ROTATION_ANIMATION_JUMPCUT:
2298                    anim[0] = R.anim.rotation_animation_jump_exit;
2299                    anim[1] = R.anim.rotation_animation_enter;
2300                    break;
2301                case ROTATION_ANIMATION_ROTATE:
2302                default:
2303                    anim[0] = anim[1] = 0;
2304                    break;
2305            }
2306        } else {
2307            anim[0] = anim[1] = 0;
2308        }
2309    }
2310
2311    @Override
2312    public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
2313            boolean forceDefault) {
2314        switch (exitAnimId) {
2315            case R.anim.rotation_animation_xfade_exit:
2316            case R.anim.rotation_animation_jump_exit:
2317                // These are the only cases that matter.
2318                if (forceDefault) {
2319                    return false;
2320                }
2321                int anim[] = new int[2];
2322                selectRotationAnimationLw(anim);
2323                return (exitAnimId == anim[0] && enterAnimId == anim[1]);
2324            default:
2325                return true;
2326        }
2327    }
2328
2329    @Override
2330    public Animation createForceHideEnterAnimation(boolean onWallpaper,
2331            boolean goingToNotificationShade) {
2332        if (goingToNotificationShade) {
2333            return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_behind_enter_fade_in);
2334        }
2335
2336        AnimationSet set = (AnimationSet) AnimationUtils.loadAnimation(mContext, onWallpaper ?
2337                    R.anim.lock_screen_behind_enter_wallpaper :
2338                    R.anim.lock_screen_behind_enter);
2339
2340        // TODO: Use XML interpolators when we have log interpolators available in XML.
2341        final List<Animation> animations = set.getAnimations();
2342        for (int i = animations.size() - 1; i >= 0; --i) {
2343            animations.get(i).setInterpolator(mLogDecelerateInterpolator);
2344        }
2345
2346        return set;
2347    }
2348
2349
2350    @Override
2351    public Animation createForceHideWallpaperExitAnimation(boolean goingToNotificationShade) {
2352        if (goingToNotificationShade) {
2353            return null;
2354        } else {
2355            return AnimationUtils.loadAnimation(mContext, R.anim.lock_screen_wallpaper_exit);
2356        }
2357    }
2358
2359    private static void awakenDreams() {
2360        IDreamManager dreamManager = getDreamManager();
2361        if (dreamManager != null) {
2362            try {
2363                dreamManager.awaken();
2364            } catch (RemoteException e) {
2365                // fine, stay asleep then
2366            }
2367        }
2368    }
2369
2370    static IDreamManager getDreamManager() {
2371        return IDreamManager.Stub.asInterface(
2372                ServiceManager.checkService(DreamService.DREAM_SERVICE));
2373    }
2374
2375    TelecomManager getTelecommService() {
2376        return (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
2377    }
2378
2379    static IAudioService getAudioService() {
2380        IAudioService audioService = IAudioService.Stub.asInterface(
2381                ServiceManager.checkService(Context.AUDIO_SERVICE));
2382        if (audioService == null) {
2383            Log.w(TAG, "Unable to find IAudioService interface.");
2384        }
2385        return audioService;
2386    }
2387
2388    boolean keyguardOn() {
2389        return isKeyguardShowingAndNotOccluded() || inKeyguardRestrictedKeyInputMode();
2390    }
2391
2392    private static final int[] WINDOW_TYPES_WHERE_HOME_DOESNT_WORK = {
2393            WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
2394            WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
2395        };
2396
2397    /** {@inheritDoc} */
2398    @Override
2399    public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags) {
2400        final boolean keyguardOn = keyguardOn();
2401        final int keyCode = event.getKeyCode();
2402        final int repeatCount = event.getRepeatCount();
2403        final int metaState = event.getMetaState();
2404        final int flags = event.getFlags();
2405        final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
2406        final boolean canceled = event.isCanceled();
2407
2408        if (DEBUG_INPUT) {
2409            Log.d(TAG, "interceptKeyTi keyCode=" + keyCode + " down=" + down + " repeatCount="
2410                    + repeatCount + " keyguardOn=" + keyguardOn + " mHomePressed=" + mHomePressed
2411                    + " canceled=" + canceled);
2412        }
2413
2414        // If we think we might have a volume down & power key chord on the way
2415        // but we're not sure, then tell the dispatcher to wait a little while and
2416        // try again later before dispatching.
2417        if (mScreenshotChordEnabled && (flags & KeyEvent.FLAG_FALLBACK) == 0) {
2418            if (mScreenshotChordVolumeDownKeyTriggered && !mScreenshotChordPowerKeyTriggered) {
2419                final long now = SystemClock.uptimeMillis();
2420                final long timeoutTime = mScreenshotChordVolumeDownKeyTime
2421                        + SCREENSHOT_CHORD_DEBOUNCE_DELAY_MILLIS;
2422                if (now < timeoutTime) {
2423                    return timeoutTime - now;
2424                }
2425            }
2426            if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN
2427                    && mScreenshotChordVolumeDownKeyConsumed) {
2428                if (!down) {
2429                    mScreenshotChordVolumeDownKeyConsumed = false;
2430                }
2431                return -1;
2432            }
2433        }
2434
2435        // Cancel any pending meta actions if we see any other keys being pressed between the down
2436        // of the meta key and its corresponding up.
2437        if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
2438            mPendingMetaAction = false;
2439        }
2440
2441        // First we always handle the home key here, so applications
2442        // can never break it, although if keyguard is on, we do let
2443        // it handle it, because that gives us the correct 5 second
2444        // timeout.
2445        if (keyCode == KeyEvent.KEYCODE_HOME) {
2446
2447            // If we have released the home key, and didn't do anything else
2448            // while it was pressed, then it is time to go home!
2449            if (!down) {
2450                cancelPreloadRecentApps();
2451
2452                mHomePressed = false;
2453                if (mHomeConsumed) {
2454                    mHomeConsumed = false;
2455                    return -1;
2456                }
2457
2458                if (canceled) {
2459                    Log.i(TAG, "Ignoring HOME; event canceled.");
2460                    return -1;
2461                }
2462
2463                // If an incoming call is ringing, HOME is totally disabled.
2464                // (The user is already on the InCallUI at this point,
2465                // and his ONLY options are to answer or reject the call.)
2466                TelecomManager telecomManager = getTelecommService();
2467                if (telecomManager != null && telecomManager.isRinging()) {
2468                    Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");
2469                    return -1;
2470                }
2471
2472                // Delay handling home if a double-tap is possible.
2473                if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {
2474                    mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case
2475                    mHomeDoubleTapPending = true;
2476                    mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,
2477                            ViewConfiguration.getDoubleTapTimeout());
2478                    return -1;
2479                }
2480
2481                handleShortPressOnHome();
2482                return -1;
2483            }
2484
2485            // If a system window has focus, then it doesn't make sense
2486            // right now to interact with applications.
2487            WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;
2488            if (attrs != null) {
2489                final int type = attrs.type;
2490                if (type == WindowManager.LayoutParams.TYPE_KEYGUARD_SCRIM
2491                        || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG
2492                        || (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
2493                    // the "app" is keyguard, so give it the key
2494                    return 0;
2495                }
2496                final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;
2497                for (int i=0; i<typeCount; i++) {
2498                    if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {
2499                        // don't do anything, but also don't pass it to the app
2500                        return -1;
2501                    }
2502                }
2503            }
2504
2505            // Remember that home is pressed and handle special actions.
2506            if (repeatCount == 0) {
2507                mHomePressed = true;
2508                if (mHomeDoubleTapPending) {
2509                    mHomeDoubleTapPending = false;
2510                    mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable);
2511                    handleDoubleTapOnHome();
2512                } else if (mLongPressOnHomeBehavior == LONG_PRESS_HOME_RECENT_SYSTEM_UI
2513                        || mDoubleTapOnHomeBehavior == DOUBLE_TAP_HOME_RECENT_SYSTEM_UI) {
2514                    preloadRecentApps();
2515                }
2516            } else if ((event.getFlags() & KeyEvent.FLAG_LONG_PRESS) != 0) {
2517                if (!keyguardOn) {
2518                    handleLongPressOnHome();
2519                }
2520            }
2521            return -1;
2522        } else if (keyCode == KeyEvent.KEYCODE_MENU) {
2523            // Hijack modified menu keys for debugging features
2524            final int chordBug = KeyEvent.META_SHIFT_ON;
2525
2526            if (down && repeatCount == 0) {
2527                if (mEnableShiftMenuBugReports && (metaState & chordBug) == chordBug) {
2528                    Intent intent = new Intent(Intent.ACTION_BUG_REPORT);
2529                    mContext.sendOrderedBroadcastAsUser(intent, UserHandle.CURRENT,
2530                            null, null, null, 0, null, null);
2531                    return -1;
2532                } else if (SHOW_PROCESSES_ON_ALT_MENU &&
2533                        (metaState & KeyEvent.META_ALT_ON) == KeyEvent.META_ALT_ON) {
2534                    Intent service = new Intent();
2535                    service.setClassName(mContext, "com.android.server.LoadAverageService");
2536                    ContentResolver res = mContext.getContentResolver();
2537                    boolean shown = Settings.Global.getInt(
2538                            res, Settings.Global.SHOW_PROCESSES, 0) != 0;
2539                    if (!shown) {
2540                        mContext.startService(service);
2541                    } else {
2542                        mContext.stopService(service);
2543                    }
2544                    Settings.Global.putInt(
2545                            res, Settings.Global.SHOW_PROCESSES, shown ? 0 : 1);
2546                    return -1;
2547                }
2548            }
2549        } else if (keyCode == KeyEvent.KEYCODE_SEARCH) {
2550            if (down) {
2551                if (repeatCount == 0) {
2552                    mSearchKeyShortcutPending = true;
2553                    mConsumeSearchKeyUp = false;
2554                }
2555            } else {
2556                mSearchKeyShortcutPending = false;
2557                if (mConsumeSearchKeyUp) {
2558                    mConsumeSearchKeyUp = false;
2559                    return -1;
2560                }
2561            }
2562            return 0;
2563        } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
2564            if (!keyguardOn) {
2565                if (down && repeatCount == 0) {
2566                    preloadRecentApps();
2567                } else if (!down) {
2568                    toggleRecentApps();
2569                }
2570            }
2571            return -1;
2572        } else if (keyCode == KeyEvent.KEYCODE_ASSIST) {
2573            if (down) {
2574                if (repeatCount == 0) {
2575                    mAssistKeyLongPressed = false;
2576                } else if (repeatCount == 1) {
2577                    mAssistKeyLongPressed = true;
2578                    if (!keyguardOn) {
2579                         launchAssistLongPressAction();
2580                    }
2581                }
2582            } else {
2583                if (mAssistKeyLongPressed) {
2584                    mAssistKeyLongPressed = false;
2585                } else {
2586                    if (!keyguardOn) {
2587                        launchAssistAction();
2588                    }
2589                }
2590            }
2591            return -1;
2592        } else if (keyCode == KeyEvent.KEYCODE_VOICE_ASSIST) {
2593            if (!down) {
2594                Intent voiceIntent;
2595                if (!keyguardOn) {
2596                    voiceIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
2597                } else {
2598                    voiceIntent = new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
2599                    voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, true);
2600                }
2601                mContext.startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
2602            }
2603        } else if (keyCode == KeyEvent.KEYCODE_SYSRQ) {
2604            if (down && repeatCount == 0) {
2605                mHandler.post(mScreenshotRunnable);
2606            }
2607            return -1;
2608        } else if (keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP
2609                || keyCode == KeyEvent.KEYCODE_BRIGHTNESS_DOWN) {
2610            if (down) {
2611                int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2612
2613                // Disable autobrightness if it's on
2614                int auto = Settings.System.getIntForUser(
2615                        mContext.getContentResolver(),
2616                        Settings.System.SCREEN_BRIGHTNESS_MODE,
2617                        Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2618                        UserHandle.USER_CURRENT_OR_SELF);
2619                if (auto != 0) {
2620                    Settings.System.putIntForUser(mContext.getContentResolver(),
2621                            Settings.System.SCREEN_BRIGHTNESS_MODE,
2622                            Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL,
2623                            UserHandle.USER_CURRENT_OR_SELF);
2624                }
2625
2626                int min = mPowerManager.getMinimumScreenBrightnessSetting();
2627                int max = mPowerManager.getMaximumScreenBrightnessSetting();
2628                int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2629                int brightness = Settings.System.getIntForUser(mContext.getContentResolver(),
2630                        Settings.System.SCREEN_BRIGHTNESS,
2631                        mPowerManager.getDefaultScreenBrightnessSetting(),
2632                        UserHandle.USER_CURRENT_OR_SELF);
2633                brightness += step;
2634                // Make sure we don't go beyond the limits.
2635                brightness = Math.min(max, brightness);
2636                brightness = Math.max(min, brightness);
2637
2638                Settings.System.putIntForUser(mContext.getContentResolver(),
2639                        Settings.System.SCREEN_BRIGHTNESS, brightness,
2640                        UserHandle.USER_CURRENT_OR_SELF);
2641                mContext.startActivityAsUser(new Intent(Intent.ACTION_SHOW_BRIGHTNESS_DIALOG),
2642                        UserHandle.CURRENT_OR_SELF);
2643            }
2644            return -1;
2645        } else if (KeyEvent.isMetaKey(keyCode)) {
2646            if (down) {
2647                mPendingMetaAction = true;
2648            } else if (mPendingMetaAction) {
2649                launchAssistAction(Intent.EXTRA_ASSIST_INPUT_HINT_KEYBOARD);
2650            }
2651            return -1;
2652        }
2653
2654        // Shortcuts are invoked through Search+key, so intercept those here
2655        // Any printing key that is chorded with Search should be consumed
2656        // even if no shortcut was invoked.  This prevents text from being
2657        // inadvertently inserted when using a keyboard that has built-in macro
2658        // shortcut keys (that emit Search+x) and some of them are not registered.
2659        if (mSearchKeyShortcutPending) {
2660            final KeyCharacterMap kcm = event.getKeyCharacterMap();
2661            if (kcm.isPrintingKey(keyCode)) {
2662                mConsumeSearchKeyUp = true;
2663                mSearchKeyShortcutPending = false;
2664                if (down && repeatCount == 0 && !keyguardOn) {
2665                    Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode, metaState);
2666                    if (shortcutIntent != null) {
2667                        shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2668                        try {
2669                            mContext.startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
2670                        } catch (ActivityNotFoundException ex) {
2671                            Slog.w(TAG, "Dropping shortcut key combination because "
2672                                    + "the activity to which it is registered was not found: "
2673                                    + "SEARCH+" + KeyEvent.keyCodeToString(keyCode), ex);
2674                        }
2675                    } else {
2676                        Slog.i(TAG, "Dropping unregistered shortcut key combination: "
2677                                + "SEARCH+" + KeyEvent.keyCodeToString(keyCode));
2678                    }
2679                }
2680                return -1;
2681            }
2682        }
2683
2684        // Invoke shortcuts using Meta.
2685        if (down && repeatCount == 0 && !keyguardOn
2686                && (metaState & KeyEvent.META_META_ON) != 0) {
2687            final KeyCharacterMap kcm = event.getKeyCharacterMap();
2688            if (kcm.isPrintingKey(keyCode)) {
2689                Intent shortcutIntent = mShortcutManager.getIntent(kcm, keyCode,
2690                        metaState & ~(KeyEvent.META_META_ON
2691                                | KeyEvent.META_META_LEFT_ON | KeyEvent.META_META_RIGHT_ON));
2692                if (shortcutIntent != null) {
2693                    shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2694                    try {
2695                        mContext.startActivityAsUser(shortcutIntent, UserHandle.CURRENT);
2696                    } catch (ActivityNotFoundException ex) {
2697                        Slog.w(TAG, "Dropping shortcut key combination because "
2698                                + "the activity to which it is registered was not found: "
2699                                + "META+" + KeyEvent.keyCodeToString(keyCode), ex);
2700                    }
2701                    return -1;
2702                }
2703            }
2704        }
2705
2706        // Handle application launch keys.
2707        if (down && repeatCount == 0 && !keyguardOn) {
2708            String category = sApplicationLaunchKeyCategories.get(keyCode);
2709            if (category != null) {
2710                Intent intent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN, category);
2711                intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2712                try {
2713                    mContext.startActivityAsUser(intent, UserHandle.CURRENT);
2714                } catch (ActivityNotFoundException ex) {
2715                    Slog.w(TAG, "Dropping application launch key because "
2716                            + "the activity to which it is registered was not found: "
2717                            + "keyCode=" + keyCode + ", category=" + category, ex);
2718                }
2719                return -1;
2720            }
2721        }
2722
2723        // Display task switcher for ALT-TAB.
2724        if (down && repeatCount == 0 && keyCode == KeyEvent.KEYCODE_TAB) {
2725            if (mRecentAppsHeldModifiers == 0 && !keyguardOn) {
2726                final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
2727                if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
2728                    mRecentAppsHeldModifiers = shiftlessModifiers;
2729                    showRecentApps(true);
2730                    return -1;
2731                }
2732            }
2733        } else if (!down && mRecentAppsHeldModifiers != 0
2734                && (metaState & mRecentAppsHeldModifiers) == 0) {
2735            mRecentAppsHeldModifiers = 0;
2736            hideRecentApps(true, false);
2737        }
2738
2739        // Handle keyboard language switching.
2740        if (down && repeatCount == 0
2741                && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2742                        || (keyCode == KeyEvent.KEYCODE_SPACE
2743                                && (metaState & KeyEvent.META_CTRL_MASK) != 0))) {
2744            int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
2745            mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
2746            return -1;
2747        }
2748        if (mLanguageSwitchKeyPressed && !down
2749                && (keyCode == KeyEvent.KEYCODE_LANGUAGE_SWITCH
2750                        || keyCode == KeyEvent.KEYCODE_SPACE)) {
2751            mLanguageSwitchKeyPressed = false;
2752            return -1;
2753        }
2754
2755        if (isValidGlobalKey(keyCode)
2756                && mGlobalKeyManager.handleGlobalKey(mContext, keyCode, event)) {
2757            return -1;
2758        }
2759
2760        // Reserve all the META modifier combos for system behavior
2761        if ((metaState & KeyEvent.META_META_ON) != 0) {
2762            return -1;
2763        }
2764
2765        // Let the application handle the key.
2766        return 0;
2767    }
2768
2769    /** {@inheritDoc} */
2770    @Override
2771    public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags) {
2772        // Note: This method is only called if the initial down was unhandled.
2773        if (DEBUG_INPUT) {
2774            Slog.d(TAG, "Unhandled key: win=" + win + ", action=" + event.getAction()
2775                    + ", flags=" + event.getFlags()
2776                    + ", keyCode=" + event.getKeyCode()
2777                    + ", scanCode=" + event.getScanCode()
2778                    + ", metaState=" + event.getMetaState()
2779                    + ", repeatCount=" + event.getRepeatCount()
2780                    + ", policyFlags=" + policyFlags);
2781        }
2782
2783        KeyEvent fallbackEvent = null;
2784        if ((event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
2785            final KeyCharacterMap kcm = event.getKeyCharacterMap();
2786            final int keyCode = event.getKeyCode();
2787            final int metaState = event.getMetaState();
2788            final boolean initialDown = event.getAction() == KeyEvent.ACTION_DOWN
2789                    && event.getRepeatCount() == 0;
2790
2791            // Check for fallback actions specified by the key character map.
2792            final FallbackAction fallbackAction;
2793            if (initialDown) {
2794                fallbackAction = kcm.getFallbackAction(keyCode, metaState);
2795            } else {
2796                fallbackAction = mFallbackActions.get(keyCode);
2797            }
2798
2799            if (fallbackAction != null) {
2800                if (DEBUG_INPUT) {
2801                    Slog.d(TAG, "Fallback: keyCode=" + fallbackAction.keyCode
2802                            + " metaState=" + Integer.toHexString(fallbackAction.metaState));
2803                }
2804
2805                final int flags = event.getFlags() | KeyEvent.FLAG_FALLBACK;
2806                fallbackEvent = KeyEvent.obtain(
2807                        event.getDownTime(), event.getEventTime(),
2808                        event.getAction(), fallbackAction.keyCode,
2809                        event.getRepeatCount(), fallbackAction.metaState,
2810                        event.getDeviceId(), event.getScanCode(),
2811                        flags, event.getSource(), null);
2812
2813                if (!interceptFallback(win, fallbackEvent, policyFlags)) {
2814                    fallbackEvent.recycle();
2815                    fallbackEvent = null;
2816                }
2817
2818                if (initialDown) {
2819                    mFallbackActions.put(keyCode, fallbackAction);
2820                } else if (event.getAction() == KeyEvent.ACTION_UP) {
2821                    mFallbackActions.remove(keyCode);
2822                    fallbackAction.recycle();
2823                }
2824            }
2825        }
2826
2827        if (DEBUG_INPUT) {
2828            if (fallbackEvent == null) {
2829                Slog.d(TAG, "No fallback.");
2830            } else {
2831                Slog.d(TAG, "Performing fallback: " + fallbackEvent);
2832            }
2833        }
2834        return fallbackEvent;
2835    }
2836
2837    private boolean interceptFallback(WindowState win, KeyEvent fallbackEvent, int policyFlags) {
2838        int actions = interceptKeyBeforeQueueing(fallbackEvent, policyFlags);
2839        if ((actions & ACTION_PASS_TO_USER) != 0) {
2840            long delayMillis = interceptKeyBeforeDispatching(
2841                    win, fallbackEvent, policyFlags);
2842            if (delayMillis == 0) {
2843                return true;
2844            }
2845        }
2846        return false;
2847    }
2848
2849    private void launchAssistLongPressAction() {
2850        performHapticFeedbackLw(null, HapticFeedbackConstants.LONG_PRESS, false);
2851        sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
2852
2853        // launch the search activity
2854        Intent intent = new Intent(Intent.ACTION_SEARCH_LONG_PRESS);
2855        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2856        try {
2857            // TODO: This only stops the factory-installed search manager.
2858            // Need to formalize an API to handle others
2859            SearchManager searchManager = getSearchManager();
2860            if (searchManager != null) {
2861                searchManager.stopSearch();
2862            }
2863            mContext.startActivityAsUser(intent, UserHandle.CURRENT);
2864        } catch (ActivityNotFoundException e) {
2865            Slog.w(TAG, "No activity to handle assist long press action.", e);
2866        }
2867    }
2868
2869    private void launchAssistAction() {
2870        launchAssistAction(null);
2871    }
2872
2873    private void launchAssistAction(String hint) {
2874        sendCloseSystemWindows(SYSTEM_DIALOG_REASON_ASSIST);
2875        Intent intent = ((SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE))
2876                .getAssistIntent(mContext, true, UserHandle.USER_CURRENT);
2877        if (intent != null) {
2878            if (hint != null) {
2879                intent.putExtra(hint, true);
2880            }
2881            intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
2882                    | Intent.FLAG_ACTIVITY_SINGLE_TOP
2883                    | Intent.FLAG_ACTIVITY_CLEAR_TOP);
2884            try {
2885                mContext.startActivityAsUser(intent, UserHandle.CURRENT);
2886            } catch (ActivityNotFoundException e) {
2887                Slog.w(TAG, "No activity to handle assist action.", e);
2888            }
2889        }
2890    }
2891
2892    private SearchManager getSearchManager() {
2893        if (mSearchManager == null) {
2894            mSearchManager = (SearchManager) mContext.getSystemService(Context.SEARCH_SERVICE);
2895        }
2896        return mSearchManager;
2897    }
2898
2899    private void preloadRecentApps() {
2900        mPreloadedRecentApps = true;
2901        try {
2902            IStatusBarService statusbar = getStatusBarService();
2903            if (statusbar != null) {
2904                statusbar.preloadRecentApps();
2905            }
2906        } catch (RemoteException e) {
2907            Slog.e(TAG, "RemoteException when preloading recent apps", e);
2908            // re-acquire status bar service next time it is needed.
2909            mStatusBarService = null;
2910        }
2911    }
2912
2913    private void cancelPreloadRecentApps() {
2914        if (mPreloadedRecentApps) {
2915            mPreloadedRecentApps = false;
2916            try {
2917                IStatusBarService statusbar = getStatusBarService();
2918                if (statusbar != null) {
2919                    statusbar.cancelPreloadRecentApps();
2920                }
2921            } catch (RemoteException e) {
2922                Slog.e(TAG, "RemoteException when cancelling recent apps preload", e);
2923                // re-acquire status bar service next time it is needed.
2924                mStatusBarService = null;
2925            }
2926        }
2927    }
2928
2929    private void toggleRecentApps() {
2930        mPreloadedRecentApps = false; // preloading no longer needs to be canceled
2931        try {
2932            IStatusBarService statusbar = getStatusBarService();
2933            if (statusbar != null) {
2934                statusbar.toggleRecentApps();
2935            }
2936        } catch (RemoteException e) {
2937            Slog.e(TAG, "RemoteException when toggling recent apps", e);
2938            // re-acquire status bar service next time it is needed.
2939            mStatusBarService = null;
2940        }
2941    }
2942
2943    @Override
2944    public void showRecentApps() {
2945        mHandler.removeMessages(MSG_DISPATCH_SHOW_RECENTS);
2946        mHandler.sendEmptyMessage(MSG_DISPATCH_SHOW_RECENTS);
2947    }
2948
2949    private void showRecentApps(boolean triggeredFromAltTab) {
2950        mPreloadedRecentApps = false; // preloading no longer needs to be canceled
2951        try {
2952            IStatusBarService statusbar = getStatusBarService();
2953            if (statusbar != null) {
2954                statusbar.showRecentApps(triggeredFromAltTab);
2955            }
2956        } catch (RemoteException e) {
2957            Slog.e(TAG, "RemoteException when showing recent apps", e);
2958            // re-acquire status bar service next time it is needed.
2959            mStatusBarService = null;
2960        }
2961    }
2962
2963    private void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHome) {
2964        mPreloadedRecentApps = false; // preloading no longer needs to be canceled
2965        try {
2966            IStatusBarService statusbar = getStatusBarService();
2967            if (statusbar != null) {
2968                statusbar.hideRecentApps(triggeredFromAltTab, triggeredFromHome);
2969            }
2970        } catch (RemoteException e) {
2971            Slog.e(TAG, "RemoteException when closing recent apps", e);
2972            // re-acquire status bar service next time it is needed.
2973            mStatusBarService = null;
2974        }
2975    }
2976
2977    /**
2978     * A home key -> launch home action was detected.  Take the appropriate action
2979     * given the situation with the keyguard.
2980     */
2981    void launchHomeFromHotKey() {
2982        if (isKeyguardShowingAndNotOccluded()) {
2983            // don't launch home if keyguard showing
2984        } else if (!mHideLockScreen && mKeyguardDelegate.isInputRestricted()) {
2985            // when in keyguard restricted mode, must first verify unlock
2986            // before launching home
2987            mKeyguardDelegate.verifyUnlock(new OnKeyguardExitResult() {
2988                @Override
2989                public void onKeyguardExitResult(boolean success) {
2990                    if (success) {
2991                        try {
2992                            ActivityManagerNative.getDefault().stopAppSwitches();
2993                        } catch (RemoteException e) {
2994                        }
2995                        sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
2996                        startDockOrHome(true /*fromHomeKey*/);
2997                    }
2998                }
2999            });
3000        } else {
3001            // no keyguard stuff to worry about, just launch home!
3002            try {
3003                ActivityManagerNative.getDefault().stopAppSwitches();
3004            } catch (RemoteException e) {
3005            }
3006            if (mRecentsVisible) {
3007                // Hide Recents and notify it to launch Home
3008                awakenDreams();
3009                sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3010                hideRecentApps(false, true);
3011            } else {
3012                // Otherwise, just launch Home
3013                sendCloseSystemWindows(SYSTEM_DIALOG_REASON_HOME_KEY);
3014                startDockOrHome(true /*fromHomeKey*/);
3015            }
3016        }
3017    }
3018
3019    private final Runnable mClearHideNavigationFlag = new Runnable() {
3020        @Override
3021        public void run() {
3022            synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3023                // Clear flags.
3024                mForceClearedSystemUiFlags &=
3025                        ~View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3026            }
3027            mWindowManagerFuncs.reevaluateStatusBarVisibility();
3028        }
3029    };
3030
3031    /**
3032     * Input handler used while nav bar is hidden.  Captures any touch on the screen,
3033     * to determine when the nav bar should be shown and prevent applications from
3034     * receiving those touches.
3035     */
3036    final class HideNavInputEventReceiver extends InputEventReceiver {
3037        public HideNavInputEventReceiver(InputChannel inputChannel, Looper looper) {
3038            super(inputChannel, looper);
3039        }
3040
3041        @Override
3042        public void onInputEvent(InputEvent event) {
3043            boolean handled = false;
3044            try {
3045                if (event instanceof MotionEvent
3046                        && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
3047                    final MotionEvent motionEvent = (MotionEvent)event;
3048                    if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
3049                        // When the user taps down, we re-show the nav bar.
3050                        boolean changed = false;
3051                        synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
3052                            // Any user activity always causes us to show the
3053                            // navigation controls, if they had been hidden.
3054                            // We also clear the low profile and only content
3055                            // flags so that tapping on the screen will atomically
3056                            // restore all currently hidden screen decorations.
3057                            int newVal = mResettingSystemUiFlags |
3058                                    View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3059                                    View.SYSTEM_UI_FLAG_LOW_PROFILE |
3060                                    View.SYSTEM_UI_FLAG_FULLSCREEN;
3061                            if (mResettingSystemUiFlags != newVal) {
3062                                mResettingSystemUiFlags = newVal;
3063                                changed = true;
3064                            }
3065                            // We don't allow the system's nav bar to be hidden
3066                            // again for 1 second, to prevent applications from
3067                            // spamming us and keeping it from being shown.
3068                            newVal = mForceClearedSystemUiFlags |
3069                                    View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
3070                            if (mForceClearedSystemUiFlags != newVal) {
3071                                mForceClearedSystemUiFlags = newVal;
3072                                changed = true;
3073                                mHandler.postDelayed(mClearHideNavigationFlag, 1000);
3074                            }
3075                        }
3076                        if (changed) {
3077                            mWindowManagerFuncs.reevaluateStatusBarVisibility();
3078                        }
3079                    }
3080                }
3081            } finally {
3082                finishInputEvent(event, handled);
3083            }
3084        }
3085    }
3086    final InputEventReceiver.Factory mHideNavInputEventReceiverFactory =
3087            new InputEventReceiver.Factory() {
3088        @Override
3089        public InputEventReceiver createInputEventReceiver(
3090                InputChannel inputChannel, Looper looper) {
3091            return new HideNavInputEventReceiver(inputChannel, looper);
3092        }
3093    };
3094
3095    @Override
3096    public int adjustSystemUiVisibilityLw(int visibility) {
3097        mStatusBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3098        mNavigationBarController.adjustSystemUiVisibilityLw(mLastSystemUiFlags, visibility);
3099        mRecentsVisible = (visibility & View.RECENT_APPS_VISIBLE) > 0;
3100
3101        // Reset any bits in mForceClearingStatusBarVisibility that
3102        // are now clear.
3103        mResettingSystemUiFlags &= visibility;
3104        // Clear any bits in the new visibility that are currently being
3105        // force cleared, before reporting it.
3106        return visibility & ~mResettingSystemUiFlags
3107                & ~mForceClearedSystemUiFlags;
3108    }
3109
3110    @Override
3111    public void getInsetHintLw(WindowManager.LayoutParams attrs, Rect outContentInsets,
3112            Rect outStableInsets) {
3113        final int fl = PolicyControl.getWindowFlags(null, attrs);
3114        final int sysuiVis = PolicyControl.getSystemUiVisibility(null, attrs);
3115        final int systemUiVisibility = (sysuiVis | attrs.subtreeSystemUiVisibility);
3116
3117        if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
3118                == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
3119            int availRight, availBottom;
3120            if (canHideNavigationBar() &&
3121                    (systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0) {
3122                availRight = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3123                availBottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3124            } else {
3125                availRight = mRestrictedScreenLeft + mRestrictedScreenWidth;
3126                availBottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3127            }
3128            if ((systemUiVisibility & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3129                if ((fl & FLAG_FULLSCREEN) != 0) {
3130                    outContentInsets.set(mStableFullscreenLeft, mStableFullscreenTop,
3131                            availRight - mStableFullscreenRight,
3132                            availBottom - mStableFullscreenBottom);
3133                } else {
3134                    outContentInsets.set(mStableLeft, mStableTop,
3135                            availRight - mStableRight, availBottom - mStableBottom);
3136                }
3137            } else if ((fl & FLAG_FULLSCREEN) != 0 || (fl & FLAG_LAYOUT_IN_OVERSCAN) != 0) {
3138                outContentInsets.setEmpty();
3139            } else if ((systemUiVisibility & (View.SYSTEM_UI_FLAG_FULLSCREEN
3140                        | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)) == 0) {
3141                outContentInsets.set(mCurLeft, mCurTop,
3142                        availRight - mCurRight, availBottom - mCurBottom);
3143            } else {
3144                outContentInsets.set(mCurLeft, mCurTop,
3145                        availRight - mCurRight, availBottom - mCurBottom);
3146            }
3147
3148            outStableInsets.set(mStableLeft, mStableTop,
3149                    availRight - mStableRight, availBottom - mStableBottom);
3150            return;
3151        }
3152        outContentInsets.setEmpty();
3153        outStableInsets.setEmpty();
3154    }
3155
3156    /** {@inheritDoc} */
3157    @Override
3158    public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
3159                              int displayRotation) {
3160        final int overscanLeft, overscanTop, overscanRight, overscanBottom;
3161        if (isDefaultDisplay) {
3162            switch (displayRotation) {
3163                case Surface.ROTATION_90:
3164                    overscanLeft = mOverscanTop;
3165                    overscanTop = mOverscanRight;
3166                    overscanRight = mOverscanBottom;
3167                    overscanBottom = mOverscanLeft;
3168                    break;
3169                case Surface.ROTATION_180:
3170                    overscanLeft = mOverscanRight;
3171                    overscanTop = mOverscanBottom;
3172                    overscanRight = mOverscanLeft;
3173                    overscanBottom = mOverscanTop;
3174                    break;
3175                case Surface.ROTATION_270:
3176                    overscanLeft = mOverscanBottom;
3177                    overscanTop = mOverscanLeft;
3178                    overscanRight = mOverscanTop;
3179                    overscanBottom = mOverscanRight;
3180                    break;
3181                default:
3182                    overscanLeft = mOverscanLeft;
3183                    overscanTop = mOverscanTop;
3184                    overscanRight = mOverscanRight;
3185                    overscanBottom = mOverscanBottom;
3186                    break;
3187            }
3188        } else {
3189            overscanLeft = 0;
3190            overscanTop = 0;
3191            overscanRight = 0;
3192            overscanBottom = 0;
3193        }
3194        mOverscanScreenLeft = mRestrictedOverscanScreenLeft = 0;
3195        mOverscanScreenTop = mRestrictedOverscanScreenTop = 0;
3196        mOverscanScreenWidth = mRestrictedOverscanScreenWidth = displayWidth;
3197        mOverscanScreenHeight = mRestrictedOverscanScreenHeight = displayHeight;
3198        mSystemLeft = 0;
3199        mSystemTop = 0;
3200        mSystemRight = displayWidth;
3201        mSystemBottom = displayHeight;
3202        mUnrestrictedScreenLeft = overscanLeft;
3203        mUnrestrictedScreenTop = overscanTop;
3204        mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight;
3205        mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom;
3206        mRestrictedScreenLeft = mUnrestrictedScreenLeft;
3207        mRestrictedScreenTop = mUnrestrictedScreenTop;
3208        mRestrictedScreenWidth = mSystemGestures.screenWidth = mUnrestrictedScreenWidth;
3209        mRestrictedScreenHeight = mSystemGestures.screenHeight = mUnrestrictedScreenHeight;
3210        mDockLeft = mContentLeft = mVoiceContentLeft = mStableLeft = mStableFullscreenLeft
3211                = mCurLeft = mUnrestrictedScreenLeft;
3212        mDockTop = mContentTop = mVoiceContentTop = mStableTop = mStableFullscreenTop
3213                = mCurTop = mUnrestrictedScreenTop;
3214        mDockRight = mContentRight = mVoiceContentRight = mStableRight = mStableFullscreenRight
3215                = mCurRight = displayWidth - overscanRight;
3216        mDockBottom = mContentBottom = mVoiceContentBottom = mStableBottom = mStableFullscreenBottom
3217                = mCurBottom = displayHeight - overscanBottom;
3218        mDockLayer = 0x10000000;
3219        mStatusBarLayer = -1;
3220
3221        // start with the current dock rect, which will be (0,0,displayWidth,displayHeight)
3222        final Rect pf = mTmpParentFrame;
3223        final Rect df = mTmpDisplayFrame;
3224        final Rect of = mTmpOverscanFrame;
3225        final Rect vf = mTmpVisibleFrame;
3226        final Rect dcf = mTmpDecorFrame;
3227        pf.left = df.left = of.left = vf.left = mDockLeft;
3228        pf.top = df.top = of.top = vf.top = mDockTop;
3229        pf.right = df.right = of.right = vf.right = mDockRight;
3230        pf.bottom = df.bottom = of.bottom = vf.bottom = mDockBottom;
3231        dcf.setEmpty();  // Decor frame N/A for system bars.
3232
3233        if (isDefaultDisplay) {
3234            // For purposes of putting out fake window up to steal focus, we will
3235            // drive nav being hidden only by whether it is requested.
3236            final int sysui = mLastSystemUiFlags;
3237            boolean navVisible = (sysui & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0;
3238            boolean navTranslucent = (sysui
3239                    & (View.NAVIGATION_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
3240            boolean immersive = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE) != 0;
3241            boolean immersiveSticky = (sysui & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
3242            boolean navAllowedHidden = immersive || immersiveSticky;
3243            navTranslucent &= !immersiveSticky;  // transient trumps translucent
3244            boolean isKeyguardShowing = isStatusBarKeyguard() && !mHideLockScreen;
3245            if (!isKeyguardShowing) {
3246                navTranslucent &= areTranslucentBarsAllowed();
3247            }
3248
3249            // When the navigation bar isn't visible, we put up a fake
3250            // input window to catch all touch events.  This way we can
3251            // detect when the user presses anywhere to bring back the nav
3252            // bar and ensure the application doesn't see the event.
3253            if (navVisible || navAllowedHidden) {
3254                if (mHideNavFakeWindow != null) {
3255                    mHideNavFakeWindow.dismiss();
3256                    mHideNavFakeWindow = null;
3257                }
3258            } else if (mHideNavFakeWindow == null) {
3259                mHideNavFakeWindow = mWindowManagerFuncs.addFakeWindow(
3260                        mHandler.getLooper(), mHideNavInputEventReceiverFactory,
3261                        "hidden nav", WindowManager.LayoutParams.TYPE_HIDDEN_NAV_CONSUMER, 0,
3262                        0, false, false, true);
3263            }
3264
3265            // For purposes of positioning and showing the nav bar, if we have
3266            // decided that it can't be hidden (because of the screen aspect ratio),
3267            // then take that into account.
3268            navVisible |= !canHideNavigationBar();
3269
3270            boolean updateSysUiVisibility = false;
3271            if (mNavigationBar != null) {
3272                boolean transientNavBarShowing = mNavigationBarController.isTransientShowing();
3273                // Force the navigation bar to its appropriate place and
3274                // size.  We need to do this directly, instead of relying on
3275                // it to bubble up from the nav bar, because this needs to
3276                // change atomically with screen rotations.
3277                mNavigationBarOnBottom = (!mNavigationBarCanMove || displayWidth < displayHeight);
3278                if (mNavigationBarOnBottom) {
3279                    // It's a system nav bar or a portrait screen; nav bar goes on bottom.
3280                    int top = displayHeight - overscanBottom
3281                            - mNavigationBarHeightForRotation[displayRotation];
3282                    mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom);
3283                    mStableBottom = mStableFullscreenBottom = mTmpNavigationFrame.top;
3284                    if (transientNavBarShowing) {
3285                        mNavigationBarController.setBarShowingLw(true);
3286                    } else if (navVisible) {
3287                        mNavigationBarController.setBarShowingLw(true);
3288                        mDockBottom = mTmpNavigationFrame.top;
3289                        mRestrictedScreenHeight = mDockBottom - mRestrictedScreenTop;
3290                        mRestrictedOverscanScreenHeight = mDockBottom - mRestrictedOverscanScreenTop;
3291                    } else {
3292                        // We currently want to hide the navigation UI.
3293                        mNavigationBarController.setBarShowingLw(false);
3294                    }
3295                    if (navVisible && !navTranslucent && !navAllowedHidden
3296                            && !mNavigationBar.isAnimatingLw()
3297                            && !mNavigationBarController.wasRecentlyTranslucent()) {
3298                        // If the opaque nav bar is currently requested to be visible,
3299                        // and not in the process of animating on or off, then
3300                        // we can tell the app that it is covered by it.
3301                        mSystemBottom = mTmpNavigationFrame.top;
3302                    }
3303                } else {
3304                    // Landscape screen; nav bar goes to the right.
3305                    int left = displayWidth - overscanRight
3306                            - mNavigationBarWidthForRotation[displayRotation];
3307                    mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight);
3308                    mStableRight = mStableFullscreenRight = mTmpNavigationFrame.left;
3309                    if (transientNavBarShowing) {
3310                        mNavigationBarController.setBarShowingLw(true);
3311                    } else if (navVisible) {
3312                        mNavigationBarController.setBarShowingLw(true);
3313                        mDockRight = mTmpNavigationFrame.left;
3314                        mRestrictedScreenWidth = mDockRight - mRestrictedScreenLeft;
3315                        mRestrictedOverscanScreenWidth = mDockRight - mRestrictedOverscanScreenLeft;
3316                    } else {
3317                        // We currently want to hide the navigation UI.
3318                        mNavigationBarController.setBarShowingLw(false);
3319                    }
3320                    if (navVisible && !navTranslucent && !mNavigationBar.isAnimatingLw()
3321                            && !mNavigationBarController.wasRecentlyTranslucent()) {
3322                        // If the nav bar is currently requested to be visible,
3323                        // and not in the process of animating on or off, then
3324                        // we can tell the app that it is covered by it.
3325                        mSystemRight = mTmpNavigationFrame.left;
3326                    }
3327                }
3328                // Make sure the content and current rectangles are updated to
3329                // account for the restrictions from the navigation bar.
3330                mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3331                mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3332                mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3333                mContentRight = mVoiceContentRight = mCurRight = mDockRight;
3334                mStatusBarLayer = mNavigationBar.getSurfaceLayer();
3335                // And compute the final frame.
3336                mNavigationBar.computeFrameLw(mTmpNavigationFrame, mTmpNavigationFrame,
3337                        mTmpNavigationFrame, mTmpNavigationFrame, mTmpNavigationFrame, dcf,
3338                        mTmpNavigationFrame);
3339                if (DEBUG_LAYOUT) Slog.i(TAG, "mNavigationBar frame: " + mTmpNavigationFrame);
3340                if (mNavigationBarController.checkHiddenLw()) {
3341                    updateSysUiVisibility = true;
3342                }
3343            }
3344            if (DEBUG_LAYOUT) Slog.i(TAG, String.format("mDock rect: (%d,%d - %d,%d)",
3345                    mDockLeft, mDockTop, mDockRight, mDockBottom));
3346
3347            // decide where the status bar goes ahead of time
3348            if (mStatusBar != null) {
3349                // apply any navigation bar insets
3350                pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3351                pf.top = df.top = of.top = mUnrestrictedScreenTop;
3352                pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3353                pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight
3354                        + mUnrestrictedScreenTop;
3355                vf.left = mStableLeft;
3356                vf.top = mStableTop;
3357                vf.right = mStableRight;
3358                vf.bottom = mStableBottom;
3359
3360                mStatusBarLayer = mStatusBar.getSurfaceLayer();
3361
3362                // Let the status bar determine its size.
3363                mStatusBar.computeFrameLw(pf, df, vf, vf, vf, dcf, vf);
3364
3365                // For layout, the status bar is always at the top with our fixed height.
3366                mStableTop = mUnrestrictedScreenTop + mStatusBarHeight;
3367
3368                boolean statusBarTransient = (sysui & View.STATUS_BAR_TRANSIENT) != 0;
3369                boolean statusBarTranslucent = (sysui
3370                        & (View.STATUS_BAR_TRANSLUCENT | View.SYSTEM_UI_TRANSPARENT)) != 0;
3371                if (!isKeyguardShowing) {
3372                    statusBarTranslucent &= areTranslucentBarsAllowed();
3373                }
3374
3375                // If the status bar is hidden, we don't want to cause
3376                // windows behind it to scroll.
3377                if (mStatusBar.isVisibleLw() && !statusBarTransient) {
3378                    // Status bar may go away, so the screen area it occupies
3379                    // is available to apps but just covering them when the
3380                    // status bar is visible.
3381                    mDockTop = mUnrestrictedScreenTop + mStatusBarHeight;
3382
3383                    mContentTop = mVoiceContentTop = mCurTop = mDockTop;
3384                    mContentBottom = mVoiceContentBottom = mCurBottom = mDockBottom;
3385                    mContentLeft = mVoiceContentLeft = mCurLeft = mDockLeft;
3386                    mContentRight = mVoiceContentRight = mCurRight = mDockRight;
3387
3388                    if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar: " +
3389                        String.format(
3390                            "dock=[%d,%d][%d,%d] content=[%d,%d][%d,%d] cur=[%d,%d][%d,%d]",
3391                            mDockLeft, mDockTop, mDockRight, mDockBottom,
3392                            mContentLeft, mContentTop, mContentRight, mContentBottom,
3393                            mCurLeft, mCurTop, mCurRight, mCurBottom));
3394                }
3395                if (mStatusBar.isVisibleLw() && !mStatusBar.isAnimatingLw()
3396                        && !statusBarTransient && !statusBarTranslucent
3397                        && !mStatusBarController.wasRecentlyTranslucent()) {
3398                    // If the opaque status bar is currently requested to be visible,
3399                    // and not in the process of animating on or off, then
3400                    // we can tell the app that it is covered by it.
3401                    mSystemTop = mUnrestrictedScreenTop + mStatusBarHeight;
3402                }
3403                if (mStatusBarController.checkHiddenLw()) {
3404                    updateSysUiVisibility = true;
3405                }
3406            }
3407            if (updateSysUiVisibility) {
3408                updateSystemUiVisibilityLw();
3409            }
3410        }
3411    }
3412
3413    /** {@inheritDoc} */
3414    @Override
3415    public int getSystemDecorLayerLw() {
3416        if (mStatusBar != null) return mStatusBar.getSurfaceLayer();
3417        if (mNavigationBar != null) return mNavigationBar.getSurfaceLayer();
3418        return 0;
3419    }
3420
3421    @Override
3422    public void getContentRectLw(Rect r) {
3423        r.set(mContentLeft, mContentTop, mContentRight, mContentBottom);
3424    }
3425
3426    void setAttachedWindowFrames(WindowState win, int fl, int adjust, WindowState attached,
3427            boolean insetDecors, Rect pf, Rect df, Rect of, Rect cf, Rect vf) {
3428        if (win.getSurfaceLayer() > mDockLayer && attached.getSurfaceLayer() < mDockLayer) {
3429            // Here's a special case: if this attached window is a panel that is
3430            // above the dock window, and the window it is attached to is below
3431            // the dock window, then the frames we computed for the window it is
3432            // attached to can not be used because the dock is effectively part
3433            // of the underlying window and the attached window is floating on top
3434            // of the whole thing.  So, we ignore the attached window and explicitly
3435            // compute the frames that would be appropriate without the dock.
3436            df.left = of.left = cf.left = vf.left = mDockLeft;
3437            df.top = of.top = cf.top = vf.top = mDockTop;
3438            df.right = of.right = cf.right = vf.right = mDockRight;
3439            df.bottom = of.bottom = cf.bottom = vf.bottom = mDockBottom;
3440        } else {
3441            // The effective display frame of the attached window depends on
3442            // whether it is taking care of insetting its content.  If not,
3443            // we need to use the parent's content frame so that the entire
3444            // window is positioned within that content.  Otherwise we can use
3445            // the overscan frame and let the attached window take care of
3446            // positioning its content appropriately.
3447            if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
3448                // Set the content frame of the attached window to the parent's decor frame
3449                // (same as content frame when IME isn't present) if specifically requested by
3450                // setting {@link WindowManager.LayoutParams#FLAG_LAYOUT_ATTACHED_IN_DECOR} flag.
3451                // Otherwise, use the overscan frame.
3452                cf.set((fl & FLAG_LAYOUT_ATTACHED_IN_DECOR) != 0
3453                        ? attached.getContentFrameLw() : attached.getOverscanFrameLw());
3454            } else {
3455                // If the window is resizing, then we want to base the content
3456                // frame on our attached content frame to resize...  however,
3457                // things can be tricky if the attached window is NOT in resize
3458                // mode, in which case its content frame will be larger.
3459                // Ungh.  So to deal with that, make sure the content frame
3460                // we end up using is not covering the IM dock.
3461                cf.set(attached.getContentFrameLw());
3462                if (attached.isVoiceInteraction()) {
3463                    if (cf.left < mVoiceContentLeft) cf.left = mVoiceContentLeft;
3464                    if (cf.top < mVoiceContentTop) cf.top = mVoiceContentTop;
3465                    if (cf.right > mVoiceContentRight) cf.right = mVoiceContentRight;
3466                    if (cf.bottom > mVoiceContentBottom) cf.bottom = mVoiceContentBottom;
3467                } else if (attached.getSurfaceLayer() < mDockLayer) {
3468                    if (cf.left < mContentLeft) cf.left = mContentLeft;
3469                    if (cf.top < mContentTop) cf.top = mContentTop;
3470                    if (cf.right > mContentRight) cf.right = mContentRight;
3471                    if (cf.bottom > mContentBottom) cf.bottom = mContentBottom;
3472                }
3473            }
3474            df.set(insetDecors ? attached.getDisplayFrameLw() : cf);
3475            of.set(insetDecors ? attached.getOverscanFrameLw() : cf);
3476            vf.set(attached.getVisibleFrameLw());
3477        }
3478        // The LAYOUT_IN_SCREEN flag is used to determine whether the attached
3479        // window should be positioned relative to its parent or the entire
3480        // screen.
3481        pf.set((fl & FLAG_LAYOUT_IN_SCREEN) == 0
3482                ? attached.getFrameLw() : df);
3483    }
3484
3485    private void applyStableConstraints(int sysui, int fl, Rect r) {
3486        if ((sysui & View.SYSTEM_UI_FLAG_LAYOUT_STABLE) != 0) {
3487            // If app is requesting a stable layout, don't let the
3488            // content insets go below the stable values.
3489            if ((fl & FLAG_FULLSCREEN) != 0) {
3490                if (r.left < mStableFullscreenLeft) r.left = mStableFullscreenLeft;
3491                if (r.top < mStableFullscreenTop) r.top = mStableFullscreenTop;
3492                if (r.right > mStableFullscreenRight) r.right = mStableFullscreenRight;
3493                if (r.bottom > mStableFullscreenBottom) r.bottom = mStableFullscreenBottom;
3494            } else {
3495                if (r.left < mStableLeft) r.left = mStableLeft;
3496                if (r.top < mStableTop) r.top = mStableTop;
3497                if (r.right > mStableRight) r.right = mStableRight;
3498                if (r.bottom > mStableBottom) r.bottom = mStableBottom;
3499            }
3500        }
3501    }
3502
3503    /** {@inheritDoc} */
3504    @Override
3505    public void layoutWindowLw(WindowState win, WindowState attached) {
3506        // we've already done the status bar
3507        final WindowManager.LayoutParams attrs = win.getAttrs();
3508        if ((win == mStatusBar && (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) == 0) ||
3509                win == mNavigationBar) {
3510            return;
3511        }
3512        final boolean isDefaultDisplay = win.isDefaultDisplay();
3513        final boolean needsToOffsetInputMethodTarget = isDefaultDisplay &&
3514                (win == mLastInputMethodTargetWindow && mLastInputMethodWindow != null);
3515        if (needsToOffsetInputMethodTarget) {
3516            if (DEBUG_LAYOUT) Slog.i(TAG, "Offset ime target window by the last ime window state");
3517            offsetInputMethodWindowLw(mLastInputMethodWindow);
3518        }
3519
3520        final int fl = PolicyControl.getWindowFlags(win, attrs);
3521        final int sim = attrs.softInputMode;
3522        final int sysUiFl = PolicyControl.getSystemUiVisibility(win, null);
3523
3524        final Rect pf = mTmpParentFrame;
3525        final Rect df = mTmpDisplayFrame;
3526        final Rect of = mTmpOverscanFrame;
3527        final Rect cf = mTmpContentFrame;
3528        final Rect vf = mTmpVisibleFrame;
3529        final Rect dcf = mTmpDecorFrame;
3530        final Rect sf = mTmpStableFrame;
3531        dcf.setEmpty();
3532
3533        final boolean hasNavBar = (isDefaultDisplay && mHasNavigationBar
3534                && mNavigationBar != null && mNavigationBar.isVisibleLw());
3535
3536        final int adjust = sim & SOFT_INPUT_MASK_ADJUST;
3537
3538        if (isDefaultDisplay) {
3539            sf.set(mStableLeft, mStableTop, mStableRight, mStableBottom);
3540        } else {
3541            sf.set(mOverscanLeft, mOverscanTop, mOverscanRight, mOverscanBottom);
3542        }
3543
3544        if (!isDefaultDisplay) {
3545            if (attached != null) {
3546                // If this window is attached to another, our display
3547                // frame is the same as the one we are attached to.
3548                setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
3549            } else {
3550                // Give the window full screen.
3551                pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3552                pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3553                pf.right = df.right = of.right = cf.right
3554                        = mOverscanScreenLeft + mOverscanScreenWidth;
3555                pf.bottom = df.bottom = of.bottom = cf.bottom
3556                        = mOverscanScreenTop + mOverscanScreenHeight;
3557            }
3558        } else  if (attrs.type == TYPE_INPUT_METHOD || attrs.type == TYPE_VOICE_INTERACTION) {
3559            pf.left = df.left = of.left = cf.left = vf.left = mDockLeft;
3560            pf.top = df.top = of.top = cf.top = vf.top = mDockTop;
3561            pf.right = df.right = of.right = cf.right = vf.right = mDockRight;
3562            // IM dock windows layout below the nav bar...
3563            pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3564            // ...with content insets above the nav bar
3565            cf.bottom = vf.bottom = mStableBottom;
3566            // IM dock windows always go to the bottom of the screen.
3567            attrs.gravity = Gravity.BOTTOM;
3568            mDockLayer = win.getSurfaceLayer();
3569        } else if (win == mStatusBar && (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
3570            pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3571            pf.top = df.top = of.top = mUnrestrictedScreenTop;
3572            pf.right = df.right = of.right = mUnrestrictedScreenWidth + mUnrestrictedScreenLeft;
3573            pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenHeight + mUnrestrictedScreenTop;
3574            cf.left = vf.left = mStableLeft;
3575            cf.top = vf.top = mStableTop;
3576            cf.right = vf.right = mStableRight;
3577            vf.bottom = mStableBottom;
3578            cf.bottom = mContentBottom;
3579        } else {
3580
3581            // Default policy decor for the default display
3582            dcf.left = mSystemLeft;
3583            dcf.top = mSystemTop;
3584            dcf.right = mSystemRight;
3585            dcf.bottom = mSystemBottom;
3586            final boolean inheritTranslucentDecor = (attrs.privateFlags
3587                    & WindowManager.LayoutParams.PRIVATE_FLAG_INHERIT_TRANSLUCENT_DECOR) != 0;
3588            final boolean isAppWindow =
3589                    attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW &&
3590                    attrs.type <= WindowManager.LayoutParams.LAST_APPLICATION_WINDOW;
3591            final boolean topAtRest =
3592                    win == mTopFullscreenOpaqueWindowState && !win.isAnimatingLw();
3593            if (isAppWindow && !inheritTranslucentDecor && !topAtRest) {
3594                if ((sysUiFl & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0
3595                        && (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) == 0
3596                        && (fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) == 0
3597                        && (fl & WindowManager.LayoutParams.
3598                                FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
3599                    // Ensure policy decor includes status bar
3600                    dcf.top = mStableTop;
3601                }
3602                if ((fl & WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION) == 0
3603                        && (sysUiFl & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0
3604                        && (fl & WindowManager.LayoutParams.
3605                                FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS) == 0) {
3606                    // Ensure policy decor includes navigation bar
3607                    dcf.bottom = mStableBottom;
3608                    dcf.right = mStableRight;
3609                }
3610            }
3611
3612            if ((fl & (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR))
3613                    == (FLAG_LAYOUT_IN_SCREEN | FLAG_LAYOUT_INSET_DECOR)) {
3614                if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle()
3615                            + "): IN_SCREEN, INSET_DECOR");
3616                // This is the case for a normal activity window: we want it
3617                // to cover all of the screen space, and it can take care of
3618                // moving its contents to account for screen decorations that
3619                // intrude into that space.
3620                if (attached != null) {
3621                    // If this window is attached to another, our display
3622                    // frame is the same as the one we are attached to.
3623                    setAttachedWindowFrames(win, fl, adjust, attached, true, pf, df, of, cf, vf);
3624                } else {
3625                    if (attrs.type == TYPE_STATUS_BAR_PANEL
3626                            || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
3627                        // Status bar panels are the only windows who can go on top of
3628                        // the status bar.  They are protected by the STATUS_BAR_SERVICE
3629                        // permission, so they have the same privileges as the status
3630                        // bar itself.
3631                        //
3632                        // However, they should still dodge the navigation bar if it exists.
3633
3634                        pf.left = df.left = of.left = hasNavBar
3635                                ? mDockLeft : mUnrestrictedScreenLeft;
3636                        pf.top = df.top = of.top = mUnrestrictedScreenTop;
3637                        pf.right = df.right = of.right = hasNavBar
3638                                ? mRestrictedScreenLeft+mRestrictedScreenWidth
3639                                : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3640                        pf.bottom = df.bottom = of.bottom = hasNavBar
3641                                ? mRestrictedScreenTop+mRestrictedScreenHeight
3642                                : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3643
3644                        if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
3645                                        "Laying out status bar window: (%d,%d - %d,%d)",
3646                                        pf.left, pf.top, pf.right, pf.bottom));
3647                    } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
3648                            && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3649                            && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3650                        // Asking to layout into the overscan region, so give it that pure
3651                        // unrestricted area.
3652                        pf.left = df.left = of.left = mOverscanScreenLeft;
3653                        pf.top = df.top = of.top = mOverscanScreenTop;
3654                        pf.right = df.right = of.right = mOverscanScreenLeft + mOverscanScreenWidth;
3655                        pf.bottom = df.bottom = of.bottom = mOverscanScreenTop
3656                                + mOverscanScreenHeight;
3657                    } else if (canHideNavigationBar()
3658                            && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
3659                            && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3660                            && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3661                        // Asking for layout as if the nav bar is hidden, lets the
3662                        // application extend into the unrestricted overscan screen area.  We
3663                        // only do this for application windows to ensure no window that
3664                        // can be above the nav bar can do this.
3665                        pf.left = df.left = mOverscanScreenLeft;
3666                        pf.top = df.top = mOverscanScreenTop;
3667                        pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
3668                        pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
3669                        // We need to tell the app about where the frame inside the overscan
3670                        // is, so it can inset its content by that amount -- it didn't ask
3671                        // to actually extend itself into the overscan region.
3672                        of.left = mUnrestrictedScreenLeft;
3673                        of.top = mUnrestrictedScreenTop;
3674                        of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3675                        of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3676                    } else {
3677                        pf.left = df.left = mRestrictedOverscanScreenLeft;
3678                        pf.top = df.top = mRestrictedOverscanScreenTop;
3679                        pf.right = df.right = mRestrictedOverscanScreenLeft
3680                                + mRestrictedOverscanScreenWidth;
3681                        pf.bottom = df.bottom = mRestrictedOverscanScreenTop
3682                                + mRestrictedOverscanScreenHeight;
3683                        // We need to tell the app about where the frame inside the overscan
3684                        // is, so it can inset its content by that amount -- it didn't ask
3685                        // to actually extend itself into the overscan region.
3686                        of.left = mUnrestrictedScreenLeft;
3687                        of.top = mUnrestrictedScreenTop;
3688                        of.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3689                        of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3690                    }
3691
3692                    if ((fl & FLAG_FULLSCREEN) == 0) {
3693                        if (win.isVoiceInteraction()) {
3694                            cf.left = mVoiceContentLeft;
3695                            cf.top = mVoiceContentTop;
3696                            cf.right = mVoiceContentRight;
3697                            cf.bottom = mVoiceContentBottom;
3698                        } else {
3699                            if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
3700                                cf.left = mDockLeft;
3701                                cf.top = mDockTop;
3702                                cf.right = mDockRight;
3703                                cf.bottom = mDockBottom;
3704                            } else {
3705                                cf.left = mContentLeft;
3706                                cf.top = mContentTop;
3707                                cf.right = mContentRight;
3708                                cf.bottom = mContentBottom;
3709                            }
3710                        }
3711                    } else {
3712                        // Full screen windows are always given a layout that is as if the
3713                        // status bar and other transient decors are gone.  This is to avoid
3714                        // bad states when moving from a window that is not hding the
3715                        // status bar to one that is.
3716                        cf.left = mRestrictedScreenLeft;
3717                        cf.top = mRestrictedScreenTop;
3718                        cf.right = mRestrictedScreenLeft + mRestrictedScreenWidth;
3719                        cf.bottom = mRestrictedScreenTop + mRestrictedScreenHeight;
3720                    }
3721                    applyStableConstraints(sysUiFl, fl, cf);
3722                    if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3723                        vf.left = mCurLeft;
3724                        vf.top = mCurTop;
3725                        vf.right = mCurRight;
3726                        vf.bottom = mCurBottom;
3727                    } else {
3728                        vf.set(cf);
3729                    }
3730                }
3731            } else if ((fl & FLAG_LAYOUT_IN_SCREEN) != 0 || (sysUiFl
3732                    & (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
3733                            | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)) != 0) {
3734                if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
3735                        "): IN_SCREEN");
3736                // A window that has requested to fill the entire screen just
3737                // gets everything, period.
3738                if (attrs.type == TYPE_STATUS_BAR_PANEL
3739                        || attrs.type == TYPE_STATUS_BAR_SUB_PANEL) {
3740                    pf.left = df.left = of.left = cf.left = hasNavBar
3741                            ? mDockLeft : mUnrestrictedScreenLeft;
3742                    pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
3743                    pf.right = df.right = of.right = cf.right = hasNavBar
3744                                        ? mRestrictedScreenLeft+mRestrictedScreenWidth
3745                                        : mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3746                    pf.bottom = df.bottom = of.bottom = cf.bottom = hasNavBar
3747                                          ? mRestrictedScreenTop+mRestrictedScreenHeight
3748                                          : mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3749                    if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
3750                                    "Laying out IN_SCREEN status bar window: (%d,%d - %d,%d)",
3751                                    pf.left, pf.top, pf.right, pf.bottom));
3752                } else if (attrs.type == TYPE_NAVIGATION_BAR
3753                        || attrs.type == TYPE_NAVIGATION_BAR_PANEL) {
3754                    // The navigation bar has Real Ultimate Power.
3755                    pf.left = df.left = of.left = mUnrestrictedScreenLeft;
3756                    pf.top = df.top = of.top = mUnrestrictedScreenTop;
3757                    pf.right = df.right = of.right = mUnrestrictedScreenLeft
3758                            + mUnrestrictedScreenWidth;
3759                    pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop
3760                            + mUnrestrictedScreenHeight;
3761                    if (DEBUG_LAYOUT) Slog.v(TAG, String.format(
3762                                    "Laying out navigation bar window: (%d,%d - %d,%d)",
3763                                    pf.left, pf.top, pf.right, pf.bottom));
3764                } else if ((attrs.type == TYPE_SECURE_SYSTEM_OVERLAY
3765                                || attrs.type == TYPE_BOOT_PROGRESS)
3766                        && ((fl & FLAG_FULLSCREEN) != 0)) {
3767                    // Fullscreen secure system overlays get what they ask for.
3768                    pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3769                    pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3770                    pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
3771                            + mOverscanScreenWidth;
3772                    pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
3773                            + mOverscanScreenHeight;
3774                } else if (attrs.type == TYPE_BOOT_PROGRESS) {
3775                    // Boot progress screen always covers entire display.
3776                    pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3777                    pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3778                    pf.right = df.right = of.right = cf.right = mOverscanScreenLeft
3779                            + mOverscanScreenWidth;
3780                    pf.bottom = df.bottom = of.bottom = cf.bottom = mOverscanScreenTop
3781                            + mOverscanScreenHeight;
3782                } else if (attrs.type == TYPE_WALLPAPER) {
3783                    // The wallpaper also has Real Ultimate Power, but we want to tell
3784                    // it about the overscan area.
3785                    pf.left = df.left = mOverscanScreenLeft;
3786                    pf.top = df.top = mOverscanScreenTop;
3787                    pf.right = df.right = mOverscanScreenLeft + mOverscanScreenWidth;
3788                    pf.bottom = df.bottom = mOverscanScreenTop + mOverscanScreenHeight;
3789                    of.left = cf.left = mUnrestrictedScreenLeft;
3790                    of.top = cf.top = mUnrestrictedScreenTop;
3791                    of.right = cf.right = mUnrestrictedScreenLeft + mUnrestrictedScreenWidth;
3792                    of.bottom = cf.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
3793                } else if ((fl & FLAG_LAYOUT_IN_OVERSCAN) != 0
3794                        && attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3795                        && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
3796                    // Asking to layout into the overscan region, so give it that pure
3797                    // unrestricted area.
3798                    pf.left = df.left = of.left = cf.left = mOverscanScreenLeft;
3799                    pf.top = df.top = of.top = cf.top = mOverscanScreenTop;
3800                    pf.right = df.right = of.right = cf.right
3801                            = mOverscanScreenLeft + mOverscanScreenWidth;
3802                    pf.bottom = df.bottom = of.bottom = cf.bottom
3803                            = mOverscanScreenTop + mOverscanScreenHeight;
3804                } else if (canHideNavigationBar()
3805                        && (sysUiFl & View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION) != 0
3806                        && (attrs.type == TYPE_STATUS_BAR
3807                            || attrs.type == TYPE_TOAST
3808                            || (attrs.type >= WindowManager.LayoutParams.FIRST_APPLICATION_WINDOW
3809                            && attrs.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW))) {
3810                    // Asking for layout as if the nav bar is hidden, lets the
3811                    // application extend into the unrestricted screen area.  We
3812                    // only do this for application windows (or toasts) to ensure no window that
3813                    // can be above the nav bar can do this.
3814                    // XXX This assumes that an app asking for this will also
3815                    // ask for layout in only content.  We can't currently figure out
3816                    // what the screen would be if only laying out to hide the nav bar.
3817                    pf.left = df.left = of.left = cf.left = mUnrestrictedScreenLeft;
3818                    pf.top = df.top = of.top = cf.top = mUnrestrictedScreenTop;
3819                    pf.right = df.right = of.right = cf.right = mUnrestrictedScreenLeft
3820                            + mUnrestrictedScreenWidth;
3821                    pf.bottom = df.bottom = of.bottom = cf.bottom = mUnrestrictedScreenTop
3822                            + mUnrestrictedScreenHeight;
3823                } else {
3824                    pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
3825                    pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
3826                    pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
3827                            + mRestrictedScreenWidth;
3828                    pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
3829                            + mRestrictedScreenHeight;
3830                }
3831
3832                applyStableConstraints(sysUiFl, fl, cf);
3833
3834                if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3835                    vf.left = mCurLeft;
3836                    vf.top = mCurTop;
3837                    vf.right = mCurRight;
3838                    vf.bottom = mCurBottom;
3839                } else {
3840                    vf.set(cf);
3841                }
3842            } else if (attached != null) {
3843                if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
3844                        "): attached to " + attached);
3845                // A child window should be placed inside of the same visible
3846                // frame that its parent had.
3847                setAttachedWindowFrames(win, fl, adjust, attached, false, pf, df, of, cf, vf);
3848            } else {
3849                if (DEBUG_LAYOUT) Slog.v(TAG, "layoutWindowLw(" + attrs.getTitle() +
3850                        "): normal window");
3851                // Otherwise, a normal window must be placed inside the content
3852                // of all screen decorations.
3853                if (attrs.type == TYPE_STATUS_BAR_PANEL) {
3854                    // Status bar panels are the only windows who can go on top of
3855                    // the status bar.  They are protected by the STATUS_BAR_SERVICE
3856                    // permission, so they have the same privileges as the status
3857                    // bar itself.
3858                    pf.left = df.left = of.left = cf.left = mRestrictedScreenLeft;
3859                    pf.top = df.top = of.top = cf.top = mRestrictedScreenTop;
3860                    pf.right = df.right = of.right = cf.right = mRestrictedScreenLeft
3861                            + mRestrictedScreenWidth;
3862                    pf.bottom = df.bottom = of.bottom = cf.bottom = mRestrictedScreenTop
3863                            + mRestrictedScreenHeight;
3864                } else if (attrs.type == TYPE_TOAST || attrs.type == TYPE_SYSTEM_ALERT
3865                        || attrs.type == TYPE_VOLUME_OVERLAY) {
3866                    // These dialogs are stable to interim decor changes.
3867                    pf.left = df.left = of.left = cf.left = mStableLeft;
3868                    pf.top = df.top = of.top = cf.top = mStableTop;
3869                    pf.right = df.right = of.right = cf.right = mStableRight;
3870                    pf.bottom = df.bottom = of.bottom = cf.bottom = mStableBottom;
3871                } else {
3872                    pf.left = mContentLeft;
3873                    pf.top = mContentTop;
3874                    pf.right = mContentRight;
3875                    pf.bottom = mContentBottom;
3876                    if (win.isVoiceInteraction()) {
3877                        df.left = of.left = cf.left = mVoiceContentLeft;
3878                        df.top = of.top = cf.top = mVoiceContentTop;
3879                        df.right = of.right = cf.right = mVoiceContentRight;
3880                        df.bottom = of.bottom = cf.bottom = mVoiceContentBottom;
3881                    } else if (adjust != SOFT_INPUT_ADJUST_RESIZE) {
3882                        df.left = of.left = cf.left = mDockLeft;
3883                        df.top = of.top = cf.top = mDockTop;
3884                        df.right = of.right = cf.right = mDockRight;
3885                        df.bottom = of.bottom = cf.bottom = mDockBottom;
3886                    } else {
3887                        df.left = of.left = cf.left = mContentLeft;
3888                        df.top = of.top = cf.top = mContentTop;
3889                        df.right = of.right = cf.right = mContentRight;
3890                        df.bottom = of.bottom = cf.bottom = mContentBottom;
3891                    }
3892                    if (adjust != SOFT_INPUT_ADJUST_NOTHING) {
3893                        vf.left = mCurLeft;
3894                        vf.top = mCurTop;
3895                        vf.right = mCurRight;
3896                        vf.bottom = mCurBottom;
3897                    } else {
3898                        vf.set(cf);
3899                    }
3900                }
3901            }
3902        }
3903
3904        // TYPE_SYSTEM_ERROR is above the NavigationBar so it can't be allowed to extend over it.
3905        if ((fl & FLAG_LAYOUT_NO_LIMITS) != 0 && attrs.type != TYPE_SYSTEM_ERROR) {
3906            df.left = df.top = -10000;
3907            df.right = df.bottom = 10000;
3908            if (attrs.type != TYPE_WALLPAPER) {
3909                of.left = of.top = cf.left = cf.top = vf.left = vf.top = -10000;
3910                of.right = of.bottom = cf.right = cf.bottom = vf.right = vf.bottom = 10000;
3911            }
3912        }
3913
3914        if (DEBUG_LAYOUT) Slog.v(TAG, "Compute frame " + attrs.getTitle()
3915                + ": sim=#" + Integer.toHexString(sim)
3916                + " attach=" + attached + " type=" + attrs.type
3917                + String.format(" flags=0x%08x", fl)
3918                + " pf=" + pf.toShortString() + " df=" + df.toShortString()
3919                + " of=" + of.toShortString()
3920                + " cf=" + cf.toShortString() + " vf=" + vf.toShortString()
3921                + " dcf=" + dcf.toShortString()
3922                + " sf=" + sf.toShortString());
3923
3924        win.computeFrameLw(pf, df, of, cf, vf, dcf, sf);
3925
3926        // Dock windows carve out the bottom of the screen, so normal windows
3927        // can't appear underneath them.
3928        if (attrs.type == TYPE_INPUT_METHOD && win.isVisibleOrBehindKeyguardLw()
3929                && !win.getGivenInsetsPendingLw()) {
3930            setLastInputMethodWindowLw(null, null);
3931            offsetInputMethodWindowLw(win);
3932        }
3933        if (attrs.type == TYPE_VOICE_INTERACTION && win.isVisibleOrBehindKeyguardLw()
3934                && !win.getGivenInsetsPendingLw()) {
3935            offsetVoiceInputWindowLw(win);
3936        }
3937    }
3938
3939    private void offsetInputMethodWindowLw(WindowState win) {
3940        int top = win.getDisplayFrameLw().top;
3941        top += win.getGivenContentInsetsLw().top;
3942        if (mContentBottom > top) {
3943            mContentBottom = top;
3944        }
3945        if (mVoiceContentBottom > top) {
3946            mVoiceContentBottom = top;
3947        }
3948        top = win.getVisibleFrameLw().top;
3949        top += win.getGivenVisibleInsetsLw().top;
3950        if (mCurBottom > top) {
3951            mCurBottom = top;
3952        }
3953        if (DEBUG_LAYOUT) Slog.v(TAG, "Input method: mDockBottom="
3954                + mDockBottom + " mContentBottom="
3955                + mContentBottom + " mCurBottom=" + mCurBottom);
3956    }
3957
3958    private void offsetVoiceInputWindowLw(WindowState win) {
3959        int top = win.getDisplayFrameLw().top;
3960        top += win.getGivenContentInsetsLw().top;
3961        if (mVoiceContentBottom > top) {
3962            mVoiceContentBottom = top;
3963        }
3964    }
3965
3966    /** {@inheritDoc} */
3967    @Override
3968    public void finishLayoutLw() {
3969        return;
3970    }
3971
3972    /** {@inheritDoc} */
3973    @Override
3974    public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight) {
3975        mTopFullscreenOpaqueWindowState = null;
3976        mTopFullscreenOpaqueOrDimmingWindowState = null;
3977        mAppsToBeHidden.clear();
3978        mAppsThatDismissKeyguard.clear();
3979        mForceStatusBar = false;
3980        mForceStatusBarFromKeyguard = false;
3981        mForcingShowNavBar = false;
3982        mForcingShowNavBarLayer = -1;
3983
3984        mHideLockScreen = false;
3985        mAllowLockscreenWhenOn = false;
3986        mDismissKeyguard = DISMISS_KEYGUARD_NONE;
3987        mShowingLockscreen = false;
3988        mShowingDream = false;
3989        mWinShowWhenLocked = null;
3990        mKeyguardSecure = isKeyguardSecure();
3991        mKeyguardSecureIncludingHidden = mKeyguardSecure
3992                && (mKeyguardDelegate != null && mKeyguardDelegate.isShowing());
3993    }
3994
3995    /** {@inheritDoc} */
3996    @Override
3997    public void applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs) {
3998        if (DEBUG_LAYOUT) Slog.i(TAG, "Win " + win + ": isVisibleOrBehindKeyguardLw="
3999                + win.isVisibleOrBehindKeyguardLw());
4000        final int fl = PolicyControl.getWindowFlags(win, attrs);
4001        if (mTopFullscreenOpaqueWindowState == null
4002                && win.isVisibleLw() && attrs.type == TYPE_INPUT_METHOD) {
4003            mForcingShowNavBar = true;
4004            mForcingShowNavBarLayer = win.getSurfaceLayer();
4005        }
4006        if (attrs.type == TYPE_STATUS_BAR && (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4007            mForceStatusBarFromKeyguard = true;
4008        }
4009        if (mTopFullscreenOpaqueWindowState == null &&
4010                win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()) {
4011            if ((fl & FLAG_FORCE_NOT_FULLSCREEN) != 0) {
4012                if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4013                    mForceStatusBarFromKeyguard = true;
4014                } else {
4015                    mForceStatusBar = true;
4016                }
4017            }
4018            if ((attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0) {
4019                mShowingLockscreen = true;
4020            }
4021            boolean appWindow = attrs.type >= FIRST_APPLICATION_WINDOW
4022                    && attrs.type < FIRST_SYSTEM_WINDOW;
4023            if (attrs.type == TYPE_DREAM) {
4024                // If the lockscreen was showing when the dream started then wait
4025                // for the dream to draw before hiding the lockscreen.
4026                if (!mDreamingLockscreen
4027                        || (win.isVisibleLw() && win.hasDrawnLw())) {
4028                    mShowingDream = true;
4029                    appWindow = true;
4030                }
4031            }
4032
4033            final boolean showWhenLocked = (fl & FLAG_SHOW_WHEN_LOCKED) != 0;
4034            final boolean dismissKeyguard = (fl & FLAG_DISMISS_KEYGUARD) != 0;
4035            if (appWindow) {
4036                final IApplicationToken appToken = win.getAppToken();
4037                if (showWhenLocked) {
4038                    // Remove any previous windows with the same appToken.
4039                    mAppsToBeHidden.remove(appToken);
4040                    mAppsThatDismissKeyguard.remove(appToken);
4041                    if (mAppsToBeHidden.isEmpty()) {
4042                        if (dismissKeyguard && !mKeyguardSecure) {
4043                            mAppsThatDismissKeyguard.add(appToken);
4044                        } else {
4045                            mWinShowWhenLocked = win;
4046                            mHideLockScreen = true;
4047                            mForceStatusBarFromKeyguard = false;
4048                        }
4049                    }
4050                } else if (dismissKeyguard) {
4051                    if (mKeyguardSecure) {
4052                        mAppsToBeHidden.add(appToken);
4053                    } else {
4054                        mAppsToBeHidden.remove(appToken);
4055                    }
4056                    mAppsThatDismissKeyguard.add(appToken);
4057                } else {
4058                    mAppsToBeHidden.add(appToken);
4059                }
4060                if (attrs.x == 0 && attrs.y == 0
4061                        && attrs.width == WindowManager.LayoutParams.MATCH_PARENT
4062                        && attrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
4063                    if (DEBUG_LAYOUT) Slog.v(TAG, "Fullscreen window: " + win);
4064                    mTopFullscreenOpaqueWindowState = win;
4065                    if (mTopFullscreenOpaqueOrDimmingWindowState == null) {
4066                        mTopFullscreenOpaqueOrDimmingWindowState = win;
4067                    }
4068                    if (!mAppsThatDismissKeyguard.isEmpty() &&
4069                            mDismissKeyguard == DISMISS_KEYGUARD_NONE) {
4070                        if (DEBUG_LAYOUT) Slog.v(TAG,
4071                                "Setting mDismissKeyguard true by win " + win);
4072                        mDismissKeyguard = mWinDismissingKeyguard == win ?
4073                                DISMISS_KEYGUARD_CONTINUE : DISMISS_KEYGUARD_START;
4074                        mWinDismissingKeyguard = win;
4075                        mForceStatusBarFromKeyguard = mShowingLockscreen && mKeyguardSecure;
4076                    } else if (mAppsToBeHidden.isEmpty() && showWhenLocked) {
4077                        if (DEBUG_LAYOUT) Slog.v(TAG,
4078                                "Setting mHideLockScreen to true by win " + win);
4079                        mHideLockScreen = true;
4080                        mForceStatusBarFromKeyguard = false;
4081                    }
4082                    if ((fl & FLAG_ALLOW_LOCK_WHILE_SCREEN_ON) != 0) {
4083                        mAllowLockscreenWhenOn = true;
4084                    }
4085                }
4086
4087                if (mWinShowWhenLocked != null &&
4088                        mWinShowWhenLocked.getAppToken() != win.getAppToken()) {
4089                    win.hideLw(false);
4090                }
4091            }
4092        }
4093        if (mTopFullscreenOpaqueOrDimmingWindowState == null
4094                && win.isVisibleOrBehindKeyguardLw() && !win.isGoneForLayoutLw()
4095                && win.isDimming()) {
4096            mTopFullscreenOpaqueOrDimmingWindowState = win;
4097        }
4098    }
4099
4100    /** {@inheritDoc} */
4101    @Override
4102    public int finishPostLayoutPolicyLw() {
4103        if (mWinShowWhenLocked != null &&
4104                mWinShowWhenLocked != mTopFullscreenOpaqueWindowState) {
4105            // A dialog is dismissing the keyguard. Put the wallpaper behind it and hide the
4106            // fullscreen window.
4107            // TODO: Make sure FLAG_SHOW_WALLPAPER is restored when dialog is dismissed. Or not.
4108            mWinShowWhenLocked.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4109            mTopFullscreenOpaqueWindowState.hideLw(false);
4110            mTopFullscreenOpaqueWindowState = mWinShowWhenLocked;
4111        }
4112
4113        int changes = 0;
4114        boolean topIsFullscreen = false;
4115
4116        final WindowManager.LayoutParams lp = (mTopFullscreenOpaqueWindowState != null)
4117                ? mTopFullscreenOpaqueWindowState.getAttrs()
4118                : null;
4119
4120        // If we are not currently showing a dream then remember the current
4121        // lockscreen state.  We will use this to determine whether the dream
4122        // started while the lockscreen was showing and remember this state
4123        // while the dream is showing.
4124        if (!mShowingDream) {
4125            mDreamingLockscreen = mShowingLockscreen;
4126        }
4127
4128        if (mStatusBar != null) {
4129            if (DEBUG_LAYOUT) Slog.i(TAG, "force=" + mForceStatusBar
4130                    + " forcefkg=" + mForceStatusBarFromKeyguard
4131                    + " top=" + mTopFullscreenOpaqueWindowState);
4132            if (mForceStatusBar || mForceStatusBarFromKeyguard) {
4133                if (DEBUG_LAYOUT) Slog.v(TAG, "Showing status bar: forced");
4134                if (mStatusBarController.setBarShowingLw(true)) {
4135                    changes |= FINISH_LAYOUT_REDO_LAYOUT;
4136                }
4137                // Maintain fullscreen layout until incoming animation is complete.
4138                topIsFullscreen = mTopIsFullscreen && mStatusBar.isAnimatingLw();
4139                // Transient status bar on the lockscreen is not allowed
4140                if (mForceStatusBarFromKeyguard && mStatusBarController.isTransientShowing()) {
4141                    mStatusBarController.updateVisibilityLw(false /*transientAllowed*/,
4142                            mLastSystemUiFlags, mLastSystemUiFlags);
4143                }
4144            } else if (mTopFullscreenOpaqueWindowState != null) {
4145                final int fl = PolicyControl.getWindowFlags(null, lp);
4146                if (localLOGV) {
4147                    Slog.d(TAG, "frame: " + mTopFullscreenOpaqueWindowState.getFrameLw()
4148                            + " shown frame: " + mTopFullscreenOpaqueWindowState.getShownFrameLw());
4149                    Slog.d(TAG, "attr: " + mTopFullscreenOpaqueWindowState.getAttrs()
4150                            + " lp.flags=0x" + Integer.toHexString(fl));
4151                }
4152                topIsFullscreen = (fl & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0
4153                        || (mLastSystemUiFlags & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
4154                // The subtle difference between the window for mTopFullscreenOpaqueWindowState
4155                // and mTopIsFullscreen is that mTopIsFullscreen is set only if the window
4156                // has the FLAG_FULLSCREEN set.  Not sure if there is another way that to be the
4157                // case though.
4158                if (mStatusBarController.isTransientShowing()) {
4159                    if (mStatusBarController.setBarShowingLw(true)) {
4160                        changes |= FINISH_LAYOUT_REDO_LAYOUT;
4161                    }
4162                } else if (topIsFullscreen) {
4163                    if (DEBUG_LAYOUT) Slog.v(TAG, "** HIDING status bar");
4164                    if (mStatusBarController.setBarShowingLw(false)) {
4165                        changes |= FINISH_LAYOUT_REDO_LAYOUT;
4166                    } else {
4167                        if (DEBUG_LAYOUT) Slog.v(TAG, "Status bar already hiding");
4168                    }
4169                } else {
4170                    if (DEBUG_LAYOUT) Slog.v(TAG, "** SHOWING status bar: top is not fullscreen");
4171                    if (mStatusBarController.setBarShowingLw(true)) {
4172                        changes |= FINISH_LAYOUT_REDO_LAYOUT;
4173                    }
4174                }
4175            }
4176        }
4177
4178        if (mTopIsFullscreen != topIsFullscreen) {
4179            if (!topIsFullscreen) {
4180                // Force another layout when status bar becomes fully shown.
4181                changes |= FINISH_LAYOUT_REDO_LAYOUT;
4182            }
4183            mTopIsFullscreen = topIsFullscreen;
4184        }
4185
4186        // Hide the key guard if a visible window explicitly specifies that it wants to be
4187        // displayed when the screen is locked.
4188        if (mKeyguardDelegate != null && mStatusBar != null) {
4189            if (localLOGV) Slog.v(TAG, "finishPostLayoutPolicyLw: mHideKeyguard="
4190                    + mHideLockScreen);
4191            if (mDismissKeyguard != DISMISS_KEYGUARD_NONE && !mKeyguardSecure) {
4192                mKeyguardHidden = true;
4193                if (setKeyguardOccludedLw(true)) {
4194                    changes |= FINISH_LAYOUT_REDO_LAYOUT
4195                            | FINISH_LAYOUT_REDO_CONFIG
4196                            | FINISH_LAYOUT_REDO_WALLPAPER;
4197                }
4198                if (mKeyguardDelegate.isShowing()) {
4199                    mHandler.post(new Runnable() {
4200                        @Override
4201                        public void run() {
4202                            mKeyguardDelegate.keyguardDone(false, false);
4203                        }
4204                    });
4205                }
4206            } else if (mHideLockScreen) {
4207                mKeyguardHidden = true;
4208                if (setKeyguardOccludedLw(true)) {
4209                    changes |= FINISH_LAYOUT_REDO_LAYOUT
4210                            | FINISH_LAYOUT_REDO_CONFIG
4211                            | FINISH_LAYOUT_REDO_WALLPAPER;
4212                }
4213            } else if (mDismissKeyguard != DISMISS_KEYGUARD_NONE) {
4214                // This is the case of keyguard isSecure() and not mHideLockScreen.
4215                if (mDismissKeyguard == DISMISS_KEYGUARD_START) {
4216                    // Only launch the next keyguard unlock window once per window.
4217                    mKeyguardHidden = false;
4218                    if (setKeyguardOccludedLw(false)) {
4219                        changes |= FINISH_LAYOUT_REDO_LAYOUT
4220                                | FINISH_LAYOUT_REDO_CONFIG
4221                                | FINISH_LAYOUT_REDO_WALLPAPER;
4222                    }
4223                    mHandler.post(new Runnable() {
4224                        @Override
4225                        public void run() {
4226                            mKeyguardDelegate.dismiss();
4227                        }
4228                    });
4229                }
4230            } else {
4231                mWinDismissingKeyguard = null;
4232                mKeyguardHidden = false;
4233                if (setKeyguardOccludedLw(false)) {
4234                    changes |= FINISH_LAYOUT_REDO_LAYOUT
4235                            | FINISH_LAYOUT_REDO_CONFIG
4236                            | FINISH_LAYOUT_REDO_WALLPAPER;
4237                }
4238            }
4239        }
4240
4241        if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
4242            // If the navigation bar has been hidden or shown, we need to do another
4243            // layout pass to update that window.
4244            changes |= FINISH_LAYOUT_REDO_LAYOUT;
4245        }
4246
4247        // update since mAllowLockscreenWhenOn might have changed
4248        updateLockScreenTimeout();
4249        return changes;
4250    }
4251
4252    /**
4253     * Updates the occluded state of the Keyguard.
4254     *
4255     * @return Whether the flags have changed and we have to redo the layout.
4256     */
4257    private boolean setKeyguardOccludedLw(boolean isOccluded) {
4258        boolean wasOccluded = mKeyguardOccluded;
4259        boolean showing = mKeyguardDelegate.isShowing();
4260        if (wasOccluded && !isOccluded && showing) {
4261            mKeyguardOccluded = false;
4262            mKeyguardDelegate.setOccluded(false);
4263            mStatusBar.getAttrs().privateFlags |= PRIVATE_FLAG_KEYGUARD;
4264            mStatusBar.getAttrs().flags |= FLAG_SHOW_WALLPAPER;
4265            return true;
4266        } else if (!wasOccluded && isOccluded && showing) {
4267            mKeyguardOccluded = true;
4268            mKeyguardDelegate.setOccluded(true);
4269            mStatusBar.getAttrs().privateFlags &= ~PRIVATE_FLAG_KEYGUARD;
4270            mStatusBar.getAttrs().flags &= ~FLAG_SHOW_WALLPAPER;
4271            return true;
4272        } else {
4273            return false;
4274        }
4275    }
4276
4277    private boolean isStatusBarKeyguard() {
4278        return mStatusBar != null
4279                && (mStatusBar.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0;
4280    }
4281
4282    @Override
4283    public boolean allowAppAnimationsLw() {
4284        if (isStatusBarKeyguard() || mShowingDream) {
4285            // If keyguard or dreams is currently visible, no reason to animate behind it.
4286            return false;
4287        }
4288        return true;
4289    }
4290
4291    @Override
4292    public int focusChangedLw(WindowState lastFocus, WindowState newFocus) {
4293        mFocusedWindow = newFocus;
4294        if ((updateSystemUiVisibilityLw()&SYSTEM_UI_CHANGING_LAYOUT) != 0) {
4295            // If the navigation bar has been hidden or shown, we need to do another
4296            // layout pass to update that window.
4297            return FINISH_LAYOUT_REDO_LAYOUT;
4298        }
4299        return 0;
4300    }
4301
4302    /** {@inheritDoc} */
4303    @Override
4304    public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen) {
4305        // lid changed state
4306        final int newLidState = lidOpen ? LID_OPEN : LID_CLOSED;
4307        if (newLidState == mLidState) {
4308            return;
4309        }
4310
4311        mLidState = newLidState;
4312        applyLidSwitchState();
4313        updateRotation(true);
4314
4315        if (lidOpen) {
4316            wakeUp(SystemClock.uptimeMillis(), mAllowTheaterModeWakeFromLidSwitch);
4317        } else if (!mLidControlsSleep) {
4318            mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
4319        }
4320    }
4321
4322    @Override
4323    public void notifyCameraLensCoverSwitchChanged(long whenNanos, boolean lensCovered) {
4324        int lensCoverState = lensCovered ? CAMERA_LENS_COVERED : CAMERA_LENS_UNCOVERED;
4325        if (mCameraLensCoverState == lensCoverState) {
4326            return;
4327        }
4328        if (mCameraLensCoverState == CAMERA_LENS_COVERED &&
4329                lensCoverState == CAMERA_LENS_UNCOVERED) {
4330            Intent intent;
4331            final boolean keyguardActive = mKeyguardDelegate == null ? false :
4332                    mKeyguardDelegate.isShowing();
4333            if (keyguardActive) {
4334                intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE);
4335            } else {
4336                intent = new Intent(MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
4337            }
4338            wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromCameraLens);
4339            mContext.startActivityAsUser(intent, UserHandle.CURRENT_OR_SELF);
4340        }
4341        mCameraLensCoverState = lensCoverState;
4342    }
4343
4344    void setHdmiPlugged(boolean plugged) {
4345        if (mHdmiPlugged != plugged) {
4346            mHdmiPlugged = plugged;
4347            updateRotation(true, true);
4348            Intent intent = new Intent(ACTION_HDMI_PLUGGED);
4349            intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
4350            intent.putExtra(EXTRA_HDMI_PLUGGED_STATE, plugged);
4351            mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
4352        }
4353    }
4354
4355    void initializeHdmiState() {
4356        boolean plugged = false;
4357        // watch for HDMI plug messages if the hdmi switch exists
4358        if (new File("/sys/devices/virtual/switch/hdmi/state").exists()) {
4359            mHDMIObserver.startObserving("DEVPATH=/devices/virtual/switch/hdmi");
4360
4361            final String filename = "/sys/class/switch/hdmi/state";
4362            FileReader reader = null;
4363            try {
4364                reader = new FileReader(filename);
4365                char[] buf = new char[15];
4366                int n = reader.read(buf);
4367                if (n > 1) {
4368                    plugged = 0 != Integer.parseInt(new String(buf, 0, n-1));
4369                }
4370            } catch (IOException ex) {
4371                Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4372            } catch (NumberFormatException ex) {
4373                Slog.w(TAG, "Couldn't read hdmi state from " + filename + ": " + ex);
4374            } finally {
4375                if (reader != null) {
4376                    try {
4377                        reader.close();
4378                    } catch (IOException ex) {
4379                    }
4380                }
4381            }
4382        }
4383        // This dance forces the code in setHdmiPlugged to run.
4384        // Always do this so the sticky intent is stuck (to false) if there is no hdmi.
4385        mHdmiPlugged = !plugged;
4386        setHdmiPlugged(!mHdmiPlugged);
4387    }
4388
4389    final Object mScreenshotLock = new Object();
4390    ServiceConnection mScreenshotConnection = null;
4391
4392    final Runnable mScreenshotTimeout = new Runnable() {
4393        @Override public void run() {
4394            synchronized (mScreenshotLock) {
4395                if (mScreenshotConnection != null) {
4396                    mContext.unbindService(mScreenshotConnection);
4397                    mScreenshotConnection = null;
4398                }
4399            }
4400        }
4401    };
4402
4403    // Assume this is called from the Handler thread.
4404    private void takeScreenshot() {
4405        synchronized (mScreenshotLock) {
4406            if (mScreenshotConnection != null) {
4407                return;
4408            }
4409            ComponentName cn = new ComponentName("com.android.systemui",
4410                    "com.android.systemui.screenshot.TakeScreenshotService");
4411            Intent intent = new Intent();
4412            intent.setComponent(cn);
4413            ServiceConnection conn = new ServiceConnection() {
4414                @Override
4415                public void onServiceConnected(ComponentName name, IBinder service) {
4416                    synchronized (mScreenshotLock) {
4417                        if (mScreenshotConnection != this) {
4418                            return;
4419                        }
4420                        Messenger messenger = new Messenger(service);
4421                        Message msg = Message.obtain(null, 1);
4422                        final ServiceConnection myConn = this;
4423                        Handler h = new Handler(mHandler.getLooper()) {
4424                            @Override
4425                            public void handleMessage(Message msg) {
4426                                synchronized (mScreenshotLock) {
4427                                    if (mScreenshotConnection == myConn) {
4428                                        mContext.unbindService(mScreenshotConnection);
4429                                        mScreenshotConnection = null;
4430                                        mHandler.removeCallbacks(mScreenshotTimeout);
4431                                    }
4432                                }
4433                            }
4434                        };
4435                        msg.replyTo = new Messenger(h);
4436                        msg.arg1 = msg.arg2 = 0;
4437                        if (mStatusBar != null && mStatusBar.isVisibleLw())
4438                            msg.arg1 = 1;
4439                        if (mNavigationBar != null && mNavigationBar.isVisibleLw())
4440                            msg.arg2 = 1;
4441                        try {
4442                            messenger.send(msg);
4443                        } catch (RemoteException e) {
4444                        }
4445                    }
4446                }
4447                @Override
4448                public void onServiceDisconnected(ComponentName name) {}
4449            };
4450            if (mContext.bindServiceAsUser(
4451                    intent, conn, Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
4452                mScreenshotConnection = conn;
4453                mHandler.postDelayed(mScreenshotTimeout, 10000);
4454            }
4455        }
4456    }
4457
4458    /** {@inheritDoc} */
4459    @Override
4460    public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags) {
4461        if (!mSystemBooted) {
4462            // If we have not yet booted, don't let key events do anything.
4463            return 0;
4464        }
4465
4466        final boolean interactive = (policyFlags & FLAG_INTERACTIVE) != 0;
4467        final boolean down = event.getAction() == KeyEvent.ACTION_DOWN;
4468        final boolean canceled = event.isCanceled();
4469        final int keyCode = event.getKeyCode();
4470
4471        final boolean isInjected = (policyFlags & WindowManagerPolicy.FLAG_INJECTED) != 0;
4472
4473        // If screen is off then we treat the case where the keyguard is open but hidden
4474        // the same as if it were open and in front.
4475        // This will prevent any keys other than the power button from waking the screen
4476        // when the keyguard is hidden by another activity.
4477        final boolean keyguardActive = (mKeyguardDelegate == null ? false :
4478                                            (interactive ?
4479                                                isKeyguardShowingAndNotOccluded() :
4480                                                mKeyguardDelegate.isShowing()));
4481
4482        if (DEBUG_INPUT) {
4483            Log.d(TAG, "interceptKeyTq keycode=" + keyCode
4484                    + " interactive=" + interactive + " keyguardActive=" + keyguardActive
4485                    + " policyFlags=" + Integer.toHexString(policyFlags));
4486        }
4487
4488        // Basic policy based on interactive state.
4489        int result;
4490        boolean isWakeKey = (policyFlags & WindowManagerPolicy.FLAG_WAKE) != 0
4491                || event.isWakeKey();
4492        if (interactive || (isInjected && !isWakeKey)) {
4493            // When the device is interactive or the key is injected pass the
4494            // key to the application.
4495            result = ACTION_PASS_TO_USER;
4496            isWakeKey = false;
4497        } else if (!interactive && shouldDispatchInputWhenNonInteractive()) {
4498            // If we're currently dozing with the screen on and the keyguard showing, pass the key
4499            // to the application but preserve its wake key status to make sure we still move
4500            // from dozing to fully interactive if we would normally go from off to fully
4501            // interactive.
4502            result = ACTION_PASS_TO_USER;
4503        } else {
4504            // When the screen is off and the key is not injected, determine whether
4505            // to wake the device but don't pass the key to the application.
4506            result = 0;
4507            if (isWakeKey && (!down || !isWakeKeyWhenScreenOff(keyCode))) {
4508                isWakeKey = false;
4509            }
4510        }
4511
4512        // If the key would be handled globally, just return the result, don't worry about special
4513        // key processing.
4514        if (isValidGlobalKey(keyCode)
4515                && mGlobalKeyManager.shouldHandleGlobalKey(keyCode, event)) {
4516            if (isWakeKey) {
4517                wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey);
4518            }
4519            return result;
4520        }
4521
4522        boolean useHapticFeedback = down
4523                && (policyFlags & WindowManagerPolicy.FLAG_VIRTUAL) != 0
4524                && event.getRepeatCount() == 0;
4525
4526        // Handle special keys.
4527        switch (keyCode) {
4528            case KeyEvent.KEYCODE_VOLUME_DOWN:
4529            case KeyEvent.KEYCODE_VOLUME_UP:
4530            case KeyEvent.KEYCODE_VOLUME_MUTE: {
4531                if (mUseTvRouting) {
4532                    // On TVs volume keys never go to the foreground app
4533                    result &= ~ACTION_PASS_TO_USER;
4534                }
4535                if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) {
4536                    if (down) {
4537                        if (interactive && !mScreenshotChordVolumeDownKeyTriggered
4538                                && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
4539                            mScreenshotChordVolumeDownKeyTriggered = true;
4540                            mScreenshotChordVolumeDownKeyTime = event.getDownTime();
4541                            mScreenshotChordVolumeDownKeyConsumed = false;
4542                            cancelPendingPowerKeyAction();
4543                            interceptScreenshotChord();
4544                        }
4545                    } else {
4546                        mScreenshotChordVolumeDownKeyTriggered = false;
4547                        cancelPendingScreenshotChordAction();
4548                    }
4549                } else if (keyCode == KeyEvent.KEYCODE_VOLUME_UP) {
4550                    if (down) {
4551                        if (interactive && !mScreenshotChordVolumeUpKeyTriggered
4552                                && (event.getFlags() & KeyEvent.FLAG_FALLBACK) == 0) {
4553                            mScreenshotChordVolumeUpKeyTriggered = true;
4554                            cancelPendingPowerKeyAction();
4555                            cancelPendingScreenshotChordAction();
4556                        }
4557                    } else {
4558                        mScreenshotChordVolumeUpKeyTriggered = false;
4559                        cancelPendingScreenshotChordAction();
4560                    }
4561                }
4562                if (down) {
4563                    TelecomManager telecomManager = getTelecommService();
4564                    if (telecomManager != null) {
4565                        if (telecomManager.isRinging()) {
4566                            // If an incoming call is ringing, either VOLUME key means
4567                            // "silence ringer".  We handle these keys here, rather than
4568                            // in the InCallScreen, to make sure we'll respond to them
4569                            // even if the InCallScreen hasn't come to the foreground yet.
4570                            // Look for the DOWN event here, to agree with the "fallback"
4571                            // behavior in the InCallScreen.
4572                            Log.i(TAG, "interceptKeyBeforeQueueing:"
4573                                  + " VOLUME key-down while ringing: Silence ringer!");
4574
4575                            // Silence the ringer.  (It's safe to call this
4576                            // even if the ringer has already been silenced.)
4577                            telecomManager.silenceRinger();
4578
4579                            // And *don't* pass this key thru to the current activity
4580                            // (which is probably the InCallScreen.)
4581                            result &= ~ACTION_PASS_TO_USER;
4582                            break;
4583                        }
4584                        if (telecomManager.isInCall()
4585                                && (result & ACTION_PASS_TO_USER) == 0) {
4586                            // If we are in call but we decided not to pass the key to
4587                            // the application, just pass it to the session service.
4588
4589                            MediaSessionLegacyHelper.getHelper(mContext)
4590                                    .sendVolumeKeyEvent(event, false);
4591                            break;
4592                        }
4593                    }
4594
4595                    if ((result & ACTION_PASS_TO_USER) == 0) {
4596                        if (mUseTvRouting) {
4597                            dispatchDirectAudioEvent(event);
4598                        } else {
4599                            // If we aren't passing to the user and no one else
4600                            // handled it send it to the session manager to
4601                            // figure out.
4602                            MediaSessionLegacyHelper.getHelper(mContext)
4603                                    .sendVolumeKeyEvent(event, true);
4604                        }
4605                        break;
4606                    }
4607                }
4608                break;
4609            }
4610
4611            case KeyEvent.KEYCODE_ENDCALL: {
4612                result &= ~ACTION_PASS_TO_USER;
4613                if (down) {
4614                    TelecomManager telecomManager = getTelecommService();
4615                    boolean hungUp = false;
4616                    if (telecomManager != null) {
4617                        hungUp = telecomManager.endCall();
4618                    }
4619                    if (interactive && !hungUp) {
4620                        mEndCallKeyHandled = false;
4621                        mHandler.postDelayed(mEndCallLongPress,
4622                                ViewConfiguration.get(mContext).getDeviceGlobalActionKeyTimeout());
4623                    } else {
4624                        mEndCallKeyHandled = true;
4625                    }
4626                } else {
4627                    if (!mEndCallKeyHandled) {
4628                        mHandler.removeCallbacks(mEndCallLongPress);
4629                        if (!canceled) {
4630                            if ((mEndcallBehavior
4631                                    & Settings.System.END_BUTTON_BEHAVIOR_HOME) != 0) {
4632                                if (goHome()) {
4633                                    break;
4634                                }
4635                            }
4636                            if ((mEndcallBehavior
4637                                    & Settings.System.END_BUTTON_BEHAVIOR_SLEEP) != 0) {
4638                                mPowerManager.goToSleep(event.getEventTime(),
4639                                        PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
4640                                isWakeKey = false;
4641                            }
4642                        }
4643                    }
4644                }
4645                break;
4646            }
4647
4648            case KeyEvent.KEYCODE_POWER: {
4649                result &= ~ACTION_PASS_TO_USER;
4650                isWakeKey = false; // wake-up will be handled separately
4651                if (down) {
4652                    interceptPowerKeyDown(event, interactive);
4653                } else {
4654                    interceptPowerKeyUp(event, interactive, canceled);
4655                }
4656                break;
4657            }
4658
4659            case KeyEvent.KEYCODE_SLEEP: {
4660                result &= ~ACTION_PASS_TO_USER;
4661                if (!mPowerManager.isInteractive()) {
4662                    useHapticFeedback = false; // suppress feedback if already non-interactive
4663                }
4664                mPowerManager.goToSleep(event.getEventTime(),
4665                        PowerManager.GO_TO_SLEEP_REASON_POWER_BUTTON, 0);
4666                isWakeKey = false;
4667                break;
4668            }
4669
4670            case KeyEvent.KEYCODE_WAKEUP: {
4671                result &= ~ACTION_PASS_TO_USER;
4672                isWakeKey = true;
4673                break;
4674            }
4675
4676            case KeyEvent.KEYCODE_MEDIA_PLAY:
4677            case KeyEvent.KEYCODE_MEDIA_PAUSE:
4678            case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
4679            case KeyEvent.KEYCODE_HEADSETHOOK:
4680            case KeyEvent.KEYCODE_MUTE:
4681            case KeyEvent.KEYCODE_MEDIA_STOP:
4682            case KeyEvent.KEYCODE_MEDIA_NEXT:
4683            case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
4684            case KeyEvent.KEYCODE_MEDIA_REWIND:
4685            case KeyEvent.KEYCODE_MEDIA_RECORD:
4686            case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
4687            case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK: {
4688                if (MediaSessionLegacyHelper.getHelper(mContext).isGlobalPriorityActive()) {
4689                    // If the global session is active pass all media keys to it
4690                    // instead of the active window.
4691                    result &= ~ACTION_PASS_TO_USER;
4692                }
4693                if ((result & ACTION_PASS_TO_USER) == 0) {
4694                    // Only do this if we would otherwise not pass it to the user. In that
4695                    // case, the PhoneWindow class will do the same thing, except it will
4696                    // only do it if the showing app doesn't process the key on its own.
4697                    // Note that we need to make a copy of the key event here because the
4698                    // original key event will be recycled when we return.
4699                    mBroadcastWakeLock.acquire();
4700                    Message msg = mHandler.obtainMessage(MSG_DISPATCH_MEDIA_KEY_WITH_WAKE_LOCK,
4701                            new KeyEvent(event));
4702                    msg.setAsynchronous(true);
4703                    msg.sendToTarget();
4704                }
4705                break;
4706            }
4707
4708            case KeyEvent.KEYCODE_CALL: {
4709                if (down) {
4710                    TelecomManager telecomManager = getTelecommService();
4711                    if (telecomManager != null) {
4712                        if (telecomManager.isRinging()) {
4713                            Log.i(TAG, "interceptKeyBeforeQueueing:"
4714                                  + " CALL key-down while ringing: Answer the call!");
4715                            telecomManager.acceptRingingCall();
4716
4717                            // And *don't* pass this key thru to the current activity
4718                            // (which is presumably the InCallScreen.)
4719                            result &= ~ACTION_PASS_TO_USER;
4720                        }
4721                    }
4722                }
4723                break;
4724            }
4725            case KeyEvent.KEYCODE_VOICE_ASSIST: {
4726                // Only do this if we would otherwise not pass it to the user. In that case,
4727                // interceptKeyBeforeDispatching would apply a similar but different policy in
4728                // order to invoke voice assist actions. Note that we need to make a copy of the
4729                // key event here because the original key event will be recycled when we return.
4730                if ((result & ACTION_PASS_TO_USER) == 0 && !down) {
4731                    mBroadcastWakeLock.acquire();
4732                    Message msg = mHandler.obtainMessage(MSG_LAUNCH_VOICE_ASSIST_WITH_WAKE_LOCK,
4733                            keyguardActive ? 1 : 0, 0);
4734                    msg.setAsynchronous(true);
4735                    msg.sendToTarget();
4736                }
4737            }
4738        }
4739
4740        if (useHapticFeedback) {
4741            performHapticFeedbackLw(null, HapticFeedbackConstants.VIRTUAL_KEY, false);
4742        }
4743
4744        if (isWakeKey) {
4745            wakeUp(event.getEventTime(), mAllowTheaterModeWakeFromKey);
4746        }
4747
4748        return result;
4749    }
4750
4751    /**
4752     * Returns true if the key can have global actions attached to it.
4753     * We reserve all power management keys for the system since they require
4754     * very careful handling.
4755     */
4756    private static boolean isValidGlobalKey(int keyCode) {
4757        switch (keyCode) {
4758            case KeyEvent.KEYCODE_POWER:
4759            case KeyEvent.KEYCODE_WAKEUP:
4760            case KeyEvent.KEYCODE_SLEEP:
4761                return false;
4762            default:
4763                return true;
4764        }
4765    }
4766
4767    /**
4768     * When the screen is off we ignore some keys that might otherwise typically
4769     * be considered wake keys.  We filter them out here.
4770     *
4771     * {@link KeyEvent#KEYCODE_POWER} is notably absent from this list because it
4772     * is always considered a wake key.
4773     */
4774    private boolean isWakeKeyWhenScreenOff(int keyCode) {
4775        switch (keyCode) {
4776            // ignore volume keys unless docked
4777            case KeyEvent.KEYCODE_VOLUME_UP:
4778            case KeyEvent.KEYCODE_VOLUME_DOWN:
4779            case KeyEvent.KEYCODE_VOLUME_MUTE:
4780                return mDockMode != Intent.EXTRA_DOCK_STATE_UNDOCKED;
4781
4782            // ignore media and camera keys
4783            case KeyEvent.KEYCODE_MUTE:
4784            case KeyEvent.KEYCODE_HEADSETHOOK:
4785            case KeyEvent.KEYCODE_MEDIA_PLAY:
4786            case KeyEvent.KEYCODE_MEDIA_PAUSE:
4787            case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE:
4788            case KeyEvent.KEYCODE_MEDIA_STOP:
4789            case KeyEvent.KEYCODE_MEDIA_NEXT:
4790            case KeyEvent.KEYCODE_MEDIA_PREVIOUS:
4791            case KeyEvent.KEYCODE_MEDIA_REWIND:
4792            case KeyEvent.KEYCODE_MEDIA_RECORD:
4793            case KeyEvent.KEYCODE_MEDIA_FAST_FORWARD:
4794            case KeyEvent.KEYCODE_MEDIA_AUDIO_TRACK:
4795            case KeyEvent.KEYCODE_CAMERA:
4796                return false;
4797        }
4798        return true;
4799    }
4800
4801
4802    /** {@inheritDoc} */
4803    @Override
4804    public int interceptMotionBeforeQueueingNonInteractive(long whenNanos, int policyFlags) {
4805        if ((policyFlags & FLAG_WAKE) != 0) {
4806            if (wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotion)) {
4807                return 0;
4808            }
4809        }
4810
4811        if (shouldDispatchInputWhenNonInteractive()) {
4812            return ACTION_PASS_TO_USER;
4813        }
4814
4815        // If we have not passed the action up and we are in theater mode without dreaming,
4816        // there will be no dream to intercept the touch and wake into ambient.  The device should
4817        // wake up in this case.
4818        if (isTheaterModeEnabled() && (policyFlags & FLAG_WAKE) != 0) {
4819            wakeUp(whenNanos / 1000000, mAllowTheaterModeWakeFromMotionWhenNotDreaming);
4820        }
4821
4822        return 0;
4823    }
4824
4825    private boolean shouldDispatchInputWhenNonInteractive() {
4826        // Send events to keyguard while the screen is on.
4827        if (isKeyguardShowingAndNotOccluded() && mDisplay != null
4828                && mDisplay.getState() != Display.STATE_OFF) {
4829            return true;
4830        }
4831
4832        // Send events to a dozing dream even if the screen is off since the dream
4833        // is in control of the state of the screen.
4834        IDreamManager dreamManager = getDreamManager();
4835
4836        try {
4837            if (dreamManager != null && dreamManager.isDreaming()) {
4838                return true;
4839            }
4840        } catch (RemoteException e) {
4841            Slog.e(TAG, "RemoteException when checking if dreaming", e);
4842        }
4843
4844        // Otherwise, consume events since the user can't see what is being
4845        // interacted with.
4846        return false;
4847    }
4848
4849    private void dispatchDirectAudioEvent(KeyEvent event) {
4850        if (event.getAction() != KeyEvent.ACTION_DOWN) {
4851            return;
4852        }
4853        int keyCode = event.getKeyCode();
4854        int flags = AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_PLAY_SOUND;
4855        String pkgName = mContext.getOpPackageName();
4856        switch (keyCode) {
4857            case KeyEvent.KEYCODE_VOLUME_UP:
4858                try {
4859                    if (mUseMasterVolume) {
4860                        getAudioService().adjustMasterVolume(AudioManager.ADJUST_RAISE, flags,
4861                                pkgName);
4862                    } else {
4863                        getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_RAISE,
4864                                AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName);
4865                    }
4866                } catch (RemoteException e) {
4867                    Log.e(TAG, "Error dispatching volume up in dispatchTvAudioEvent.", e);
4868                }
4869                break;
4870            case KeyEvent.KEYCODE_VOLUME_DOWN:
4871                try {
4872                    if (mUseMasterVolume) {
4873                        getAudioService().adjustMasterVolume(AudioManager.ADJUST_LOWER, flags,
4874                                pkgName);
4875                    } else {
4876                        getAudioService().adjustSuggestedStreamVolume(AudioManager.ADJUST_LOWER,
4877                                AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName);
4878                    }
4879                } catch (RemoteException e) {
4880                    Log.e(TAG, "Error dispatching volume down in dispatchTvAudioEvent.", e);
4881                }
4882                break;
4883            case KeyEvent.KEYCODE_VOLUME_MUTE:
4884                try {
4885                    if (event.getRepeatCount() == 0) {
4886                        if (mUseMasterVolume) {
4887                            getAudioService().adjustMasterVolume(AudioManager.ADJUST_TOGGLE_MUTE,
4888                                    flags, pkgName);
4889                        } else {
4890                            getAudioService().adjustSuggestedStreamVolume(
4891                                    AudioManager.ADJUST_TOGGLE_MUTE,
4892                                    AudioManager.USE_DEFAULT_STREAM_TYPE, flags, pkgName);
4893                        }
4894                    }
4895                } catch (RemoteException e) {
4896                    Log.e(TAG, "Error dispatching mute in dispatchTvAudioEvent.", e);
4897                }
4898                break;
4899        }
4900    }
4901
4902    void dispatchMediaKeyWithWakeLock(KeyEvent event) {
4903        if (DEBUG_INPUT) {
4904            Slog.d(TAG, "dispatchMediaKeyWithWakeLock: " + event);
4905        }
4906
4907        if (mHavePendingMediaKeyRepeatWithWakeLock) {
4908            if (DEBUG_INPUT) {
4909                Slog.d(TAG, "dispatchMediaKeyWithWakeLock: canceled repeat");
4910            }
4911
4912            mHandler.removeMessages(MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK);
4913            mHavePendingMediaKeyRepeatWithWakeLock = false;
4914            mBroadcastWakeLock.release(); // pending repeat was holding onto the wake lock
4915        }
4916
4917        dispatchMediaKeyWithWakeLockToAudioService(event);
4918
4919        if (event.getAction() == KeyEvent.ACTION_DOWN
4920                && event.getRepeatCount() == 0) {
4921            mHavePendingMediaKeyRepeatWithWakeLock = true;
4922
4923            Message msg = mHandler.obtainMessage(
4924                    MSG_DISPATCH_MEDIA_KEY_REPEAT_WITH_WAKE_LOCK, event);
4925            msg.setAsynchronous(true);
4926            mHandler.sendMessageDelayed(msg, ViewConfiguration.getKeyRepeatTimeout());
4927        } else {
4928            mBroadcastWakeLock.release();
4929        }
4930    }
4931
4932    void dispatchMediaKeyRepeatWithWakeLock(KeyEvent event) {
4933        mHavePendingMediaKeyRepeatWithWakeLock = false;
4934
4935        KeyEvent repeatEvent = KeyEvent.changeTimeRepeat(event,
4936                SystemClock.uptimeMillis(), 1, event.getFlags() | KeyEvent.FLAG_LONG_PRESS);
4937        if (DEBUG_INPUT) {
4938            Slog.d(TAG, "dispatchMediaKeyRepeatWithWakeLock: " + repeatEvent);
4939        }
4940
4941        dispatchMediaKeyWithWakeLockToAudioService(repeatEvent);
4942        mBroadcastWakeLock.release();
4943    }
4944
4945    void dispatchMediaKeyWithWakeLockToAudioService(KeyEvent event) {
4946        if (ActivityManagerNative.isSystemReady()) {
4947            MediaSessionLegacyHelper.getHelper(mContext).sendMediaButtonEvent(event, true);
4948        }
4949    }
4950
4951    void launchVoiceAssistWithWakeLock(boolean keyguardActive) {
4952        Intent voiceIntent =
4953            new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
4954        voiceIntent.putExtra(RecognizerIntent.EXTRA_SECURE, keyguardActive);
4955        mContext.startActivityAsUser(voiceIntent, UserHandle.CURRENT_OR_SELF);
4956        mBroadcastWakeLock.release();
4957    }
4958
4959    BroadcastReceiver mDockReceiver = new BroadcastReceiver() {
4960        @Override
4961        public void onReceive(Context context, Intent intent) {
4962            if (Intent.ACTION_DOCK_EVENT.equals(intent.getAction())) {
4963                mDockMode = intent.getIntExtra(Intent.EXTRA_DOCK_STATE,
4964                        Intent.EXTRA_DOCK_STATE_UNDOCKED);
4965            } else {
4966                try {
4967                    IUiModeManager uiModeService = IUiModeManager.Stub.asInterface(
4968                            ServiceManager.getService(Context.UI_MODE_SERVICE));
4969                    mUiMode = uiModeService.getCurrentModeType();
4970                } catch (RemoteException e) {
4971                }
4972            }
4973            updateRotation(true);
4974            synchronized (mLock) {
4975                updateOrientationListenerLp();
4976            }
4977        }
4978    };
4979
4980    BroadcastReceiver mDreamReceiver = new BroadcastReceiver() {
4981        @Override
4982        public void onReceive(Context context, Intent intent) {
4983            if (Intent.ACTION_DREAMING_STARTED.equals(intent.getAction())) {
4984                if (mKeyguardDelegate != null) {
4985                    mKeyguardDelegate.onDreamingStarted();
4986                }
4987            } else if (Intent.ACTION_DREAMING_STOPPED.equals(intent.getAction())) {
4988                if (mKeyguardDelegate != null) {
4989                    mKeyguardDelegate.onDreamingStopped();
4990                }
4991            }
4992        }
4993    };
4994
4995    BroadcastReceiver mMultiuserReceiver = new BroadcastReceiver() {
4996        @Override
4997        public void onReceive(Context context, Intent intent) {
4998            if (Intent.ACTION_USER_SWITCHED.equals(intent.getAction())) {
4999                // tickle the settings observer: this first ensures that we're
5000                // observing the relevant settings for the newly-active user,
5001                // and then updates our own bookkeeping based on the now-
5002                // current user.
5003                mSettingsObserver.onChange(false);
5004
5005                // force a re-application of focused window sysui visibility.
5006                // the window may never have been shown for this user
5007                // e.g. the keyguard when going through the new-user setup flow
5008                synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
5009                    mLastSystemUiFlags = 0;
5010                    updateSystemUiVisibilityLw();
5011                }
5012            }
5013        }
5014    };
5015
5016    private final Runnable mRequestTransientNav = new Runnable() {
5017        @Override
5018        public void run() {
5019            requestTransientBars(mNavigationBar);
5020        }
5021    };
5022
5023    private void requestTransientBars(WindowState swipeTarget) {
5024        synchronized (mWindowManagerFuncs.getWindowManagerLock()) {
5025            if (!isUserSetupComplete()) {
5026                // Swipe-up for navigation bar is disabled during setup
5027                return;
5028            }
5029            boolean sb = mStatusBarController.checkShowTransientBarLw();
5030            boolean nb = mNavigationBarController.checkShowTransientBarLw();
5031            if (sb || nb) {
5032                WindowState barTarget = sb ? mStatusBar : mNavigationBar;
5033                if (sb ^ nb && barTarget != swipeTarget) {
5034                    if (DEBUG) Slog.d(TAG, "Not showing transient bar, wrong swipe target");
5035                    return;
5036                }
5037                if (sb) mStatusBarController.showTransient();
5038                if (nb) mNavigationBarController.showTransient();
5039                mImmersiveModeConfirmation.confirmCurrentPrompt();
5040                updateSystemUiVisibilityLw();
5041            }
5042        }
5043    }
5044
5045    // Called on the PowerManager's Notifier thread.
5046    @Override
5047    public void goingToSleep(int why) {
5048        EventLog.writeEvent(70000, 0);
5049        if (DEBUG_WAKEUP) Slog.i(TAG, "Going to sleep...");
5050
5051        // We must get this work done here because the power manager will drop
5052        // the wake lock and let the system suspend once this function returns.
5053        synchronized (mLock) {
5054            mAwake = false;
5055            mKeyguardDrawComplete = false;
5056            updateWakeGestureListenerLp();
5057            updateOrientationListenerLp();
5058            updateLockScreenTimeout();
5059        }
5060
5061        if (mKeyguardDelegate != null) {
5062            mKeyguardDelegate.onScreenTurnedOff(why);
5063        }
5064    }
5065
5066    private void wakeUpFromPowerKey(long eventTime) {
5067        wakeUp(eventTime, mAllowTheaterModeWakeFromPowerKey);
5068    }
5069
5070    private boolean wakeUp(long wakeTime, boolean wakeInTheaterMode) {
5071        if (!wakeInTheaterMode && isTheaterModeEnabled()) {
5072            return false;
5073        }
5074
5075        mPowerManager.wakeUp(wakeTime);
5076        return true;
5077    }
5078
5079    // Called on the PowerManager's Notifier thread.
5080    @Override
5081    public void wakingUp() {
5082        EventLog.writeEvent(70000, 1);
5083        if (DEBUG_WAKEUP) Slog.i(TAG, "Waking up...");
5084
5085        // Since goToSleep performs these functions synchronously, we must
5086        // do the same here.  We cannot post this work to a handler because
5087        // that might cause it to become reordered with respect to what
5088        // may happen in a future call to goToSleep.
5089        synchronized (mLock) {
5090            mAwake = true;
5091            mKeyguardDrawComplete = false;
5092            if (mKeyguardDelegate != null) {
5093                mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5094                mHandler.sendEmptyMessageDelayed(MSG_KEYGUARD_DRAWN_TIMEOUT, 1000);
5095            }
5096
5097            updateWakeGestureListenerLp();
5098            updateOrientationListenerLp();
5099            updateLockScreenTimeout();
5100        }
5101
5102        if (mKeyguardDelegate != null) {
5103            mKeyguardDelegate.onScreenTurnedOn(mKeyguardDelegateCallback);
5104            // ... eventually calls finishKeyguardDrawn
5105        } else {
5106            if (DEBUG_WAKEUP) Slog.d(TAG, "null mKeyguardDelegate: setting mKeyguardDrawComplete.");
5107            finishKeyguardDrawn();
5108        }
5109    }
5110
5111    private void finishKeyguardDrawn() {
5112        synchronized (mLock) {
5113            if (!mAwake || mKeyguardDrawComplete) {
5114                return; // spurious
5115            }
5116
5117            mKeyguardDrawComplete = true;
5118            if (mKeyguardDelegate != null) {
5119                mHandler.removeMessages(MSG_KEYGUARD_DRAWN_TIMEOUT);
5120            }
5121        }
5122
5123        finishScreenTurningOn();
5124    }
5125
5126    // Called on the DisplayManager's DisplayPowerController thread.
5127    @Override
5128    public void screenTurnedOff() {
5129        if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turned off...");
5130
5131        synchronized (mLock) {
5132            mScreenOnEarly = false;
5133            mScreenOnFully = false;
5134            mWindowManagerDrawComplete = false;
5135            mScreenOnListener = null;
5136            updateOrientationListenerLp();
5137        }
5138    }
5139
5140    // Called on the DisplayManager's DisplayPowerController thread.
5141    @Override
5142    public void screenTurningOn(final ScreenOnListener screenOnListener) {
5143        if (DEBUG_WAKEUP) Slog.i(TAG, "Screen turning on...");
5144
5145        synchronized (mLock) {
5146            mScreenOnEarly = true;
5147            mScreenOnFully = false;
5148            mWindowManagerDrawComplete = false;
5149            mScreenOnListener = screenOnListener;
5150            updateOrientationListenerLp();
5151        }
5152
5153        mWindowManagerInternal.waitForAllWindowsDrawn(mWindowManagerDrawCallback,
5154                WAITING_FOR_DRAWN_TIMEOUT);
5155        // ... eventually calls finishWindowsDrawn
5156    }
5157
5158    private void finishWindowsDrawn() {
5159        synchronized (mLock) {
5160            if (!mScreenOnEarly || mWindowManagerDrawComplete) {
5161                return; // spurious
5162            }
5163
5164            mWindowManagerDrawComplete = true;
5165        }
5166
5167        finishScreenTurningOn();
5168    }
5169
5170    private void finishScreenTurningOn() {
5171        final ScreenOnListener listener;
5172        final boolean enableScreen;
5173        synchronized (mLock) {
5174            if (DEBUG_WAKEUP) Slog.d(TAG,
5175                    "finishScreenTurningOn: mAwake=" + mAwake
5176                            + ", mScreenOnEarly=" + mScreenOnEarly
5177                            + ", mScreenOnFully=" + mScreenOnFully
5178                            + ", mKeyguardDrawComplete=" + mKeyguardDrawComplete
5179                            + ", mWindowManagerDrawComplete=" + mWindowManagerDrawComplete);
5180
5181            if (mScreenOnFully || !mScreenOnEarly || !mWindowManagerDrawComplete
5182                    || (mAwake && !mKeyguardDrawComplete)) {
5183                return; // spurious or not ready yet
5184            }
5185
5186            if (DEBUG_WAKEUP) Slog.i(TAG, "Finished screen turning on...");
5187            listener = mScreenOnListener;
5188            mScreenOnListener = null;
5189            mScreenOnFully = true;
5190
5191            // Remember the first time we draw the keyguard so we know when we're done with
5192            // the main part of booting and can enable the screen and hide boot messages.
5193            if (!mKeyguardDrawnOnce && mAwake) {
5194                mKeyguardDrawnOnce = true;
5195                enableScreen = true;
5196                if (mBootMessageNeedsHiding) {
5197                    mBootMessageNeedsHiding = false;
5198                    hideBootMessages();
5199                }
5200            } else {
5201                enableScreen = false;
5202            }
5203        }
5204
5205        if (listener != null) {
5206            listener.onScreenOn();
5207        }
5208
5209        if (enableScreen) {
5210            try {
5211                mWindowManager.enableScreenIfNeeded();
5212            } catch (RemoteException unhandled) {
5213            }
5214        }
5215    }
5216
5217    private void handleHideBootMessage() {
5218        synchronized (mLock) {
5219            if (!mKeyguardDrawnOnce) {
5220                mBootMessageNeedsHiding = true;
5221                return; // keyguard hasn't drawn the first time yet, not done booting
5222            }
5223        }
5224
5225        if (mBootMsgDialog != null) {
5226            if (DEBUG_WAKEUP) Slog.d(TAG, "handleHideBootMessage: dismissing");
5227            mBootMsgDialog.dismiss();
5228            mBootMsgDialog = null;
5229        }
5230    }
5231
5232    @Override
5233    public boolean isScreenOn() {
5234        return mScreenOnFully;
5235    }
5236
5237    /** {@inheritDoc} */
5238    @Override
5239    public void enableKeyguard(boolean enabled) {
5240        if (mKeyguardDelegate != null) {
5241            mKeyguardDelegate.setKeyguardEnabled(enabled);
5242        }
5243    }
5244
5245    /** {@inheritDoc} */
5246    @Override
5247    public void exitKeyguardSecurely(OnKeyguardExitResult callback) {
5248        if (mKeyguardDelegate != null) {
5249            mKeyguardDelegate.verifyUnlock(callback);
5250        }
5251    }
5252
5253    private boolean isKeyguardShowingAndNotOccluded() {
5254        if (mKeyguardDelegate == null) return false;
5255        return mKeyguardDelegate.isShowing() && !mKeyguardOccluded;
5256    }
5257
5258    /** {@inheritDoc} */
5259    @Override
5260    public boolean isKeyguardLocked() {
5261        return keyguardOn();
5262    }
5263
5264    /** {@inheritDoc} */
5265    @Override
5266    public boolean isKeyguardSecure() {
5267        if (mKeyguardDelegate == null) return false;
5268        return mKeyguardDelegate.isSecure();
5269    }
5270
5271    /** {@inheritDoc} */
5272    @Override
5273    public boolean inKeyguardRestrictedKeyInputMode() {
5274        if (mKeyguardDelegate == null) return false;
5275        return mKeyguardDelegate.isInputRestricted();
5276    }
5277
5278    @Override
5279    public void dismissKeyguardLw() {
5280        if (mKeyguardDelegate != null && mKeyguardDelegate.isShowing()) {
5281            if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.dismissKeyguardLw");
5282            mHandler.post(new Runnable() {
5283                @Override
5284                public void run() {
5285                    // ask the keyguard to prompt the user to authenticate if necessary
5286                    mKeyguardDelegate.dismiss();
5287                }
5288            });
5289        }
5290    }
5291
5292    public void notifyActivityDrawnForKeyguardLw() {
5293        if (mKeyguardDelegate != null) {
5294            mHandler.post(new Runnable() {
5295                @Override
5296                public void run() {
5297                    mKeyguardDelegate.onActivityDrawn();
5298                }
5299            });
5300        }
5301    }
5302
5303    @Override
5304    public boolean isKeyguardDrawnLw() {
5305        synchronized (mLock) {
5306            return mKeyguardDrawnOnce;
5307        }
5308    }
5309
5310    @Override
5311    public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
5312        if (mKeyguardDelegate != null) {
5313            if (DEBUG_KEYGUARD) Slog.d(TAG, "PWM.startKeyguardExitAnimation");
5314            mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
5315        }
5316    }
5317
5318    void sendCloseSystemWindows() {
5319        PhoneWindow.sendCloseSystemWindows(mContext, null);
5320    }
5321
5322    void sendCloseSystemWindows(String reason) {
5323        PhoneWindow.sendCloseSystemWindows(mContext, reason);
5324    }
5325
5326    @Override
5327    public int rotationForOrientationLw(int orientation, int lastRotation) {
5328        if (false) {
5329            Slog.v(TAG, "rotationForOrientationLw(orient="
5330                        + orientation + ", last=" + lastRotation
5331                        + "); user=" + mUserRotation + " "
5332                        + ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED)
5333                            ? "USER_ROTATION_LOCKED" : "")
5334                        );
5335        }
5336
5337        if (mForceDefaultOrientation) {
5338            return Surface.ROTATION_0;
5339        }
5340
5341        synchronized (mLock) {
5342            int sensorRotation = mOrientationListener.getProposedRotation(); // may be -1
5343            if (sensorRotation < 0) {
5344                sensorRotation = lastRotation;
5345            }
5346
5347            final int preferredRotation;
5348            if (mLidState == LID_OPEN && mLidOpenRotation >= 0) {
5349                // Ignore sensor when lid switch is open and rotation is forced.
5350                preferredRotation = mLidOpenRotation;
5351            } else if (mDockMode == Intent.EXTRA_DOCK_STATE_CAR
5352                    && (mCarDockEnablesAccelerometer || mCarDockRotation >= 0)) {
5353                // Ignore sensor when in car dock unless explicitly enabled.
5354                // This case can override the behavior of NOSENSOR, and can also
5355                // enable 180 degree rotation while docked.
5356                preferredRotation = mCarDockEnablesAccelerometer
5357                        ? sensorRotation : mCarDockRotation;
5358            } else if ((mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5359                    || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK
5360                    || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK)
5361                    && (mDeskDockEnablesAccelerometer || mDeskDockRotation >= 0)) {
5362                // Ignore sensor when in desk dock unless explicitly enabled.
5363                // This case can override the behavior of NOSENSOR, and can also
5364                // enable 180 degree rotation while docked.
5365                preferredRotation = mDeskDockEnablesAccelerometer
5366                        ? sensorRotation : mDeskDockRotation;
5367            } else if (mHdmiPlugged && mDemoHdmiRotationLock) {
5368                // Ignore sensor when plugged into HDMI when demo HDMI rotation lock enabled.
5369                // Note that the dock orientation overrides the HDMI orientation.
5370                preferredRotation = mDemoHdmiRotation;
5371            } else if (mHdmiPlugged && mDockMode == Intent.EXTRA_DOCK_STATE_UNDOCKED
5372                    && mUndockedHdmiRotation >= 0) {
5373                // Ignore sensor when plugged into HDMI and an undocked orientation has
5374                // been specified in the configuration (only for legacy devices without
5375                // full multi-display support).
5376                // Note that the dock orientation overrides the HDMI orientation.
5377                preferredRotation = mUndockedHdmiRotation;
5378            } else if (mDemoRotationLock) {
5379                // Ignore sensor when demo rotation lock is enabled.
5380                // Note that the dock orientation and HDMI rotation lock override this.
5381                preferredRotation = mDemoRotation;
5382            } else if (orientation == ActivityInfo.SCREEN_ORIENTATION_LOCKED) {
5383                // Application just wants to remain locked in the last rotation.
5384                preferredRotation = lastRotation;
5385            } else if (!mSupportAutoRotation) {
5386                // If we don't support auto-rotation then bail out here and ignore
5387                // the sensor and any rotation lock settings.
5388                preferredRotation = -1;
5389            } else if ((mUserRotationMode == WindowManagerPolicy.USER_ROTATION_FREE
5390                            && (orientation == ActivityInfo.SCREEN_ORIENTATION_USER
5391                                    || orientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
5392                                    || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE
5393                                    || orientation == ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
5394                                    || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER))
5395                    || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR
5396                    || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5397                    || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
5398                    || orientation == ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT) {
5399                // Otherwise, use sensor only if requested by the application or enabled
5400                // by default for USER or UNSPECIFIED modes.  Does not apply to NOSENSOR.
5401                if (mAllowAllRotations < 0) {
5402                    // Can't read this during init() because the context doesn't
5403                    // have display metrics at that time so we cannot determine
5404                    // tablet vs. phone then.
5405                    mAllowAllRotations = mContext.getResources().getBoolean(
5406                            com.android.internal.R.bool.config_allowAllRotations) ? 1 : 0;
5407                }
5408                if (sensorRotation != Surface.ROTATION_180
5409                        || mAllowAllRotations == 1
5410                        || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR
5411                        || orientation == ActivityInfo.SCREEN_ORIENTATION_FULL_USER) {
5412                    preferredRotation = sensorRotation;
5413                } else {
5414                    preferredRotation = lastRotation;
5415                }
5416            } else if (mUserRotationMode == WindowManagerPolicy.USER_ROTATION_LOCKED
5417                    && orientation != ActivityInfo.SCREEN_ORIENTATION_NOSENSOR) {
5418                // Apply rotation lock.  Does not apply to NOSENSOR.
5419                // The idea is that the user rotation expresses a weak preference for the direction
5420                // of gravity and as NOSENSOR is never affected by gravity, then neither should
5421                // NOSENSOR be affected by rotation lock (although it will be affected by docks).
5422                preferredRotation = mUserRotation;
5423            } else {
5424                // No overriding preference.
5425                // We will do exactly what the application asked us to do.
5426                preferredRotation = -1;
5427            }
5428
5429            switch (orientation) {
5430                case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
5431                    // Return portrait unless overridden.
5432                    if (isAnyPortrait(preferredRotation)) {
5433                        return preferredRotation;
5434                    }
5435                    return mPortraitRotation;
5436
5437                case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
5438                    // Return landscape unless overridden.
5439                    if (isLandscapeOrSeascape(preferredRotation)) {
5440                        return preferredRotation;
5441                    }
5442                    return mLandscapeRotation;
5443
5444                case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
5445                    // Return reverse portrait unless overridden.
5446                    if (isAnyPortrait(preferredRotation)) {
5447                        return preferredRotation;
5448                    }
5449                    return mUpsideDownRotation;
5450
5451                case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
5452                    // Return seascape unless overridden.
5453                    if (isLandscapeOrSeascape(preferredRotation)) {
5454                        return preferredRotation;
5455                    }
5456                    return mSeascapeRotation;
5457
5458                case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
5459                case ActivityInfo.SCREEN_ORIENTATION_USER_LANDSCAPE:
5460                    // Return either landscape rotation.
5461                    if (isLandscapeOrSeascape(preferredRotation)) {
5462                        return preferredRotation;
5463                    }
5464                    if (isLandscapeOrSeascape(lastRotation)) {
5465                        return lastRotation;
5466                    }
5467                    return mLandscapeRotation;
5468
5469                case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
5470                case ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT:
5471                    // Return either portrait rotation.
5472                    if (isAnyPortrait(preferredRotation)) {
5473                        return preferredRotation;
5474                    }
5475                    if (isAnyPortrait(lastRotation)) {
5476                        return lastRotation;
5477                    }
5478                    return mPortraitRotation;
5479
5480                default:
5481                    // For USER, UNSPECIFIED, NOSENSOR, SENSOR and FULL_SENSOR,
5482                    // just return the preferred orientation we already calculated.
5483                    if (preferredRotation >= 0) {
5484                        return preferredRotation;
5485                    }
5486                    return Surface.ROTATION_0;
5487            }
5488        }
5489    }
5490
5491    @Override
5492    public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation) {
5493        switch (orientation) {
5494            case ActivityInfo.SCREEN_ORIENTATION_PORTRAIT:
5495            case ActivityInfo.SCREEN_ORIENTATION_REVERSE_PORTRAIT:
5496            case ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT:
5497                return isAnyPortrait(rotation);
5498
5499            case ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE:
5500            case ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE:
5501            case ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE:
5502                return isLandscapeOrSeascape(rotation);
5503
5504            default:
5505                return true;
5506        }
5507    }
5508
5509    @Override
5510    public void setRotationLw(int rotation) {
5511        mOrientationListener.setCurrentRotation(rotation);
5512    }
5513
5514    private boolean isLandscapeOrSeascape(int rotation) {
5515        return rotation == mLandscapeRotation || rotation == mSeascapeRotation;
5516    }
5517
5518    private boolean isAnyPortrait(int rotation) {
5519        return rotation == mPortraitRotation || rotation == mUpsideDownRotation;
5520    }
5521
5522    @Override
5523    public int getUserRotationMode() {
5524        return Settings.System.getIntForUser(mContext.getContentResolver(),
5525                Settings.System.ACCELEROMETER_ROTATION, 0, UserHandle.USER_CURRENT) != 0 ?
5526                        WindowManagerPolicy.USER_ROTATION_FREE :
5527                                WindowManagerPolicy.USER_ROTATION_LOCKED;
5528    }
5529
5530    // User rotation: to be used when all else fails in assigning an orientation to the device
5531    @Override
5532    public void setUserRotationMode(int mode, int rot) {
5533        ContentResolver res = mContext.getContentResolver();
5534
5535        // mUserRotationMode and mUserRotation will be assigned by the content observer
5536        if (mode == WindowManagerPolicy.USER_ROTATION_LOCKED) {
5537            Settings.System.putIntForUser(res,
5538                    Settings.System.USER_ROTATION,
5539                    rot,
5540                    UserHandle.USER_CURRENT);
5541            Settings.System.putIntForUser(res,
5542                    Settings.System.ACCELEROMETER_ROTATION,
5543                    0,
5544                    UserHandle.USER_CURRENT);
5545        } else {
5546            Settings.System.putIntForUser(res,
5547                    Settings.System.ACCELEROMETER_ROTATION,
5548                    1,
5549                    UserHandle.USER_CURRENT);
5550        }
5551    }
5552
5553    @Override
5554    public void setSafeMode(boolean safeMode) {
5555        mSafeMode = safeMode;
5556        performHapticFeedbackLw(null, safeMode
5557                ? HapticFeedbackConstants.SAFE_MODE_ENABLED
5558                : HapticFeedbackConstants.SAFE_MODE_DISABLED, true);
5559    }
5560
5561    static long[] getLongIntArray(Resources r, int resid) {
5562        int[] ar = r.getIntArray(resid);
5563        if (ar == null) {
5564            return null;
5565        }
5566        long[] out = new long[ar.length];
5567        for (int i=0; i<ar.length; i++) {
5568            out[i] = ar[i];
5569        }
5570        return out;
5571    }
5572
5573    /** {@inheritDoc} */
5574    @Override
5575    public void systemReady() {
5576        mKeyguardDelegate = new KeyguardServiceDelegate(mContext);
5577        mKeyguardDelegate.onSystemReady();
5578
5579        readCameraLensCoverState();
5580        updateUiMode();
5581        synchronized (mLock) {
5582            updateOrientationListenerLp();
5583            mSystemReady = true;
5584            mHandler.post(new Runnable() {
5585                @Override
5586                public void run() {
5587                    updateSettings();
5588                }
5589            });
5590        }
5591    }
5592
5593    /** {@inheritDoc} */
5594    @Override
5595    public void systemBooted() {
5596        if (mKeyguardDelegate != null) {
5597            mKeyguardDelegate.bindService(mContext);
5598            mKeyguardDelegate.onBootCompleted();
5599        }
5600        synchronized (mLock) {
5601            mSystemBooted = true;
5602        }
5603        wakingUp();
5604        screenTurningOn(null);
5605    }
5606
5607    ProgressDialog mBootMsgDialog = null;
5608
5609    /** {@inheritDoc} */
5610    @Override
5611    public void showBootMessage(final CharSequence msg, final boolean always) {
5612        mHandler.post(new Runnable() {
5613            @Override public void run() {
5614                if (mBootMsgDialog == null) {
5615                    int theme;
5616                    if (mContext.getPackageManager().hasSystemFeature(
5617                            PackageManager.FEATURE_WATCH)) {
5618                        theme = com.android.internal.R.style.Theme_Micro_Dialog_Alert;
5619                    } else if (mContext.getPackageManager().hasSystemFeature(
5620                            PackageManager.FEATURE_TELEVISION)) {
5621                        theme = com.android.internal.R.style.Theme_Leanback_Dialog_Alert;
5622                    } else {
5623                        theme = 0;
5624                    }
5625
5626                    mBootMsgDialog = new ProgressDialog(mContext, theme) {
5627                        // This dialog will consume all events coming in to
5628                        // it, to avoid it trying to do things too early in boot.
5629                        @Override public boolean dispatchKeyEvent(KeyEvent event) {
5630                            return true;
5631                        }
5632                        @Override public boolean dispatchKeyShortcutEvent(KeyEvent event) {
5633                            return true;
5634                        }
5635                        @Override public boolean dispatchTouchEvent(MotionEvent ev) {
5636                            return true;
5637                        }
5638                        @Override public boolean dispatchTrackballEvent(MotionEvent ev) {
5639                            return true;
5640                        }
5641                        @Override public boolean dispatchGenericMotionEvent(MotionEvent ev) {
5642                            return true;
5643                        }
5644                        @Override public boolean dispatchPopulateAccessibilityEvent(
5645                                AccessibilityEvent event) {
5646                            return true;
5647                        }
5648                    };
5649                    if (mContext.getPackageManager().isUpgrade()) {
5650                        mBootMsgDialog.setTitle(R.string.android_upgrading_title);
5651                    } else {
5652                        mBootMsgDialog.setTitle(R.string.android_start_title);
5653                    }
5654                    mBootMsgDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
5655                    mBootMsgDialog.setIndeterminate(true);
5656                    mBootMsgDialog.getWindow().setType(
5657                            WindowManager.LayoutParams.TYPE_BOOT_PROGRESS);
5658                    mBootMsgDialog.getWindow().addFlags(
5659                            WindowManager.LayoutParams.FLAG_DIM_BEHIND
5660                            | WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
5661                    mBootMsgDialog.getWindow().setDimAmount(1);
5662                    WindowManager.LayoutParams lp = mBootMsgDialog.getWindow().getAttributes();
5663                    lp.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_NOSENSOR;
5664                    mBootMsgDialog.getWindow().setAttributes(lp);
5665                    mBootMsgDialog.setCancelable(false);
5666                    mBootMsgDialog.show();
5667                }
5668                mBootMsgDialog.setMessage(msg);
5669            }
5670        });
5671    }
5672
5673    /** {@inheritDoc} */
5674    @Override
5675    public void hideBootMessages() {
5676        mHandler.sendEmptyMessage(MSG_HIDE_BOOT_MESSAGE);
5677    }
5678
5679    /** {@inheritDoc} */
5680    @Override
5681    public void userActivity() {
5682        // ***************************************
5683        // NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE
5684        // ***************************************
5685        // THIS IS CALLED FROM DEEP IN THE POWER MANAGER
5686        // WITH ITS LOCKS HELD.
5687        //
5688        // This code must be VERY careful about the locks
5689        // it acquires.
5690        // In fact, the current code acquires way too many,
5691        // and probably has lurking deadlocks.
5692
5693        synchronized (mScreenLockTimeout) {
5694            if (mLockScreenTimerActive) {
5695                // reset the timer
5696                mHandler.removeCallbacks(mScreenLockTimeout);
5697                mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
5698            }
5699        }
5700    }
5701
5702    class ScreenLockTimeout implements Runnable {
5703        Bundle options;
5704
5705        @Override
5706        public void run() {
5707            synchronized (this) {
5708                if (localLOGV) Log.v(TAG, "mScreenLockTimeout activating keyguard");
5709                if (mKeyguardDelegate != null) {
5710                    mKeyguardDelegate.doKeyguardTimeout(options);
5711                }
5712                mLockScreenTimerActive = false;
5713                options = null;
5714            }
5715        }
5716
5717        public void setLockOptions(Bundle options) {
5718            this.options = options;
5719        }
5720    }
5721
5722    ScreenLockTimeout mScreenLockTimeout = new ScreenLockTimeout();
5723
5724    @Override
5725    public void lockNow(Bundle options) {
5726        mContext.enforceCallingOrSelfPermission(android.Manifest.permission.DEVICE_POWER, null);
5727        mHandler.removeCallbacks(mScreenLockTimeout);
5728        if (options != null) {
5729            // In case multiple calls are made to lockNow, we don't wipe out the options
5730            // until the runnable actually executes.
5731            mScreenLockTimeout.setLockOptions(options);
5732        }
5733        mHandler.post(mScreenLockTimeout);
5734    }
5735
5736    private void updateLockScreenTimeout() {
5737        synchronized (mScreenLockTimeout) {
5738            boolean enable = (mAllowLockscreenWhenOn && mAwake &&
5739                    mKeyguardDelegate != null && mKeyguardDelegate.isSecure());
5740            if (mLockScreenTimerActive != enable) {
5741                if (enable) {
5742                    if (localLOGV) Log.v(TAG, "setting lockscreen timer");
5743                    mHandler.postDelayed(mScreenLockTimeout, mLockScreenTimeout);
5744                } else {
5745                    if (localLOGV) Log.v(TAG, "clearing lockscreen timer");
5746                    mHandler.removeCallbacks(mScreenLockTimeout);
5747                }
5748                mLockScreenTimerActive = enable;
5749            }
5750        }
5751    }
5752
5753    /** {@inheritDoc} */
5754    @Override
5755    public void enableScreenAfterBoot() {
5756        readLidState();
5757        applyLidSwitchState();
5758        updateRotation(true);
5759    }
5760
5761    private void applyLidSwitchState() {
5762        if (mLidState == LID_CLOSED && mLidControlsSleep) {
5763            mPowerManager.goToSleep(SystemClock.uptimeMillis(),
5764                    PowerManager.GO_TO_SLEEP_REASON_LID_SWITCH,
5765                    PowerManager.GO_TO_SLEEP_FLAG_NO_DOZE);
5766        }
5767
5768        synchronized (mLock) {
5769            updateWakeGestureListenerLp();
5770        }
5771    }
5772
5773    void updateUiMode() {
5774        if (mUiModeManager == null) {
5775            mUiModeManager = IUiModeManager.Stub.asInterface(
5776                    ServiceManager.getService(Context.UI_MODE_SERVICE));
5777        }
5778        try {
5779            mUiMode = mUiModeManager.getCurrentModeType();
5780        } catch (RemoteException e) {
5781        }
5782    }
5783
5784    void updateRotation(boolean alwaysSendConfiguration) {
5785        try {
5786            //set orientation on WindowManager
5787            mWindowManager.updateRotation(alwaysSendConfiguration, false);
5788        } catch (RemoteException e) {
5789            // Ignore
5790        }
5791    }
5792
5793    void updateRotation(boolean alwaysSendConfiguration, boolean forceRelayout) {
5794        try {
5795            //set orientation on WindowManager
5796            mWindowManager.updateRotation(alwaysSendConfiguration, forceRelayout);
5797        } catch (RemoteException e) {
5798            // Ignore
5799        }
5800    }
5801
5802    /**
5803     * Return an Intent to launch the currently active dock app as home.  Returns
5804     * null if the standard home should be launched, which is the case if any of the following is
5805     * true:
5806     * <ul>
5807     *  <li>The device is not in either car mode or desk mode
5808     *  <li>The device is in car mode but ENABLE_CAR_DOCK_HOME_CAPTURE is false
5809     *  <li>The device is in desk mode but ENABLE_DESK_DOCK_HOME_CAPTURE is false
5810     *  <li>The device is in car mode but there's no CAR_DOCK app with METADATA_DOCK_HOME
5811     *  <li>The device is in desk mode but there's no DESK_DOCK app with METADATA_DOCK_HOME
5812     * </ul>
5813     * @return A dock intent.
5814     */
5815    Intent createHomeDockIntent() {
5816        Intent intent = null;
5817
5818        // What home does is based on the mode, not the dock state.  That
5819        // is, when in car mode you should be taken to car home regardless
5820        // of whether we are actually in a car dock.
5821        if (mUiMode == Configuration.UI_MODE_TYPE_CAR) {
5822            if (ENABLE_CAR_DOCK_HOME_CAPTURE) {
5823                intent = mCarDockIntent;
5824            }
5825        } else if (mUiMode == Configuration.UI_MODE_TYPE_DESK) {
5826            if (ENABLE_DESK_DOCK_HOME_CAPTURE) {
5827                intent = mDeskDockIntent;
5828            }
5829        } else if (mUiMode == Configuration.UI_MODE_TYPE_WATCH
5830                && (mDockMode == Intent.EXTRA_DOCK_STATE_DESK
5831                        || mDockMode == Intent.EXTRA_DOCK_STATE_HE_DESK
5832                        || mDockMode == Intent.EXTRA_DOCK_STATE_LE_DESK)) {
5833            // Always launch dock home from home when watch is docked, if it exists.
5834            intent = mDeskDockIntent;
5835        }
5836
5837        if (intent == null) {
5838            return null;
5839        }
5840
5841        ActivityInfo ai = null;
5842        ResolveInfo info = mContext.getPackageManager().resolveActivityAsUser(
5843                intent,
5844                PackageManager.MATCH_DEFAULT_ONLY | PackageManager.GET_META_DATA,
5845                mCurrentUserId);
5846        if (info != null) {
5847            ai = info.activityInfo;
5848        }
5849        if (ai != null
5850                && ai.metaData != null
5851                && ai.metaData.getBoolean(Intent.METADATA_DOCK_HOME)) {
5852            intent = new Intent(intent);
5853            intent.setClassName(ai.packageName, ai.name);
5854            return intent;
5855        }
5856
5857        return null;
5858    }
5859
5860    void startDockOrHome(boolean fromHomeKey) {
5861        awakenDreams();
5862
5863        Intent dock = createHomeDockIntent();
5864        if (dock != null) {
5865            try {
5866                if (fromHomeKey) {
5867                    dock.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
5868                }
5869                mContext.startActivityAsUser(dock, UserHandle.CURRENT);
5870                return;
5871            } catch (ActivityNotFoundException e) {
5872            }
5873        }
5874
5875        Intent intent;
5876
5877        if (fromHomeKey) {
5878            intent = new Intent(mHomeIntent);
5879            intent.putExtra(WindowManagerPolicy.EXTRA_FROM_HOME_KEY, fromHomeKey);
5880        } else {
5881            intent = mHomeIntent;
5882        }
5883
5884        mContext.startActivityAsUser(intent, UserHandle.CURRENT);
5885    }
5886
5887    /**
5888     * goes to the home screen
5889     * @return whether it did anything
5890     */
5891    boolean goHome() {
5892        if (false) {
5893            // This code always brings home to the front.
5894            try {
5895                ActivityManagerNative.getDefault().stopAppSwitches();
5896            } catch (RemoteException e) {
5897            }
5898            sendCloseSystemWindows();
5899            startDockOrHome(false /*fromHomeKey*/);
5900        } else {
5901            // This code brings home to the front or, if it is already
5902            // at the front, puts the device to sleep.
5903            try {
5904                if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
5905                    /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
5906                    Log.d(TAG, "UTS-TEST-MODE");
5907                } else {
5908                    ActivityManagerNative.getDefault().stopAppSwitches();
5909                    sendCloseSystemWindows();
5910                    Intent dock = createHomeDockIntent();
5911                    if (dock != null) {
5912                        int result = ActivityManagerNative.getDefault()
5913                                .startActivityAsUser(null, null, dock,
5914                                        dock.resolveTypeIfNeeded(mContext.getContentResolver()),
5915                                        null, null, 0,
5916                                        ActivityManager.START_FLAG_ONLY_IF_NEEDED,
5917                                        null, null, UserHandle.USER_CURRENT);
5918                        if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
5919                            return false;
5920                        }
5921                    }
5922                }
5923                int result = ActivityManagerNative.getDefault()
5924                        .startActivityAsUser(null, null, mHomeIntent,
5925                                mHomeIntent.resolveTypeIfNeeded(mContext.getContentResolver()),
5926                                null, null, 0,
5927                                ActivityManager.START_FLAG_ONLY_IF_NEEDED,
5928                                null, null, UserHandle.USER_CURRENT);
5929                if (result == ActivityManager.START_RETURN_INTENT_TO_CALLER) {
5930                    return false;
5931                }
5932            } catch (RemoteException ex) {
5933                // bummer, the activity manager, which is in this process, is dead
5934            }
5935        }
5936        return true;
5937    }
5938
5939    @Override
5940    public void setCurrentOrientationLw(int newOrientation) {
5941        synchronized (mLock) {
5942            if (newOrientation != mCurrentAppOrientation) {
5943                mCurrentAppOrientation = newOrientation;
5944                updateOrientationListenerLp();
5945            }
5946        }
5947    }
5948
5949    private void performAuditoryFeedbackForAccessibilityIfNeed() {
5950        if (!isGlobalAccessibilityGestureEnabled()) {
5951            return;
5952        }
5953        AudioManager audioManager = (AudioManager) mContext.getSystemService(
5954                Context.AUDIO_SERVICE);
5955        if (audioManager.isSilentMode()) {
5956            return;
5957        }
5958        Ringtone ringTone = RingtoneManager.getRingtone(mContext,
5959                Settings.System.DEFAULT_NOTIFICATION_URI);
5960        ringTone.setStreamType(AudioManager.STREAM_MUSIC);
5961        ringTone.play();
5962    }
5963
5964    private boolean isTheaterModeEnabled() {
5965        return Settings.Global.getInt(mContext.getContentResolver(),
5966                Settings.Global.THEATER_MODE_ON, 0) == 1;
5967    }
5968
5969    private boolean isGlobalAccessibilityGestureEnabled() {
5970        return Settings.Global.getInt(mContext.getContentResolver(),
5971                Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1;
5972    }
5973
5974    @Override
5975    public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always) {
5976        if (!mVibrator.hasVibrator()) {
5977            return false;
5978        }
5979        final boolean hapticsDisabled = Settings.System.getIntForUser(mContext.getContentResolver(),
5980                Settings.System.HAPTIC_FEEDBACK_ENABLED, 0, UserHandle.USER_CURRENT) == 0;
5981        if (hapticsDisabled && !always) {
5982            return false;
5983        }
5984        long[] pattern = null;
5985        switch (effectId) {
5986            case HapticFeedbackConstants.LONG_PRESS:
5987                pattern = mLongPressVibePattern;
5988                break;
5989            case HapticFeedbackConstants.VIRTUAL_KEY:
5990                pattern = mVirtualKeyVibePattern;
5991                break;
5992            case HapticFeedbackConstants.KEYBOARD_TAP:
5993                pattern = mKeyboardTapVibePattern;
5994                break;
5995            case HapticFeedbackConstants.CLOCK_TICK:
5996                pattern = mClockTickVibePattern;
5997                break;
5998            case HapticFeedbackConstants.CALENDAR_DATE:
5999                pattern = mCalendarDateVibePattern;
6000                break;
6001            case HapticFeedbackConstants.SAFE_MODE_DISABLED:
6002                pattern = mSafeModeDisabledVibePattern;
6003                break;
6004            case HapticFeedbackConstants.SAFE_MODE_ENABLED:
6005                pattern = mSafeModeEnabledVibePattern;
6006                break;
6007            default:
6008                return false;
6009        }
6010        int owningUid;
6011        String owningPackage;
6012        if (win != null) {
6013            owningUid = win.getOwningUid();
6014            owningPackage = win.getOwningPackage();
6015        } else {
6016            owningUid = android.os.Process.myUid();
6017            owningPackage = mContext.getOpPackageName();
6018        }
6019        if (pattern.length == 1) {
6020            // One-shot vibration
6021            mVibrator.vibrate(owningUid, owningPackage, pattern[0], VIBRATION_ATTRIBUTES);
6022        } else {
6023            // Pattern vibration
6024            mVibrator.vibrate(owningUid, owningPackage, pattern, -1, VIBRATION_ATTRIBUTES);
6025        }
6026        return true;
6027    }
6028
6029    @Override
6030    public void keepScreenOnStartedLw() {
6031    }
6032
6033    @Override
6034    public void keepScreenOnStoppedLw() {
6035        if (isKeyguardShowingAndNotOccluded()) {
6036            mPowerManager.userActivity(SystemClock.uptimeMillis(), false);
6037        }
6038    }
6039
6040    private int updateSystemUiVisibilityLw() {
6041        // If there is no window focused, there will be nobody to handle the events
6042        // anyway, so just hang on in whatever state we're in until things settle down.
6043        final WindowState win = mFocusedWindow != null ? mFocusedWindow
6044                : mTopFullscreenOpaqueWindowState;
6045        if (win == null) {
6046            return 0;
6047        }
6048        if ((win.getAttrs().privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 && mHideLockScreen == true) {
6049            // We are updating at a point where the keyguard has gotten
6050            // focus, but we were last in a state where the top window is
6051            // hiding it.  This is probably because the keyguard as been
6052            // shown while the top window was displayed, so we want to ignore
6053            // it here because this is just a very transient change and it
6054            // will quickly lose focus once it correctly gets hidden.
6055            return 0;
6056        }
6057
6058        int tmpVisibility = PolicyControl.getSystemUiVisibility(win, null)
6059                & ~mResettingSystemUiFlags
6060                & ~mForceClearedSystemUiFlags;
6061        if (mForcingShowNavBar && win.getSurfaceLayer() < mForcingShowNavBarLayer) {
6062            tmpVisibility &= ~PolicyControl.adjustClearableFlags(win, View.SYSTEM_UI_CLEARABLE_FLAGS);
6063        }
6064        tmpVisibility = updateLightStatusBarLw(tmpVisibility);
6065        final int visibility = updateSystemBarsLw(win, mLastSystemUiFlags, tmpVisibility);
6066        final int diff = visibility ^ mLastSystemUiFlags;
6067        final boolean needsMenu = win.getNeedsMenuLw(mTopFullscreenOpaqueWindowState);
6068        if (diff == 0 && mLastFocusNeedsMenu == needsMenu
6069                && mFocusedApp == win.getAppToken()) {
6070            return 0;
6071        }
6072        mLastSystemUiFlags = visibility;
6073        mLastFocusNeedsMenu = needsMenu;
6074        mFocusedApp = win.getAppToken();
6075        mHandler.post(new Runnable() {
6076                @Override
6077                public void run() {
6078                    try {
6079                        IStatusBarService statusbar = getStatusBarService();
6080                        if (statusbar != null) {
6081                            statusbar.setSystemUiVisibility(visibility, 0xffffffff, win.toString());
6082                            statusbar.topAppWindowChanged(needsMenu);
6083                        }
6084                    } catch (RemoteException e) {
6085                        // re-acquire status bar service next time it is needed.
6086                        mStatusBarService = null;
6087                    }
6088                }
6089            });
6090        return diff;
6091    }
6092
6093    private int updateLightStatusBarLw(int vis) {
6094        WindowState statusColorWin = isStatusBarKeyguard() && !mHideLockScreen
6095                ? mStatusBar
6096                : mTopFullscreenOpaqueOrDimmingWindowState;
6097
6098        if (statusColorWin != null) {
6099            if (statusColorWin == mTopFullscreenOpaqueWindowState) {
6100                // If the top fullscreen-or-dimming window is also the top fullscreen, respect
6101                // its light flag.
6102                vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6103                vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6104                        & View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6105            } else if (statusColorWin != null && statusColorWin.isDimming()) {
6106                // Otherwise if it's dimming, clear the light flag.
6107                vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6108            }
6109        }
6110        return vis;
6111    }
6112
6113    private int updateSystemBarsLw(WindowState win, int oldVis, int vis) {
6114        // apply translucent bar vis flags
6115        WindowState transWin = isStatusBarKeyguard() && !mHideLockScreen
6116                ? mStatusBar
6117                : mTopFullscreenOpaqueWindowState;
6118        vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6119        vis = mNavigationBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6120
6121        // prevent status bar interaction from clearing certain flags
6122        boolean statusBarHasFocus = win.getAttrs().type == TYPE_STATUS_BAR;
6123        if (statusBarHasFocus && !isStatusBarKeyguard()) {
6124            int flags = View.SYSTEM_UI_FLAG_FULLSCREEN
6125                    | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
6126                    | View.SYSTEM_UI_FLAG_IMMERSIVE
6127                    | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
6128                    | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6129            if (mHideLockScreen) {
6130                flags |= View.STATUS_BAR_TRANSLUCENT | View.NAVIGATION_BAR_TRANSLUCENT;
6131            }
6132            vis = (vis & ~flags) | (oldVis & flags);
6133        }
6134
6135        if (!areTranslucentBarsAllowed() && transWin != mStatusBar) {
6136            vis &= ~(View.NAVIGATION_BAR_TRANSLUCENT | View.STATUS_BAR_TRANSLUCENT
6137                    | View.SYSTEM_UI_TRANSPARENT);
6138        }
6139
6140        // update status bar
6141        boolean immersiveSticky =
6142                (vis & View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) != 0;
6143        boolean hideStatusBarWM =
6144                mTopFullscreenOpaqueWindowState != null &&
6145                (PolicyControl.getWindowFlags(mTopFullscreenOpaqueWindowState, null)
6146                        & WindowManager.LayoutParams.FLAG_FULLSCREEN) != 0;
6147        boolean hideStatusBarSysui =
6148                (vis & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0;
6149        boolean hideNavBarSysui =
6150                (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0;
6151
6152        boolean transientStatusBarAllowed =
6153                mStatusBar != null && (
6154                hideStatusBarWM
6155                || (hideStatusBarSysui && immersiveSticky)
6156                || statusBarHasFocus);
6157
6158        boolean transientNavBarAllowed =
6159                mNavigationBar != null &&
6160                hideNavBarSysui && immersiveSticky;
6161
6162        boolean denyTransientStatus = mStatusBarController.isTransientShowRequested()
6163                && !transientStatusBarAllowed && hideStatusBarSysui;
6164        boolean denyTransientNav = mNavigationBarController.isTransientShowRequested()
6165                && !transientNavBarAllowed;
6166        if (denyTransientStatus || denyTransientNav) {
6167            // clear the clearable flags instead
6168            clearClearableFlagsLw();
6169            vis &= ~View.SYSTEM_UI_CLEARABLE_FLAGS;
6170        }
6171
6172        vis = mStatusBarController.updateVisibilityLw(transientStatusBarAllowed, oldVis, vis);
6173
6174        // update navigation bar
6175        boolean oldImmersiveMode = isImmersiveMode(oldVis);
6176        boolean newImmersiveMode = isImmersiveMode(vis);
6177        if (win != null && oldImmersiveMode != newImmersiveMode) {
6178            final String pkg = win.getOwningPackage();
6179            mImmersiveModeConfirmation.immersiveModeChanged(pkg, newImmersiveMode,
6180                    isUserSetupComplete());
6181        }
6182
6183        vis = mNavigationBarController.updateVisibilityLw(transientNavBarAllowed, oldVis, vis);
6184
6185        return vis;
6186    }
6187
6188    private void clearClearableFlagsLw() {
6189        int newVal = mResettingSystemUiFlags | View.SYSTEM_UI_CLEARABLE_FLAGS;
6190        if (newVal != mResettingSystemUiFlags) {
6191            mResettingSystemUiFlags = newVal;
6192            mWindowManagerFuncs.reevaluateStatusBarVisibility();
6193        }
6194    }
6195
6196    private boolean isImmersiveMode(int vis) {
6197        final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
6198        return mNavigationBar != null
6199                && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
6200                && (vis & flags) != 0
6201                && canHideNavigationBar();
6202    }
6203
6204    /**
6205     * @return whether the navigation or status bar can be made translucent
6206     *
6207     * This should return true unless touch exploration is not enabled or
6208     * R.boolean.config_enableTranslucentDecor is false.
6209     */
6210    private boolean areTranslucentBarsAllowed() {
6211        return mTranslucentDecorEnabled
6212                && !mAccessibilityManager.isTouchExplorationEnabled();
6213    }
6214
6215    // Use this instead of checking config_showNavigationBar so that it can be consistently
6216    // overridden by qemu.hw.mainkeys in the emulator.
6217    @Override
6218    public boolean hasNavigationBar() {
6219        return mHasNavigationBar;
6220    }
6221
6222    @Override
6223    public void setLastInputMethodWindowLw(WindowState ime, WindowState target) {
6224        mLastInputMethodWindow = ime;
6225        mLastInputMethodTargetWindow = target;
6226    }
6227
6228    @Override
6229    public int getInputMethodWindowVisibleHeightLw() {
6230        return mDockBottom - mCurBottom;
6231    }
6232
6233    @Override
6234    public void setCurrentUserLw(int newUserId) {
6235        mCurrentUserId = newUserId;
6236        if (mKeyguardDelegate != null) {
6237            mKeyguardDelegate.setCurrentUser(newUserId);
6238        }
6239        if (mStatusBarService != null) {
6240            try {
6241                mStatusBarService.setCurrentUser(newUserId);
6242            } catch (RemoteException e) {
6243                // oh well
6244            }
6245        }
6246        setLastInputMethodWindowLw(null, null);
6247    }
6248
6249    @Override
6250    public boolean canMagnifyWindow(int windowType) {
6251        switch (windowType) {
6252            case WindowManager.LayoutParams.TYPE_INPUT_METHOD:
6253            case WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG:
6254            case WindowManager.LayoutParams.TYPE_NAVIGATION_BAR:
6255            case WindowManager.LayoutParams.TYPE_MAGNIFICATION_OVERLAY: {
6256                return false;
6257            }
6258        }
6259        return true;
6260    }
6261
6262    @Override
6263    public boolean isTopLevelWindow(int windowType) {
6264        if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
6265                && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
6266            return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);
6267        }
6268        return true;
6269    }
6270
6271    @Override
6272    public void dump(String prefix, PrintWriter pw, String[] args) {
6273        pw.print(prefix); pw.print("mSafeMode="); pw.print(mSafeMode);
6274                pw.print(" mSystemReady="); pw.print(mSystemReady);
6275                pw.print(" mSystemBooted="); pw.println(mSystemBooted);
6276        pw.print(prefix); pw.print("mLidState="); pw.print(mLidState);
6277                pw.print(" mLidOpenRotation="); pw.print(mLidOpenRotation);
6278                pw.print(" mCameraLensCoverState="); pw.print(mCameraLensCoverState);
6279                pw.print(" mHdmiPlugged="); pw.println(mHdmiPlugged);
6280        if (mLastSystemUiFlags != 0 || mResettingSystemUiFlags != 0
6281                || mForceClearedSystemUiFlags != 0) {
6282            pw.print(prefix); pw.print("mLastSystemUiFlags=0x");
6283                    pw.print(Integer.toHexString(mLastSystemUiFlags));
6284                    pw.print(" mResettingSystemUiFlags=0x");
6285                    pw.print(Integer.toHexString(mResettingSystemUiFlags));
6286                    pw.print(" mForceClearedSystemUiFlags=0x");
6287                    pw.println(Integer.toHexString(mForceClearedSystemUiFlags));
6288        }
6289        if (mLastFocusNeedsMenu) {
6290            pw.print(prefix); pw.print("mLastFocusNeedsMenu=");
6291                    pw.println(mLastFocusNeedsMenu);
6292        }
6293        pw.print(prefix); pw.print("mWakeGestureEnabledSetting=");
6294                pw.println(mWakeGestureEnabledSetting);
6295
6296        pw.print(prefix); pw.print("mSupportAutoRotation="); pw.println(mSupportAutoRotation);
6297        pw.print(prefix); pw.print("mUiMode="); pw.print(mUiMode);
6298                pw.print(" mDockMode="); pw.print(mDockMode);
6299                pw.print(" mCarDockRotation="); pw.print(mCarDockRotation);
6300                pw.print(" mDeskDockRotation="); pw.println(mDeskDockRotation);
6301        pw.print(prefix); pw.print("mUserRotationMode="); pw.print(mUserRotationMode);
6302                pw.print(" mUserRotation="); pw.print(mUserRotation);
6303                pw.print(" mAllowAllRotations="); pw.println(mAllowAllRotations);
6304        pw.print(prefix); pw.print("mCurrentAppOrientation="); pw.println(mCurrentAppOrientation);
6305        pw.print(prefix); pw.print("mCarDockEnablesAccelerometer=");
6306                pw.print(mCarDockEnablesAccelerometer);
6307                pw.print(" mDeskDockEnablesAccelerometer=");
6308                pw.println(mDeskDockEnablesAccelerometer);
6309        pw.print(prefix); pw.print("mLidKeyboardAccessibility=");
6310                pw.print(mLidKeyboardAccessibility);
6311                pw.print(" mLidNavigationAccessibility="); pw.print(mLidNavigationAccessibility);
6312                pw.print(" mLidControlsSleep="); pw.println(mLidControlsSleep);
6313        pw.print(prefix);
6314                pw.print("mShortPressOnPowerBehavior="); pw.print(mShortPressOnPowerBehavior);
6315                pw.print(" mLongPressOnPowerBehavior="); pw.println(mLongPressOnPowerBehavior);
6316        pw.print(prefix);
6317                pw.print("mDoublePressOnPowerBehavior="); pw.print(mDoublePressOnPowerBehavior);
6318                pw.print(" mTriplePressOnPowerBehavior="); pw.println(mTriplePressOnPowerBehavior);
6319        pw.print(prefix); pw.print("mHasSoftInput="); pw.println(mHasSoftInput);
6320        pw.print(prefix); pw.print("mAwake="); pw.println(mAwake);
6321        pw.print(prefix); pw.print("mScreenOnEarly="); pw.print(mScreenOnEarly);
6322                pw.print(" mScreenOnFully="); pw.println(mScreenOnFully);
6323        pw.print(prefix); pw.print("mKeyguardDrawComplete="); pw.print(mKeyguardDrawComplete);
6324                pw.print(" mWindowManagerDrawComplete="); pw.println(mWindowManagerDrawComplete);
6325        pw.print(prefix); pw.print("mOrientationSensorEnabled=");
6326                pw.println(mOrientationSensorEnabled);
6327        pw.print(prefix); pw.print("mOverscanScreen=("); pw.print(mOverscanScreenLeft);
6328                pw.print(","); pw.print(mOverscanScreenTop);
6329                pw.print(") "); pw.print(mOverscanScreenWidth);
6330                pw.print("x"); pw.println(mOverscanScreenHeight);
6331        if (mOverscanLeft != 0 || mOverscanTop != 0
6332                || mOverscanRight != 0 || mOverscanBottom != 0) {
6333            pw.print(prefix); pw.print("mOverscan left="); pw.print(mOverscanLeft);
6334                    pw.print(" top="); pw.print(mOverscanTop);
6335                    pw.print(" right="); pw.print(mOverscanRight);
6336                    pw.print(" bottom="); pw.println(mOverscanBottom);
6337        }
6338        pw.print(prefix); pw.print("mRestrictedOverscanScreen=(");
6339                pw.print(mRestrictedOverscanScreenLeft);
6340                pw.print(","); pw.print(mRestrictedOverscanScreenTop);
6341                pw.print(") "); pw.print(mRestrictedOverscanScreenWidth);
6342                pw.print("x"); pw.println(mRestrictedOverscanScreenHeight);
6343        pw.print(prefix); pw.print("mUnrestrictedScreen=("); pw.print(mUnrestrictedScreenLeft);
6344                pw.print(","); pw.print(mUnrestrictedScreenTop);
6345                pw.print(") "); pw.print(mUnrestrictedScreenWidth);
6346                pw.print("x"); pw.println(mUnrestrictedScreenHeight);
6347        pw.print(prefix); pw.print("mRestrictedScreen=("); pw.print(mRestrictedScreenLeft);
6348                pw.print(","); pw.print(mRestrictedScreenTop);
6349                pw.print(") "); pw.print(mRestrictedScreenWidth);
6350                pw.print("x"); pw.println(mRestrictedScreenHeight);
6351        pw.print(prefix); pw.print("mStableFullscreen=("); pw.print(mStableFullscreenLeft);
6352                pw.print(","); pw.print(mStableFullscreenTop);
6353                pw.print(")-("); pw.print(mStableFullscreenRight);
6354                pw.print(","); pw.print(mStableFullscreenBottom); pw.println(")");
6355        pw.print(prefix); pw.print("mStable=("); pw.print(mStableLeft);
6356                pw.print(","); pw.print(mStableTop);
6357                pw.print(")-("); pw.print(mStableRight);
6358                pw.print(","); pw.print(mStableBottom); pw.println(")");
6359        pw.print(prefix); pw.print("mSystem=("); pw.print(mSystemLeft);
6360                pw.print(","); pw.print(mSystemTop);
6361                pw.print(")-("); pw.print(mSystemRight);
6362                pw.print(","); pw.print(mSystemBottom); pw.println(")");
6363        pw.print(prefix); pw.print("mCur=("); pw.print(mCurLeft);
6364                pw.print(","); pw.print(mCurTop);
6365                pw.print(")-("); pw.print(mCurRight);
6366                pw.print(","); pw.print(mCurBottom); pw.println(")");
6367        pw.print(prefix); pw.print("mContent=("); pw.print(mContentLeft);
6368                pw.print(","); pw.print(mContentTop);
6369                pw.print(")-("); pw.print(mContentRight);
6370                pw.print(","); pw.print(mContentBottom); pw.println(")");
6371        pw.print(prefix); pw.print("mVoiceContent=("); pw.print(mVoiceContentLeft);
6372                pw.print(","); pw.print(mVoiceContentTop);
6373                pw.print(")-("); pw.print(mVoiceContentRight);
6374                pw.print(","); pw.print(mVoiceContentBottom); pw.println(")");
6375        pw.print(prefix); pw.print("mDock=("); pw.print(mDockLeft);
6376                pw.print(","); pw.print(mDockTop);
6377                pw.print(")-("); pw.print(mDockRight);
6378                pw.print(","); pw.print(mDockBottom); pw.println(")");
6379        pw.print(prefix); pw.print("mDockLayer="); pw.print(mDockLayer);
6380                pw.print(" mStatusBarLayer="); pw.println(mStatusBarLayer);
6381        pw.print(prefix); pw.print("mShowingLockscreen="); pw.print(mShowingLockscreen);
6382                pw.print(" mShowingDream="); pw.print(mShowingDream);
6383                pw.print(" mDreamingLockscreen="); pw.println(mDreamingLockscreen);
6384        if (mLastInputMethodWindow != null) {
6385            pw.print(prefix); pw.print("mLastInputMethodWindow=");
6386                    pw.println(mLastInputMethodWindow);
6387        }
6388        if (mLastInputMethodTargetWindow != null) {
6389            pw.print(prefix); pw.print("mLastInputMethodTargetWindow=");
6390                    pw.println(mLastInputMethodTargetWindow);
6391        }
6392        if (mStatusBar != null) {
6393            pw.print(prefix); pw.print("mStatusBar=");
6394                    pw.print(mStatusBar); pw.print(" isStatusBarKeyguard=");
6395                    pw.println(isStatusBarKeyguard());
6396        }
6397        if (mNavigationBar != null) {
6398            pw.print(prefix); pw.print("mNavigationBar=");
6399                    pw.println(mNavigationBar);
6400        }
6401        if (mFocusedWindow != null) {
6402            pw.print(prefix); pw.print("mFocusedWindow=");
6403                    pw.println(mFocusedWindow);
6404        }
6405        if (mFocusedApp != null) {
6406            pw.print(prefix); pw.print("mFocusedApp=");
6407                    pw.println(mFocusedApp);
6408        }
6409        if (mWinDismissingKeyguard != null) {
6410            pw.print(prefix); pw.print("mWinDismissingKeyguard=");
6411                    pw.println(mWinDismissingKeyguard);
6412        }
6413        if (mTopFullscreenOpaqueWindowState != null) {
6414            pw.print(prefix); pw.print("mTopFullscreenOpaqueWindowState=");
6415                    pw.println(mTopFullscreenOpaqueWindowState);
6416        }
6417        if (mTopFullscreenOpaqueOrDimmingWindowState != null) {
6418            pw.print(prefix); pw.print("mTopFullscreenOpaqueOrDimmingWindowState=");
6419                    pw.println(mTopFullscreenOpaqueOrDimmingWindowState);
6420        }
6421        if (mForcingShowNavBar) {
6422            pw.print(prefix); pw.print("mForcingShowNavBar=");
6423                    pw.println(mForcingShowNavBar); pw.print( "mForcingShowNavBarLayer=");
6424                    pw.println(mForcingShowNavBarLayer);
6425        }
6426        pw.print(prefix); pw.print("mTopIsFullscreen="); pw.print(mTopIsFullscreen);
6427                pw.print(" mHideLockScreen="); pw.println(mHideLockScreen);
6428        pw.print(prefix); pw.print("mForceStatusBar="); pw.print(mForceStatusBar);
6429                pw.print(" mForceStatusBarFromKeyguard=");
6430                pw.println(mForceStatusBarFromKeyguard);
6431        pw.print(prefix); pw.print("mDismissKeyguard="); pw.print(mDismissKeyguard);
6432                pw.print(" mWinDismissingKeyguard="); pw.print(mWinDismissingKeyguard);
6433                pw.print(" mHomePressed="); pw.println(mHomePressed);
6434        pw.print(prefix); pw.print("mAllowLockscreenWhenOn="); pw.print(mAllowLockscreenWhenOn);
6435                pw.print(" mLockScreenTimeout="); pw.print(mLockScreenTimeout);
6436                pw.print(" mLockScreenTimerActive="); pw.println(mLockScreenTimerActive);
6437        pw.print(prefix); pw.print("mEndcallBehavior="); pw.print(mEndcallBehavior);
6438                pw.print(" mIncallPowerBehavior="); pw.print(mIncallPowerBehavior);
6439                pw.print(" mLongPressOnHomeBehavior="); pw.println(mLongPressOnHomeBehavior);
6440        pw.print(prefix); pw.print("mLandscapeRotation="); pw.print(mLandscapeRotation);
6441                pw.print(" mSeascapeRotation="); pw.println(mSeascapeRotation);
6442        pw.print(prefix); pw.print("mPortraitRotation="); pw.print(mPortraitRotation);
6443                pw.print(" mUpsideDownRotation="); pw.println(mUpsideDownRotation);
6444        pw.print(prefix); pw.print("mDemoHdmiRotation="); pw.print(mDemoHdmiRotation);
6445                pw.print(" mDemoHdmiRotationLock="); pw.println(mDemoHdmiRotationLock);
6446        pw.print(prefix); pw.print("mUndockedHdmiRotation="); pw.println(mUndockedHdmiRotation);
6447
6448        mGlobalKeyManager.dump(prefix, pw);
6449        mStatusBarController.dump(pw, prefix);
6450        mNavigationBarController.dump(pw, prefix);
6451        PolicyControl.dump(prefix, pw);
6452
6453        if (mWakeGestureListener != null) {
6454            mWakeGestureListener.dump(pw, prefix);
6455        }
6456        if (mOrientationListener != null) {
6457            mOrientationListener.dump(pw, prefix);
6458        }
6459    }
6460}
6461