blob: 5c0df179dd27fc04a0867e423651a3cde5779ec0 [file] [log] [blame]
Jason Monkf85fc962017-04-19 17:13:41 -04001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
5 * except in compliance with the License. You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software distributed under the
10 * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
11 * KIND, either express or implied. See the License for the specific language governing
12 * permissions and limitations under the License.
13 */
14
15package com.android.systemui;
16
17import android.os.RemoteException;
18import android.util.Log;
19import android.view.IDockedStackListener;
20import android.view.WindowManagerGlobal;
21
Jason Monk3b9357f2017-07-14 09:40:54 -040022import java.lang.ref.WeakReference;
23import java.util.ArrayList;
Jason Monkf85fc962017-04-19 17:13:41 -040024import java.util.function.Consumer;
25
26/**
27 * Utility wrapper to listen for whether or not a docked stack exists, to be
28 * used for things like the different overview icon in that mode.
29 */
Jason Monk3b9357f2017-07-14 09:40:54 -040030public class DockedStackExistsListener {
Jason Monkf85fc962017-04-19 17:13:41 -040031
32 private static final String TAG = "DockedStackExistsListener";
33
Jason Monk3b9357f2017-07-14 09:40:54 -040034 private static ArrayList<WeakReference<Consumer<Boolean>>> sCallbacks = new ArrayList<>();
Jason Monkaa74bf82017-08-15 11:34:33 -040035 private static boolean mLastExists;
Jason Monkf85fc962017-04-19 17:13:41 -040036
Jason Monk3b9357f2017-07-14 09:40:54 -040037 static {
38 try {
39 WindowManagerGlobal.getWindowManagerService().registerDockedStackListener(
40 new IDockedStackListener.Stub() {
41 @Override
42 public void onDividerVisibilityChanged(boolean b) throws RemoteException {
43
44 }
45
46 @Override
47 public void onDockedStackExistsChanged(boolean exists)
48 throws RemoteException {
49 DockedStackExistsListener.onDockedStackExistsChanged(exists);
50 }
51
52 @Override
53 public void onDockedStackMinimizedChanged(boolean b, long l, boolean b1)
54 throws RemoteException {
55
56 }
57
58 @Override
59 public void onAdjustedForImeChanged(boolean b, long l)
60 throws RemoteException {
61
62 }
63
64 @Override
65 public void onDockSideChanged(int i) throws RemoteException {
66
67 }
68 });
69 } catch (RemoteException e) {
70 Log.e(TAG, "Failed registering docked stack exists listener", e);
71 }
Jason Monkf85fc962017-04-19 17:13:41 -040072 }
73
Jason Monkf85fc962017-04-19 17:13:41 -040074
Jason Monk3b9357f2017-07-14 09:40:54 -040075 private static void onDockedStackExistsChanged(boolean exists) {
Jason Monkaa74bf82017-08-15 11:34:33 -040076 mLastExists = exists;
Jason Monk3b9357f2017-07-14 09:40:54 -040077 synchronized (sCallbacks) {
Jason Monk32e3bb52017-07-27 12:35:41 -040078 sCallbacks.removeIf(wf -> {
79 Consumer<Boolean> l = wf.get();
80 if (l != null) l.accept(exists);
81 return l == null;
82 });
Jason Monk3b9357f2017-07-14 09:40:54 -040083 }
Jason Monkf85fc962017-04-19 17:13:41 -040084 }
85
86 public static void register(Consumer<Boolean> callback) {
Jason Monkaa74bf82017-08-15 11:34:33 -040087 callback.accept(mLastExists);
Jason Monk3b9357f2017-07-14 09:40:54 -040088 synchronized (sCallbacks) {
89 sCallbacks.add(new WeakReference<>(callback));
Jason Monkf85fc962017-04-19 17:13:41 -040090 }
91 }
92}