blob: a82c9078bc2abcfa62e91c43d0bdfc747a2128df [file] [log] [blame]
Joe Onorato0cbda992010-05-02 16:28:15 -07001/*
2 * Copyright (C) 2010 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
Joe Onorato79de0c52010-05-26 17:03:26 -040017package com.android.systemui.statusbar;
Joe Onorato0cbda992010-05-02 16:28:15 -070018
19import android.os.Handler;
Joe Onoratoa0c56fe2010-05-20 10:21:52 -070020import android.os.IBinder;
Joe Onorato0cbda992010-05-02 16:28:15 -070021import android.os.Message;
John Spurlockde84f0e2013-06-12 12:41:00 -040022
Joe Onorato0cbda992010-05-02 16:28:15 -070023import com.android.internal.statusbar.IStatusBar;
24import com.android.internal.statusbar.StatusBarIcon;
25import com.android.internal.statusbar.StatusBarIconList;
26
Joe Onoratof3f0e052010-05-14 18:49:29 -070027/**
28 * This class takes the functions from IStatusBar that come in on
29 * binder pool threads and posts messages to get them onto the main
30 * thread, and calls onto Callbacks. It also takes care of
Joe Onorato4762c2d2010-05-17 15:42:59 -070031 * coalescing these calls so they don't stack up. For the calls
32 * are coalesced, note that they are all idempotent.
Joe Onoratof3f0e052010-05-14 18:49:29 -070033 */
Joe Onorato808182d2010-07-09 18:52:06 -040034public class CommandQueue extends IStatusBar.Stub {
Daniel Sandler1d4d30a2011-04-28 12:35:29 -040035 private static final int INDEX_MASK = 0xffff;
36 private static final int MSG_SHIFT = 16;
37 private static final int MSG_MASK = 0xffff << MSG_SHIFT;
Joe Onorato0cbda992010-05-02 16:28:15 -070038
Daniel Sandler1d4d30a2011-04-28 12:35:29 -040039 private static final int OP_SET_ICON = 1;
Joe Onorato0cbda992010-05-02 16:28:15 -070040 private static final int OP_REMOVE_ICON = 2;
41
Svetoslav Ganove20a1772012-09-25 16:07:46 -070042 private static final int MSG_ICON = 1 << MSG_SHIFT;
Christoph Studere71fefc2014-06-24 16:16:49 +020043 private static final int MSG_DISABLE = 2 << MSG_SHIFT;
44 private static final int MSG_EXPAND_NOTIFICATIONS = 3 << MSG_SHIFT;
45 private static final int MSG_COLLAPSE_PANELS = 4 << MSG_SHIFT;
46 private static final int MSG_EXPAND_SETTINGS = 5 << MSG_SHIFT;
47 private static final int MSG_SET_SYSTEMUI_VISIBILITY = 6 << MSG_SHIFT;
48 private static final int MSG_TOP_APP_WINDOW_CHANGED = 7 << MSG_SHIFT;
49 private static final int MSG_SHOW_IME_BUTTON = 8 << MSG_SHIFT;
50 private static final int MSG_SET_HARD_KEYBOARD_STATUS = 9 << MSG_SHIFT;
51 private static final int MSG_TOGGLE_RECENT_APPS = 10 << MSG_SHIFT;
52 private static final int MSG_PRELOAD_RECENT_APPS = 11 << MSG_SHIFT;
53 private static final int MSG_CANCEL_PRELOAD_RECENT_APPS = 12 << MSG_SHIFT;
54 private static final int MSG_SET_WINDOW_STATE = 13 << MSG_SHIFT;
55 private static final int MSG_SHOW_RECENT_APPS = 14 << MSG_SHIFT;
56 private static final int MSG_HIDE_RECENT_APPS = 15 << MSG_SHIFT;
John Spurlockcad57682014-07-26 17:09:56 -040057 private static final int MSG_BUZZ_BEEP_BLINKED = 16 << MSG_SHIFT;
Daniel Sandler328310c2011-09-23 15:56:52 -040058
Jim Miller9a720f52012-05-30 03:19:43 -070059 public static final int FLAG_EXCLUDE_NONE = 0;
60 public static final int FLAG_EXCLUDE_SEARCH_PANEL = 1 << 0;
61 public static final int FLAG_EXCLUDE_RECENTS_PANEL = 1 << 1;
62 public static final int FLAG_EXCLUDE_NOTIFICATION_PANEL = 1 << 2;
63 public static final int FLAG_EXCLUDE_INPUT_METHODS_PANEL = 1 << 3;
64 public static final int FLAG_EXCLUDE_COMPAT_MODE_PANEL = 1 << 4;
65
Jason Monkb605fec2014-05-02 17:04:10 -040066 private static final String SHOW_IME_SWITCHER_KEY = "showImeSwitcherKey";
67
Joe Onorato0cbda992010-05-02 16:28:15 -070068 private StatusBarIconList mList;
69 private Callbacks mCallbacks;
70 private Handler mHandler = new H();
71
72 /**
73 * These methods are called back on the main thread.
74 */
75 public interface Callbacks {
76 public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon);
77 public void updateIcon(String slot, int index, int viewIndex,
78 StatusBarIcon old, StatusBarIcon icon);
79 public void removeIcon(String slot, int index, int viewIndex);
Jorim Jaggi2580a9762014-06-25 03:08:25 +020080 public void disable(int state, boolean animate);
Daniel Sandler11cf1782012-09-27 14:03:08 -040081 public void animateExpandNotificationsPanel();
82 public void animateCollapsePanels(int flags);
83 public void animateExpandSettingsPanel();
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -070084 public void setSystemUiVisibility(int vis, int mask);
Dianne Hackborn7d049322011-06-14 15:00:32 -070085 public void topAppWindowChanged(boolean visible);
Jason Monkb605fec2014-05-02 17:04:10 -040086 public void setImeWindowStatus(IBinder token, int vis, int backDisposition,
87 boolean showImeSwitcher);
Jeff Brown2992ea72011-01-28 22:04:14 -080088 public void setHardKeyboardStatus(boolean available, boolean enabled);
Winson Chung1e8d71b2014-05-16 17:05:22 -070089 public void showRecentApps(boolean triggeredFromAltTab);
Winson Chung6cb485f2014-05-19 10:30:43 -070090 public void hideRecentApps(boolean triggeredFromAltTab);
Michael Jurka3b1fc472011-06-13 10:54:40 -070091 public void toggleRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -070092 public void preloadRecentApps();
Winson Chung1e8d71b2014-05-16 17:05:22 -070093 public void cancelPreloadRecentApps();
Jim Millere898ac52012-04-06 17:10:57 -070094 public void showSearchPanel();
95 public void hideSearchPanel();
John Spurlock97642182013-07-29 17:58:39 -040096 public void setWindowState(int window, int state);
John Spurlockcad57682014-07-26 17:09:56 -040097 public void buzzBeepBlinked();
Joe Onorato0cbda992010-05-02 16:28:15 -070098 }
99
100 public CommandQueue(Callbacks callbacks, StatusBarIconList list) {
101 mCallbacks = callbacks;
102 mList = list;
103 }
104
105 public void setIcon(int index, StatusBarIcon icon) {
106 synchronized (mList) {
107 int what = MSG_ICON | index;
108 mHandler.removeMessages(what);
109 mHandler.obtainMessage(what, OP_SET_ICON, 0, icon.clone()).sendToTarget();
110 }
111 }
112
113 public void removeIcon(int index) {
114 synchronized (mList) {
115 int what = MSG_ICON | index;
116 mHandler.removeMessages(what);
117 mHandler.obtainMessage(what, OP_REMOVE_ICON, 0, null).sendToTarget();
118 }
119 }
120
Joe Onoratof3f0e052010-05-14 18:49:29 -0700121 public void disable(int state) {
122 synchronized (mList) {
123 mHandler.removeMessages(MSG_DISABLE);
124 mHandler.obtainMessage(MSG_DISABLE, state, 0, null).sendToTarget();
125 }
126 }
127
Daniel Sandler11cf1782012-09-27 14:03:08 -0400128 public void animateExpandNotificationsPanel() {
Joe Onorato4762c2d2010-05-17 15:42:59 -0700129 synchronized (mList) {
Svetoslav Ganove20a1772012-09-25 16:07:46 -0700130 mHandler.removeMessages(MSG_EXPAND_NOTIFICATIONS);
131 mHandler.sendEmptyMessage(MSG_EXPAND_NOTIFICATIONS);
Joe Onorato4762c2d2010-05-17 15:42:59 -0700132 }
133 }
134
Daniel Sandler11cf1782012-09-27 14:03:08 -0400135 public void animateCollapsePanels() {
Svetoslav Ganove20a1772012-09-25 16:07:46 -0700136 synchronized (mList) {
Daniel Sandler11cf1782012-09-27 14:03:08 -0400137 mHandler.removeMessages(MSG_COLLAPSE_PANELS);
138 mHandler.sendEmptyMessage(MSG_COLLAPSE_PANELS);
Svetoslav Ganove20a1772012-09-25 16:07:46 -0700139 }
Jim Miller9a720f52012-05-30 03:19:43 -0700140 }
141
Daniel Sandler11cf1782012-09-27 14:03:08 -0400142 public void animateExpandSettingsPanel() {
Joe Onorato4762c2d2010-05-17 15:42:59 -0700143 synchronized (mList) {
Daniel Sandler11cf1782012-09-27 14:03:08 -0400144 mHandler.removeMessages(MSG_EXPAND_SETTINGS);
145 mHandler.sendEmptyMessage(MSG_EXPAND_SETTINGS);
Joe Onorato4762c2d2010-05-17 15:42:59 -0700146 }
147 }
148
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700149 public void setSystemUiVisibility(int vis, int mask) {
Joe Onorato93056472010-09-10 10:30:46 -0400150 synchronized (mList) {
Daniel Sandler60ee2562011-07-22 12:34:33 -0400151 mHandler.removeMessages(MSG_SET_SYSTEMUI_VISIBILITY);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700152 mHandler.obtainMessage(MSG_SET_SYSTEMUI_VISIBILITY, vis, mask, null).sendToTarget();
Joe Onorato93056472010-09-10 10:30:46 -0400153 }
154 }
155
Dianne Hackborn7d049322011-06-14 15:00:32 -0700156 public void topAppWindowChanged(boolean menuVisible) {
Daniel Sandlere02d8082010-10-08 15:13:22 -0400157 synchronized (mList) {
Dianne Hackborn7d049322011-06-14 15:00:32 -0700158 mHandler.removeMessages(MSG_TOP_APP_WINDOW_CHANGED);
159 mHandler.obtainMessage(MSG_TOP_APP_WINDOW_CHANGED, menuVisible ? 1 : 0, 0,
160 null).sendToTarget();
Daniel Sandlere02d8082010-10-08 15:13:22 -0400161 }
162 }
163
Jason Monkb605fec2014-05-02 17:04:10 -0400164 public void setImeWindowStatus(IBinder token, int vis, int backDisposition,
165 boolean showImeSwitcher) {
satok06487a52010-10-29 11:37:18 +0900166 synchronized (mList) {
167 mHandler.removeMessages(MSG_SHOW_IME_BUTTON);
Jason Monkb605fec2014-05-02 17:04:10 -0400168 Message m = mHandler.obtainMessage(MSG_SHOW_IME_BUTTON, vis, backDisposition, token);
169 m.getData().putBoolean(SHOW_IME_SWITCHER_KEY, showImeSwitcher);
170 m.sendToTarget();
satok06487a52010-10-29 11:37:18 +0900171 }
172 }
173
Jeff Brown2992ea72011-01-28 22:04:14 -0800174 public void setHardKeyboardStatus(boolean available, boolean enabled) {
175 synchronized (mList) {
176 mHandler.removeMessages(MSG_SET_HARD_KEYBOARD_STATUS);
177 mHandler.obtainMessage(MSG_SET_HARD_KEYBOARD_STATUS,
178 available ? 1 : 0, enabled ? 1 : 0).sendToTarget();
179 }
180 }
181
Winson Chung1e8d71b2014-05-16 17:05:22 -0700182 public void showRecentApps(boolean triggeredFromAltTab) {
183 synchronized (mList) {
184 mHandler.removeMessages(MSG_SHOW_RECENT_APPS);
185 mHandler.obtainMessage(MSG_SHOW_RECENT_APPS,
186 triggeredFromAltTab ? 1 : 0, 0, null).sendToTarget();
187 }
188 }
189
Winson Chung6cb485f2014-05-19 10:30:43 -0700190 public void hideRecentApps(boolean triggeredFromAltTab) {
Winson Chung1e8d71b2014-05-16 17:05:22 -0700191 synchronized (mList) {
192 mHandler.removeMessages(MSG_HIDE_RECENT_APPS);
Winson Chung6cb485f2014-05-19 10:30:43 -0700193 mHandler.obtainMessage(MSG_HIDE_RECENT_APPS,
194 triggeredFromAltTab ? 1 : 0, 0, null).sendToTarget();
Winson Chung1e8d71b2014-05-16 17:05:22 -0700195 }
196 }
197
Michael Jurka3b1fc472011-06-13 10:54:40 -0700198 public void toggleRecentApps() {
199 synchronized (mList) {
200 mHandler.removeMessages(MSG_TOGGLE_RECENT_APPS);
201 mHandler.obtainMessage(MSG_TOGGLE_RECENT_APPS, 0, 0, null).sendToTarget();
202 }
203 }
204
Michael Jurka7f2668c2012-03-27 07:49:52 -0700205 public void preloadRecentApps() {
206 synchronized (mList) {
207 mHandler.removeMessages(MSG_PRELOAD_RECENT_APPS);
208 mHandler.obtainMessage(MSG_PRELOAD_RECENT_APPS, 0, 0, null).sendToTarget();
209 }
210 }
211
212 public void cancelPreloadRecentApps() {
213 synchronized (mList) {
214 mHandler.removeMessages(MSG_CANCEL_PRELOAD_RECENT_APPS);
215 mHandler.obtainMessage(MSG_CANCEL_PRELOAD_RECENT_APPS, 0, 0, null).sendToTarget();
216 }
217 }
218
John Spurlock97642182013-07-29 17:58:39 -0400219 public void setWindowState(int window, int state) {
220 synchronized (mList) {
John Spurlock5b9145b2013-08-20 15:13:47 -0400221 // don't coalesce these
John Spurlock97642182013-07-29 17:58:39 -0400222 mHandler.obtainMessage(MSG_SET_WINDOW_STATE, window, state, null).sendToTarget();
223 }
224 }
225
John Spurlockcad57682014-07-26 17:09:56 -0400226 public void buzzBeepBlinked() {
227 synchronized (mList) {
228 mHandler.removeMessages(MSG_BUZZ_BEEP_BLINKED);
229 mHandler.sendEmptyMessage(MSG_BUZZ_BEEP_BLINKED);
230 }
231 }
Jorim Jaggi380ecb82014-03-14 17:25:20 +0100232
Joe Onorato0cbda992010-05-02 16:28:15 -0700233 private final class H extends Handler {
234 public void handleMessage(Message msg) {
Joe Onoratof3f0e052010-05-14 18:49:29 -0700235 final int what = msg.what & MSG_MASK;
Joe Onorato66d7d012010-05-14 10:05:10 -0700236 switch (what) {
Joe Onorato0cbda992010-05-02 16:28:15 -0700237 case MSG_ICON: {
Joe Onoratof3f0e052010-05-14 18:49:29 -0700238 final int index = msg.what & INDEX_MASK;
239 final int viewIndex = mList.getViewIndex(index);
Joe Onorato0cbda992010-05-02 16:28:15 -0700240 switch (msg.arg1) {
241 case OP_SET_ICON: {
242 StatusBarIcon icon = (StatusBarIcon)msg.obj;
243 StatusBarIcon old = mList.getIcon(index);
244 if (old == null) {
245 mList.setIcon(index, icon);
246 mCallbacks.addIcon(mList.getSlot(index), index, viewIndex, icon);
247 } else {
248 mList.setIcon(index, icon);
249 mCallbacks.updateIcon(mList.getSlot(index), index, viewIndex,
250 old, icon);
251 }
252 break;
253 }
254 case OP_REMOVE_ICON:
Joe Onorato795f2842010-09-27 11:34:46 -0700255 if (mList.getIcon(index) != null) {
256 mList.removeIcon(index);
257 mCallbacks.removeIcon(mList.getSlot(index), index, viewIndex);
258 }
Joe Onorato0cbda992010-05-02 16:28:15 -0700259 break;
260 }
261 break;
Joe Onoratof3f0e052010-05-14 18:49:29 -0700262 }
263 case MSG_DISABLE:
Jorim Jaggi2580a9762014-06-25 03:08:25 +0200264 mCallbacks.disable(msg.arg1, true /* animate */);
Joe Onoratof3f0e052010-05-14 18:49:29 -0700265 break;
Svetoslav Ganove20a1772012-09-25 16:07:46 -0700266 case MSG_EXPAND_NOTIFICATIONS:
Daniel Sandler11cf1782012-09-27 14:03:08 -0400267 mCallbacks.animateExpandNotificationsPanel();
Svetoslav Ganove20a1772012-09-25 16:07:46 -0700268 break;
Daniel Sandler11cf1782012-09-27 14:03:08 -0400269 case MSG_COLLAPSE_PANELS:
270 mCallbacks.animateCollapsePanels(0);
Svetoslav Ganove20a1772012-09-25 16:07:46 -0700271 break;
Daniel Sandler11cf1782012-09-27 14:03:08 -0400272 case MSG_EXPAND_SETTINGS:
273 mCallbacks.animateExpandSettingsPanel();
Joe Onorato93056472010-09-10 10:30:46 -0400274 break;
Daniel Sandler60ee2562011-07-22 12:34:33 -0400275 case MSG_SET_SYSTEMUI_VISIBILITY:
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700276 mCallbacks.setSystemUiVisibility(msg.arg1, msg.arg2);
Joe Onorato93056472010-09-10 10:30:46 -0400277 break;
Dianne Hackborn7d049322011-06-14 15:00:32 -0700278 case MSG_TOP_APP_WINDOW_CHANGED:
279 mCallbacks.topAppWindowChanged(msg.arg1 != 0);
Daniel Sandlere02d8082010-10-08 15:13:22 -0400280 break;
satok06487a52010-10-29 11:37:18 +0900281 case MSG_SHOW_IME_BUTTON:
Jason Monkb605fec2014-05-02 17:04:10 -0400282 mCallbacks.setImeWindowStatus((IBinder) msg.obj, msg.arg1, msg.arg2,
283 msg.getData().getBoolean(SHOW_IME_SWITCHER_KEY, false));
satok06487a52010-10-29 11:37:18 +0900284 break;
Jeff Brown2992ea72011-01-28 22:04:14 -0800285 case MSG_SET_HARD_KEYBOARD_STATUS:
286 mCallbacks.setHardKeyboardStatus(msg.arg1 != 0, msg.arg2 != 0);
287 break;
Winson Chung1e8d71b2014-05-16 17:05:22 -0700288 case MSG_SHOW_RECENT_APPS:
289 mCallbacks.showRecentApps(msg.arg1 != 0);
290 break;
291 case MSG_HIDE_RECENT_APPS:
Winson Chung6cb485f2014-05-19 10:30:43 -0700292 mCallbacks.hideRecentApps(msg.arg1 != 0);
Winson Chung1e8d71b2014-05-16 17:05:22 -0700293 break;
Michael Jurka3b1fc472011-06-13 10:54:40 -0700294 case MSG_TOGGLE_RECENT_APPS:
295 mCallbacks.toggleRecentApps();
296 break;
Michael Jurka7f2668c2012-03-27 07:49:52 -0700297 case MSG_PRELOAD_RECENT_APPS:
298 mCallbacks.preloadRecentApps();
299 break;
300 case MSG_CANCEL_PRELOAD_RECENT_APPS:
301 mCallbacks.cancelPreloadRecentApps();
302 break;
John Spurlock97642182013-07-29 17:58:39 -0400303 case MSG_SET_WINDOW_STATE:
304 mCallbacks.setWindowState(msg.arg1, msg.arg2);
305 break;
John Spurlockcad57682014-07-26 17:09:56 -0400306 case MSG_BUZZ_BEEP_BLINKED:
307 mCallbacks.buzzBeepBlinked();
308 break;
Jorim Jaggi5cf17872014-03-26 18:31:48 +0100309
Joe Onorato0cbda992010-05-02 16:28:15 -0700310 }
311 }
312 }
313}
314