blob: 6078186ea3ca0ca5085cbdd48812ea3c72c72eda [file] [log] [blame]
Santos Cordone3d76ab2014-01-28 17:25:20 -08001/*
2 * Copyright (C) 2014 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.telecomm;
18
19import android.content.ComponentName;
20import android.content.Context;
21import android.content.Intent;
22import android.content.ServiceConnection;
Sailesh Nepal84fa5f82014-04-02 11:01:11 -070023import android.net.Uri;
Santos Cordone3d76ab2014-01-28 17:25:20 -080024import android.os.IBinder;
25import android.os.RemoteException;
Sailesh Nepal6aca10a2014-03-24 16:11:02 -070026import android.telecomm.CallAudioState;
Sailesh Nepal8c85dee2014-04-07 22:21:40 -070027import android.telecomm.CallCapabilities;
28import android.telecomm.CallServiceDescriptor;
29import android.telecomm.CallState;
30import android.telecomm.InCallCall;
Sailesh Nepal810735e2014-03-18 18:15:46 -070031import android.telecomm.CallState;
Sailesh Nepala439e1b2014-03-11 18:19:58 -070032
33import com.android.internal.telecomm.IInCallService;
Sailesh Nepal810735e2014-03-18 18:15:46 -070034import com.google.common.collect.ImmutableCollection;
Santos Cordone3d76ab2014-01-28 17:25:20 -080035
36/**
37 * Binds to {@link IInCallService} and provides the service to {@link CallsManager} through which it
38 * can send updates to the in-call app. This class is created and owned by CallsManager and retains
Sailesh Nepale59bb192014-04-01 18:33:59 -070039 * a binding to the {@link IInCallService} (implemented by the in-call app).
Santos Cordone3d76ab2014-01-28 17:25:20 -080040 */
Sailesh Nepal810735e2014-03-18 18:15:46 -070041public final class InCallController extends CallsManagerListenerBase {
Santos Cordone3d76ab2014-01-28 17:25:20 -080042 /**
43 * Used to bind to the in-call app and triggers the start of communication between
Sailesh Nepale59bb192014-04-01 18:33:59 -070044 * this class and in-call app.
Santos Cordone3d76ab2014-01-28 17:25:20 -080045 */
46 private class InCallServiceConnection implements ServiceConnection {
47 /** {@inheritDoc} */
48 @Override public void onServiceConnected(ComponentName name, IBinder service) {
49 onConnected(service);
50 }
51
52 /** {@inheritDoc} */
53 @Override public void onServiceDisconnected(ComponentName name) {
54 onDisconnected();
55 }
56 }
57
Santos Cordone3d76ab2014-01-28 17:25:20 -080058 /**
59 * Package name of the in-call app. Although in-call code in kept in its own namespace, it is
Ben Gilad13329fd2014-02-11 17:20:29 -080060 * ultimately compiled into the dialer APK, hence the difference in namespaces between this and
61 * {@link #IN_CALL_SERVICE_CLASS_NAME}.
Santos Cordone3d76ab2014-01-28 17:25:20 -080062 * TODO(santoscordon): Change this into config.xml resource entry.
63 */
64 private static final String IN_CALL_PACKAGE_NAME = "com.google.android.dialer";
65
66 /**
67 * Class name of the component within in-call app which implements {@link IInCallService}.
68 */
Sailesh Nepala439e1b2014-03-11 18:19:58 -070069 private static final String IN_CALL_SERVICE_CLASS_NAME =
70 "com.android.incallui.InCallServiceImpl";
Santos Cordone3d76ab2014-01-28 17:25:20 -080071
72 /** Maintains a binding connection to the in-call app. */
73 private final InCallServiceConnection mConnection = new InCallServiceConnection();
74
Santos Cordone3d76ab2014-01-28 17:25:20 -080075 /** The in-call app implementation, see {@link IInCallService}. */
76 private IInCallService mInCallService;
77
Sailesh Nepale59bb192014-04-01 18:33:59 -070078 private final CallIdMapper mCallIdMapper = new CallIdMapper("InCall");
79
Santos Cordone3d76ab2014-01-28 17:25:20 -080080 IInCallService getService() {
81 return mInCallService;
82 }
83
Sailesh Nepal810735e2014-03-18 18:15:46 -070084 @Override
85 public void onCallAdded(Call call) {
86 if (mInCallService == null) {
87 bind();
88 } else {
89 Log.i(this, "Adding call: %s", call);
Sailesh Nepale59bb192014-04-01 18:33:59 -070090 mCallIdMapper.addCall(call);
Sailesh Nepal810735e2014-03-18 18:15:46 -070091 try {
Sailesh Nepal8c85dee2014-04-07 22:21:40 -070092 mInCallService.addCall(toInCallCall(call));
Santos Cordonf3671a62014-05-29 21:51:53 -070093 } catch (RemoteException ignored) {
Santos Cordone3d76ab2014-01-28 17:25:20 -080094 }
Santos Cordon049b7b62014-01-30 05:34:26 -080095 }
96 }
97
Sailesh Nepal810735e2014-03-18 18:15:46 -070098 @Override
99 public void onCallRemoved(Call call) {
100 if (CallsManager.getInstance().getCalls().isEmpty()) {
101 // TODO(sail): Wait for all messages to be delivered to the service before unbinding.
102 unbind();
Santos Cordon049b7b62014-01-30 05:34:26 -0800103 }
Sailesh Nepale59bb192014-04-01 18:33:59 -0700104 mCallIdMapper.removeCall(call);
Santos Cordon049b7b62014-01-30 05:34:26 -0800105 }
106
Sailesh Nepal810735e2014-03-18 18:15:46 -0700107 @Override
108 public void onCallStateChanged(Call call, CallState oldState, CallState newState) {
Sailesh Nepal8c85dee2014-04-07 22:21:40 -0700109 updateCall(call);
Yorke Leecdf3ebd2014-03-12 18:31:41 -0700110 }
111
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700112 @Override
Sailesh Nepal84fa5f82014-04-02 11:01:11 -0700113 public void onCallHandoffHandleChanged(Call call, Uri oldHandle, Uri newHandle) {
Sailesh Nepal8c85dee2014-04-07 22:21:40 -0700114 updateCall(call);
115 }
116
117 @Override
118 public void onCallServiceChanged(
119 Call call,
120 CallServiceWrapper oldCallServiceWrapper,
121 CallServiceWrapper newCallService) {
122 updateCall(call);
123 }
124
125 @Override
126 public void onCallHandoffCallServiceDescriptorChanged(
127 Call call,
128 CallServiceDescriptor oldDescriptor,
129 CallServiceDescriptor newDescriptor) {
130 updateCall(call);
Sailesh Nepal84fa5f82014-04-02 11:01:11 -0700131 }
132
133 @Override
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700134 public void onAudioStateChanged(CallAudioState oldAudioState, CallAudioState newAudioState) {
135 if (mInCallService != null) {
136 Log.i(this, "Calling onAudioStateChanged, audioState: %s -> %s", oldAudioState,
137 newAudioState);
138 try {
139 mInCallService.onAudioStateChanged(newAudioState);
Santos Cordonf3671a62014-05-29 21:51:53 -0700140 } catch (RemoteException ignored) {
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700141 }
142 }
143 }
144
Evan Charlton352105c2014-06-03 14:10:54 -0700145 void onPostDialWait(Call call, String remaining) {
146 if (mInCallService != null) {
147 Log.i(this, "Calling onPostDialWait, remaining = %s", remaining);
148 try {
149 mInCallService.setPostDialWait(mCallIdMapper.getCallId(call), remaining);
150 } catch (RemoteException ignored) {
151 }
152 }
153 }
154
Santos Cordonf3671a62014-05-29 21:51:53 -0700155 void bringToForeground(boolean showDialpad) {
156 if (mInCallService != null) {
157 try {
158 mInCallService.bringToForeground(showDialpad);
159 } catch (RemoteException ignored) {
160 }
161 } else {
162 Log.w(this, "Asking to bring unbound in-call UI to foreground.");
163 }
164 }
165
Santos Cordone3d76ab2014-01-28 17:25:20 -0800166 /**
167 * Unbinds an existing bound connection to the in-call app.
Santos Cordone3d76ab2014-01-28 17:25:20 -0800168 */
Sailesh Nepal810735e2014-03-18 18:15:46 -0700169 private void unbind() {
Santos Cordone3d76ab2014-01-28 17:25:20 -0800170 ThreadUtil.checkOnMainThread();
171 if (mInCallService != null) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800172 Log.i(this, "Unbinding from InCallService");
Santos Cordon049b7b62014-01-30 05:34:26 -0800173 TelecommApp.getInstance().unbindService(mConnection);
Santos Cordone3d76ab2014-01-28 17:25:20 -0800174 mInCallService = null;
175 }
176 }
177
178 /**
Santos Cordon049b7b62014-01-30 05:34:26 -0800179 * Binds to the in-call app if not already connected by binding directly to the saved
180 * component name of the {@link IInCallService} implementation.
181 */
182 private void bind() {
183 ThreadUtil.checkOnMainThread();
184 if (mInCallService == null) {
185 ComponentName component =
186 new ComponentName(IN_CALL_PACKAGE_NAME, IN_CALL_SERVICE_CLASS_NAME);
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800187 Log.i(this, "Attempting to bind to InCallService: %s", component);
Santos Cordon049b7b62014-01-30 05:34:26 -0800188
189 Intent serviceIntent = new Intent(IInCallService.class.getName());
190 serviceIntent.setComponent(component);
191
192 Context context = TelecommApp.getInstance();
193 if (!context.bindService(serviceIntent, mConnection, Context.BIND_AUTO_CREATE)) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800194 Log.w(this, "Could not connect to the in-call app (%s)", component);
Santos Cordon049b7b62014-01-30 05:34:26 -0800195
196 // TODO(santoscordon): Implement retry or fall-back-to-default logic.
197 }
198 }
199 }
200
201 /**
Santos Cordone3d76ab2014-01-28 17:25:20 -0800202 * Persists the {@link IInCallService} instance and starts the communication between
Sailesh Nepale59bb192014-04-01 18:33:59 -0700203 * this class and in-call app by sending the first update to in-call app. This method is
Santos Cordone3d76ab2014-01-28 17:25:20 -0800204 * called after a successful binding connection is established.
205 *
206 * @param service The {@link IInCallService} implementation.
207 */
208 private void onConnected(IBinder service) {
209 ThreadUtil.checkOnMainThread();
210 mInCallService = IInCallService.Stub.asInterface(service);
211
212 try {
Sailesh Nepale59bb192014-04-01 18:33:59 -0700213 mInCallService.setInCallAdapter(new InCallAdapter(CallsManager.getInstance(),
214 mCallIdMapper));
Santos Cordone3d76ab2014-01-28 17:25:20 -0800215 } catch (RemoteException e) {
Sailesh Nepalf1c191d2014-03-07 18:17:39 -0800216 Log.e(this, e, "Failed to set the in-call adapter.");
Santos Cordone3d76ab2014-01-28 17:25:20 -0800217 mInCallService = null;
Sailesh Nepal810735e2014-03-18 18:15:46 -0700218 return;
Santos Cordone3d76ab2014-01-28 17:25:20 -0800219 }
220
Santos Cordon049b7b62014-01-30 05:34:26 -0800221 // Upon successful connection, send the state of the world to the in-call app.
Sailesh Nepal810735e2014-03-18 18:15:46 -0700222 ImmutableCollection<Call> calls = CallsManager.getInstance().getCalls();
223 if (!calls.isEmpty()) {
224 for (Call call : calls) {
225 onCallAdded(call);
226 }
Sailesh Nepal6aca10a2014-03-24 16:11:02 -0700227 onAudioStateChanged(null, CallsManager.getInstance().getAudioState());
Sailesh Nepal810735e2014-03-18 18:15:46 -0700228 } else {
229 unbind();
Santos Cordon049b7b62014-01-30 05:34:26 -0800230 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800231 }
232
233 /**
234 * Cleans up the instance of in-call app after the service has been unbound.
235 */
236 private void onDisconnected() {
237 ThreadUtil.checkOnMainThread();
238 mInCallService = null;
239 }
Sailesh Nepal8c85dee2014-04-07 22:21:40 -0700240
241 private void updateCall(Call call) {
242 if (mInCallService != null) {
243 try {
244 mInCallService.updateCall(toInCallCall(call));
Santos Cordonf3671a62014-05-29 21:51:53 -0700245 } catch (RemoteException ignored) {
Sailesh Nepal8c85dee2014-04-07 22:21:40 -0700246 }
247 }
248 }
249
250 private InCallCall toInCallCall(Call call) {
251 String callId = mCallIdMapper.getCallId(call);
252 CallServiceDescriptor descriptor =
253 call.getCallService() != null ? call.getCallService().getDescriptor() : null;
254
255 boolean isHandoffCapable = call.getHandoffHandle() != null;
256 int capabilities = CallCapabilities.HOLD | CallCapabilities.MUTE;
257 if (call.getHandoffHandle() != null) {
258 capabilities |= CallCapabilities.CONNECTION_HANDOFF;
259 }
260 CallState state = call.getState();
261 if (state == CallState.ABORTED) {
262 state = CallState.DISCONNECTED;
263 }
264 // TODO(sail): Remove this and replace with final reconnecting code.
265 if (state == CallState.DISCONNECTED && call.getHandoffCallServiceDescriptor() != null) {
266 state = CallState.ACTIVE;
267 }
268 return new InCallCall(callId, state, call.getDisconnectCause(), capabilities,
269 call.getConnectTimeMillis(), call.getHandle(), call.getGatewayInfo(), descriptor,
270 call.getHandoffCallServiceDescriptor());
271 }
Santos Cordone3d76ab2014-01-28 17:25:20 -0800272}