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