blob: 8d8b726f8fa83113ac3015193b0ee032785c8708 [file] [log] [blame]
Matthew Ng13dbf872017-10-27 11:02:14 -07001/*
2 * Copyright (C) 2017 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
17package com.android.systemui;
18
Matthew Ng30c0a022017-11-10 14:06:29 -080019import android.content.BroadcastReceiver;
Matthew Ng13dbf872017-10-27 11:02:14 -070020import android.content.ComponentName;
21import android.content.Context;
22import android.content.Intent;
Matthew Ng30c0a022017-11-10 14:06:29 -080023import android.content.IntentFilter;
Matthew Ng13dbf872017-10-27 11:02:14 -070024import android.content.ServiceConnection;
Winson Chung38d31c22017-11-08 14:32:32 -080025import android.graphics.Rect;
26import android.os.Binder;
Matthew Ng13dbf872017-10-27 11:02:14 -070027import android.os.Handler;
28import android.os.IBinder;
Matthew Ngfac87832017-11-10 11:27:29 -080029import android.os.Looper;
Matthew Ng30c0a022017-11-10 14:06:29 -080030import android.os.PatternMatcher;
Matthew Ng13dbf872017-10-27 11:02:14 -070031import android.os.RemoteException;
32import android.os.UserHandle;
33import android.util.Log;
Winson Chung38d31c22017-11-08 14:32:32 -080034import android.view.SurfaceControl;
35
Winson Chung11f53e92017-11-13 17:45:12 -080036import com.android.systemui.OverviewProxyService.OverviewProxyListener;
Winson Chung38d31c22017-11-08 14:32:32 -080037import com.android.systemui.shared.recents.IOverviewProxy;
38import com.android.systemui.shared.recents.ISystemUiProxy;
Winson Chung11f53e92017-11-13 17:45:12 -080039import com.android.systemui.shared.system.GraphicBufferCompat;
Winson Chungcaf2b812018-01-26 10:29:46 -080040import com.android.systemui.statusbar.phone.StatusBar;
Matthew Ng7d05e772017-11-09 14:41:07 -080041import com.android.systemui.statusbar.policy.CallbackController;
Matthew Ng13dbf872017-10-27 11:02:14 -070042import com.android.systemui.statusbar.policy.DeviceProvisionedController;
43import com.android.systemui.statusbar.policy.DeviceProvisionedController.DeviceProvisionedListener;
Winson Chung11f53e92017-11-13 17:45:12 -080044
Matthew Ng1e43ebd2017-11-14 14:47:05 -080045import java.io.FileDescriptor;
46import java.io.PrintWriter;
Matthew Ng7d05e772017-11-09 14:41:07 -080047import java.util.ArrayList;
48import java.util.List;
Matthew Ng13dbf872017-10-27 11:02:14 -070049
50/**
51 * Class to send information from overview to launcher with a binder.
52 */
Matthew Ng1e43ebd2017-11-14 14:47:05 -080053public class OverviewProxyService implements CallbackController<OverviewProxyListener>, Dumpable {
Matthew Ng13dbf872017-10-27 11:02:14 -070054
Matthew Ngbd824572018-01-17 16:25:56 -080055 public static final String TAG_OPS = "OverviewProxyService";
56 public static final boolean DEBUG_OVERVIEW_PROXY = false;
Matthew Ng13dbf872017-10-27 11:02:14 -070057 private static final long BACKOFF_MILLIS = 5000;
58
59 private final Context mContext;
60 private final Handler mHandler;
Matthew Ngfac87832017-11-10 11:27:29 -080061 private final Runnable mConnectionRunnable = this::internalConnectToCurrentUser;
Matthew Ng30c0a022017-11-10 14:06:29 -080062 private final ComponentName mLauncherComponentName;
Matthew Ng13dbf872017-10-27 11:02:14 -070063 private final DeviceProvisionedController mDeviceProvisionedController
64 = Dependency.get(DeviceProvisionedController.class);
Matthew Ng7d05e772017-11-09 14:41:07 -080065 private final List<OverviewProxyListener> mConnectionCallbacks = new ArrayList<>();
Matthew Ng13dbf872017-10-27 11:02:14 -070066
67 private IOverviewProxy mOverviewProxy;
68 private int mConnectionBackoffAttempts;
69
Winson Chung38d31c22017-11-08 14:32:32 -080070 private ISystemUiProxy mSysUiProxy = new ISystemUiProxy.Stub() {
Winson Chungcaf2b812018-01-26 10:29:46 -080071
Winson Chung11f53e92017-11-13 17:45:12 -080072 public GraphicBufferCompat screenshot(Rect sourceCrop, int width, int height, int minLayer,
73 int maxLayer, boolean useIdentityTransform, int rotation) {
Winson Chung38d31c22017-11-08 14:32:32 -080074 long token = Binder.clearCallingIdentity();
75 try {
Winson Chung11f53e92017-11-13 17:45:12 -080076 return new GraphicBufferCompat(SurfaceControl.screenshotToBuffer(sourceCrop, width,
77 height, minLayer, maxLayer, useIdentityTransform, rotation));
Winson Chung38d31c22017-11-08 14:32:32 -080078 } finally {
79 Binder.restoreCallingIdentity(token);
80 }
81 }
Winson Chungcbb15a92018-01-25 17:46:16 +000082
Winson Chungcaf2b812018-01-26 10:29:46 -080083 public void startScreenPinning(int taskId) {
84 long token = Binder.clearCallingIdentity();
85 try {
86 mHandler.post(() -> {
87 StatusBar statusBar = ((SystemUIApplication) mContext).getComponent(
88 StatusBar.class);
89 if (statusBar != null) {
90 statusBar.showScreenPinningRequest(taskId, false /* allowCancel */);
91 }
92 });
93 } finally {
94 Binder.restoreCallingIdentity(token);
95 }
96 }
97
Winson Chungcbb15a92018-01-25 17:46:16 +000098 public void onRecentsAnimationStarted() {
99 long token = Binder.clearCallingIdentity();
100 try {
Winson Chungcaf2b812018-01-26 10:29:46 -0800101 mHandler.post(() -> {
102 notifyRecentsAnimationStarted();
103 });
Winson Chungcbb15a92018-01-25 17:46:16 +0000104 } finally {
105 Binder.restoreCallingIdentity(token);
106 }
107 }
Winson Chung38d31c22017-11-08 14:32:32 -0800108 };
109
Matthew Ng30c0a022017-11-10 14:06:29 -0800110 private final BroadcastReceiver mLauncherAddedReceiver = new BroadcastReceiver() {
111 @Override
112 public void onReceive(Context context, Intent intent) {
113 // Reconnect immediately, instead of waiting for resume to arrive.
114 startConnectionToCurrentUser();
115 }
116 };
117
Matthew Ng13dbf872017-10-27 11:02:14 -0700118 private final ServiceConnection mOverviewServiceConnection = new ServiceConnection() {
119 @Override
120 public void onServiceConnected(ComponentName name, IBinder service) {
121 if (service != null) {
122 mConnectionBackoffAttempts = 0;
123 mOverviewProxy = IOverviewProxy.Stub.asInterface(service);
124 // Listen for launcher's death
125 try {
126 service.linkToDeath(mOverviewServiceDeathRcpt, 0);
127 } catch (RemoteException e) {
Matthew Ngbd824572018-01-17 16:25:56 -0800128 Log.e(TAG_OPS, "Lost connection to launcher service", e);
Matthew Ng13dbf872017-10-27 11:02:14 -0700129 }
Winson Chung38d31c22017-11-08 14:32:32 -0800130 try {
131 mOverviewProxy.onBind(mSysUiProxy);
132 } catch (RemoteException e) {
Matthew Ngbd824572018-01-17 16:25:56 -0800133 Log.e(TAG_OPS, "Failed to call onBind()", e);
Winson Chung38d31c22017-11-08 14:32:32 -0800134 }
Matthew Ng7d05e772017-11-09 14:41:07 -0800135 notifyConnectionChanged();
Matthew Ng13dbf872017-10-27 11:02:14 -0700136 }
137 }
138
139 @Override
140 public void onServiceDisconnected(ComponentName name) {
141 // Do nothing
142 }
143 };
144
145 private final DeviceProvisionedListener mDeviceProvisionedCallback =
146 new DeviceProvisionedListener() {
147 @Override
Matthew Ngdfab86c2017-11-07 15:46:51 -0800148 public void onUserSetupChanged() {
Matthew Ng13dbf872017-10-27 11:02:14 -0700149 if (mDeviceProvisionedController.isCurrentUserSetup()) {
Matthew Ngfac87832017-11-10 11:27:29 -0800150 internalConnectToCurrentUser();
Matthew Ng13dbf872017-10-27 11:02:14 -0700151 }
152 }
153
154 @Override
155 public void onUserSwitched() {
Matthew Ng13dbf872017-10-27 11:02:14 -0700156 mConnectionBackoffAttempts = 0;
Matthew Ngfac87832017-11-10 11:27:29 -0800157 internalConnectToCurrentUser();
Matthew Ng13dbf872017-10-27 11:02:14 -0700158 }
159 };
160
161 // This is the death handler for the binder from the launcher service
Matthew Ng30c0a022017-11-10 14:06:29 -0800162 private final IBinder.DeathRecipient mOverviewServiceDeathRcpt
163 = this::startConnectionToCurrentUser;
Matthew Ng13dbf872017-10-27 11:02:14 -0700164
165 public OverviewProxyService(Context context) {
166 mContext = context;
167 mHandler = new Handler();
168 mConnectionBackoffAttempts = 0;
Matthew Ng30c0a022017-11-10 14:06:29 -0800169 mLauncherComponentName = ComponentName
170 .unflattenFromString(context.getString(R.string.config_overviewServiceComponent));
Matthew Ng13dbf872017-10-27 11:02:14 -0700171 mDeviceProvisionedController.addCallback(mDeviceProvisionedCallback);
Matthew Ng30c0a022017-11-10 14:06:29 -0800172
173 // Listen for the package update changes.
174 IntentFilter filter = new IntentFilter(Intent.ACTION_PACKAGE_ADDED);
175 filter.addDataScheme("package");
176 filter.addDataSchemeSpecificPart(mLauncherComponentName.getPackageName(),
177 PatternMatcher.PATTERN_LITERAL);
Matthew Ngc361fa12018-01-08 12:50:27 -0800178 filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
Matthew Ng30c0a022017-11-10 14:06:29 -0800179 mContext.registerReceiver(mLauncherAddedReceiver, filter);
Matthew Ng13dbf872017-10-27 11:02:14 -0700180 }
181
182 public void startConnectionToCurrentUser() {
Matthew Ngfac87832017-11-10 11:27:29 -0800183 if (mHandler.getLooper() != Looper.myLooper()) {
184 mHandler.post(mConnectionRunnable);
185 } else {
186 internalConnectToCurrentUser();
187 }
188 }
189
190 private void internalConnectToCurrentUser() {
Matthew Ng1fa3f7e2017-11-07 11:50:36 -0800191 disconnectFromLauncherService();
192
Matthew Ng13dbf872017-10-27 11:02:14 -0700193 // If user has not setup yet or already connected, do not try to connect
Matthew Ng1fa3f7e2017-11-07 11:50:36 -0800194 if (!mDeviceProvisionedController.isCurrentUserSetup()) {
Matthew Ng13dbf872017-10-27 11:02:14 -0700195 return;
196 }
197 mHandler.removeCallbacks(mConnectionRunnable);
198 Intent launcherServiceIntent = new Intent();
Matthew Ng30c0a022017-11-10 14:06:29 -0800199 launcherServiceIntent.setComponent(mLauncherComponentName);
Matthew Ng13dbf872017-10-27 11:02:14 -0700200 boolean bound = mContext.bindServiceAsUser(launcherServiceIntent,
201 mOverviewServiceConnection, Context.BIND_AUTO_CREATE,
202 UserHandle.getUserHandleForUid(mDeviceProvisionedController.getCurrentUser()));
203 if (!bound) {
204 // Retry after exponential backoff timeout
205 final long timeoutMs = (long) Math.scalb(BACKOFF_MILLIS, mConnectionBackoffAttempts);
206 mHandler.postDelayed(mConnectionRunnable, timeoutMs);
207 mConnectionBackoffAttempts++;
208 }
209 }
210
Matthew Ng7d05e772017-11-09 14:41:07 -0800211 @Override
212 public void addCallback(OverviewProxyListener listener) {
213 mConnectionCallbacks.add(listener);
214 listener.onConnectionChanged(mOverviewProxy != null);
215 }
216
217 @Override
218 public void removeCallback(OverviewProxyListener listener) {
219 mConnectionCallbacks.remove(listener);
220 }
221
Matthew Ng13dbf872017-10-27 11:02:14 -0700222 public IOverviewProxy getProxy() {
223 return mOverviewProxy;
224 }
225
Tony Wickhamfb63fe82018-01-16 12:14:06 -0800226 public ComponentName getLauncherComponent() {
227 return mLauncherComponentName;
228 }
229
Matthew Ng13dbf872017-10-27 11:02:14 -0700230 private void disconnectFromLauncherService() {
Matthew Ng1fa3f7e2017-11-07 11:50:36 -0800231 if (mOverviewProxy != null) {
Matthew Ngeb6893b2017-11-09 17:15:33 -0800232 mOverviewProxy.asBinder().unlinkToDeath(mOverviewServiceDeathRcpt, 0);
Matthew Ng1fa3f7e2017-11-07 11:50:36 -0800233 mContext.unbindService(mOverviewServiceConnection);
234 mOverviewProxy = null;
Matthew Ng7d05e772017-11-09 14:41:07 -0800235 notifyConnectionChanged();
Matthew Ng1fa3f7e2017-11-07 11:50:36 -0800236 }
Matthew Ng13dbf872017-10-27 11:02:14 -0700237 }
Matthew Ng7d05e772017-11-09 14:41:07 -0800238
239 private void notifyConnectionChanged() {
240 for (int i = mConnectionCallbacks.size() - 1; i >= 0; --i) {
241 mConnectionCallbacks.get(i).onConnectionChanged(mOverviewProxy != null);
242 }
243 }
244
Winson Chungcbb15a92018-01-25 17:46:16 +0000245 private void notifyRecentsAnimationStarted() {
246 for (int i = mConnectionCallbacks.size() - 1; i >= 0; --i) {
247 mConnectionCallbacks.get(i).onRecentsAnimationStarted();
248 }
249 }
250
Matthew Ng1e43ebd2017-11-14 14:47:05 -0800251 @Override
252 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Matthew Ngbd824572018-01-17 16:25:56 -0800253 pw.println(TAG_OPS + " state:");
Matthew Ng1e43ebd2017-11-14 14:47:05 -0800254 pw.print(" mConnectionBackoffAttempts="); pw.println(mConnectionBackoffAttempts);
255 pw.print(" isCurrentUserSetup="); pw.println(mDeviceProvisionedController
256 .isCurrentUserSetup());
257 pw.print(" isConnected="); pw.println(mOverviewProxy != null);
258 }
259
Matthew Ng7d05e772017-11-09 14:41:07 -0800260 public interface OverviewProxyListener {
Winson Chungcbb15a92018-01-25 17:46:16 +0000261 default void onConnectionChanged(boolean isConnected) {}
262 default void onRecentsAnimationStarted() {}
Matthew Ng7d05e772017-11-09 14:41:07 -0800263 }
Matthew Ng13dbf872017-10-27 11:02:14 -0700264}