blob: a00d95a97a5e5823876bc93f93196ee78aaa60ed [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;
22
23import com.android.internal.statusbar.IStatusBar;
24import com.android.internal.statusbar.StatusBarIcon;
25import com.android.internal.statusbar.StatusBarIconList;
Joe Onoratoa0c56fe2010-05-20 10:21:52 -070026import com.android.internal.statusbar.StatusBarNotification;
Joe Onorato0cbda992010-05-02 16:28:15 -070027
Joe Onoratof3f0e052010-05-14 18:49:29 -070028/**
29 * This class takes the functions from IStatusBar that come in on
30 * binder pool threads and posts messages to get them onto the main
31 * thread, and calls onto Callbacks. It also takes care of
Joe Onorato4762c2d2010-05-17 15:42:59 -070032 * coalescing these calls so they don't stack up. For the calls
33 * are coalesced, note that they are all idempotent.
Joe Onoratof3f0e052010-05-14 18:49:29 -070034 */
Joe Onorato808182d2010-07-09 18:52:06 -040035public class CommandQueue extends IStatusBar.Stub {
Joe Onorato514ad6632010-05-13 18:49:00 -070036 private static final String TAG = "StatusBar.CommandQueue";
Joe Onorato0cbda992010-05-02 16:28:15 -070037
Daniel Sandler1d4d30a2011-04-28 12:35:29 -040038 private static final int INDEX_MASK = 0xffff;
39 private static final int MSG_SHIFT = 16;
40 private static final int MSG_MASK = 0xffff << MSG_SHIFT;
Joe Onorato0cbda992010-05-02 16:28:15 -070041
Daniel Sandler1d4d30a2011-04-28 12:35:29 -040042
43 private static final int MSG_ICON = 1 << MSG_SHIFT;
44 private static final int OP_SET_ICON = 1;
Joe Onorato0cbda992010-05-02 16:28:15 -070045 private static final int OP_REMOVE_ICON = 2;
46
Daniel Sandler1d4d30a2011-04-28 12:35:29 -040047 private static final int MSG_ADD_NOTIFICATION = 2 << MSG_SHIFT;
48 private static final int MSG_UPDATE_NOTIFICATION = 3 << MSG_SHIFT;
49 private static final int MSG_REMOVE_NOTIFICATION = 4 << MSG_SHIFT;
Joe Onoratof3f0e052010-05-14 18:49:29 -070050
Daniel Sandler1d4d30a2011-04-28 12:35:29 -040051 private static final int MSG_DISABLE = 5 << MSG_SHIFT;
Joe Onoratoa0c56fe2010-05-20 10:21:52 -070052
Daniel Sandler1d4d30a2011-04-28 12:35:29 -040053 private static final int MSG_SET_VISIBILITY = 6 << MSG_SHIFT;
54 private static final int OP_EXPAND = 1;
55 private static final int OP_COLLAPSE = 2;
Joe Onorato4762c2d2010-05-17 15:42:59 -070056
Daniel Sandler60ee2562011-07-22 12:34:33 -040057 private static final int MSG_SET_SYSTEMUI_VISIBILITY = 7 << MSG_SHIFT;
Joe Onorato93056472010-09-10 10:30:46 -040058
Dianne Hackborn3fe9cc52011-06-14 16:13:26 -070059 private static final int MSG_TOP_APP_WINDOW_CHANGED = 8 << MSG_SHIFT;
Daniel Sandler1d4d30a2011-04-28 12:35:29 -040060 private static final int MSG_SHOW_IME_BUTTON = 9 << MSG_SHIFT;
61 private static final int MSG_SET_HARD_KEYBOARD_STATUS = 10 << MSG_SHIFT;
Jim Millere898ac52012-04-06 17:10:57 -070062
Dianne Hackborndf89e652011-10-06 22:35:11 -070063 private static final int MSG_TOGGLE_RECENT_APPS = 11 << MSG_SHIFT;
Michael Jurka7f2668c2012-03-27 07:49:52 -070064 private static final int MSG_PRELOAD_RECENT_APPS = 12 << MSG_SHIFT;
65 private static final int MSG_CANCEL_PRELOAD_RECENT_APPS = 13 << MSG_SHIFT;
Daniel Sandler1d4d30a2011-04-28 12:35:29 -040066
Michael Jurka7f2668c2012-03-27 07:49:52 -070067 private static final int MSG_SET_NAVIGATION_ICON_HINTS = 14 << MSG_SHIFT;
Daniel Sandler328310c2011-09-23 15:56:52 -040068
Jim Miller9a720f52012-05-30 03:19:43 -070069 public static final int FLAG_EXCLUDE_NONE = 0;
70 public static final int FLAG_EXCLUDE_SEARCH_PANEL = 1 << 0;
71 public static final int FLAG_EXCLUDE_RECENTS_PANEL = 1 << 1;
72 public static final int FLAG_EXCLUDE_NOTIFICATION_PANEL = 1 << 2;
73 public static final int FLAG_EXCLUDE_INPUT_METHODS_PANEL = 1 << 3;
74 public static final int FLAG_EXCLUDE_COMPAT_MODE_PANEL = 1 << 4;
75
Joe Onorato0cbda992010-05-02 16:28:15 -070076 private StatusBarIconList mList;
77 private Callbacks mCallbacks;
78 private Handler mHandler = new H();
79
Joe Onoratoa0c56fe2010-05-20 10:21:52 -070080 private class NotificationQueueEntry {
81 IBinder key;
82 StatusBarNotification notification;
83 }
84
Joe Onorato0cbda992010-05-02 16:28:15 -070085 /**
86 * These methods are called back on the main thread.
87 */
88 public interface Callbacks {
89 public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon);
90 public void updateIcon(String slot, int index, int viewIndex,
91 StatusBarIcon old, StatusBarIcon icon);
92 public void removeIcon(String slot, int index, int viewIndex);
Joe Onoratoa0c56fe2010-05-20 10:21:52 -070093 public void addNotification(IBinder key, StatusBarNotification notification);
94 public void updateNotification(IBinder key, StatusBarNotification notification);
95 public void removeNotification(IBinder key);
Joe Onoratof3f0e052010-05-14 18:49:29 -070096 public void disable(int state);
Joe Onorato4762c2d2010-05-17 15:42:59 -070097 public void animateExpand();
Jim Miller9a720f52012-05-30 03:19:43 -070098 public void animateCollapse(int flags);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -070099 public void setSystemUiVisibility(int vis, int mask);
Dianne Hackborn7d049322011-06-14 15:00:32 -0700100 public void topAppWindowChanged(boolean visible);
Joe Onorato857fd9b2011-01-27 15:08:35 -0800101 public void setImeWindowStatus(IBinder token, int vis, int backDisposition);
Jeff Brown2992ea72011-01-28 22:04:14 -0800102 public void setHardKeyboardStatus(boolean available, boolean enabled);
Michael Jurka3b1fc472011-06-13 10:54:40 -0700103 public void toggleRecentApps();
Michael Jurka7f2668c2012-03-27 07:49:52 -0700104 public void preloadRecentApps();
Jim Millere898ac52012-04-06 17:10:57 -0700105 public void showSearchPanel();
106 public void hideSearchPanel();
Michael Jurka7f2668c2012-03-27 07:49:52 -0700107 public void cancelPreloadRecentApps();
Daniel Sandler328310c2011-09-23 15:56:52 -0400108 public void setNavigationIconHints(int hints);
Joe Onorato0cbda992010-05-02 16:28:15 -0700109 }
110
111 public CommandQueue(Callbacks callbacks, StatusBarIconList list) {
112 mCallbacks = callbacks;
113 mList = list;
114 }
115
116 public void setIcon(int index, StatusBarIcon icon) {
117 synchronized (mList) {
118 int what = MSG_ICON | index;
119 mHandler.removeMessages(what);
120 mHandler.obtainMessage(what, OP_SET_ICON, 0, icon.clone()).sendToTarget();
121 }
122 }
123
124 public void removeIcon(int index) {
125 synchronized (mList) {
126 int what = MSG_ICON | index;
127 mHandler.removeMessages(what);
128 mHandler.obtainMessage(what, OP_REMOVE_ICON, 0, null).sendToTarget();
129 }
130 }
131
Joe Onoratoa0c56fe2010-05-20 10:21:52 -0700132 public void addNotification(IBinder key, StatusBarNotification notification) {
133 synchronized (mList) {
134 NotificationQueueEntry ne = new NotificationQueueEntry();
135 ne.key = key;
136 ne.notification = notification;
137 mHandler.obtainMessage(MSG_ADD_NOTIFICATION, 0, 0, ne).sendToTarget();
138 }
139 }
140
141 public void updateNotification(IBinder key, StatusBarNotification notification) {
142 synchronized (mList) {
143 NotificationQueueEntry ne = new NotificationQueueEntry();
144 ne.key = key;
145 ne.notification = notification;
146 mHandler.obtainMessage(MSG_UPDATE_NOTIFICATION, 0, 0, ne).sendToTarget();
147 }
148 }
149
150 public void removeNotification(IBinder key) {
151 synchronized (mList) {
152 mHandler.obtainMessage(MSG_REMOVE_NOTIFICATION, 0, 0, key).sendToTarget();
153 }
154 }
155
Joe Onoratof3f0e052010-05-14 18:49:29 -0700156 public void disable(int state) {
157 synchronized (mList) {
158 mHandler.removeMessages(MSG_DISABLE);
159 mHandler.obtainMessage(MSG_DISABLE, state, 0, null).sendToTarget();
160 }
161 }
162
Joe Onorato4762c2d2010-05-17 15:42:59 -0700163 public void animateExpand() {
164 synchronized (mList) {
165 mHandler.removeMessages(MSG_SET_VISIBILITY);
166 mHandler.obtainMessage(MSG_SET_VISIBILITY, OP_EXPAND, 0, null).sendToTarget();
167 }
168 }
169
170 public void animateCollapse() {
Jim Miller9a720f52012-05-30 03:19:43 -0700171 animateCollapse(CommandQueue.FLAG_EXCLUDE_NONE);
172 }
173
174 public void animateCollapse(int flags) {
Joe Onorato4762c2d2010-05-17 15:42:59 -0700175 synchronized (mList) {
176 mHandler.removeMessages(MSG_SET_VISIBILITY);
Jim Miller9a720f52012-05-30 03:19:43 -0700177 mHandler.obtainMessage(MSG_SET_VISIBILITY, OP_COLLAPSE, flags, null).sendToTarget();
Joe Onorato4762c2d2010-05-17 15:42:59 -0700178 }
179 }
180
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700181 public void setSystemUiVisibility(int vis, int mask) {
Joe Onorato93056472010-09-10 10:30:46 -0400182 synchronized (mList) {
Daniel Sandler60ee2562011-07-22 12:34:33 -0400183 mHandler.removeMessages(MSG_SET_SYSTEMUI_VISIBILITY);
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700184 mHandler.obtainMessage(MSG_SET_SYSTEMUI_VISIBILITY, vis, mask, null).sendToTarget();
Joe Onorato93056472010-09-10 10:30:46 -0400185 }
186 }
187
Dianne Hackborn7d049322011-06-14 15:00:32 -0700188 public void topAppWindowChanged(boolean menuVisible) {
Daniel Sandlere02d8082010-10-08 15:13:22 -0400189 synchronized (mList) {
Dianne Hackborn7d049322011-06-14 15:00:32 -0700190 mHandler.removeMessages(MSG_TOP_APP_WINDOW_CHANGED);
191 mHandler.obtainMessage(MSG_TOP_APP_WINDOW_CHANGED, menuVisible ? 1 : 0, 0,
192 null).sendToTarget();
Daniel Sandlere02d8082010-10-08 15:13:22 -0400193 }
194 }
195
Joe Onorato857fd9b2011-01-27 15:08:35 -0800196 public void setImeWindowStatus(IBinder token, int vis, int backDisposition) {
satok06487a52010-10-29 11:37:18 +0900197 synchronized (mList) {
198 mHandler.removeMessages(MSG_SHOW_IME_BUTTON);
Joe Onorato857fd9b2011-01-27 15:08:35 -0800199 mHandler.obtainMessage(MSG_SHOW_IME_BUTTON, vis, backDisposition, token)
200 .sendToTarget();
satok06487a52010-10-29 11:37:18 +0900201 }
202 }
203
Jeff Brown2992ea72011-01-28 22:04:14 -0800204 public void setHardKeyboardStatus(boolean available, boolean enabled) {
205 synchronized (mList) {
206 mHandler.removeMessages(MSG_SET_HARD_KEYBOARD_STATUS);
207 mHandler.obtainMessage(MSG_SET_HARD_KEYBOARD_STATUS,
208 available ? 1 : 0, enabled ? 1 : 0).sendToTarget();
209 }
210 }
211
Michael Jurka3b1fc472011-06-13 10:54:40 -0700212 public void toggleRecentApps() {
213 synchronized (mList) {
214 mHandler.removeMessages(MSG_TOGGLE_RECENT_APPS);
215 mHandler.obtainMessage(MSG_TOGGLE_RECENT_APPS, 0, 0, null).sendToTarget();
216 }
217 }
218
Michael Jurka7f2668c2012-03-27 07:49:52 -0700219 public void preloadRecentApps() {
220 synchronized (mList) {
221 mHandler.removeMessages(MSG_PRELOAD_RECENT_APPS);
222 mHandler.obtainMessage(MSG_PRELOAD_RECENT_APPS, 0, 0, null).sendToTarget();
223 }
224 }
225
226 public void cancelPreloadRecentApps() {
227 synchronized (mList) {
228 mHandler.removeMessages(MSG_CANCEL_PRELOAD_RECENT_APPS);
229 mHandler.obtainMessage(MSG_CANCEL_PRELOAD_RECENT_APPS, 0, 0, null).sendToTarget();
230 }
231 }
232
Daniel Sandler328310c2011-09-23 15:56:52 -0400233 public void setNavigationIconHints(int hints) {
234 synchronized (mList) {
235 mHandler.removeMessages(MSG_SET_NAVIGATION_ICON_HINTS);
236 mHandler.obtainMessage(MSG_SET_NAVIGATION_ICON_HINTS, hints, 0, null).sendToTarget();
237 }
238 }
239
Joe Onorato0cbda992010-05-02 16:28:15 -0700240 private final class H extends Handler {
241 public void handleMessage(Message msg) {
Joe Onoratof3f0e052010-05-14 18:49:29 -0700242 final int what = msg.what & MSG_MASK;
Joe Onorato66d7d012010-05-14 10:05:10 -0700243 switch (what) {
Joe Onorato0cbda992010-05-02 16:28:15 -0700244 case MSG_ICON: {
Joe Onoratof3f0e052010-05-14 18:49:29 -0700245 final int index = msg.what & INDEX_MASK;
246 final int viewIndex = mList.getViewIndex(index);
Joe Onorato0cbda992010-05-02 16:28:15 -0700247 switch (msg.arg1) {
248 case OP_SET_ICON: {
249 StatusBarIcon icon = (StatusBarIcon)msg.obj;
250 StatusBarIcon old = mList.getIcon(index);
251 if (old == null) {
252 mList.setIcon(index, icon);
253 mCallbacks.addIcon(mList.getSlot(index), index, viewIndex, icon);
254 } else {
255 mList.setIcon(index, icon);
256 mCallbacks.updateIcon(mList.getSlot(index), index, viewIndex,
257 old, icon);
258 }
259 break;
260 }
261 case OP_REMOVE_ICON:
Joe Onorato795f2842010-09-27 11:34:46 -0700262 if (mList.getIcon(index) != null) {
263 mList.removeIcon(index);
264 mCallbacks.removeIcon(mList.getSlot(index), index, viewIndex);
265 }
Joe Onorato0cbda992010-05-02 16:28:15 -0700266 break;
267 }
268 break;
Joe Onoratof3f0e052010-05-14 18:49:29 -0700269 }
Joe Onoratoa0c56fe2010-05-20 10:21:52 -0700270 case MSG_ADD_NOTIFICATION: {
271 final NotificationQueueEntry ne = (NotificationQueueEntry)msg.obj;
272 mCallbacks.addNotification(ne.key, ne.notification);
273 break;
274 }
275 case MSG_UPDATE_NOTIFICATION: {
276 final NotificationQueueEntry ne = (NotificationQueueEntry)msg.obj;
277 mCallbacks.updateNotification(ne.key, ne.notification);
278 break;
279 }
280 case MSG_REMOVE_NOTIFICATION: {
281 mCallbacks.removeNotification((IBinder)msg.obj);
282 break;
283 }
Joe Onoratof3f0e052010-05-14 18:49:29 -0700284 case MSG_DISABLE:
285 mCallbacks.disable(msg.arg1);
286 break;
Joe Onorato4762c2d2010-05-17 15:42:59 -0700287 case MSG_SET_VISIBILITY:
288 if (msg.arg1 == OP_EXPAND) {
289 mCallbacks.animateExpand();
290 } else {
Jim Miller9a720f52012-05-30 03:19:43 -0700291 mCallbacks.animateCollapse(msg.arg2);
Joe Onorato4762c2d2010-05-17 15:42:59 -0700292 }
Joe Onorato93056472010-09-10 10:30:46 -0400293 break;
Daniel Sandler60ee2562011-07-22 12:34:33 -0400294 case MSG_SET_SYSTEMUI_VISIBILITY:
Dianne Hackborn3a3a6cf2012-03-26 10:24:04 -0700295 mCallbacks.setSystemUiVisibility(msg.arg1, msg.arg2);
Joe Onorato93056472010-09-10 10:30:46 -0400296 break;
Dianne Hackborn7d049322011-06-14 15:00:32 -0700297 case MSG_TOP_APP_WINDOW_CHANGED:
298 mCallbacks.topAppWindowChanged(msg.arg1 != 0);
Daniel Sandlere02d8082010-10-08 15:13:22 -0400299 break;
satok06487a52010-10-29 11:37:18 +0900300 case MSG_SHOW_IME_BUTTON:
Joe Onorato857fd9b2011-01-27 15:08:35 -0800301 mCallbacks.setImeWindowStatus((IBinder)msg.obj, msg.arg1, msg.arg2);
satok06487a52010-10-29 11:37:18 +0900302 break;
Jeff Brown2992ea72011-01-28 22:04:14 -0800303 case MSG_SET_HARD_KEYBOARD_STATUS:
304 mCallbacks.setHardKeyboardStatus(msg.arg1 != 0, msg.arg2 != 0);
305 break;
Michael Jurka3b1fc472011-06-13 10:54:40 -0700306 case MSG_TOGGLE_RECENT_APPS:
307 mCallbacks.toggleRecentApps();
308 break;
Michael Jurka7f2668c2012-03-27 07:49:52 -0700309 case MSG_PRELOAD_RECENT_APPS:
310 mCallbacks.preloadRecentApps();
311 break;
312 case MSG_CANCEL_PRELOAD_RECENT_APPS:
313 mCallbacks.cancelPreloadRecentApps();
314 break;
Daniel Sandler328310c2011-09-23 15:56:52 -0400315 case MSG_SET_NAVIGATION_ICON_HINTS:
316 mCallbacks.setNavigationIconHints(msg.arg1);
317 break;
Joe Onorato0cbda992010-05-02 16:28:15 -0700318 }
319 }
320 }
321}
322