blob: d0128efe2c4468008c37df3828606d1195769d54 [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;
Tony Wickham05c1f852018-02-06 12:32:54 -080069 private CharSequence mOnboardingText;
Matthew Ng13dbf872017-10-27 11:02:14 -070070
Winson Chung38d31c22017-11-08 14:32:32 -080071 private ISystemUiProxy mSysUiProxy = new ISystemUiProxy.Stub() {
Winson Chungcaf2b812018-01-26 10:29:46 -080072
Winson Chung11f53e92017-11-13 17:45:12 -080073 public GraphicBufferCompat screenshot(Rect sourceCrop, int width, int height, int minLayer,
74 int maxLayer, boolean useIdentityTransform, int rotation) {
Winson Chung38d31c22017-11-08 14:32:32 -080075 long token = Binder.clearCallingIdentity();
76 try {
Winson Chung11f53e92017-11-13 17:45:12 -080077 return new GraphicBufferCompat(SurfaceControl.screenshotToBuffer(sourceCrop, width,
78 height, minLayer, maxLayer, useIdentityTransform, rotation));
Winson Chung38d31c22017-11-08 14:32:32 -080079 } finally {
80 Binder.restoreCallingIdentity(token);
81 }
82 }
Winson Chungcbb15a92018-01-25 17:46:16 +000083
Winson Chungcaf2b812018-01-26 10:29:46 -080084 public void startScreenPinning(int taskId) {
85 long token = Binder.clearCallingIdentity();
86 try {
87 mHandler.post(() -> {
88 StatusBar statusBar = ((SystemUIApplication) mContext).getComponent(
89 StatusBar.class);
90 if (statusBar != null) {
91 statusBar.showScreenPinningRequest(taskId, false /* allowCancel */);
92 }
93 });
94 } finally {
95 Binder.restoreCallingIdentity(token);
96 }
97 }
98
Winson Chungcbb15a92018-01-25 17:46:16 +000099 public void onRecentsAnimationStarted() {
100 long token = Binder.clearCallingIdentity();
101 try {
Winson Chung58bd4392018-02-08 17:53:26 -0800102 mHandler.post(OverviewProxyService.this::notifyRecentsAnimationStarted);
Winson Chungcbb15a92018-01-25 17:46:16 +0000103 } finally {
104 Binder.restoreCallingIdentity(token);
105 }
106 }
Tony Wickham05c1f852018-02-06 12:32:54 -0800107
108 public void setRecentsOnboardingText(CharSequence text) {
109 mOnboardingText = text;
110 }
Winson Chung38d31c22017-11-08 14:32:32 -0800111 };
112
Matthew Ng30c0a022017-11-10 14:06:29 -0800113 private final BroadcastReceiver mLauncherAddedReceiver = new BroadcastReceiver() {
114 @Override
115 public void onReceive(Context context, Intent intent) {
116 // Reconnect immediately, instead of waiting for resume to arrive.
117 startConnectionToCurrentUser();
118 }
119 };
120
Matthew Ng13dbf872017-10-27 11:02:14 -0700121 private final ServiceConnection mOverviewServiceConnection = new ServiceConnection() {
122 @Override
123 public void onServiceConnected(ComponentName name, IBinder service) {
124 if (service != null) {
125 mConnectionBackoffAttempts = 0;
126 mOverviewProxy = IOverviewProxy.Stub.asInterface(service);
127 // Listen for launcher's death
128 try {
129 service.linkToDeath(mOverviewServiceDeathRcpt, 0);
130 } catch (RemoteException e) {
Matthew Ngbd824572018-01-17 16:25:56 -0800131 Log.e(TAG_OPS, "Lost connection to launcher service", e);
Matthew Ng13dbf872017-10-27 11:02:14 -0700132 }
Winson Chung38d31c22017-11-08 14:32:32 -0800133 try {
134 mOverviewProxy.onBind(mSysUiProxy);
135 } catch (RemoteException e) {
Matthew Ngbd824572018-01-17 16:25:56 -0800136 Log.e(TAG_OPS, "Failed to call onBind()", e);
Winson Chung38d31c22017-11-08 14:32:32 -0800137 }
Matthew Ng7d05e772017-11-09 14:41:07 -0800138 notifyConnectionChanged();
Matthew Ng13dbf872017-10-27 11:02:14 -0700139 }
140 }
141
142 @Override
143 public void onServiceDisconnected(ComponentName name) {
144 // Do nothing
145 }
146 };
147
148 private final DeviceProvisionedListener mDeviceProvisionedCallback =
149 new DeviceProvisionedListener() {
150 @Override
Matthew Ngdfab86c2017-11-07 15:46:51 -0800151 public void onUserSetupChanged() {
Matthew Ng13dbf872017-10-27 11:02:14 -0700152 if (mDeviceProvisionedController.isCurrentUserSetup()) {
Matthew Ngfac87832017-11-10 11:27:29 -0800153 internalConnectToCurrentUser();
Matthew Ng13dbf872017-10-27 11:02:14 -0700154 }
155 }
156
157 @Override
158 public void onUserSwitched() {
Matthew Ng13dbf872017-10-27 11:02:14 -0700159 mConnectionBackoffAttempts = 0;
Matthew Ngfac87832017-11-10 11:27:29 -0800160 internalConnectToCurrentUser();
Matthew Ng13dbf872017-10-27 11:02:14 -0700161 }
162 };
163
164 // This is the death handler for the binder from the launcher service
Matthew Ng30c0a022017-11-10 14:06:29 -0800165 private final IBinder.DeathRecipient mOverviewServiceDeathRcpt
166 = this::startConnectionToCurrentUser;
Matthew Ng13dbf872017-10-27 11:02:14 -0700167
168 public OverviewProxyService(Context context) {
169 mContext = context;
170 mHandler = new Handler();
171 mConnectionBackoffAttempts = 0;
Matthew Ng30c0a022017-11-10 14:06:29 -0800172 mLauncherComponentName = ComponentName
173 .unflattenFromString(context.getString(R.string.config_overviewServiceComponent));
Matthew Ng13dbf872017-10-27 11:02:14 -0700174 mDeviceProvisionedController.addCallback(mDeviceProvisionedCallback);
Matthew Ng30c0a022017-11-10 14:06:29 -0800175
176 // Listen for the package update changes.
177 IntentFilter filter = new IntentFilter(Intent.ACTION_PACKAGE_ADDED);
178 filter.addDataScheme("package");
179 filter.addDataSchemeSpecificPart(mLauncherComponentName.getPackageName(),
180 PatternMatcher.PATTERN_LITERAL);
Matthew Ngc361fa12018-01-08 12:50:27 -0800181 filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
Matthew Ng30c0a022017-11-10 14:06:29 -0800182 mContext.registerReceiver(mLauncherAddedReceiver, filter);
Matthew Ng13dbf872017-10-27 11:02:14 -0700183 }
184
185 public void startConnectionToCurrentUser() {
Matthew Ngfac87832017-11-10 11:27:29 -0800186 if (mHandler.getLooper() != Looper.myLooper()) {
187 mHandler.post(mConnectionRunnable);
188 } else {
189 internalConnectToCurrentUser();
190 }
191 }
192
193 private void internalConnectToCurrentUser() {
Matthew Ng1fa3f7e2017-11-07 11:50:36 -0800194 disconnectFromLauncherService();
195
Matthew Ng13dbf872017-10-27 11:02:14 -0700196 // If user has not setup yet or already connected, do not try to connect
Matthew Ng1fa3f7e2017-11-07 11:50:36 -0800197 if (!mDeviceProvisionedController.isCurrentUserSetup()) {
Matthew Ng13dbf872017-10-27 11:02:14 -0700198 return;
199 }
200 mHandler.removeCallbacks(mConnectionRunnable);
201 Intent launcherServiceIntent = new Intent();
Matthew Ng30c0a022017-11-10 14:06:29 -0800202 launcherServiceIntent.setComponent(mLauncherComponentName);
Matthew Ng13dbf872017-10-27 11:02:14 -0700203 boolean bound = mContext.bindServiceAsUser(launcherServiceIntent,
204 mOverviewServiceConnection, Context.BIND_AUTO_CREATE,
Matthew Ng09e6fbd2018-02-01 16:54:16 -0800205 UserHandle.of(mDeviceProvisionedController.getCurrentUser()));
Matthew Ng13dbf872017-10-27 11:02:14 -0700206 if (!bound) {
207 // Retry after exponential backoff timeout
208 final long timeoutMs = (long) Math.scalb(BACKOFF_MILLIS, mConnectionBackoffAttempts);
209 mHandler.postDelayed(mConnectionRunnable, timeoutMs);
210 mConnectionBackoffAttempts++;
211 }
212 }
213
Matthew Ng7d05e772017-11-09 14:41:07 -0800214 @Override
215 public void addCallback(OverviewProxyListener listener) {
216 mConnectionCallbacks.add(listener);
217 listener.onConnectionChanged(mOverviewProxy != null);
218 }
219
220 @Override
221 public void removeCallback(OverviewProxyListener listener) {
222 mConnectionCallbacks.remove(listener);
223 }
224
Matthew Ng13dbf872017-10-27 11:02:14 -0700225 public IOverviewProxy getProxy() {
226 return mOverviewProxy;
227 }
228
Tony Wickham05c1f852018-02-06 12:32:54 -0800229 public CharSequence getOnboardingText() {
230 return mOnboardingText;
Tony Wickhamfb63fe82018-01-16 12:14:06 -0800231 }
232
Matthew Ng13dbf872017-10-27 11:02:14 -0700233 private void disconnectFromLauncherService() {
Matthew Ng1fa3f7e2017-11-07 11:50:36 -0800234 if (mOverviewProxy != null) {
Matthew Ngeb6893b2017-11-09 17:15:33 -0800235 mOverviewProxy.asBinder().unlinkToDeath(mOverviewServiceDeathRcpt, 0);
Matthew Ng1fa3f7e2017-11-07 11:50:36 -0800236 mContext.unbindService(mOverviewServiceConnection);
237 mOverviewProxy = null;
Matthew Ng7d05e772017-11-09 14:41:07 -0800238 notifyConnectionChanged();
Matthew Ng1fa3f7e2017-11-07 11:50:36 -0800239 }
Matthew Ng13dbf872017-10-27 11:02:14 -0700240 }
Matthew Ng7d05e772017-11-09 14:41:07 -0800241
242 private void notifyConnectionChanged() {
243 for (int i = mConnectionCallbacks.size() - 1; i >= 0; --i) {
244 mConnectionCallbacks.get(i).onConnectionChanged(mOverviewProxy != null);
245 }
246 }
247
Winson Chungcbb15a92018-01-25 17:46:16 +0000248 private void notifyRecentsAnimationStarted() {
249 for (int i = mConnectionCallbacks.size() - 1; i >= 0; --i) {
250 mConnectionCallbacks.get(i).onRecentsAnimationStarted();
251 }
252 }
253
Matthew Ng1e43ebd2017-11-14 14:47:05 -0800254 @Override
255 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Matthew Ngbd824572018-01-17 16:25:56 -0800256 pw.println(TAG_OPS + " state:");
Matthew Ng1e43ebd2017-11-14 14:47:05 -0800257 pw.print(" mConnectionBackoffAttempts="); pw.println(mConnectionBackoffAttempts);
258 pw.print(" isCurrentUserSetup="); pw.println(mDeviceProvisionedController
259 .isCurrentUserSetup());
260 pw.print(" isConnected="); pw.println(mOverviewProxy != null);
261 }
262
Matthew Ng7d05e772017-11-09 14:41:07 -0800263 public interface OverviewProxyListener {
Winson Chungcbb15a92018-01-25 17:46:16 +0000264 default void onConnectionChanged(boolean isConnected) {}
265 default void onRecentsAnimationStarted() {}
Matthew Ng7d05e772017-11-09 14:41:07 -0800266 }
Matthew Ng13dbf872017-10-27 11:02:14 -0700267}