• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2020 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 
17 package com.android.wm.shell.bubbles;
18 
19 import android.content.Context;
20 import android.provider.Settings;
21 
22 import java.util.List;
23 
24 /**
25  * Common class for the various debug {@link android.util.Log} output configuration in the Bubbles
26  * package.
27  */
28 public class BubbleDebugConfig {
29 
30     // All output logs in the Bubbles package use the {@link #TAG_BUBBLES} string for tagging their
31     // log output. This makes it easy to identify the origin of the log message when sifting
32     // through a large amount of log output from multiple sources. However, it also makes trying
33     // to figure-out the origin of a log message while debugging the Bubbles a little painful. By
34     // setting this constant to true, log messages from the Bubbles package will be tagged with
35     // their class names instead fot the generic tag.
36     public static final boolean TAG_WITH_CLASS_NAME = false;
37 
38     // Default log tag for the Bubbles package.
39     public static final String TAG_BUBBLES = "Bubbles";
40 
41     static final boolean DEBUG_BUBBLE_CONTROLLER = false;
42     static final boolean DEBUG_BUBBLE_DATA = false;
43     static final boolean DEBUG_BUBBLE_STACK_VIEW = false;
44     static final boolean DEBUG_BUBBLE_EXPANDED_VIEW = false;
45     static final boolean DEBUG_EXPERIMENTS = true;
46     static final boolean DEBUG_OVERFLOW = false;
47     static final boolean DEBUG_USER_EDUCATION = false;
48     static final boolean DEBUG_POSITIONER = false;
49     public static final boolean DEBUG_COLLAPSE_ANIMATOR = false;
50     static final boolean DEBUG_BUBBLE_GESTURE = false;
51     public static boolean DEBUG_EXPANDED_VIEW_DRAGGING = false;
52 
53     private static final boolean FORCE_SHOW_USER_EDUCATION = false;
54     private static final String FORCE_SHOW_USER_EDUCATION_SETTING =
55             "force_show_bubbles_user_education";
56 
57     /**
58      * @return whether we should force show user education for bubbles. Used for debugging & demos.
59      */
forceShowUserEducation(Context context)60     static boolean forceShowUserEducation(Context context) {
61         boolean forceShow = Settings.Secure.getInt(context.getContentResolver(),
62                 FORCE_SHOW_USER_EDUCATION_SETTING, 0) != 0;
63         return FORCE_SHOW_USER_EDUCATION || forceShow;
64     }
65 
formatBubblesString(List<Bubble> bubbles, BubbleViewProvider selected)66     static String formatBubblesString(List<Bubble> bubbles, BubbleViewProvider selected) {
67         StringBuilder sb = new StringBuilder();
68         for (Bubble bubble : bubbles) {
69             if (bubble == null) {
70                 sb.append("   <null> !!!!!\n");
71             } else {
72                 boolean isSelected = (selected != null
73                         && selected.getKey() != BubbleOverflow.KEY
74                         && bubble == selected);
75                 String arrow = isSelected ? "=>" : "  ";
76                 sb.append(String.format("%s Bubble{act=%12d, showInShade=%d, key=%s}\n",
77                         arrow,
78                         bubble.getLastActivity(),
79                         (bubble.showInShade() ? 1 : 0),
80                         bubble.getKey()));
81             }
82         }
83         return sb.toString();
84     }
85 }
86