WindowState.java revision 9cf34e2ee4cb3d2e14c2863298ad3a2fafc31d39
1/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.wm;
18
19import static com.android.server.wm.WindowManagerService.DEBUG_CONFIGURATION;
20import static com.android.server.wm.WindowManagerService.DEBUG_LAYOUT;
21import static com.android.server.wm.WindowManagerService.DEBUG_ORIENTATION;
22import static com.android.server.wm.WindowManagerService.DEBUG_RESIZE;
23import static com.android.server.wm.WindowManagerService.DEBUG_VISIBILITY;
24
25import static android.view.WindowManager.LayoutParams.FIRST_SUB_WINDOW;
26import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;
27import static android.view.WindowManager.LayoutParams.LAST_SUB_WINDOW;
28import static android.view.WindowManager.LayoutParams.PRIVATE_FLAG_NO_MOVE_ANIMATION;
29import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD;
30import static android.view.WindowManager.LayoutParams.TYPE_INPUT_METHOD_DIALOG;
31import static android.view.WindowManager.LayoutParams.TYPE_KEYGUARD;
32import static android.view.WindowManager.LayoutParams.TYPE_WALLPAPER;
33
34import android.app.AppOpsManager;
35import android.os.Debug;
36import android.os.RemoteCallbackList;
37import android.os.SystemClock;
38import android.util.TimeUtils;
39import android.view.IWindowFocusObserver;
40import android.view.IWindowId;
41import com.android.server.input.InputWindowHandle;
42
43import android.content.Context;
44import android.content.res.Configuration;
45import android.graphics.Matrix;
46import android.graphics.PixelFormat;
47import android.graphics.Rect;
48import android.graphics.RectF;
49import android.graphics.Region;
50import android.os.IBinder;
51import android.os.RemoteException;
52import android.os.UserHandle;
53import android.util.Slog;
54import android.view.DisplayInfo;
55import android.view.Gravity;
56import android.view.IApplicationToken;
57import android.view.IWindow;
58import android.view.InputChannel;
59import android.view.View;
60import android.view.ViewTreeObserver;
61import android.view.WindowManager;
62import android.view.WindowManagerPolicy;
63
64import java.io.PrintWriter;
65import java.util.ArrayList;
66
67class WindowList extends ArrayList<WindowState> {
68}
69
70/**
71 * A window in the window manager.
72 */
73final class WindowState implements WindowManagerPolicy.WindowState {
74    static final String TAG = "WindowState";
75
76    final WindowManagerService mService;
77    final WindowManagerPolicy mPolicy;
78    final Context mContext;
79    final Session mSession;
80    final IWindow mClient;
81    final int mAppOp;
82    // UserId and appId of the owner. Don't display windows of non-current user.
83    final int mOwnerUid;
84    final IWindowId mWindowId;
85    WindowToken mToken;
86    WindowToken mRootToken;
87    AppWindowToken mAppToken;
88    AppWindowToken mTargetAppToken;
89
90    // mAttrs.flags is tested in animation without being locked. If the bits tested are ever
91    // modified they will need to be locked.
92    final WindowManager.LayoutParams mAttrs = new WindowManager.LayoutParams();
93    final DeathRecipient mDeathRecipient;
94    final WindowState mAttachedWindow;
95    final WindowList mChildWindows = new WindowList();
96    final int mBaseLayer;
97    final int mSubLayer;
98    final boolean mLayoutAttached;
99    final boolean mIsImWindow;
100    final boolean mIsWallpaper;
101    final boolean mIsFloatingLayer;
102    int mSeq;
103    boolean mEnforceSizeCompat;
104    int mViewVisibility;
105    int mSystemUiVisibility;
106    boolean mPolicyVisibility = true;
107    boolean mPolicyVisibilityAfterAnim = true;
108    boolean mAppOpVisibility = true;
109    boolean mAppFreezing;
110    boolean mAttachedHidden;    // is our parent window hidden?
111    boolean mWallpaperVisible;  // for wallpaper, what was last vis report?
112
113    RemoteCallbackList<IWindowFocusObserver> mFocusCallbacks;
114
115    /**
116     * The window size that was requested by the application.  These are in
117     * the application's coordinate space (without compatibility scale applied).
118     */
119    int mRequestedWidth;
120    int mRequestedHeight;
121    int mLastRequestedWidth;
122    int mLastRequestedHeight;
123
124    int mLayer;
125    boolean mHaveFrame;
126    boolean mObscured;
127    boolean mTurnOnScreen;
128
129    int mLayoutSeq = -1;
130
131    Configuration mConfiguration = null;
132    // Sticky answer to isConfigChanged(), remains true until new Configuration is assigned.
133    // Used only on {@link #TYPE_KEYGUARD}.
134    private boolean mConfigHasChanged;
135
136    /**
137     * Actual frame shown on-screen (may be modified by animation).  These
138     * are in the screen's coordinate space (WITH the compatibility scale
139     * applied).
140     */
141    final RectF mShownFrame = new RectF();
142
143    /**
144     * Insets that determine the actually visible area.  These are in the application's
145     * coordinate space (without compatibility scale applied).
146     */
147    final Rect mVisibleInsets = new Rect();
148    final Rect mLastVisibleInsets = new Rect();
149    boolean mVisibleInsetsChanged;
150
151    /**
152     * Insets that are covered by system windows (such as the status bar) and
153     * transient docking windows (such as the IME).  These are in the application's
154     * coordinate space (without compatibility scale applied).
155     */
156    final Rect mContentInsets = new Rect();
157    final Rect mLastContentInsets = new Rect();
158    boolean mContentInsetsChanged;
159
160    /**
161     * Insets that determine the area covered by the display overscan region.  These are in the
162     * application's coordinate space (without compatibility scale applied).
163     */
164    final Rect mOverscanInsets = new Rect();
165    final Rect mLastOverscanInsets = new Rect();
166    boolean mOverscanInsetsChanged;
167
168    /**
169     * Set to true if we are waiting for this window to receive its
170     * given internal insets before laying out other windows based on it.
171     */
172    boolean mGivenInsetsPending;
173
174    /**
175     * These are the content insets that were given during layout for
176     * this window, to be applied to windows behind it.
177     */
178    final Rect mGivenContentInsets = new Rect();
179
180    /**
181     * These are the visible insets that were given during layout for
182     * this window, to be applied to windows behind it.
183     */
184    final Rect mGivenVisibleInsets = new Rect();
185
186    /**
187     * This is the given touchable area relative to the window frame, or null if none.
188     */
189    final Region mGivenTouchableRegion = new Region();
190
191    /**
192     * Flag indicating whether the touchable region should be adjusted by
193     * the visible insets; if false the area outside the visible insets is
194     * NOT touchable, so we must use those to adjust the frame during hit
195     * tests.
196     */
197    int mTouchableInsets = ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_FRAME;
198
199    /**
200     * This is rectangle of the window's surface that is not covered by
201     * system decorations.
202     */
203    final Rect mSystemDecorRect = new Rect();
204    final Rect mLastSystemDecorRect = new Rect();
205
206    // Current transformation being applied.
207    float mGlobalScale=1;
208    float mInvGlobalScale=1;
209    float mHScale=1, mVScale=1;
210    float mLastHScale=1, mLastVScale=1;
211    final Matrix mTmpMatrix = new Matrix();
212
213    // "Real" frame that the application sees, in display coordinate space.
214    final Rect mFrame = new Rect();
215    final Rect mLastFrame = new Rect();
216    // Frame that is scaled to the application's coordinate space when in
217    // screen size compatibility mode.
218    final Rect mCompatFrame = new Rect();
219
220    final Rect mContainingFrame = new Rect();
221    final Rect mDisplayFrame = new Rect();
222    final Rect mOverscanFrame = new Rect();
223    final Rect mContentFrame = new Rect();
224    final Rect mParentFrame = new Rect();
225    final Rect mVisibleFrame = new Rect();
226    final Rect mDecorFrame = new Rect();
227
228    boolean mContentChanged;
229
230    // If a window showing a wallpaper: the requested offset for the
231    // wallpaper; if a wallpaper window: the currently applied offset.
232    float mWallpaperX = -1;
233    float mWallpaperY = -1;
234
235    // If a window showing a wallpaper: what fraction of the offset
236    // range corresponds to a full virtual screen.
237    float mWallpaperXStep = -1;
238    float mWallpaperYStep = -1;
239
240    // Wallpaper windows: pixels offset based on above variables.
241    int mXOffset;
242    int mYOffset;
243
244    /**
245     * This is set after IWindowSession.relayout() has been called at
246     * least once for the window.  It allows us to detect the situation
247     * where we don't yet have a surface, but should have one soon, so
248     * we can give the window focus before waiting for the relayout.
249     */
250    boolean mRelayoutCalled;
251
252    /**
253     * If the application has called relayout() with changes that can
254     * impact its window's size, we need to perform a layout pass on it
255     * even if it is not currently visible for layout.  This is set
256     * when in that case until the layout is done.
257     */
258    boolean mLayoutNeeded;
259
260    /** Currently running an exit animation? */
261    boolean mExiting;
262
263    /** Currently on the mDestroySurface list? */
264    boolean mDestroying;
265
266    /** Completely remove from window manager after exit animation? */
267    boolean mRemoveOnExit;
268
269    /**
270     * Set when the orientation is changing and this window has not yet
271     * been updated for the new orientation.
272     */
273    boolean mOrientationChanging;
274
275    /**
276     * How long we last kept the screen frozen.
277     */
278    int mLastFreezeDuration;
279
280    /** Is this window now (or just being) removed? */
281    boolean mRemoved;
282
283    /**
284     * Temp for keeping track of windows that have been removed when
285     * rebuilding window list.
286     */
287    boolean mRebuilding;
288
289    // Input channel and input window handle used by the input dispatcher.
290    final InputWindowHandle mInputWindowHandle;
291    InputChannel mInputChannel;
292
293    // Used to improve performance of toString()
294    String mStringNameCache;
295    CharSequence mLastTitle;
296    boolean mWasExiting;
297
298    final WindowStateAnimator mWinAnimator;
299
300    boolean mHasSurface = false;
301
302    DisplayContent  mDisplayContent;
303
304    /** When true this window can be displayed on screens owther than mOwnerUid's */
305    private boolean mShowToOwnerOnly;
306
307    /** When true this window is at the top of the screen and should be layed out to extend under
308     * the status bar */
309    boolean mUnderStatusBar = true;
310
311    WindowState(WindowManagerService service, Session s, IWindow c, WindowToken token,
312           WindowState attachedWindow, int appOp, int seq, WindowManager.LayoutParams a,
313           int viewVisibility, final DisplayContent displayContent) {
314        mService = service;
315        mSession = s;
316        mClient = c;
317        mAppOp = appOp;
318        mToken = token;
319        mOwnerUid = s.mUid;
320        mWindowId = new IWindowId.Stub() {
321            @Override
322            public void registerFocusObserver(IWindowFocusObserver observer) {
323                WindowState.this.registerFocusObserver(observer);
324            }
325            @Override
326            public void unregisterFocusObserver(IWindowFocusObserver observer) {
327                WindowState.this.unregisterFocusObserver(observer);
328            }
329            @Override
330            public boolean isFocused() {
331                return WindowState.this.isFocused();
332            }
333        };
334        mAttrs.copyFrom(a);
335        mViewVisibility = viewVisibility;
336        mDisplayContent = displayContent;
337        mPolicy = mService.mPolicy;
338        mContext = mService.mContext;
339        DeathRecipient deathRecipient = new DeathRecipient();
340        mSeq = seq;
341        mEnforceSizeCompat = (mAttrs.privateFlags & PRIVATE_FLAG_COMPATIBLE_WINDOW) != 0;
342        if (WindowManagerService.localLOGV) Slog.v(
343            TAG, "Window " + this + " client=" + c.asBinder()
344            + " token=" + token + " (" + mAttrs.token + ")" + " params=" + a);
345        try {
346            c.asBinder().linkToDeath(deathRecipient, 0);
347        } catch (RemoteException e) {
348            mDeathRecipient = null;
349            mAttachedWindow = null;
350            mLayoutAttached = false;
351            mIsImWindow = false;
352            mIsWallpaper = false;
353            mIsFloatingLayer = false;
354            mBaseLayer = 0;
355            mSubLayer = 0;
356            mInputWindowHandle = null;
357            mWinAnimator = null;
358            return;
359        }
360        mDeathRecipient = deathRecipient;
361
362        if ((mAttrs.type >= FIRST_SUB_WINDOW &&
363                mAttrs.type <= LAST_SUB_WINDOW)) {
364            // The multiplier here is to reserve space for multiple
365            // windows in the same type layer.
366            mBaseLayer = mPolicy.windowTypeToLayerLw(
367                    attachedWindow.mAttrs.type) * WindowManagerService.TYPE_LAYER_MULTIPLIER
368                    + WindowManagerService.TYPE_LAYER_OFFSET;
369            mSubLayer = mPolicy.subWindowTypeToLayerLw(a.type);
370            mAttachedWindow = attachedWindow;
371            if (WindowManagerService.DEBUG_ADD_REMOVE) Slog.v(TAG, "Adding " + this + " to " + mAttachedWindow);
372
373            int children_size = mAttachedWindow.mChildWindows.size();
374            if (children_size == 0) {
375                mAttachedWindow.mChildWindows.add(this);
376            } else {
377                for (int i = 0; i < children_size; i++) {
378                    WindowState child = (WindowState)mAttachedWindow.mChildWindows.get(i);
379                    if (this.mSubLayer < child.mSubLayer) {
380                        mAttachedWindow.mChildWindows.add(i, this);
381                        break;
382                    } else if (this.mSubLayer > child.mSubLayer) {
383                        continue;
384                    }
385
386                    if (this.mBaseLayer <= child.mBaseLayer) {
387                        mAttachedWindow.mChildWindows.add(i, this);
388                        break;
389                    } else {
390                        continue;
391                    }
392                }
393                if (children_size == mAttachedWindow.mChildWindows.size()) {
394                    mAttachedWindow.mChildWindows.add(this);
395                }
396            }
397
398            mLayoutAttached = mAttrs.type !=
399                    WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG;
400            mIsImWindow = attachedWindow.mAttrs.type == TYPE_INPUT_METHOD
401                    || attachedWindow.mAttrs.type == TYPE_INPUT_METHOD_DIALOG;
402            mIsWallpaper = attachedWindow.mAttrs.type == TYPE_WALLPAPER;
403            mIsFloatingLayer = mIsImWindow || mIsWallpaper;
404        } else {
405            // The multiplier here is to reserve space for multiple
406            // windows in the same type layer.
407            mBaseLayer = mPolicy.windowTypeToLayerLw(a.type)
408                    * WindowManagerService.TYPE_LAYER_MULTIPLIER
409                    + WindowManagerService.TYPE_LAYER_OFFSET;
410            mSubLayer = 0;
411            mAttachedWindow = null;
412            mLayoutAttached = false;
413            mIsImWindow = mAttrs.type == TYPE_INPUT_METHOD
414                    || mAttrs.type == TYPE_INPUT_METHOD_DIALOG;
415            mIsWallpaper = mAttrs.type == TYPE_WALLPAPER;
416            mIsFloatingLayer = mIsImWindow || mIsWallpaper;
417        }
418
419        WindowState appWin = this;
420        while (appWin.mAttachedWindow != null) {
421            appWin = appWin.mAttachedWindow;
422        }
423        WindowToken appToken = appWin.mToken;
424        while (appToken.appWindowToken == null) {
425            WindowToken parent = mService.mTokenMap.get(appToken.token);
426            if (parent == null || appToken == parent) {
427                break;
428            }
429            appToken = parent;
430        }
431        mRootToken = appToken;
432        mAppToken = appToken.appWindowToken;
433
434        mWinAnimator = new WindowStateAnimator(this);
435        mWinAnimator.mAlpha = a.alpha;
436
437        mRequestedWidth = 0;
438        mRequestedHeight = 0;
439        mLastRequestedWidth = 0;
440        mLastRequestedHeight = 0;
441        mXOffset = 0;
442        mYOffset = 0;
443        mLayer = 0;
444        mInputWindowHandle = new InputWindowHandle(
445                mAppToken != null ? mAppToken.mInputApplicationHandle : null, this,
446                displayContent.getDisplayId());
447    }
448
449    void attach() {
450        if (WindowManagerService.localLOGV) Slog.v(
451            TAG, "Attaching " + this + " token=" + mToken
452            + ", list=" + mToken.windows);
453        mSession.windowAddedLocked();
454    }
455
456    @Override
457    public int getOwningUid() {
458        return mOwnerUid;
459    }
460
461    @Override
462    public String getOwningPackage() {
463        return mAttrs.packageName;
464    }
465
466    @Override
467    public void computeFrameLw(Rect pf, Rect df, Rect of, Rect cf, Rect vf, Rect dcf) {
468        mHaveFrame = true;
469
470        TaskStack stack = mAppToken != null ? getStack() : null;
471        if (stack != null && !stack.isFullscreen()) {
472            getStackBounds(stack, mContainingFrame);
473            if (mUnderStatusBar) {
474                mContainingFrame.top = pf.top;
475            }
476        } else {
477            mContainingFrame.set(pf);
478        }
479
480        mDisplayFrame.set(df);
481
482        final int pw = mContainingFrame.width();
483        final int ph = mContainingFrame.height();
484
485        int w,h;
486        if ((mAttrs.flags & WindowManager.LayoutParams.FLAG_SCALED) != 0) {
487            if (mAttrs.width < 0) {
488                w = pw;
489            } else if (mEnforceSizeCompat) {
490                w = (int)(mAttrs.width * mGlobalScale + .5f);
491            } else {
492                w = mAttrs.width;
493            }
494            if (mAttrs.height < 0) {
495                h = ph;
496            } else if (mEnforceSizeCompat) {
497                h = (int)(mAttrs.height * mGlobalScale + .5f);
498            } else {
499                h = mAttrs.height;
500            }
501        } else {
502            if (mAttrs.width == WindowManager.LayoutParams.MATCH_PARENT) {
503                w = pw;
504            } else if (mEnforceSizeCompat) {
505                w = (int)(mRequestedWidth * mGlobalScale + .5f);
506            } else {
507                w = mRequestedWidth;
508            }
509            if (mAttrs.height == WindowManager.LayoutParams.MATCH_PARENT) {
510                h = ph;
511            } else if (mEnforceSizeCompat) {
512                h = (int)(mRequestedHeight * mGlobalScale + .5f);
513            } else {
514                h = mRequestedHeight;
515            }
516        }
517
518        if (!mParentFrame.equals(pf)) {
519            //Slog.i(TAG, "Window " + this + " content frame from " + mParentFrame
520            //        + " to " + pf);
521            mParentFrame.set(pf);
522            mContentChanged = true;
523        }
524        if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {
525            mLastRequestedWidth = mRequestedWidth;
526            mLastRequestedHeight = mRequestedHeight;
527            mContentChanged = true;
528        }
529
530        mOverscanFrame.set(of);
531        mContentFrame.set(cf);
532        mVisibleFrame.set(vf);
533        mDecorFrame.set(dcf);
534
535        final int fw = mFrame.width();
536        final int fh = mFrame.height();
537
538        //System.out.println("In: w=" + w + " h=" + h + " container=" +
539        //                   container + " x=" + mAttrs.x + " y=" + mAttrs.y);
540
541        float x, y;
542        if (mEnforceSizeCompat) {
543            x = mAttrs.x * mGlobalScale;
544            y = mAttrs.y * mGlobalScale;
545        } else {
546            x = mAttrs.x;
547            y = mAttrs.y;
548        }
549
550        Gravity.apply(mAttrs.gravity, w, h, mContainingFrame,
551                (int) (x + mAttrs.horizontalMargin * pw),
552                (int) (y + mAttrs.verticalMargin * ph), mFrame);
553
554        //System.out.println("Out: " + mFrame);
555
556        // Now make sure the window fits in the overall display.
557        Gravity.applyDisplay(mAttrs.gravity, df, mFrame);
558
559        // Make sure the content and visible frames are inside of the
560        // final window frame.
561        mContentFrame.set(Math.max(mContentFrame.left, mFrame.left),
562                Math.max(mContentFrame.top, mFrame.top),
563                Math.min(mContentFrame.right, mFrame.right),
564                Math.min(mContentFrame.bottom, mFrame.bottom));
565
566        mVisibleFrame.set(Math.max(mVisibleFrame.left, mFrame.left),
567                Math.max(mVisibleFrame.top, mFrame.top),
568                Math.min(mVisibleFrame.right, mFrame.right),
569                Math.min(mVisibleFrame.bottom, mFrame.bottom));
570
571        mOverscanInsets.set(Math.max(mOverscanFrame.left - mFrame.left, 0),
572                Math.max(mOverscanFrame.top - mFrame.top, 0),
573                Math.max(mFrame.right - mOverscanFrame.right, 0),
574                Math.max(mFrame.bottom - mOverscanFrame.bottom, 0));
575
576        mContentInsets.set(mContentFrame.left - mFrame.left,
577                mContentFrame.top - mFrame.top,
578                mFrame.right - mContentFrame.right,
579                mFrame.bottom - mContentFrame.bottom);
580
581        mVisibleInsets.set(mVisibleFrame.left - mFrame.left,
582                mVisibleFrame.top - mFrame.top,
583                mFrame.right - mVisibleFrame.right,
584                mFrame.bottom - mVisibleFrame.bottom);
585
586        mCompatFrame.set(mFrame);
587        if (mEnforceSizeCompat) {
588            // If there is a size compatibility scale being applied to the
589            // window, we need to apply this to its insets so that they are
590            // reported to the app in its coordinate space.
591            mOverscanInsets.scale(mInvGlobalScale);
592            mContentInsets.scale(mInvGlobalScale);
593            mVisibleInsets.scale(mInvGlobalScale);
594
595            // Also the scaled frame that we report to the app needs to be
596            // adjusted to be in its coordinate space.
597            mCompatFrame.scale(mInvGlobalScale);
598        }
599
600        if (mIsWallpaper && (fw != mFrame.width() || fh != mFrame.height())) {
601            final DisplayContent displayContent = getDisplayContent();
602            if (displayContent != null) {
603                final DisplayInfo displayInfo = displayContent.getDisplayInfo();
604                mService.updateWallpaperOffsetLocked(this,
605                        displayInfo.logicalWidth, displayInfo.logicalHeight, false);
606            }
607        }
608
609        if (DEBUG_LAYOUT || WindowManagerService.localLOGV) Slog.v(TAG,
610                "Resolving (mRequestedWidth="
611                + mRequestedWidth + ", mRequestedheight="
612                + mRequestedHeight + ") to" + " (pw=" + pw + ", ph=" + ph
613                + "): frame=" + mFrame.toShortString()
614                + " ci=" + mContentInsets.toShortString()
615                + " vi=" + mVisibleInsets.toShortString());
616    }
617
618    @Override
619    public Rect getFrameLw() {
620        return mFrame;
621    }
622
623    @Override
624    public RectF getShownFrameLw() {
625        return mShownFrame;
626    }
627
628    @Override
629    public Rect getDisplayFrameLw() {
630        return mDisplayFrame;
631    }
632
633    @Override
634    public Rect getOverscanFrameLw() {
635        return mOverscanFrame;
636    }
637
638    @Override
639    public Rect getContentFrameLw() {
640        return mContentFrame;
641    }
642
643    @Override
644    public Rect getVisibleFrameLw() {
645        return mVisibleFrame;
646    }
647
648    @Override
649    public boolean getGivenInsetsPendingLw() {
650        return mGivenInsetsPending;
651    }
652
653    @Override
654    public Rect getGivenContentInsetsLw() {
655        return mGivenContentInsets;
656    }
657
658    @Override
659    public Rect getGivenVisibleInsetsLw() {
660        return mGivenVisibleInsets;
661    }
662
663    @Override
664    public WindowManager.LayoutParams getAttrs() {
665        return mAttrs;
666    }
667
668    @Override
669    public boolean getNeedsMenuLw(WindowManagerPolicy.WindowState bottom) {
670        int index = -1;
671        WindowState ws = this;
672        WindowList windows = getWindowList();
673        while (true) {
674            if ((ws.mAttrs.privateFlags
675                    & WindowManager.LayoutParams.PRIVATE_FLAG_SET_NEEDS_MENU_KEY) != 0) {
676                return (ws.mAttrs.flags & WindowManager.LayoutParams.FLAG_NEEDS_MENU_KEY) != 0;
677            }
678            // If we reached the bottom of the range of windows we are considering,
679            // assume no menu is needed.
680            if (ws == bottom) {
681                return false;
682            }
683            // The current window hasn't specified whether menu key is needed;
684            // look behind it.
685            // First, we may need to determine the starting position.
686            if (index < 0) {
687                index = windows.indexOf(ws);
688            }
689            index--;
690            if (index < 0) {
691                return false;
692            }
693            ws = windows.get(index);
694        }
695    }
696
697    @Override
698    public int getSystemUiVisibility() {
699        return mSystemUiVisibility;
700    }
701
702    @Override
703    public int getSurfaceLayer() {
704        return mLayer;
705    }
706
707    @Override
708    public IApplicationToken getAppToken() {
709        return mAppToken != null ? mAppToken.appToken : null;
710    }
711
712    boolean setInsetsChanged() {
713        mOverscanInsetsChanged |= !mLastOverscanInsets.equals(mOverscanInsets);
714        mContentInsetsChanged |= !mLastContentInsets.equals(mContentInsets);
715        mVisibleInsetsChanged |= !mLastVisibleInsets.equals(mVisibleInsets);
716        return mOverscanInsetsChanged || mContentInsetsChanged || mVisibleInsetsChanged;
717    }
718
719    public DisplayContent getDisplayContent() {
720        return mAppToken == null ? mDisplayContent : getStack().getDisplayContent();
721    }
722
723    public int getDisplayId() {
724        final DisplayContent displayContent = getDisplayContent();
725        if (displayContent == null) {
726            return -1;
727        }
728        return displayContent.getDisplayId();
729    }
730
731    TaskStack getStack() {
732        AppWindowToken wtoken = mAppToken == null ? mService.mFocusedApp : mAppToken;
733        if (wtoken != null) {
734            Task task = mService.mTaskIdToTask.get(wtoken.groupId);
735            if (task != null) {
736                if (task.mStack != null) {
737                    return task.mStack;
738                }
739                Slog.e(TAG, "getStack: mStack null for task=" + task);
740            } else {
741                Slog.e(TAG, "getStack: " + this + " couldn't find taskId=" + wtoken.groupId
742                    + " Callers=" + Debug.getCallers(4));
743            }
744        }
745        return mDisplayContent.getHomeStack();
746    }
747
748    void getStackBounds(Rect bounds) {
749        getStackBounds(getStack(), bounds);
750    }
751
752    private void getStackBounds(TaskStack stack, Rect bounds) {
753        if (stack != null) {
754            stack.getBounds(bounds);
755            return;
756        }
757        bounds.set(mFrame);
758    }
759
760    public long getInputDispatchingTimeoutNanos() {
761        return mAppToken != null
762                ? mAppToken.inputDispatchingTimeoutNanos
763                : WindowManagerService.DEFAULT_INPUT_DISPATCHING_TIMEOUT_NANOS;
764    }
765
766    @Override
767    public boolean hasAppShownWindows() {
768        return mAppToken != null && (mAppToken.firstWindowDrawn || mAppToken.startingDisplayed);
769    }
770
771    boolean isIdentityMatrix(float dsdx, float dtdx, float dsdy, float dtdy) {
772        if (dsdx < .99999f || dsdx > 1.00001f) return false;
773        if (dtdy < .99999f || dtdy > 1.00001f) return false;
774        if (dtdx < -.000001f || dtdx > .000001f) return false;
775        if (dsdy < -.000001f || dsdy > .000001f) return false;
776        return true;
777    }
778
779    void prelayout() {
780        if (mEnforceSizeCompat) {
781            mGlobalScale = mService.mCompatibleScreenScale;
782            mInvGlobalScale = 1/mGlobalScale;
783        } else {
784            mGlobalScale = mInvGlobalScale = 1;
785        }
786    }
787
788    /**
789     * Is this window visible?  It is not visible if there is no
790     * surface, or we are in the process of running an exit animation
791     * that will remove the surface, or its app token has been hidden.
792     */
793    @Override
794    public boolean isVisibleLw() {
795        final AppWindowToken atoken = mAppToken;
796        return mHasSurface && mPolicyVisibility && !mAttachedHidden
797                && (atoken == null || !atoken.hiddenRequested)
798                && !mExiting && !mDestroying;
799    }
800
801    /**
802     * Like {@link #isVisibleLw}, but also counts a window that is currently
803     * "hidden" behind the keyguard as visible.  This allows us to apply
804     * things like window flags that impact the keyguard.
805     * XXX I am starting to think we need to have ANOTHER visibility flag
806     * for this "hidden behind keyguard" state rather than overloading
807     * mPolicyVisibility.  Ungh.
808     */
809    @Override
810    public boolean isVisibleOrBehindKeyguardLw() {
811        if (mRootToken.waitingToShow &&
812                mService.mAppTransition.isTransitionSet()) {
813            return false;
814        }
815        final AppWindowToken atoken = mAppToken;
816        final boolean animating = atoken != null
817                ? (atoken.mAppAnimator.animation != null) : false;
818        return mHasSurface && !mDestroying && !mExiting
819                && (atoken == null ? mPolicyVisibility : !atoken.hiddenRequested)
820                && ((!mAttachedHidden && mViewVisibility == View.VISIBLE
821                                && !mRootToken.hidden)
822                        || mWinAnimator.mAnimation != null || animating);
823    }
824
825    /**
826     * Is this window visible, ignoring its app token?  It is not visible
827     * if there is no surface, or we are in the process of running an exit animation
828     * that will remove the surface.
829     */
830    public boolean isWinVisibleLw() {
831        final AppWindowToken atoken = mAppToken;
832        return mHasSurface && mPolicyVisibility && !mAttachedHidden
833                && (atoken == null || !atoken.hiddenRequested || atoken.mAppAnimator.animating)
834                && !mExiting && !mDestroying;
835    }
836
837    /**
838     * The same as isVisible(), but follows the current hidden state of
839     * the associated app token, not the pending requested hidden state.
840     */
841    boolean isVisibleNow() {
842        return mHasSurface && mPolicyVisibility && !mAttachedHidden
843                && !mRootToken.hidden && !mExiting && !mDestroying;
844    }
845
846    /**
847     * Can this window possibly be a drag/drop target?  The test here is
848     * a combination of the above "visible now" with the check that the
849     * Input Manager uses when discarding windows from input consideration.
850     */
851    boolean isPotentialDragTarget() {
852        return isVisibleNow() && !mRemoved
853                && mInputChannel != null && mInputWindowHandle != null;
854    }
855
856    /**
857     * Same as isVisible(), but we also count it as visible between the
858     * call to IWindowSession.add() and the first relayout().
859     */
860    boolean isVisibleOrAdding() {
861        final AppWindowToken atoken = mAppToken;
862        return (mHasSurface || (!mRelayoutCalled && mViewVisibility == View.VISIBLE))
863                && mPolicyVisibility && !mAttachedHidden
864                && (atoken == null || !atoken.hiddenRequested)
865                && !mExiting && !mDestroying;
866    }
867
868    /**
869     * Is this window currently on-screen?  It is on-screen either if it
870     * is visible or it is currently running an animation before no longer
871     * being visible.
872     */
873    boolean isOnScreen() {
874        if (!mHasSurface || !mPolicyVisibility || mDestroying) {
875            return false;
876        }
877        final AppWindowToken atoken = mAppToken;
878        if (atoken != null) {
879            return ((!mAttachedHidden && !atoken.hiddenRequested)
880                    || mWinAnimator.mAnimation != null || atoken.mAppAnimator.animation != null);
881        }
882        return !mAttachedHidden || mWinAnimator.mAnimation != null;
883    }
884
885    /**
886     * Like isOnScreen(), but we don't return true if the window is part
887     * of a transition that has not yet been started.
888     */
889    boolean isReadyForDisplay() {
890        if (mRootToken.waitingToShow &&
891                mService.mAppTransition.isTransitionSet()) {
892            return false;
893        }
894        return mHasSurface && mPolicyVisibility && !mDestroying
895                && ((!mAttachedHidden && mViewVisibility == View.VISIBLE
896                                && !mRootToken.hidden)
897                        || mWinAnimator.mAnimation != null
898                        || ((mAppToken != null) && (mAppToken.mAppAnimator.animation != null)));
899    }
900
901    /**
902     * Like isReadyForDisplay(), but ignores any force hiding of the window due
903     * to the keyguard.
904     */
905    boolean isReadyForDisplayIgnoringKeyguard() {
906        if (mRootToken.waitingToShow && mService.mAppTransition.isTransitionSet()) {
907            return false;
908        }
909        final AppWindowToken atoken = mAppToken;
910        if (atoken == null && !mPolicyVisibility) {
911            // If this is not an app window, and the policy has asked to force
912            // hide, then we really do want to hide.
913            return false;
914        }
915        return mHasSurface && !mDestroying
916                && ((!mAttachedHidden && mViewVisibility == View.VISIBLE
917                                && !mRootToken.hidden)
918                        || mWinAnimator.mAnimation != null
919                        || ((atoken != null) && (atoken.mAppAnimator.animation != null)
920                                && !mWinAnimator.isDummyAnimation()));
921    }
922
923    /**
924     * Like isOnScreen, but returns false if the surface hasn't yet
925     * been drawn.
926     */
927    @Override
928    public boolean isDisplayedLw() {
929        final AppWindowToken atoken = mAppToken;
930        return isDrawnLw() && mPolicyVisibility
931            && ((!mAttachedHidden &&
932                    (atoken == null || !atoken.hiddenRequested))
933                        || mWinAnimator.mAnimating
934                        || (atoken != null && atoken.mAppAnimator.animation != null));
935    }
936
937    /**
938     * Return true if this window or its app token is currently animating.
939     */
940    @Override
941    public boolean isAnimatingLw() {
942        return mWinAnimator.mAnimation != null
943                || (mAppToken != null && mAppToken.mAppAnimator.animation != null);
944    }
945
946    @Override
947    public boolean isGoneForLayoutLw() {
948        final AppWindowToken atoken = mAppToken;
949        return mViewVisibility == View.GONE
950                || !mRelayoutCalled
951                || (atoken == null && mRootToken.hidden)
952                || (atoken != null && (atoken.hiddenRequested || atoken.hidden))
953                || mAttachedHidden
954                || (mExiting && !isAnimatingLw())
955                || mDestroying;
956    }
957
958    /**
959     * Returns true if the window has a surface that it has drawn a
960     * complete UI in to.
961     */
962    public boolean isDrawFinishedLw() {
963        return mHasSurface && !mDestroying &&
964                (mWinAnimator.mDrawState == WindowStateAnimator.COMMIT_DRAW_PENDING
965                || mWinAnimator.mDrawState == WindowStateAnimator.READY_TO_SHOW
966                || mWinAnimator.mDrawState == WindowStateAnimator.HAS_DRAWN);
967    }
968
969    /**
970     * Returns true if the window has a surface that it has drawn a
971     * complete UI in to.
972     */
973    public boolean isDrawnLw() {
974        return mHasSurface && !mDestroying &&
975                (mWinAnimator.mDrawState == WindowStateAnimator.READY_TO_SHOW
976                || mWinAnimator.mDrawState == WindowStateAnimator.HAS_DRAWN);
977    }
978
979    /**
980     * Return true if the window is opaque and fully drawn.  This indicates
981     * it may obscure windows behind it.
982     */
983    boolean isOpaqueDrawn() {
984        return (mAttrs.format == PixelFormat.OPAQUE
985                        || mAttrs.type == TYPE_WALLPAPER)
986                && isDrawnLw() && mWinAnimator.mAnimation == null
987                && (mAppToken == null || mAppToken.mAppAnimator.animation == null);
988    }
989
990    /**
991     * Return whether this window is wanting to have a translation
992     * animation applied to it for an in-progress move.  (Only makes
993     * sense to call from performLayoutAndPlaceSurfacesLockedInner().)
994     */
995    boolean shouldAnimateMove() {
996        return mContentChanged && !mExiting && !mWinAnimator.mLastHidden && mService.okToDisplay()
997                && (mFrame.top != mLastFrame.top
998                        || mFrame.left != mLastFrame.left)
999                && (mAttrs.privateFlags&PRIVATE_FLAG_NO_MOVE_ANIMATION) == 0
1000                && (mAttachedWindow == null || !mAttachedWindow.shouldAnimateMove());
1001    }
1002
1003    boolean isFullscreen(int screenWidth, int screenHeight) {
1004        return mFrame.left <= 0 && mFrame.top <= 0 &&
1005                mFrame.right >= screenWidth && mFrame.bottom >= screenHeight;
1006    }
1007
1008    boolean isConfigChanged() {
1009        boolean configChanged = mConfiguration != mService.mCurConfiguration
1010                && (mConfiguration == null
1011                        || (mConfiguration.diff(mService.mCurConfiguration) != 0));
1012
1013        if (mAttrs.type == TYPE_KEYGUARD) {
1014            // Retain configuration changed status until resetConfiguration called.
1015            mConfigHasChanged |= configChanged;
1016            configChanged = mConfigHasChanged;
1017        }
1018
1019        return configChanged;
1020    }
1021
1022    void removeLocked() {
1023        disposeInputChannel();
1024
1025        if (mAttachedWindow != null) {
1026            if (WindowManagerService.DEBUG_ADD_REMOVE) Slog.v(TAG, "Removing " + this + " from " + mAttachedWindow);
1027            mAttachedWindow.mChildWindows.remove(this);
1028        }
1029        mWinAnimator.destroyDeferredSurfaceLocked();
1030        mWinAnimator.destroySurfaceLocked();
1031        mSession.windowRemovedLocked();
1032        try {
1033            mClient.asBinder().unlinkToDeath(mDeathRecipient, 0);
1034        } catch (RuntimeException e) {
1035            // Ignore if it has already been removed (usually because
1036            // we are doing this as part of processing a death note.)
1037        }
1038    }
1039
1040    void setConfiguration(final Configuration newConfig) {
1041        mConfiguration = newConfig;
1042        mConfigHasChanged = false;
1043    }
1044
1045    void setInputChannel(InputChannel inputChannel) {
1046        if (mInputChannel != null) {
1047            throw new IllegalStateException("Window already has an input channel.");
1048        }
1049
1050        mInputChannel = inputChannel;
1051        mInputWindowHandle.inputChannel = inputChannel;
1052    }
1053
1054    void disposeInputChannel() {
1055        if (mInputChannel != null) {
1056            mService.mInputManager.unregisterInputChannel(mInputChannel);
1057
1058            mInputChannel.dispose();
1059            mInputChannel = null;
1060        }
1061
1062        mInputWindowHandle.inputChannel = null;
1063    }
1064
1065    private class DeathRecipient implements IBinder.DeathRecipient {
1066        @Override
1067        public void binderDied() {
1068            try {
1069                synchronized(mService.mWindowMap) {
1070                    WindowState win = mService.windowForClientLocked(mSession, mClient, false);
1071                    Slog.i(TAG, "WIN DEATH: " + win);
1072                    if (win != null) {
1073                        mService.removeWindowLocked(mSession, win);
1074                    } else if (mHasSurface) {
1075                        Slog.e(TAG, "!!! LEAK !!! Window removed but surface still valid.");
1076                        mService.removeWindowLocked(mSession, WindowState.this);
1077                    }
1078                }
1079            } catch (IllegalArgumentException ex) {
1080                // This will happen if the window has already been
1081                // removed.
1082            }
1083        }
1084    }
1085
1086    /**
1087     * @return true if this window desires key events.
1088     */
1089    public final boolean canReceiveKeys() {
1090        return isVisibleOrAdding()
1091                && (mViewVisibility == View.VISIBLE)
1092                && ((mAttrs.flags & WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE) == 0);
1093    }
1094
1095    @Override
1096    public boolean hasDrawnLw() {
1097        return mWinAnimator.mDrawState == WindowStateAnimator.HAS_DRAWN;
1098    }
1099
1100    @Override
1101    public boolean showLw(boolean doAnimation) {
1102        return showLw(doAnimation, true);
1103    }
1104
1105    boolean showLw(boolean doAnimation, boolean requestAnim) {
1106        if (isHiddenFromUserLocked()) {
1107            Slog.w(TAG, "current user violation " + mService.mCurrentUserId + " trying to display "
1108                    + this + ", type " + mAttrs.type + ", belonging to " + mOwnerUid);
1109            return false;
1110        }
1111        if (!mAppOpVisibility) {
1112            // Being hidden due to app op request.
1113            return false;
1114        }
1115        if (mPolicyVisibility && mPolicyVisibilityAfterAnim) {
1116            // Already showing.
1117            return false;
1118        }
1119        if (DEBUG_VISIBILITY) Slog.v(TAG, "Policy visibility true: " + this);
1120        if (doAnimation) {
1121            if (DEBUG_VISIBILITY) Slog.v(TAG, "doAnimation: mPolicyVisibility="
1122                    + mPolicyVisibility + " mAnimation=" + mWinAnimator.mAnimation);
1123            if (!mService.okToDisplay()) {
1124                doAnimation = false;
1125            } else if (mPolicyVisibility && mWinAnimator.mAnimation == null) {
1126                // Check for the case where we are currently visible and
1127                // not animating; we do not want to do animation at such a
1128                // point to become visible when we already are.
1129                doAnimation = false;
1130            }
1131        }
1132        mPolicyVisibility = true;
1133        mPolicyVisibilityAfterAnim = true;
1134        if (doAnimation) {
1135            mWinAnimator.applyAnimationLocked(WindowManagerPolicy.TRANSIT_ENTER, true);
1136        }
1137        if (requestAnim) {
1138            mService.scheduleAnimationLocked();
1139        }
1140        return true;
1141    }
1142
1143    @Override
1144    public boolean hideLw(boolean doAnimation) {
1145        return hideLw(doAnimation, true);
1146    }
1147
1148    boolean hideLw(boolean doAnimation, boolean requestAnim) {
1149        if (doAnimation) {
1150            if (!mService.okToDisplay()) {
1151                doAnimation = false;
1152            }
1153        }
1154        boolean current = doAnimation ? mPolicyVisibilityAfterAnim
1155                : mPolicyVisibility;
1156        if (!current) {
1157            // Already hiding.
1158            return false;
1159        }
1160        if (doAnimation) {
1161            mWinAnimator.applyAnimationLocked(WindowManagerPolicy.TRANSIT_EXIT, false);
1162            if (mWinAnimator.mAnimation == null) {
1163                doAnimation = false;
1164            }
1165        }
1166        if (doAnimation) {
1167            mPolicyVisibilityAfterAnim = false;
1168        } else {
1169            if (DEBUG_VISIBILITY) Slog.v(TAG, "Policy visibility false: " + this);
1170            mPolicyVisibilityAfterAnim = false;
1171            mPolicyVisibility = false;
1172            // Window is no longer visible -- make sure if we were waiting
1173            // for it to be displayed before enabling the display, that
1174            // we allow the display to be enabled now.
1175            mService.enableScreenIfNeededLocked();
1176            if (mService.mCurrentFocus == this) {
1177                if (WindowManagerService.DEBUG_FOCUS_LIGHT) Slog.i(TAG,
1178                        "WindowState.hideLw: setting mFocusMayChange true");
1179                mService.mFocusMayChange = true;
1180            }
1181        }
1182        if (requestAnim) {
1183            mService.scheduleAnimationLocked();
1184        }
1185        return true;
1186    }
1187
1188    public void setAppOpVisibilityLw(boolean state) {
1189        if (mAppOpVisibility != state) {
1190            mAppOpVisibility = state;
1191            if (state) {
1192                // If the policy visibility had last been to hide, then this
1193                // will incorrectly show at this point since we lost that
1194                // information.  Not a big deal -- for the windows that have app
1195                // ops modifies they should only be hidden by policy due to the
1196                // lock screen, and the user won't be changing this if locked.
1197                // Plus it will quickly be fixed the next time we do a layout.
1198                showLw(true, true);
1199            } else {
1200                hideLw(true, true);
1201            }
1202        }
1203    }
1204
1205    @Override
1206    public boolean isAlive() {
1207        return mClient.asBinder().isBinderAlive();
1208    }
1209
1210    boolean isClosing() {
1211        return mExiting || (mService.mClosingApps.contains(mAppToken));
1212    }
1213
1214    @Override
1215    public boolean isDefaultDisplay() {
1216        final DisplayContent displayContent = getDisplayContent();
1217        if (displayContent == null) {
1218            // Only a window that was on a non-default display can be detached from it.
1219            return false;
1220        }
1221        return getDisplayContent().isDefaultDisplay;
1222    }
1223
1224    public void setShowToOwnerOnlyLocked(boolean showToOwnerOnly) {
1225        mShowToOwnerOnly = showToOwnerOnly;
1226    }
1227
1228    boolean isHiddenFromUserLocked() {
1229        // Attached windows are evaluated based on the window that they are attached to.
1230        WindowState win = this;
1231        while (win.mAttachedWindow != null) {
1232            win = win.mAttachedWindow;
1233        }
1234        if (win.mAttrs.type < WindowManager.LayoutParams.FIRST_SYSTEM_WINDOW
1235                && win.mAppToken != null && win.mAppToken.showWhenLocked) {
1236            // Save some cycles by not calling getDisplayInfo unless it is an application
1237            // window intended for all users.
1238            final DisplayContent displayContent = win.getDisplayContent();
1239            if (displayContent == null) {
1240                return true;
1241            }
1242            final DisplayInfo displayInfo = displayContent.getDisplayInfo();
1243            if (win.mFrame.left <= 0 && win.mFrame.top <= 0
1244                    && win.mFrame.right >= displayInfo.appWidth
1245                    && win.mFrame.bottom >= displayInfo.appHeight) {
1246                // Is a fullscreen window, like the clock alarm. Show to everyone.
1247                return false;
1248            }
1249        }
1250
1251        return win.mShowToOwnerOnly
1252                && !mService.isRelatedToOrCurrentUserLocked(UserHandle.getUserId(win.mOwnerUid));
1253    }
1254
1255    private static void applyInsets(Region outRegion, Rect frame, Rect inset) {
1256        outRegion.set(
1257                frame.left + inset.left, frame.top + inset.top,
1258                frame.right - inset.right, frame.bottom - inset.bottom);
1259    }
1260
1261    public void getTouchableRegion(Region outRegion) {
1262        final Rect frame = mFrame;
1263        switch (mTouchableInsets) {
1264            default:
1265            case ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_FRAME:
1266                outRegion.set(frame);
1267                break;
1268            case ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_CONTENT:
1269                applyInsets(outRegion, frame, mGivenContentInsets);
1270                break;
1271            case ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_VISIBLE:
1272                applyInsets(outRegion, frame, mGivenVisibleInsets);
1273                break;
1274            case ViewTreeObserver.InternalInsetsInfo.TOUCHABLE_INSETS_REGION: {
1275                final Region givenTouchableRegion = mGivenTouchableRegion;
1276                outRegion.set(givenTouchableRegion);
1277                outRegion.translate(frame.left, frame.top);
1278                break;
1279            }
1280        }
1281    }
1282
1283    WindowList getWindowList() {
1284        final DisplayContent displayContent = getDisplayContent();
1285        return displayContent == null ? null : displayContent.getWindowList();
1286    }
1287
1288    /**
1289     * Report a focus change.  Must be called with no locks held, and consistently
1290     * from the same serialized thread (such as dispatched from a handler).
1291     */
1292    public void reportFocusChangedSerialized(boolean focused, boolean inTouchMode) {
1293        try {
1294            mClient.windowFocusChanged(focused, inTouchMode);
1295        } catch (RemoteException e) {
1296        }
1297        if (mFocusCallbacks != null) {
1298            final int N = mFocusCallbacks.beginBroadcast();
1299            for (int i=0; i<N; i++) {
1300                IWindowFocusObserver obs = mFocusCallbacks.getBroadcastItem(i);
1301                try {
1302                    if (focused) {
1303                        obs.focusGained(mWindowId.asBinder());
1304                    } else {
1305                        obs.focusLost(mWindowId.asBinder());
1306                    }
1307                } catch (RemoteException e) {
1308                }
1309            }
1310            mFocusCallbacks.finishBroadcast();
1311        }
1312    }
1313
1314    void reportResized() {
1315        try {
1316            if (DEBUG_RESIZE || DEBUG_ORIENTATION) Slog.v(TAG, "Reporting new frame to " + this
1317                    + ": " + mCompatFrame);
1318            boolean configChanged = isConfigChanged();
1319            if ((DEBUG_RESIZE || DEBUG_ORIENTATION || DEBUG_CONFIGURATION) && configChanged) {
1320                Slog.i(TAG, "Sending new config to window " + this + ": "
1321                        + mWinAnimator.mSurfaceW + "x" + mWinAnimator.mSurfaceH
1322                        + " / " + mService.mCurConfiguration);
1323            }
1324            setConfiguration(mService.mCurConfiguration);
1325            if (DEBUG_ORIENTATION && mWinAnimator.mDrawState == WindowStateAnimator.DRAW_PENDING)
1326                Slog.i(TAG, "Resizing " + this + " WITH DRAW PENDING");
1327
1328            final Rect frame = mFrame;
1329            final Rect overscanInsets = mLastOverscanInsets;
1330            final Rect contentInsets = mLastContentInsets;
1331            final Rect visibleInsets = mLastVisibleInsets;
1332            final boolean reportDraw = mWinAnimator.mDrawState == WindowStateAnimator.DRAW_PENDING;
1333            final Configuration newConfig = configChanged ? mConfiguration : null;
1334            if (mClient instanceof IWindow.Stub) {
1335                // To prevent deadlock simulate one-way call if win.mClient is a local object.
1336                mService.mH.post(new Runnable() {
1337                    @Override
1338                    public void run() {
1339                        try {
1340                            mClient.resized(frame, overscanInsets, contentInsets,
1341                                    visibleInsets, reportDraw, newConfig);
1342                        } catch (RemoteException e) {
1343                            // Not a remote call, RemoteException won't be raised.
1344                        }
1345                    }
1346                });
1347            } else {
1348                mClient.resized(frame, overscanInsets, contentInsets, visibleInsets, reportDraw,
1349                        newConfig);
1350            }
1351            mOverscanInsetsChanged = false;
1352            mContentInsetsChanged = false;
1353            mVisibleInsetsChanged = false;
1354            mWinAnimator.mSurfaceResized = false;
1355        } catch (RemoteException e) {
1356            mOrientationChanging = false;
1357            mLastFreezeDuration = (int)(SystemClock.elapsedRealtime()
1358                    - mService.mDisplayFreezeTime);
1359        }
1360    }
1361
1362    public void registerFocusObserver(IWindowFocusObserver observer) {
1363        synchronized(mService.mWindowMap) {
1364            if (mFocusCallbacks == null) {
1365                mFocusCallbacks = new RemoteCallbackList<IWindowFocusObserver>();
1366            }
1367            mFocusCallbacks.register(observer);
1368        }
1369    }
1370
1371    public void unregisterFocusObserver(IWindowFocusObserver observer) {
1372        synchronized(mService.mWindowMap) {
1373            if (mFocusCallbacks != null) {
1374                mFocusCallbacks.unregister(observer);
1375            }
1376        }
1377    }
1378
1379    public boolean isFocused() {
1380        synchronized(mService.mWindowMap) {
1381            return mService.mCurrentFocus == this;
1382        }
1383    }
1384
1385    void dump(PrintWriter pw, String prefix, boolean dumpAll) {
1386        pw.print(prefix); pw.print("mDisplayId="); pw.print(getDisplayId());
1387                pw.print(" mSession="); pw.print(mSession);
1388                pw.print(" mClient="); pw.println(mClient.asBinder());
1389        pw.print(prefix); pw.print("mOwnerUid="); pw.print(mOwnerUid);
1390                pw.print(" mShowToOwnerOnly="); pw.print(mShowToOwnerOnly);
1391                pw.print(" package="); pw.print(mAttrs.packageName);
1392                pw.print(" appop="); pw.println(AppOpsManager.opToName(mAppOp));
1393        pw.print(prefix); pw.print("mAttrs="); pw.println(mAttrs);
1394        pw.print(prefix); pw.print("Requested w="); pw.print(mRequestedWidth);
1395                pw.print(" h="); pw.print(mRequestedHeight);
1396                pw.print(" mLayoutSeq="); pw.println(mLayoutSeq);
1397        if (mRequestedWidth != mLastRequestedWidth || mRequestedHeight != mLastRequestedHeight) {
1398            pw.print(prefix); pw.print("LastRequested w="); pw.print(mLastRequestedWidth);
1399                    pw.print(" h="); pw.println(mLastRequestedHeight);
1400        }
1401        if (mAttachedWindow != null || mLayoutAttached) {
1402            pw.print(prefix); pw.print("mAttachedWindow="); pw.print(mAttachedWindow);
1403                    pw.print(" mLayoutAttached="); pw.println(mLayoutAttached);
1404        }
1405        if (mIsImWindow || mIsWallpaper || mIsFloatingLayer) {
1406            pw.print(prefix); pw.print("mIsImWindow="); pw.print(mIsImWindow);
1407                    pw.print(" mIsWallpaper="); pw.print(mIsWallpaper);
1408                    pw.print(" mIsFloatingLayer="); pw.print(mIsFloatingLayer);
1409                    pw.print(" mWallpaperVisible="); pw.println(mWallpaperVisible);
1410        }
1411        if (dumpAll) {
1412            pw.print(prefix); pw.print("mBaseLayer="); pw.print(mBaseLayer);
1413                    pw.print(" mSubLayer="); pw.print(mSubLayer);
1414                    pw.print(" mAnimLayer="); pw.print(mLayer); pw.print("+");
1415                    pw.print((mTargetAppToken != null ?
1416                            mTargetAppToken.mAppAnimator.animLayerAdjustment
1417                          : (mAppToken != null ? mAppToken.mAppAnimator.animLayerAdjustment : 0)));
1418                    pw.print("="); pw.print(mWinAnimator.mAnimLayer);
1419                    pw.print(" mLastLayer="); pw.println(mWinAnimator.mLastLayer);
1420        }
1421        if (dumpAll) {
1422            pw.print(prefix); pw.print("mToken="); pw.println(mToken);
1423            pw.print(prefix); pw.print("mRootToken="); pw.println(mRootToken);
1424            if (mAppToken != null) {
1425                pw.print(prefix); pw.print("mAppToken="); pw.println(mAppToken);
1426            }
1427            if (mTargetAppToken != null) {
1428                pw.print(prefix); pw.print("mTargetAppToken="); pw.println(mTargetAppToken);
1429            }
1430            pw.print(prefix); pw.print("mViewVisibility=0x");
1431            pw.print(Integer.toHexString(mViewVisibility));
1432            pw.print(" mHaveFrame="); pw.print(mHaveFrame);
1433            pw.print(" mObscured="); pw.println(mObscured);
1434            pw.print(prefix); pw.print("mSeq="); pw.print(mSeq);
1435            pw.print(" mSystemUiVisibility=0x");
1436            pw.println(Integer.toHexString(mSystemUiVisibility));
1437        }
1438        if (!mPolicyVisibility || !mPolicyVisibilityAfterAnim || !mAppOpVisibility
1439                || mAttachedHidden) {
1440            pw.print(prefix); pw.print("mPolicyVisibility=");
1441                    pw.print(mPolicyVisibility);
1442                    pw.print(" mPolicyVisibilityAfterAnim=");
1443                    pw.print(mPolicyVisibilityAfterAnim);
1444                    pw.print(" mAppOpVisibility=");
1445                    pw.print(mAppOpVisibility);
1446                    pw.print(" mAttachedHidden="); pw.println(mAttachedHidden);
1447        }
1448        if (!mRelayoutCalled || mLayoutNeeded) {
1449            pw.print(prefix); pw.print("mRelayoutCalled="); pw.print(mRelayoutCalled);
1450                    pw.print(" mLayoutNeeded="); pw.println(mLayoutNeeded);
1451        }
1452        if (mXOffset != 0 || mYOffset != 0) {
1453            pw.print(prefix); pw.print("Offsets x="); pw.print(mXOffset);
1454                    pw.print(" y="); pw.println(mYOffset);
1455        }
1456        if (dumpAll) {
1457            pw.print(prefix); pw.print("mGivenContentInsets=");
1458                    mGivenContentInsets.printShortString(pw);
1459                    pw.print(" mGivenVisibleInsets=");
1460                    mGivenVisibleInsets.printShortString(pw);
1461                    pw.println();
1462            if (mTouchableInsets != 0 || mGivenInsetsPending) {
1463                pw.print(prefix); pw.print("mTouchableInsets="); pw.print(mTouchableInsets);
1464                        pw.print(" mGivenInsetsPending="); pw.println(mGivenInsetsPending);
1465                Region region = new Region();
1466                getTouchableRegion(region);
1467                pw.print(prefix); pw.print("touchable region="); pw.println(region);
1468            }
1469            pw.print(prefix); pw.print("mConfiguration="); pw.println(mConfiguration);
1470        }
1471        pw.print(prefix); pw.print("mHasSurface="); pw.print(mHasSurface);
1472                pw.print(" mShownFrame="); mShownFrame.printShortString(pw);
1473                pw.print(" isReadyForDisplay()="); pw.println(isReadyForDisplay());
1474        if (dumpAll) {
1475            pw.print(prefix); pw.print("mFrame="); mFrame.printShortString(pw);
1476                    pw.print(" last="); mLastFrame.printShortString(pw);
1477                    pw.println();
1478            pw.print(prefix); pw.print("mSystemDecorRect="); mSystemDecorRect.printShortString(pw);
1479                    pw.print(" last="); mLastSystemDecorRect.printShortString(pw);
1480                    pw.println();
1481        }
1482        if (mEnforceSizeCompat) {
1483            pw.print(prefix); pw.print("mCompatFrame="); mCompatFrame.printShortString(pw);
1484                    pw.println();
1485        }
1486        if (dumpAll) {
1487            pw.print(prefix); pw.print("Frames: containing=");
1488                    mContainingFrame.printShortString(pw);
1489                    pw.print(" parent="); mParentFrame.printShortString(pw);
1490                    pw.println();
1491            pw.print(prefix); pw.print("    display="); mDisplayFrame.printShortString(pw);
1492                    pw.print(" overscan="); mOverscanFrame.printShortString(pw);
1493                    pw.println();
1494            pw.print(prefix); pw.print("    content="); mContentFrame.printShortString(pw);
1495                    pw.print(" visible="); mVisibleFrame.printShortString(pw);
1496                    pw.println();
1497            pw.print(prefix); pw.print("    decor="); mDecorFrame.printShortString(pw);
1498                    pw.println();
1499            pw.print(prefix); pw.print("Cur insets: overscan=");
1500                    mOverscanInsets.printShortString(pw);
1501                    pw.print(" content="); mContentInsets.printShortString(pw);
1502                    pw.print(" visible="); mVisibleInsets.printShortString(pw);
1503                    pw.println();
1504            pw.print(prefix); pw.print("Lst insets: overscan=");
1505                    mLastOverscanInsets.printShortString(pw);
1506                    pw.print(" content="); mLastContentInsets.printShortString(pw);
1507                    pw.print(" visible="); mLastVisibleInsets.printShortString(pw);
1508                    pw.println();
1509        }
1510        pw.print(prefix); pw.print(mWinAnimator); pw.println(":");
1511        mWinAnimator.dump(pw, prefix + "  ", dumpAll);
1512        if (mExiting || mRemoveOnExit || mDestroying || mRemoved) {
1513            pw.print(prefix); pw.print("mExiting="); pw.print(mExiting);
1514                    pw.print(" mRemoveOnExit="); pw.print(mRemoveOnExit);
1515                    pw.print(" mDestroying="); pw.print(mDestroying);
1516                    pw.print(" mRemoved="); pw.println(mRemoved);
1517        }
1518        if (mOrientationChanging || mAppFreezing || mTurnOnScreen) {
1519            pw.print(prefix); pw.print("mOrientationChanging=");
1520                    pw.print(mOrientationChanging);
1521                    pw.print(" mAppFreezing="); pw.print(mAppFreezing);
1522                    pw.print(" mTurnOnScreen="); pw.println(mTurnOnScreen);
1523        }
1524        if (mLastFreezeDuration != 0) {
1525            pw.print(prefix); pw.print("mLastFreezeDuration=");
1526                    TimeUtils.formatDuration(mLastFreezeDuration, pw); pw.println();
1527        }
1528        if (mHScale != 1 || mVScale != 1) {
1529            pw.print(prefix); pw.print("mHScale="); pw.print(mHScale);
1530                    pw.print(" mVScale="); pw.println(mVScale);
1531        }
1532        if (mWallpaperX != -1 || mWallpaperY != -1) {
1533            pw.print(prefix); pw.print("mWallpaperX="); pw.print(mWallpaperX);
1534                    pw.print(" mWallpaperY="); pw.println(mWallpaperY);
1535        }
1536        if (mWallpaperXStep != -1 || mWallpaperYStep != -1) {
1537            pw.print(prefix); pw.print("mWallpaperXStep="); pw.print(mWallpaperXStep);
1538                    pw.print(" mWallpaperYStep="); pw.println(mWallpaperYStep);
1539        }
1540    }
1541
1542    String makeInputChannelName() {
1543        return Integer.toHexString(System.identityHashCode(this))
1544            + " " + mAttrs.getTitle();
1545    }
1546
1547    @Override
1548    public String toString() {
1549        CharSequence title = mAttrs.getTitle();
1550        if (title == null || title.length() <= 0) {
1551            title = mAttrs.packageName;
1552        }
1553        if (mStringNameCache == null || mLastTitle != title || mWasExiting != mExiting) {
1554            mLastTitle = title;
1555            mWasExiting = mExiting;
1556            mStringNameCache = "Window{" + Integer.toHexString(System.identityHashCode(this))
1557                    + " u" + UserHandle.getUserId(mSession.mUid)
1558                    + " " + mLastTitle + (mExiting ? " EXITING}" : "}");
1559        }
1560        return mStringNameCache;
1561    }
1562}
1563