blob: 81e4db3b2561f0448eaa9d37a43563a2bfd47afd [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
Jason Monk3b9357f2017-07-14 09:40:54 -040017import android.os.IBinder;
Jason Monkf85fc962017-04-19 17:13:41 -040018import android.os.RemoteException;
19import android.util.Log;
20import android.view.IDockedStackListener;
21import android.view.WindowManagerGlobal;
22
Jason Monk3b9357f2017-07-14 09:40:54 -040023import java.lang.ref.WeakReference;
24import java.util.ArrayList;
Jason Monkf85fc962017-04-19 17:13:41 -040025import java.util.function.Consumer;
26
27/**
28 * Utility wrapper to listen for whether or not a docked stack exists, to be
29 * used for things like the different overview icon in that mode.
30 */
Jason Monk3b9357f2017-07-14 09:40:54 -040031public class DockedStackExistsListener {
Jason Monkf85fc962017-04-19 17:13:41 -040032
33 private static final String TAG = "DockedStackExistsListener";
34
Jason Monk3b9357f2017-07-14 09:40:54 -040035 private static ArrayList<WeakReference<Consumer<Boolean>>> sCallbacks = new ArrayList<>();
Jason Monkaa74bf82017-08-15 11:34:33 -040036 private static boolean mLastExists;
Jason Monkf85fc962017-04-19 17:13:41 -040037
Jason Monk3b9357f2017-07-14 09:40:54 -040038 static {
39 try {
40 WindowManagerGlobal.getWindowManagerService().registerDockedStackListener(
41 new IDockedStackListener.Stub() {
42 @Override
43 public void onDividerVisibilityChanged(boolean b) throws RemoteException {
44
45 }
46
47 @Override
48 public void onDockedStackExistsChanged(boolean exists)
49 throws RemoteException {
50 DockedStackExistsListener.onDockedStackExistsChanged(exists);
51 }
52
53 @Override
54 public void onDockedStackMinimizedChanged(boolean b, long l, boolean b1)
55 throws RemoteException {
56
57 }
58
59 @Override
60 public void onAdjustedForImeChanged(boolean b, long l)
61 throws RemoteException {
62
63 }
64
65 @Override
66 public void onDockSideChanged(int i) throws RemoteException {
67
68 }
69 });
70 } catch (RemoteException e) {
71 Log.e(TAG, "Failed registering docked stack exists listener", e);
72 }
Jason Monkf85fc962017-04-19 17:13:41 -040073 }
74
Jason Monkf85fc962017-04-19 17:13:41 -040075
Jason Monk3b9357f2017-07-14 09:40:54 -040076 private static void onDockedStackExistsChanged(boolean exists) {
Jason Monkaa74bf82017-08-15 11:34:33 -040077 mLastExists = exists;
Jason Monk3b9357f2017-07-14 09:40:54 -040078 synchronized (sCallbacks) {
Jason Monk32e3bb52017-07-27 12:35:41 -040079 sCallbacks.removeIf(wf -> {
80 Consumer<Boolean> l = wf.get();
81 if (l != null) l.accept(exists);
82 return l == null;
83 });
Jason Monk3b9357f2017-07-14 09:40:54 -040084 }
Jason Monkf85fc962017-04-19 17:13:41 -040085 }
86
87 public static void register(Consumer<Boolean> callback) {
Jason Monkaa74bf82017-08-15 11:34:33 -040088 callback.accept(mLastExists);
Jason Monk3b9357f2017-07-14 09:40:54 -040089 synchronized (sCallbacks) {
90 sCallbacks.add(new WeakReference<>(callback));
Jason Monkf85fc962017-04-19 17:13:41 -040091 }
92 }
93}