blob: 6b8ca695ed30dc9ae67e2809784d4cbc32b79a6f [file] [log] [blame]
Ihab Awad542e0ea2014-05-16 10:22:16 -07001/*
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
Tyler Gunnef9f6f92014-09-12 22:16:17 -070017package android.telecom;
Ihab Awad542e0ea2014-05-16 10:22:16 -070018
Santos Cordon5c6fa952014-07-20 17:47:12 -070019import android.annotation.SdkConstant;
Sailesh Nepal2a46b902014-07-04 17:21:07 -070020import android.app.Service;
Santos Cordon52d8a152014-06-17 19:08:45 -070021import android.content.ComponentName;
Santos Cordon5c6fa952014-07-20 17:47:12 -070022import android.content.Intent;
Ihab Awad542e0ea2014-05-16 10:22:16 -070023import android.net.Uri;
Santos Cordon52d8a152014-06-17 19:08:45 -070024import android.os.Handler;
25import android.os.IBinder;
26import android.os.Looper;
Sailesh Nepal2a46b902014-07-04 17:21:07 -070027import android.os.Message;
Andrew Lee14185762014-07-25 09:41:56 -070028
Sailesh Nepal2a46b902014-07-04 17:21:07 -070029import com.android.internal.os.SomeArgs;
Tyler Gunnef9f6f92014-09-12 22:16:17 -070030import com.android.internal.telecom.IConnectionService;
31import com.android.internal.telecom.IConnectionServiceAdapter;
32import com.android.internal.telecom.RemoteServiceCallback;
Santos Cordon52d8a152014-06-17 19:08:45 -070033
Ihab Awad5d0410f2014-07-30 10:07:40 -070034import java.util.ArrayList;
Santos Cordonb6939982014-06-04 20:20:58 -070035import java.util.Collection;
Santos Cordon7c7bc7f2014-07-28 18:15:48 -070036import java.util.Collections;
Santos Cordon52d8a152014-06-17 19:08:45 -070037import java.util.List;
Ihab Awad542e0ea2014-05-16 10:22:16 -070038import java.util.Map;
Santos Cordon823fd3c2014-08-07 18:35:18 -070039import java.util.UUID;
mike dooley95e80702014-09-18 14:07:52 -070040import java.util.concurrent.ConcurrentHashMap;
Ihab Awad542e0ea2014-05-16 10:22:16 -070041
42/**
Santos Cordona663f862014-10-29 13:49:58 -070043 * {@code ConnectionService} is an abstract service that should be implemented by any app which can
44 * make phone calls and want those calls to be integrated into the built-in phone app.
45 * Once implemented, the {@code ConnectionService} needs two additional steps before it will be
46 * integrated into the phone app:
47 * <p>
48 * 1. <i>Registration in AndroidManifest.xml</i>
49 * <br/>
50 * <pre>
51 * &lt;service android:name="com.example.package.MyConnectionService"
52 * android:label="@string/some_label_for_my_connection_service"
53 * android:permission="android.permission.BIND_CONNECTION_SERVICE"&gt;
54 * &lt;intent-filter&gt;
55 * &lt;action android:name="android.telecom.ConnectionService" /&gt;
56 * &lt;/intent-filter&gt;
57 * &lt;/service&gt;
58 * </pre>
59 * <p>
60 * 2. <i> Registration of {@link PhoneAccount} with {@link TelecomManager}.</i>
61 * <br/>
62 * See {@link PhoneAccount} and {@link TelecomManager#registerPhoneAccount} for more information.
63 * <p>
64 * Once registered and enabled by the user in the dialer settings, telecom will bind to a
65 * {@code ConnectionService} implementation when it wants that {@code ConnectionService} to place
66 * a call or the service has indicated that is has an incoming call through
67 * {@link TelecomManager#addNewIncomingCall}. The {@code ConnectionService} can then expect a call
68 * to {@link #onCreateIncomingConnection} or {@link #onCreateOutgoingConnection} wherein it
69 * should provide a new instance of a {@link Connection} object. It is through this
70 * {@link Connection} object that telecom receives state updates and the {@code ConnectionService}
71 * receives call-commands such as answer, reject, hold and disconnect.
72 * <p>
73 * When there are no more live calls, telecom will unbind from the {@code ConnectionService}.
Ihab Awad542e0ea2014-05-16 10:22:16 -070074 */
Sailesh Nepal2a46b902014-07-04 17:21:07 -070075public abstract class ConnectionService extends Service {
Santos Cordon5c6fa952014-07-20 17:47:12 -070076 /**
77 * The {@link Intent} that must be declared as handled by the service.
78 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -070079 @SdkConstant(SdkConstant.SdkConstantType.SERVICE_ACTION)
Tyler Gunnef9f6f92014-09-12 22:16:17 -070080 public static final String SERVICE_INTERFACE = "android.telecom.ConnectionService";
Santos Cordon5c6fa952014-07-20 17:47:12 -070081
Ihab Awad542e0ea2014-05-16 10:22:16 -070082 // Flag controlling whether PII is emitted into the logs
Ihab Awad60ac30b2014-05-20 22:32:12 -070083 private static final boolean PII_DEBUG = Log.isLoggable(android.util.Log.DEBUG);
Ihab Awad542e0ea2014-05-16 10:22:16 -070084
Ihab Awad8aecfed2014-08-08 17:06:11 -070085 private static final int MSG_ADD_CONNECTION_SERVICE_ADAPTER = 1;
Sailesh Nepalc5b01572014-07-14 16:29:44 -070086 private static final int MSG_CREATE_CONNECTION = 2;
Sailesh Nepal2a46b902014-07-04 17:21:07 -070087 private static final int MSG_ABORT = 3;
Sailesh Nepalc5b01572014-07-14 16:29:44 -070088 private static final int MSG_ANSWER = 4;
89 private static final int MSG_REJECT = 5;
90 private static final int MSG_DISCONNECT = 6;
91 private static final int MSG_HOLD = 7;
92 private static final int MSG_UNHOLD = 8;
Yorke Lee4af59352015-05-13 14:14:54 -070093 private static final int MSG_ON_CALL_AUDIO_STATE_CHANGED = 9;
Sailesh Nepalc5b01572014-07-14 16:29:44 -070094 private static final int MSG_PLAY_DTMF_TONE = 10;
95 private static final int MSG_STOP_DTMF_TONE = 11;
96 private static final int MSG_CONFERENCE = 12;
97 private static final int MSG_SPLIT_FROM_CONFERENCE = 13;
Ihab Awadb19a0bc2014-08-07 19:46:01 -070098 private static final int MSG_ON_POST_DIAL_CONTINUE = 14;
Ihab Awadb19a0bc2014-08-07 19:46:01 -070099 private static final int MSG_REMOVE_CONNECTION_SERVICE_ADAPTER = 16;
Tyler Gunnbe74de02014-08-29 14:51:48 -0700100 private static final int MSG_ANSWER_VIDEO = 17;
Santos Cordona4868042014-09-04 17:39:22 -0700101 private static final int MSG_MERGE_CONFERENCE = 18;
102 private static final int MSG_SWAP_CONFERENCE = 19;
Santos Cordon7c7bc7f2014-07-28 18:15:48 -0700103
Sailesh Nepalcf7020b2014-08-20 10:07:19 -0700104 private static Connection sNullConnection;
105
mike dooley95e80702014-09-18 14:07:52 -0700106 private final Map<String, Connection> mConnectionById = new ConcurrentHashMap<>();
107 private final Map<Connection, String> mIdByConnection = new ConcurrentHashMap<>();
108 private final Map<String, Conference> mConferenceById = new ConcurrentHashMap<>();
109 private final Map<Conference, String> mIdByConference = new ConcurrentHashMap<>();
Ihab Awadb8e85c72014-08-23 20:34:57 -0700110 private final RemoteConnectionManager mRemoteConnectionManager =
111 new RemoteConnectionManager(this);
Ihab Awad5d0410f2014-07-30 10:07:40 -0700112 private final List<Runnable> mPreInitializationConnectionRequests = new ArrayList<>();
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700113 private final ConnectionServiceAdapter mAdapter = new ConnectionServiceAdapter();
Ihab Awad542e0ea2014-05-16 10:22:16 -0700114
Santos Cordon823fd3c2014-08-07 18:35:18 -0700115 private boolean mAreAccountsInitialized = false;
Santos Cordon0159ac02014-08-21 14:28:11 -0700116 private Conference sNullConference;
Santos Cordon823fd3c2014-08-07 18:35:18 -0700117
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700118 private final IBinder mBinder = new IConnectionService.Stub() {
119 @Override
120 public void addConnectionServiceAdapter(IConnectionServiceAdapter adapter) {
Ihab Awad8aecfed2014-08-08 17:06:11 -0700121 mHandler.obtainMessage(MSG_ADD_CONNECTION_SERVICE_ADAPTER, adapter).sendToTarget();
122 }
123
124 public void removeConnectionServiceAdapter(IConnectionServiceAdapter adapter) {
125 mHandler.obtainMessage(MSG_REMOVE_CONNECTION_SERVICE_ADAPTER, adapter).sendToTarget();
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700126 }
127
128 @Override
Ihab Awadf8b69882014-07-25 15:14:01 -0700129 public void createConnection(
130 PhoneAccountHandle connectionManagerPhoneAccount,
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700131 String id,
Ihab Awadf8b69882014-07-25 15:14:01 -0700132 ConnectionRequest request,
Yorke Leec3cf9822014-10-02 09:38:39 -0700133 boolean isIncoming,
134 boolean isUnknown) {
Ihab Awadf8b69882014-07-25 15:14:01 -0700135 SomeArgs args = SomeArgs.obtain();
136 args.arg1 = connectionManagerPhoneAccount;
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700137 args.arg2 = id;
138 args.arg3 = request;
Ihab Awadf8b69882014-07-25 15:14:01 -0700139 args.argi1 = isIncoming ? 1 : 0;
Yorke Leec3cf9822014-10-02 09:38:39 -0700140 args.argi2 = isUnknown ? 1 : 0;
Ihab Awadf8b69882014-07-25 15:14:01 -0700141 mHandler.obtainMessage(MSG_CREATE_CONNECTION, args).sendToTarget();
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700142 }
143
144 @Override
145 public void abort(String callId) {
146 mHandler.obtainMessage(MSG_ABORT, callId).sendToTarget();
147 }
148
149 @Override
Tyler Gunnbe74de02014-08-29 14:51:48 -0700150 public void answerVideo(String callId, int videoState) {
Andrew Lee8da4c3c2014-07-16 10:11:42 -0700151 SomeArgs args = SomeArgs.obtain();
152 args.arg1 = callId;
Evan Charltonbf11f982014-07-20 22:06:28 -0700153 args.argi1 = videoState;
Tyler Gunnbe74de02014-08-29 14:51:48 -0700154 mHandler.obtainMessage(MSG_ANSWER_VIDEO, args).sendToTarget();
155 }
156
157 @Override
158 public void answer(String callId) {
159 mHandler.obtainMessage(MSG_ANSWER, callId).sendToTarget();
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700160 }
161
162 @Override
163 public void reject(String callId) {
164 mHandler.obtainMessage(MSG_REJECT, callId).sendToTarget();
165 }
166
167 @Override
168 public void disconnect(String callId) {
169 mHandler.obtainMessage(MSG_DISCONNECT, callId).sendToTarget();
170 }
171
172 @Override
173 public void hold(String callId) {
174 mHandler.obtainMessage(MSG_HOLD, callId).sendToTarget();
175 }
176
177 @Override
178 public void unhold(String callId) {
179 mHandler.obtainMessage(MSG_UNHOLD, callId).sendToTarget();
180 }
181
182 @Override
Yorke Lee4af59352015-05-13 14:14:54 -0700183 public void onCallAudioStateChanged(String callId, CallAudioState callAudioState) {
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700184 SomeArgs args = SomeArgs.obtain();
185 args.arg1 = callId;
Yorke Lee4af59352015-05-13 14:14:54 -0700186 args.arg2 = callAudioState;
187 mHandler.obtainMessage(MSG_ON_CALL_AUDIO_STATE_CHANGED, args).sendToTarget();
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700188 }
189
190 @Override
191 public void playDtmfTone(String callId, char digit) {
192 mHandler.obtainMessage(MSG_PLAY_DTMF_TONE, digit, 0, callId).sendToTarget();
193 }
194
195 @Override
196 public void stopDtmfTone(String callId) {
197 mHandler.obtainMessage(MSG_STOP_DTMF_TONE, callId).sendToTarget();
198 }
199
200 @Override
Santos Cordon823fd3c2014-08-07 18:35:18 -0700201 public void conference(String callId1, String callId2) {
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700202 SomeArgs args = SomeArgs.obtain();
Santos Cordon823fd3c2014-08-07 18:35:18 -0700203 args.arg1 = callId1;
204 args.arg2 = callId2;
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700205 mHandler.obtainMessage(MSG_CONFERENCE, args).sendToTarget();
206 }
207
208 @Override
209 public void splitFromConference(String callId) {
210 mHandler.obtainMessage(MSG_SPLIT_FROM_CONFERENCE, callId).sendToTarget();
211 }
212
213 @Override
Santos Cordona4868042014-09-04 17:39:22 -0700214 public void mergeConference(String callId) {
215 mHandler.obtainMessage(MSG_MERGE_CONFERENCE, callId).sendToTarget();
216 }
217
218 @Override
219 public void swapConference(String callId) {
220 mHandler.obtainMessage(MSG_SWAP_CONFERENCE, callId).sendToTarget();
221 }
222
223 @Override
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700224 public void onPostDialContinue(String callId, boolean proceed) {
225 SomeArgs args = SomeArgs.obtain();
226 args.arg1 = callId;
227 args.argi1 = proceed ? 1 : 0;
228 mHandler.obtainMessage(MSG_ON_POST_DIAL_CONTINUE, args).sendToTarget();
229 }
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700230 };
231
232 private final Handler mHandler = new Handler(Looper.getMainLooper()) {
233 @Override
234 public void handleMessage(Message msg) {
235 switch (msg.what) {
Ihab Awad8aecfed2014-08-08 17:06:11 -0700236 case MSG_ADD_CONNECTION_SERVICE_ADAPTER:
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700237 mAdapter.addAdapter((IConnectionServiceAdapter) msg.obj);
238 onAdapterAttached();
239 break;
Ihab Awad8aecfed2014-08-08 17:06:11 -0700240 case MSG_REMOVE_CONNECTION_SERVICE_ADAPTER:
241 mAdapter.removeAdapter((IConnectionServiceAdapter) msg.obj);
242 break;
Ihab Awadf8b69882014-07-25 15:14:01 -0700243 case MSG_CREATE_CONNECTION: {
244 SomeArgs args = (SomeArgs) msg.obj;
245 try {
Ihab Awad5d0410f2014-07-30 10:07:40 -0700246 final PhoneAccountHandle connectionManagerPhoneAccount =
Ihab Awadf8b69882014-07-25 15:14:01 -0700247 (PhoneAccountHandle) args.arg1;
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700248 final String id = (String) args.arg2;
249 final ConnectionRequest request = (ConnectionRequest) args.arg3;
Ihab Awad5d0410f2014-07-30 10:07:40 -0700250 final boolean isIncoming = args.argi1 == 1;
Yorke Leec3cf9822014-10-02 09:38:39 -0700251 final boolean isUnknown = args.argi2 == 1;
Ihab Awad5d0410f2014-07-30 10:07:40 -0700252 if (!mAreAccountsInitialized) {
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700253 Log.d(this, "Enqueueing pre-init request %s", id);
Ihab Awad5d0410f2014-07-30 10:07:40 -0700254 mPreInitializationConnectionRequests.add(new Runnable() {
255 @Override
256 public void run() {
257 createConnection(
258 connectionManagerPhoneAccount,
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700259 id,
Ihab Awad5d0410f2014-07-30 10:07:40 -0700260 request,
Yorke Leec3cf9822014-10-02 09:38:39 -0700261 isIncoming,
262 isUnknown);
Ihab Awad5d0410f2014-07-30 10:07:40 -0700263 }
264 });
265 } else {
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700266 createConnection(
267 connectionManagerPhoneAccount,
268 id,
269 request,
Yorke Leec3cf9822014-10-02 09:38:39 -0700270 isIncoming,
271 isUnknown);
Ihab Awad5d0410f2014-07-30 10:07:40 -0700272 }
Ihab Awadf8b69882014-07-25 15:14:01 -0700273 } finally {
274 args.recycle();
275 }
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700276 break;
Ihab Awadf8b69882014-07-25 15:14:01 -0700277 }
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700278 case MSG_ABORT:
279 abort((String) msg.obj);
280 break;
Tyler Gunnbe74de02014-08-29 14:51:48 -0700281 case MSG_ANSWER:
282 answer((String) msg.obj);
283 break;
284 case MSG_ANSWER_VIDEO: {
Andrew Lee8da4c3c2014-07-16 10:11:42 -0700285 SomeArgs args = (SomeArgs) msg.obj;
286 try {
287 String callId = (String) args.arg1;
Evan Charltonbf11f982014-07-20 22:06:28 -0700288 int videoState = args.argi1;
Tyler Gunnbe74de02014-08-29 14:51:48 -0700289 answerVideo(callId, videoState);
Andrew Lee8da4c3c2014-07-16 10:11:42 -0700290 } finally {
291 args.recycle();
292 }
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700293 break;
Andrew Lee8da4c3c2014-07-16 10:11:42 -0700294 }
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700295 case MSG_REJECT:
296 reject((String) msg.obj);
297 break;
298 case MSG_DISCONNECT:
299 disconnect((String) msg.obj);
300 break;
301 case MSG_HOLD:
302 hold((String) msg.obj);
303 break;
304 case MSG_UNHOLD:
305 unhold((String) msg.obj);
306 break;
Yorke Lee4af59352015-05-13 14:14:54 -0700307 case MSG_ON_CALL_AUDIO_STATE_CHANGED: {
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700308 SomeArgs args = (SomeArgs) msg.obj;
309 try {
310 String callId = (String) args.arg1;
Yorke Lee4af59352015-05-13 14:14:54 -0700311 CallAudioState audioState = (CallAudioState) args.arg2;
312 onCallAudioStateChanged(callId, new CallAudioState(audioState));
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700313 } finally {
314 args.recycle();
315 }
316 break;
317 }
318 case MSG_PLAY_DTMF_TONE:
319 playDtmfTone((String) msg.obj, (char) msg.arg1);
320 break;
321 case MSG_STOP_DTMF_TONE:
322 stopDtmfTone((String) msg.obj);
323 break;
324 case MSG_CONFERENCE: {
325 SomeArgs args = (SomeArgs) msg.obj;
326 try {
Santos Cordon823fd3c2014-08-07 18:35:18 -0700327 String callId1 = (String) args.arg1;
328 String callId2 = (String) args.arg2;
329 conference(callId1, callId2);
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700330 } finally {
331 args.recycle();
332 }
333 break;
334 }
335 case MSG_SPLIT_FROM_CONFERENCE:
336 splitFromConference((String) msg.obj);
337 break;
Santos Cordona4868042014-09-04 17:39:22 -0700338 case MSG_MERGE_CONFERENCE:
339 mergeConference((String) msg.obj);
340 break;
341 case MSG_SWAP_CONFERENCE:
342 swapConference((String) msg.obj);
343 break;
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700344 case MSG_ON_POST_DIAL_CONTINUE: {
345 SomeArgs args = (SomeArgs) msg.obj;
346 try {
347 String callId = (String) args.arg1;
348 boolean proceed = (args.argi1 == 1);
349 onPostDialContinue(callId, proceed);
350 } finally {
351 args.recycle();
352 }
353 break;
354 }
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700355 default:
356 break;
357 }
358 }
359 };
360
Santos Cordon823fd3c2014-08-07 18:35:18 -0700361 private final Conference.Listener mConferenceListener = new Conference.Listener() {
362 @Override
363 public void onStateChanged(Conference conference, int oldState, int newState) {
364 String id = mIdByConference.get(conference);
365 switch (newState) {
366 case Connection.STATE_ACTIVE:
367 mAdapter.setActive(id);
368 break;
369 case Connection.STATE_HOLDING:
370 mAdapter.setOnHold(id);
371 break;
372 case Connection.STATE_DISCONNECTED:
373 // handled by onDisconnected
374 break;
375 }
376 }
377
378 @Override
Andrew Lee7f3d41f2014-09-11 17:33:16 -0700379 public void onDisconnected(Conference conference, DisconnectCause disconnectCause) {
Santos Cordon823fd3c2014-08-07 18:35:18 -0700380 String id = mIdByConference.get(conference);
Andrew Lee7f3d41f2014-09-11 17:33:16 -0700381 mAdapter.setDisconnected(id, disconnectCause);
Santos Cordon823fd3c2014-08-07 18:35:18 -0700382 }
383
384 @Override
385 public void onConnectionAdded(Conference conference, Connection connection) {
386 }
387
388 @Override
389 public void onConnectionRemoved(Conference conference, Connection connection) {
390 }
391
392 @Override
Ihab Awad50e35062014-09-30 09:17:03 -0700393 public void onConferenceableConnectionsChanged(
394 Conference conference, List<Connection> conferenceableConnections) {
395 mAdapter.setConferenceableConnections(
396 mIdByConference.get(conference),
397 createConnectionIdList(conferenceableConnections));
398 }
399
400 @Override
Santos Cordon823fd3c2014-08-07 18:35:18 -0700401 public void onDestroyed(Conference conference) {
402 removeConference(conference);
403 }
404
405 @Override
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800406 public void onConnectionCapabilitiesChanged(
407 Conference conference,
408 int connectionCapabilities) {
Santos Cordon823fd3c2014-08-07 18:35:18 -0700409 String id = mIdByConference.get(conference);
410 Log.d(this, "call capabilities: conference: %s",
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800411 Connection.capabilitiesToString(connectionCapabilities));
412 mAdapter.setConnectionCapabilities(id, connectionCapabilities);
Santos Cordon823fd3c2014-08-07 18:35:18 -0700413 }
Rekha Kumar07366812015-03-24 16:42:31 -0700414
415 @Override
416 public void onVideoStateChanged(Conference c, int videoState) {
417 String id = mIdByConference.get(c);
418 Log.d(this, "onVideoStateChanged set video state %d", videoState);
419 mAdapter.setVideoState(id, videoState);
420 }
421
422 @Override
423 public void onVideoProviderChanged(Conference c, Connection.VideoProvider videoProvider) {
424 String id = mIdByConference.get(c);
425 Log.d(this, "onVideoProviderChanged: Connection: %s, VideoProvider: %s", c,
426 videoProvider);
427 mAdapter.setVideoProvider(id, videoProvider);
428 }
Andrew Lee0f51da32015-04-16 13:11:55 -0700429
430 @Override
Andrew Leeedc625f2015-04-14 13:38:12 -0700431 public void onStatusHintsChanged(Conference conference, StatusHints statusHints) {
432 String id = mIdByConference.get(conference);
433 mAdapter.setStatusHints(id, statusHints);
434 }
Santos Cordon823fd3c2014-08-07 18:35:18 -0700435 };
436
Ihab Awad542e0ea2014-05-16 10:22:16 -0700437 private final Connection.Listener mConnectionListener = new Connection.Listener() {
438 @Override
439 public void onStateChanged(Connection c, int state) {
440 String id = mIdByConnection.get(c);
Ihab Awad42b30e12014-05-22 09:49:34 -0700441 Log.d(this, "Adapter set state %s %s", id, Connection.stateToString(state));
Ihab Awad542e0ea2014-05-16 10:22:16 -0700442 switch (state) {
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700443 case Connection.STATE_ACTIVE:
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700444 mAdapter.setActive(id);
Ihab Awad542e0ea2014-05-16 10:22:16 -0700445 break;
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700446 case Connection.STATE_DIALING:
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700447 mAdapter.setDialing(id);
Ihab Awad542e0ea2014-05-16 10:22:16 -0700448 break;
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700449 case Connection.STATE_DISCONNECTED:
Ihab Awad542e0ea2014-05-16 10:22:16 -0700450 // Handled in onDisconnected()
451 break;
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700452 case Connection.STATE_HOLDING:
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700453 mAdapter.setOnHold(id);
Ihab Awad542e0ea2014-05-16 10:22:16 -0700454 break;
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700455 case Connection.STATE_NEW:
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700456 // Nothing to tell Telecom
Ihab Awad542e0ea2014-05-16 10:22:16 -0700457 break;
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700458 case Connection.STATE_RINGING:
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700459 mAdapter.setRinging(id);
Ihab Awad542e0ea2014-05-16 10:22:16 -0700460 break;
461 }
462 }
463
464 @Override
Andrew Lee7f3d41f2014-09-11 17:33:16 -0700465 public void onDisconnected(Connection c, DisconnectCause disconnectCause) {
Ihab Awad542e0ea2014-05-16 10:22:16 -0700466 String id = mIdByConnection.get(c);
Andrew Lee26786392014-09-16 18:14:59 -0700467 Log.d(this, "Adapter set disconnected %s", disconnectCause);
Andrew Lee7f3d41f2014-09-11 17:33:16 -0700468 mAdapter.setDisconnected(id, disconnectCause);
Ihab Awad542e0ea2014-05-16 10:22:16 -0700469 }
470
471 @Override
Tyler Gunnaa07df82014-07-17 07:50:22 -0700472 public void onVideoStateChanged(Connection c, int videoState) {
473 String id = mIdByConnection.get(c);
474 Log.d(this, "Adapter set video state %d", videoState);
475 mAdapter.setVideoState(id, videoState);
476 }
477
478 @Override
Andrew Lee100e2932014-09-08 15:34:24 -0700479 public void onAddressChanged(Connection c, Uri address, int presentation) {
Sailesh Nepal61203862014-07-11 14:50:13 -0700480 String id = mIdByConnection.get(c);
Andrew Lee100e2932014-09-08 15:34:24 -0700481 mAdapter.setAddress(id, address, presentation);
Sailesh Nepal61203862014-07-11 14:50:13 -0700482 }
483
484 @Override
485 public void onCallerDisplayNameChanged(
486 Connection c, String callerDisplayName, int presentation) {
487 String id = mIdByConnection.get(c);
488 mAdapter.setCallerDisplayName(id, callerDisplayName, presentation);
Ihab Awad542e0ea2014-05-16 10:22:16 -0700489 }
490
491 @Override
Ihab Awad542e0ea2014-05-16 10:22:16 -0700492 public void onDestroyed(Connection c) {
493 removeConnection(c);
494 }
Ihab Awadf8358972014-05-28 16:46:42 -0700495
496 @Override
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700497 public void onPostDialWait(Connection c, String remaining) {
Sailesh Nepal091768c2014-06-30 15:15:23 -0700498 String id = mIdByConnection.get(c);
499 Log.d(this, "Adapter onPostDialWait %s, %s", c, remaining);
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700500 mAdapter.onPostDialWait(id, remaining);
Sailesh Nepal091768c2014-06-30 15:15:23 -0700501 }
502
503 @Override
Nancy Chen27d1c2d2014-12-15 16:12:50 -0800504 public void onPostDialChar(Connection c, char nextChar) {
505 String id = mIdByConnection.get(c);
506 Log.d(this, "Adapter onPostDialChar %s, %s", c, nextChar);
507 mAdapter.onPostDialChar(id, nextChar);
508 }
509
510 @Override
Andrew Lee100e2932014-09-08 15:34:24 -0700511 public void onRingbackRequested(Connection c, boolean ringback) {
Ihab Awadf8358972014-05-28 16:46:42 -0700512 String id = mIdByConnection.get(c);
513 Log.d(this, "Adapter onRingback %b", ringback);
Andrew Lee100e2932014-09-08 15:34:24 -0700514 mAdapter.setRingbackRequested(id, ringback);
Ihab Awadf8358972014-05-28 16:46:42 -0700515 }
Santos Cordonb6939982014-06-04 20:20:58 -0700516
517 @Override
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800518 public void onConnectionCapabilitiesChanged(Connection c, int capabilities) {
Santos Cordonb6939982014-06-04 20:20:58 -0700519 String id = mIdByConnection.get(c);
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700520 Log.d(this, "capabilities: parcelableconnection: %s",
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800521 Connection.capabilitiesToString(capabilities));
522 mAdapter.setConnectionCapabilities(id, capabilities);
Santos Cordonb6939982014-06-04 20:20:58 -0700523 }
524
Santos Cordonb6939982014-06-04 20:20:58 -0700525 @Override
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700526 public void onVideoProviderChanged(Connection c, Connection.VideoProvider videoProvider) {
Andrew Lee5ffbe8b2014-06-20 16:29:33 -0700527 String id = mIdByConnection.get(c);
Rekha Kumar07366812015-03-24 16:42:31 -0700528 Log.d(this, "onVideoProviderChanged: Connection: %s, VideoProvider: %s", c,
529 videoProvider);
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700530 mAdapter.setVideoProvider(id, videoProvider);
Andrew Lee5ffbe8b2014-06-20 16:29:33 -0700531 }
Sailesh Nepal33aaae42014-07-07 22:49:44 -0700532
533 @Override
Sailesh Nepal001bbbb2014-07-15 14:40:39 -0700534 public void onAudioModeIsVoipChanged(Connection c, boolean isVoip) {
Sailesh Nepal33aaae42014-07-07 22:49:44 -0700535 String id = mIdByConnection.get(c);
Andrew Lee100e2932014-09-08 15:34:24 -0700536 mAdapter.setIsVoipAudioMode(id, isVoip);
Sailesh Nepal33aaae42014-07-07 22:49:44 -0700537 }
Sailesh Nepale7ef59a2014-07-08 21:48:22 -0700538
539 @Override
Sailesh Nepal001bbbb2014-07-15 14:40:39 -0700540 public void onStatusHintsChanged(Connection c, StatusHints statusHints) {
Sailesh Nepale7ef59a2014-07-08 21:48:22 -0700541 String id = mIdByConnection.get(c);
542 mAdapter.setStatusHints(id, statusHints);
543 }
Sailesh Nepal2ab88cc2014-07-18 14:49:18 -0700544
545 @Override
Tyler Gunn6d76ca02014-11-17 15:49:51 -0800546 public void onConferenceablesChanged(
Tyler Gunndf2cbc82015-04-20 09:13:01 -0700547 Connection connection, List<Conferenceable> conferenceables) {
Ihab Awadb8e85c72014-08-23 20:34:57 -0700548 mAdapter.setConferenceableConnections(
549 mIdByConnection.get(connection),
Tyler Gunn6d76ca02014-11-17 15:49:51 -0800550 createIdList(conferenceables));
Santos Cordon7c7bc7f2014-07-28 18:15:48 -0700551 }
Santos Cordon823fd3c2014-08-07 18:35:18 -0700552
553 @Override
554 public void onConferenceChanged(Connection connection, Conference conference) {
555 String id = mIdByConnection.get(connection);
556 if (id != null) {
557 String conferenceId = null;
558 if (conference != null) {
559 conferenceId = mIdByConference.get(conference);
560 }
561 mAdapter.setIsConferenced(id, conferenceId);
562 }
563 }
Anthony Lee17455a32015-04-24 15:25:29 -0700564
565 @Override
566 public void onConferenceMergeFailed(Connection connection) {
567 String id = mIdByConnection.get(connection);
568 if (id != null) {
569 mAdapter.onConferenceMergeFailed(id);
570 }
571 }
Ihab Awad542e0ea2014-05-16 10:22:16 -0700572 };
573
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700574 /** {@inheritDoc} */
Ihab Awad542e0ea2014-05-16 10:22:16 -0700575 @Override
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700576 public final IBinder onBind(Intent intent) {
577 return mBinder;
578 }
579
Santos Cordon29f2f2e2014-09-11 19:50:24 -0700580 /** {@inheritDoc} */
581 @Override
582 public boolean onUnbind(Intent intent) {
583 endAllConnections();
584 return super.onUnbind(intent);
585 }
586
Sailesh Nepalc5b01572014-07-14 16:29:44 -0700587 /**
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700588 * This can be used by telecom to either create a new outgoing call or attach to an existing
589 * incoming call. In either case, telecom will cycle through a set of services and call
Sailesh Nepalc5b01572014-07-14 16:29:44 -0700590 * createConnection util a connection service cancels the process or completes it successfully.
591 */
Ihab Awadf8b69882014-07-25 15:14:01 -0700592 private void createConnection(
593 final PhoneAccountHandle callManagerAccount,
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700594 final String callId,
Ihab Awadf8b69882014-07-25 15:14:01 -0700595 final ConnectionRequest request,
Yorke Leec3cf9822014-10-02 09:38:39 -0700596 boolean isIncoming,
597 boolean isUnknown) {
Sailesh Nepalcf7020b2014-08-20 10:07:19 -0700598 Log.d(this, "createConnection, callManagerAccount: %s, callId: %s, request: %s, " +
Yorke Leec3cf9822014-10-02 09:38:39 -0700599 "isIncoming: %b, isUnknown: %b", callManagerAccount, callId, request, isIncoming,
600 isUnknown);
Ihab Awad542e0ea2014-05-16 10:22:16 -0700601
Yorke Leec3cf9822014-10-02 09:38:39 -0700602 Connection connection = isUnknown ? onCreateUnknownConnection(callManagerAccount, request)
603 : isIncoming ? onCreateIncomingConnection(callManagerAccount, request)
Ihab Awad6107bab2014-08-18 09:23:25 -0700604 : onCreateOutgoingConnection(callManagerAccount, request);
Sailesh Nepalcf7020b2014-08-20 10:07:19 -0700605 Log.d(this, "createConnection, connection: %s", connection);
606 if (connection == null) {
Andrew Lee7f3d41f2014-09-11 17:33:16 -0700607 connection = Connection.createFailedConnection(
608 new DisconnectCause(DisconnectCause.ERROR));
Sailesh Nepalc5b01572014-07-14 16:29:44 -0700609 }
Ihab Awad542e0ea2014-05-16 10:22:16 -0700610
Sailesh Nepalcf7020b2014-08-20 10:07:19 -0700611 if (connection.getState() != Connection.STATE_DISCONNECTED) {
Ihab Awad6107bab2014-08-18 09:23:25 -0700612 addConnection(callId, connection);
613 }
614
Andrew Lee100e2932014-09-08 15:34:24 -0700615 Uri address = connection.getAddress();
616 String number = address == null ? "null" : address.getSchemeSpecificPart();
Sailesh Nepalcf7020b2014-08-20 10:07:19 -0700617 Log.v(this, "createConnection, number: %s, state: %s, capabilities: %s",
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700618 Connection.toLogSafePhoneNumber(number),
Sailesh Nepalcf7020b2014-08-20 10:07:19 -0700619 Connection.stateToString(connection.getState()),
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800620 Connection.capabilitiesToString(connection.getConnectionCapabilities()));
Santos Cordon7c7bc7f2014-07-28 18:15:48 -0700621
Sailesh Nepalcf7020b2014-08-20 10:07:19 -0700622 Log.d(this, "createConnection, calling handleCreateConnectionSuccessful %s", callId);
Ihab Awad6107bab2014-08-18 09:23:25 -0700623 mAdapter.handleCreateConnectionComplete(
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700624 callId,
Evan Charltonbf11f982014-07-20 22:06:28 -0700625 request,
626 new ParcelableConnection(
627 request.getAccountHandle(),
628 connection.getState(),
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800629 connection.getConnectionCapabilities(),
Andrew Lee100e2932014-09-08 15:34:24 -0700630 connection.getAddress(),
631 connection.getAddressPresentation(),
Evan Charltonbf11f982014-07-20 22:06:28 -0700632 connection.getCallerDisplayName(),
633 connection.getCallerDisplayNamePresentation(),
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700634 connection.getVideoProvider() == null ?
635 null : connection.getVideoProvider().getInterface(),
Sailesh Nepal8b9d3ca2014-08-14 17:39:34 -0700636 connection.getVideoState(),
Andrew Lee100e2932014-09-08 15:34:24 -0700637 connection.isRingbackRequested(),
Sailesh Nepal8b9d3ca2014-08-14 17:39:34 -0700638 connection.getAudioModeIsVoip(),
Ihab Awad6107bab2014-08-18 09:23:25 -0700639 connection.getStatusHints(),
Sailesh Nepalcf7020b2014-08-20 10:07:19 -0700640 connection.getDisconnectCause(),
Jay Shrauner8f988432015-04-16 12:52:19 -0700641 createIdList(connection.getConferenceables())));
Evan Charltonbf11f982014-07-20 22:06:28 -0700642 }
643
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700644 private void abort(String callId) {
Ihab Awad60ac30b2014-05-20 22:32:12 -0700645 Log.d(this, "abort %s", callId);
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700646 findConnectionForAction(callId, "abort").onAbort();
Ihab Awad542e0ea2014-05-16 10:22:16 -0700647 }
648
Tyler Gunnbe74de02014-08-29 14:51:48 -0700649 private void answerVideo(String callId, int videoState) {
650 Log.d(this, "answerVideo %s", callId);
Andrew Lee8da4c3c2014-07-16 10:11:42 -0700651 findConnectionForAction(callId, "answer").onAnswer(videoState);
Ihab Awad542e0ea2014-05-16 10:22:16 -0700652 }
653
Tyler Gunnbe74de02014-08-29 14:51:48 -0700654 private void answer(String callId) {
655 Log.d(this, "answer %s", callId);
656 findConnectionForAction(callId, "answer").onAnswer();
657 }
658
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700659 private void reject(String callId) {
Ihab Awad60ac30b2014-05-20 22:32:12 -0700660 Log.d(this, "reject %s", callId);
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700661 findConnectionForAction(callId, "reject").onReject();
Ihab Awad542e0ea2014-05-16 10:22:16 -0700662 }
663
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700664 private void disconnect(String callId) {
Ihab Awad60ac30b2014-05-20 22:32:12 -0700665 Log.d(this, "disconnect %s", callId);
Santos Cordon0159ac02014-08-21 14:28:11 -0700666 if (mConnectionById.containsKey(callId)) {
667 findConnectionForAction(callId, "disconnect").onDisconnect();
668 } else {
669 findConferenceForAction(callId, "disconnect").onDisconnect();
670 }
Ihab Awad542e0ea2014-05-16 10:22:16 -0700671 }
672
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700673 private void hold(String callId) {
Ihab Awad60ac30b2014-05-20 22:32:12 -0700674 Log.d(this, "hold %s", callId);
Santos Cordon0159ac02014-08-21 14:28:11 -0700675 if (mConnectionById.containsKey(callId)) {
676 findConnectionForAction(callId, "hold").onHold();
677 } else {
678 findConferenceForAction(callId, "hold").onHold();
679 }
Ihab Awad542e0ea2014-05-16 10:22:16 -0700680 }
681
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700682 private void unhold(String callId) {
Ihab Awad60ac30b2014-05-20 22:32:12 -0700683 Log.d(this, "unhold %s", callId);
Santos Cordon0159ac02014-08-21 14:28:11 -0700684 if (mConnectionById.containsKey(callId)) {
685 findConnectionForAction(callId, "unhold").onUnhold();
686 } else {
687 findConferenceForAction(callId, "unhold").onUnhold();
688 }
Ihab Awad542e0ea2014-05-16 10:22:16 -0700689 }
690
Yorke Lee4af59352015-05-13 14:14:54 -0700691 private void onCallAudioStateChanged(String callId, CallAudioState callAudioState) {
692 Log.d(this, "onAudioStateChanged %s %s", callId, callAudioState);
Yorke Leea0d3ca92014-09-15 19:18:13 -0700693 if (mConnectionById.containsKey(callId)) {
Yorke Lee4af59352015-05-13 14:14:54 -0700694 findConnectionForAction(callId, "onCallAudioStateChanged").setCallAudioState(
695 callAudioState);
Yorke Leea0d3ca92014-09-15 19:18:13 -0700696 } else {
Yorke Lee4af59352015-05-13 14:14:54 -0700697 findConferenceForAction(callId, "onCallAudioStateChanged").setCallAudioState(
698 callAudioState);
Yorke Leea0d3ca92014-09-15 19:18:13 -0700699 }
Ihab Awad542e0ea2014-05-16 10:22:16 -0700700 }
701
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700702 private void playDtmfTone(String callId, char digit) {
703 Log.d(this, "playDtmfTone %s %c", callId, digit);
Yorke Leea0d3ca92014-09-15 19:18:13 -0700704 if (mConnectionById.containsKey(callId)) {
705 findConnectionForAction(callId, "playDtmfTone").onPlayDtmfTone(digit);
706 } else {
707 findConferenceForAction(callId, "playDtmfTone").onPlayDtmfTone(digit);
708 }
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700709 }
710
711 private void stopDtmfTone(String callId) {
712 Log.d(this, "stopDtmfTone %s", callId);
Yorke Leea0d3ca92014-09-15 19:18:13 -0700713 if (mConnectionById.containsKey(callId)) {
714 findConnectionForAction(callId, "stopDtmfTone").onStopDtmfTone();
715 } else {
716 findConferenceForAction(callId, "stopDtmfTone").onStopDtmfTone();
717 }
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700718 }
719
Santos Cordon823fd3c2014-08-07 18:35:18 -0700720 private void conference(String callId1, String callId2) {
721 Log.d(this, "conference %s, %s", callId1, callId2);
Santos Cordon980acb92014-05-31 10:31:19 -0700722
Tyler Gunn6d76ca02014-11-17 15:49:51 -0800723 // Attempt to get second connection or conference.
Santos Cordon823fd3c2014-08-07 18:35:18 -0700724 Connection connection2 = findConnectionForAction(callId2, "conference");
Tyler Gunn6d76ca02014-11-17 15:49:51 -0800725 Conference conference2 = getNullConference();
Sailesh Nepalcf7020b2014-08-20 10:07:19 -0700726 if (connection2 == getNullConnection()) {
Tyler Gunn6d76ca02014-11-17 15:49:51 -0800727 conference2 = findConferenceForAction(callId2, "conference");
728 if (conference2 == getNullConference()) {
729 Log.w(this, "Connection2 or Conference2 missing in conference request %s.",
730 callId2);
731 return;
732 }
Santos Cordon823fd3c2014-08-07 18:35:18 -0700733 }
Santos Cordonb6939982014-06-04 20:20:58 -0700734
Tyler Gunn6d76ca02014-11-17 15:49:51 -0800735 // Attempt to get first connection or conference and perform merge.
Ihab Awad50e35062014-09-30 09:17:03 -0700736 Connection connection1 = findConnectionForAction(callId1, "conference");
737 if (connection1 == getNullConnection()) {
738 Conference conference1 = findConferenceForAction(callId1, "addConnection");
739 if (conference1 == getNullConference()) {
740 Log.w(this,
741 "Connection1 or Conference1 missing in conference request %s.",
742 callId1);
743 } else {
Tyler Gunn6d76ca02014-11-17 15:49:51 -0800744 // Call 1 is a conference.
745 if (connection2 != getNullConnection()) {
746 // Call 2 is a connection so merge via call 1 (conference).
747 conference1.onMerge(connection2);
748 } else {
749 // Call 2 is ALSO a conference; this should never happen.
750 Log.wtf(this, "There can only be one conference and an attempt was made to " +
751 "merge two conferences.");
752 return;
753 }
Ihab Awad50e35062014-09-30 09:17:03 -0700754 }
755 } else {
Tyler Gunn6d76ca02014-11-17 15:49:51 -0800756 // Call 1 is a connection.
757 if (conference2 != getNullConference()) {
758 // Call 2 is a conference, so merge via call 2.
759 conference2.onMerge(connection1);
760 } else {
761 // Call 2 is a connection, so merge together.
762 onConference(connection1, connection2);
763 }
Ihab Awad50e35062014-09-30 09:17:03 -0700764 }
Santos Cordon980acb92014-05-31 10:31:19 -0700765 }
766
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700767 private void splitFromConference(String callId) {
Santos Cordonb6939982014-06-04 20:20:58 -0700768 Log.d(this, "splitFromConference(%s)", callId);
Santos Cordon980acb92014-05-31 10:31:19 -0700769
770 Connection connection = findConnectionForAction(callId, "splitFromConference");
Sailesh Nepalcf7020b2014-08-20 10:07:19 -0700771 if (connection == getNullConnection()) {
Santos Cordon980acb92014-05-31 10:31:19 -0700772 Log.w(this, "Connection missing in conference request %s.", callId);
773 return;
774 }
775
Santos Cordon0159ac02014-08-21 14:28:11 -0700776 Conference conference = connection.getConference();
777 if (conference != null) {
778 conference.onSeparate(connection);
779 }
Santos Cordon980acb92014-05-31 10:31:19 -0700780 }
781
Santos Cordona4868042014-09-04 17:39:22 -0700782 private void mergeConference(String callId) {
783 Log.d(this, "mergeConference(%s)", callId);
784 Conference conference = findConferenceForAction(callId, "mergeConference");
785 if (conference != null) {
786 conference.onMerge();
787 }
788 }
789
790 private void swapConference(String callId) {
791 Log.d(this, "swapConference(%s)", callId);
792 Conference conference = findConferenceForAction(callId, "swapConference");
793 if (conference != null) {
794 conference.onSwap();
795 }
796 }
797
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700798 private void onPostDialContinue(String callId, boolean proceed) {
Evan Charlton6dea4ac2014-06-03 14:07:13 -0700799 Log.d(this, "onPostDialContinue(%s)", callId);
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700800 findConnectionForAction(callId, "stopDtmfTone").onPostDialContinue(proceed);
Evan Charlton6dea4ac2014-06-03 14:07:13 -0700801 }
802
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700803 private void onAdapterAttached() {
Ihab Awad9c3f1882014-06-30 21:17:13 -0700804 if (mAreAccountsInitialized) {
Santos Cordon52d8a152014-06-17 19:08:45 -0700805 // No need to query again if we already did it.
806 return;
807 }
808
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700809 mAdapter.queryRemoteConnectionServices(new RemoteServiceCallback.Stub() {
Santos Cordon52d8a152014-06-17 19:08:45 -0700810 @Override
811 public void onResult(
812 final List<ComponentName> componentNames,
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700813 final List<IBinder> services) {
Santos Cordon52d8a152014-06-17 19:08:45 -0700814 mHandler.post(new Runnable() {
Ihab Awad6107bab2014-08-18 09:23:25 -0700815 @Override
816 public void run() {
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700817 for (int i = 0; i < componentNames.size() && i < services.size(); i++) {
Santos Cordon52d8a152014-06-17 19:08:45 -0700818 mRemoteConnectionManager.addConnectionService(
819 componentNames.get(i),
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700820 IConnectionService.Stub.asInterface(services.get(i)));
Santos Cordon52d8a152014-06-17 19:08:45 -0700821 }
Ihab Awad5d0410f2014-07-30 10:07:40 -0700822 onAccountsInitialized();
Sailesh Nepalc5b01572014-07-14 16:29:44 -0700823 Log.d(this, "remote connection services found: " + services);
Santos Cordon52d8a152014-06-17 19:08:45 -0700824 }
825 });
826 }
827
828 @Override
829 public void onError() {
830 mHandler.post(new Runnable() {
Ihab Awad6107bab2014-08-18 09:23:25 -0700831 @Override
832 public void run() {
Ihab Awad9c3f1882014-06-30 21:17:13 -0700833 mAreAccountsInitialized = true;
Santos Cordon52d8a152014-06-17 19:08:45 -0700834 }
835 });
836 }
837 });
838 }
839
Ihab Awadf8b69882014-07-25 15:14:01 -0700840 /**
841 * Ask some other {@code ConnectionService} to create a {@code RemoteConnection} given an
Santos Cordona663f862014-10-29 13:49:58 -0700842 * incoming request. This is used by {@code ConnectionService}s that are registered with
843 * {@link PhoneAccount#CAPABILITY_CONNECTION_MANAGER} and want to be able to manage
844 * SIM-based incoming calls.
Ihab Awadf8b69882014-07-25 15:14:01 -0700845 *
846 * @param connectionManagerPhoneAccount See description at
847 * {@link #onCreateOutgoingConnection(PhoneAccountHandle, ConnectionRequest)}.
848 * @param request Details about the incoming call.
849 * @return The {@code Connection} object to satisfy this call, or {@code null} to
850 * not handle the call.
851 */
852 public final RemoteConnection createRemoteIncomingConnection(
853 PhoneAccountHandle connectionManagerPhoneAccount,
854 ConnectionRequest request) {
855 return mRemoteConnectionManager.createRemoteConnection(
856 connectionManagerPhoneAccount, request, true);
Santos Cordon52d8a152014-06-17 19:08:45 -0700857 }
858
859 /**
Ihab Awadf8b69882014-07-25 15:14:01 -0700860 * Ask some other {@code ConnectionService} to create a {@code RemoteConnection} given an
Santos Cordona663f862014-10-29 13:49:58 -0700861 * outgoing request. This is used by {@code ConnectionService}s that are registered with
862 * {@link PhoneAccount#CAPABILITY_CONNECTION_MANAGER} and want to be able to use the
863 * SIM-based {@code ConnectionService} to place its outgoing calls.
Ihab Awadf8b69882014-07-25 15:14:01 -0700864 *
865 * @param connectionManagerPhoneAccount See description at
866 * {@link #onCreateOutgoingConnection(PhoneAccountHandle, ConnectionRequest)}.
867 * @param request Details about the incoming call.
868 * @return The {@code Connection} object to satisfy this call, or {@code null} to
869 * not handle the call.
870 */
871 public final RemoteConnection createRemoteOutgoingConnection(
872 PhoneAccountHandle connectionManagerPhoneAccount,
873 ConnectionRequest request) {
874 return mRemoteConnectionManager.createRemoteConnection(
875 connectionManagerPhoneAccount, request, false);
876 }
877
878 /**
Santos Cordona663f862014-10-29 13:49:58 -0700879 * Indicates to the relevant {@code RemoteConnectionService} that the specified
880 * {@link RemoteConnection}s should be merged into a conference call.
881 * <p>
882 * If the conference request is successful, the method {@link #onRemoteConferenceAdded} will
883 * be invoked.
884 *
885 * @param remoteConnection1 The first of the remote connections to conference.
886 * @param remoteConnection2 The second of the remote connections to conference.
Ihab Awadb8e85c72014-08-23 20:34:57 -0700887 */
888 public final void conferenceRemoteConnections(
Santos Cordona663f862014-10-29 13:49:58 -0700889 RemoteConnection remoteConnection1,
890 RemoteConnection remoteConnection2) {
891 mRemoteConnectionManager.conferenceRemoteConnections(remoteConnection1, remoteConnection2);
Ihab Awadb8e85c72014-08-23 20:34:57 -0700892 }
893
894 /**
Santos Cordon823fd3c2014-08-07 18:35:18 -0700895 * Adds a new conference call. When a conference call is created either as a result of an
896 * explicit request via {@link #onConference} or otherwise, the connection service should supply
897 * an instance of {@link Conference} by invoking this method. A conference call provided by this
898 * method will persist until {@link Conference#destroy} is invoked on the conference instance.
899 *
900 * @param conference The new conference object.
901 */
902 public final void addConference(Conference conference) {
Rekha Kumar07366812015-03-24 16:42:31 -0700903 Log.d(this, "addConference: conference=%s", conference);
904
Santos Cordon823fd3c2014-08-07 18:35:18 -0700905 String id = addConferenceInternal(conference);
906 if (id != null) {
907 List<String> connectionIds = new ArrayList<>(2);
908 for (Connection connection : conference.getConnections()) {
909 if (mIdByConnection.containsKey(connection)) {
910 connectionIds.add(mIdByConnection.get(connection));
911 }
912 }
913 ParcelableConference parcelableConference = new ParcelableConference(
Nancy Chenea38cca2014-09-05 16:38:49 -0700914 conference.getPhoneAccountHandle(),
Santos Cordon823fd3c2014-08-07 18:35:18 -0700915 conference.getState(),
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800916 conference.getConnectionCapabilities(),
Tyler Gunncd5d33c2015-01-12 09:02:01 -0800917 connectionIds,
Rekha Kumar07366812015-03-24 16:42:31 -0700918 conference.getVideoProvider() == null ?
919 null : conference.getVideoProvider().getInterface(),
920 conference.getVideoState(),
Andrew Lee3e3e2f22015-04-16 13:48:43 -0700921 conference.getConnectTimeMillis(),
Andrew Leeedc625f2015-04-14 13:38:12 -0700922 conference.getStatusHints());
Andrew Lee0f51da32015-04-16 13:11:55 -0700923
Santos Cordon823fd3c2014-08-07 18:35:18 -0700924 mAdapter.addConferenceCall(id, parcelableConference);
Rekha Kumar07366812015-03-24 16:42:31 -0700925 mAdapter.setVideoProvider(id, conference.getVideoProvider());
926 mAdapter.setVideoState(id, conference.getVideoState());
Santos Cordon823fd3c2014-08-07 18:35:18 -0700927
928 // Go through any child calls and set the parent.
929 for (Connection connection : conference.getConnections()) {
930 String connectionId = mIdByConnection.get(connection);
931 if (connectionId != null) {
932 mAdapter.setIsConferenced(connectionId, id);
933 }
934 }
935 }
936 }
937
938 /**
Tyler Gunn4a57b9b2014-10-30 14:27:48 -0700939 * Adds a connection created by the {@link ConnectionService} and informs telecom of the new
940 * connection.
941 *
942 * @param phoneAccountHandle The phone account handle for the connection.
943 * @param connection The connection to add.
944 */
945 public final void addExistingConnection(PhoneAccountHandle phoneAccountHandle,
946 Connection connection) {
947
948 String id = addExistingConnectionInternal(connection);
949 if (id != null) {
950 List<String> emptyList = new ArrayList<>(0);
951
952 ParcelableConnection parcelableConnection = new ParcelableConnection(
953 phoneAccountHandle,
954 connection.getState(),
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800955 connection.getConnectionCapabilities(),
Tyler Gunn4a57b9b2014-10-30 14:27:48 -0700956 connection.getAddress(),
957 connection.getAddressPresentation(),
958 connection.getCallerDisplayName(),
959 connection.getCallerDisplayNamePresentation(),
960 connection.getVideoProvider() == null ?
961 null : connection.getVideoProvider().getInterface(),
962 connection.getVideoState(),
963 connection.isRingbackRequested(),
964 connection.getAudioModeIsVoip(),
965 connection.getStatusHints(),
966 connection.getDisconnectCause(),
Jay Shrauner8f988432015-04-16 12:52:19 -0700967 emptyList);
Tyler Gunn4a57b9b2014-10-30 14:27:48 -0700968 mAdapter.addExistingConnection(id, parcelableConnection);
969 }
970 }
971
972 /**
Ihab Awadf8b69882014-07-25 15:14:01 -0700973 * Returns all the active {@code Connection}s for which this {@code ConnectionService}
974 * has taken responsibility.
975 *
976 * @return A collection of {@code Connection}s created by this {@code ConnectionService}.
Santos Cordonb6939982014-06-04 20:20:58 -0700977 */
Sailesh Nepal091768c2014-06-30 15:15:23 -0700978 public final Collection<Connection> getAllConnections() {
Santos Cordonb6939982014-06-04 20:20:58 -0700979 return mConnectionById.values();
980 }
981
982 /**
Ihab Awadf8b69882014-07-25 15:14:01 -0700983 * Create a {@code Connection} given an incoming request. This is used to attach to existing
984 * incoming calls.
Evan Charltonbf11f982014-07-20 22:06:28 -0700985 *
Ihab Awadf8b69882014-07-25 15:14:01 -0700986 * @param connectionManagerPhoneAccount See description at
987 * {@link #onCreateOutgoingConnection(PhoneAccountHandle, ConnectionRequest)}.
988 * @param request Details about the incoming call.
989 * @return The {@code Connection} object to satisfy this call, or {@code null} to
990 * not handle the call.
Ihab Awad542e0ea2014-05-16 10:22:16 -0700991 */
Ihab Awadf8b69882014-07-25 15:14:01 -0700992 public Connection onCreateIncomingConnection(
993 PhoneAccountHandle connectionManagerPhoneAccount,
994 ConnectionRequest request) {
995 return null;
996 }
Sailesh Nepalc5b01572014-07-14 16:29:44 -0700997
998 /**
Ihab Awadf8b69882014-07-25 15:14:01 -0700999 * Create a {@code Connection} given an outgoing request. This is used to initiate new
1000 * outgoing calls.
Sailesh Nepalc5b01572014-07-14 16:29:44 -07001001 *
Ihab Awadf8b69882014-07-25 15:14:01 -07001002 * @param connectionManagerPhoneAccount The connection manager account to use for managing
1003 * this call.
1004 * <p>
1005 * If this parameter is not {@code null}, it means that this {@code ConnectionService}
1006 * has registered one or more {@code PhoneAccount}s having
1007 * {@link PhoneAccount#CAPABILITY_CONNECTION_MANAGER}. This parameter will contain
1008 * one of these {@code PhoneAccount}s, while the {@code request} will contain another
1009 * (usually but not always distinct) {@code PhoneAccount} to be used for actually
1010 * making the connection.
1011 * <p>
1012 * If this parameter is {@code null}, it means that this {@code ConnectionService} is
1013 * being asked to make a direct connection. The
1014 * {@link ConnectionRequest#getAccountHandle()} of parameter {@code request} will be
1015 * a {@code PhoneAccount} registered by this {@code ConnectionService} to use for
1016 * making the connection.
1017 * @param request Details about the outgoing call.
1018 * @return The {@code Connection} object to satisfy this call, or the result of an invocation
Andrew Lee7f3d41f2014-09-11 17:33:16 -07001019 * of {@link Connection#createFailedConnection(DisconnectCause)} to not handle the call.
Sailesh Nepalc5b01572014-07-14 16:29:44 -07001020 */
Ihab Awadf8b69882014-07-25 15:14:01 -07001021 public Connection onCreateOutgoingConnection(
1022 PhoneAccountHandle connectionManagerPhoneAccount,
1023 ConnectionRequest request) {
1024 return null;
1025 }
Ihab Awad542e0ea2014-05-16 10:22:16 -07001026
1027 /**
Yorke Leec3cf9822014-10-02 09:38:39 -07001028 * Create a {@code Connection} for a new unknown call. An unknown call is a call originating
1029 * from the ConnectionService that was neither a user-initiated outgoing call, nor an incoming
1030 * call created using
1031 * {@code TelecomManager#addNewIncomingCall(PhoneAccountHandle, android.os.Bundle)}.
1032 *
1033 * @param connectionManagerPhoneAccount
1034 * @param request
1035 * @return
Yorke Lee770ed6e2014-10-06 18:58:52 -07001036 *
1037 * @hide
Yorke Leec3cf9822014-10-02 09:38:39 -07001038 */
1039 public Connection onCreateUnknownConnection(PhoneAccountHandle connectionManagerPhoneAccount,
1040 ConnectionRequest request) {
1041 return null;
1042 }
1043
1044 /**
Santos Cordon823fd3c2014-08-07 18:35:18 -07001045 * Conference two specified connections. Invoked when the user has made a request to merge the
1046 * specified connections into a conference call. In response, the connection service should
1047 * create an instance of {@link Conference} and pass it into {@link #addConference}.
Santos Cordonb6939982014-06-04 20:20:58 -07001048 *
Santos Cordon823fd3c2014-08-07 18:35:18 -07001049 * @param connection1 A connection to merge into a conference call.
1050 * @param connection2 A connection to merge into a conference call.
Santos Cordonb6939982014-06-04 20:20:58 -07001051 */
Santos Cordon823fd3c2014-08-07 18:35:18 -07001052 public void onConference(Connection connection1, Connection connection2) {}
Santos Cordonb6939982014-06-04 20:20:58 -07001053
Santos Cordona663f862014-10-29 13:49:58 -07001054 /**
1055 * Indicates that a remote conference has been created for existing {@link RemoteConnection}s.
1056 * When this method is invoked, this {@link ConnectionService} should create its own
1057 * representation of the conference call and send it to telecom using {@link #addConference}.
1058 * <p>
1059 * This is only relevant to {@link ConnectionService}s which are registered with
1060 * {@link PhoneAccount#CAPABILITY_CONNECTION_MANAGER}.
1061 *
1062 * @param conference The remote conference call.
1063 */
Ihab Awadb8e85c72014-08-23 20:34:57 -07001064 public void onRemoteConferenceAdded(RemoteConference conference) {}
1065
Santos Cordon823fd3c2014-08-07 18:35:18 -07001066 /**
Tyler Gunn4a57b9b2014-10-30 14:27:48 -07001067 * Called when an existing connection is added remotely.
1068 * @param connection The existing connection which was added.
1069 */
1070 public void onRemoteExistingConnectionAdded(RemoteConnection connection) {}
1071
1072 /**
Santos Cordon823fd3c2014-08-07 18:35:18 -07001073 * @hide
1074 */
1075 public boolean containsConference(Conference conference) {
1076 return mIdByConference.containsKey(conference);
1077 }
1078
Ihab Awadb8e85c72014-08-23 20:34:57 -07001079 /** {@hide} */
1080 void addRemoteConference(RemoteConference remoteConference) {
1081 onRemoteConferenceAdded(remoteConference);
1082 }
1083
Tyler Gunn4a57b9b2014-10-30 14:27:48 -07001084 /** {@hide} */
1085 void addRemoteExistingConnection(RemoteConnection remoteConnection) {
1086 onRemoteExistingConnectionAdded(remoteConnection);
1087 }
1088
Ihab Awad5d0410f2014-07-30 10:07:40 -07001089 private void onAccountsInitialized() {
1090 mAreAccountsInitialized = true;
1091 for (Runnable r : mPreInitializationConnectionRequests) {
1092 r.run();
1093 }
1094 mPreInitializationConnectionRequests.clear();
1095 }
1096
Tyler Gunn4a57b9b2014-10-30 14:27:48 -07001097 /**
1098 * Adds an existing connection to the list of connections, identified by a new UUID.
1099 *
1100 * @param connection The connection.
1101 * @return The UUID of the connection (e.g. the call-id).
1102 */
1103 private String addExistingConnectionInternal(Connection connection) {
1104 String id = UUID.randomUUID().toString();
1105 addConnection(id, connection);
1106 return id;
1107 }
1108
Ihab Awad542e0ea2014-05-16 10:22:16 -07001109 private void addConnection(String callId, Connection connection) {
1110 mConnectionById.put(callId, connection);
1111 mIdByConnection.put(connection, callId);
1112 connection.addConnectionListener(mConnectionListener);
Santos Cordon823fd3c2014-08-07 18:35:18 -07001113 connection.setConnectionService(this);
Ihab Awad542e0ea2014-05-16 10:22:16 -07001114 }
1115
Anthony Lee30e65842014-11-06 16:30:53 -08001116 /** {@hide} */
1117 protected void removeConnection(Connection connection) {
Ihab Awad8aecfed2014-08-08 17:06:11 -07001118 String id = mIdByConnection.get(connection);
Santos Cordon823fd3c2014-08-07 18:35:18 -07001119 connection.unsetConnectionService(this);
Ihab Awad542e0ea2014-05-16 10:22:16 -07001120 connection.removeConnectionListener(mConnectionListener);
1121 mConnectionById.remove(mIdByConnection.get(connection));
1122 mIdByConnection.remove(connection);
Ihab Awad8aecfed2014-08-08 17:06:11 -07001123 mAdapter.removeCall(id);
Ihab Awad542e0ea2014-05-16 10:22:16 -07001124 }
1125
Santos Cordon823fd3c2014-08-07 18:35:18 -07001126 private String addConferenceInternal(Conference conference) {
1127 if (mIdByConference.containsKey(conference)) {
1128 Log.w(this, "Re-adding an existing conference: %s.", conference);
1129 } else if (conference != null) {
1130 String id = UUID.randomUUID().toString();
1131 mConferenceById.put(id, conference);
1132 mIdByConference.put(conference, id);
1133 conference.addListener(mConferenceListener);
1134 return id;
1135 }
1136
1137 return null;
1138 }
1139
1140 private void removeConference(Conference conference) {
1141 if (mIdByConference.containsKey(conference)) {
1142 conference.removeListener(mConferenceListener);
1143
1144 String id = mIdByConference.get(conference);
1145 mConferenceById.remove(id);
1146 mIdByConference.remove(conference);
1147 mAdapter.removeCall(id);
1148 }
1149 }
1150
Ihab Awad542e0ea2014-05-16 10:22:16 -07001151 private Connection findConnectionForAction(String callId, String action) {
1152 if (mConnectionById.containsKey(callId)) {
1153 return mConnectionById.get(callId);
1154 }
Ihab Awad60ac30b2014-05-20 22:32:12 -07001155 Log.w(this, "%s - Cannot find Connection %s", action, callId);
Sailesh Nepalcf7020b2014-08-20 10:07:19 -07001156 return getNullConnection();
1157 }
1158
1159 static synchronized Connection getNullConnection() {
1160 if (sNullConnection == null) {
1161 sNullConnection = new Connection() {};
1162 }
1163 return sNullConnection;
Santos Cordon7c7bc7f2014-07-28 18:15:48 -07001164 }
Santos Cordon0159ac02014-08-21 14:28:11 -07001165
1166 private Conference findConferenceForAction(String conferenceId, String action) {
1167 if (mConferenceById.containsKey(conferenceId)) {
1168 return mConferenceById.get(conferenceId);
1169 }
1170 Log.w(this, "%s - Cannot find conference %s", action, conferenceId);
1171 return getNullConference();
1172 }
1173
Ihab Awadb8e85c72014-08-23 20:34:57 -07001174 private List<String> createConnectionIdList(List<Connection> connections) {
1175 List<String> ids = new ArrayList<>();
1176 for (Connection c : connections) {
1177 if (mIdByConnection.containsKey(c)) {
1178 ids.add(mIdByConnection.get(c));
1179 }
1180 }
1181 Collections.sort(ids);
1182 return ids;
1183 }
1184
Tyler Gunn6d76ca02014-11-17 15:49:51 -08001185 /**
1186 * Builds a list of {@link Connection} and {@link Conference} IDs based on the list of
Tyler Gunndf2cbc82015-04-20 09:13:01 -07001187 * {@link Conferenceable}s passed in.
Tyler Gunn6d76ca02014-11-17 15:49:51 -08001188 *
Tyler Gunndf2cbc82015-04-20 09:13:01 -07001189 * @param conferenceables The {@link Conferenceable} connections and conferences.
Tyler Gunn6d76ca02014-11-17 15:49:51 -08001190 * @return List of string conference and call Ids.
1191 */
Tyler Gunndf2cbc82015-04-20 09:13:01 -07001192 private List<String> createIdList(List<Conferenceable> conferenceables) {
Tyler Gunn6d76ca02014-11-17 15:49:51 -08001193 List<String> ids = new ArrayList<>();
Tyler Gunndf2cbc82015-04-20 09:13:01 -07001194 for (Conferenceable c : conferenceables) {
Tyler Gunn6d76ca02014-11-17 15:49:51 -08001195 // Only allow Connection and Conference conferenceables.
1196 if (c instanceof Connection) {
1197 Connection connection = (Connection) c;
1198 if (mIdByConnection.containsKey(connection)) {
1199 ids.add(mIdByConnection.get(connection));
1200 }
1201 } else if (c instanceof Conference) {
1202 Conference conference = (Conference) c;
1203 if (mIdByConference.containsKey(conference)) {
1204 ids.add(mIdByConference.get(conference));
1205 }
1206 }
1207 }
1208 Collections.sort(ids);
1209 return ids;
1210 }
1211
Santos Cordon0159ac02014-08-21 14:28:11 -07001212 private Conference getNullConference() {
1213 if (sNullConference == null) {
1214 sNullConference = new Conference(null) {};
1215 }
1216 return sNullConference;
1217 }
Santos Cordon29f2f2e2014-09-11 19:50:24 -07001218
1219 private void endAllConnections() {
1220 // Unbound from telecomm. We should end all connections and conferences.
1221 for (Connection connection : mIdByConnection.keySet()) {
1222 // only operate on top-level calls. Conference calls will be removed on their own.
1223 if (connection.getConference() == null) {
1224 connection.onDisconnect();
1225 }
1226 }
1227 for (Conference conference : mIdByConference.keySet()) {
1228 conference.onDisconnect();
1229 }
1230 }
Santos Cordon980acb92014-05-31 10:31:19 -07001231}