blob: 1cb042cbed6c6d18e64a71257e38c2fc5101d646 [file] [log] [blame]
Ben Giladbb69b0c2013-12-12 18:32:02 -08001/*
Sailesh Nepalab5d2822014-03-08 18:01:06 -08002 * Copyright (C) 2014 The Android Open Source Project
Ben Giladbb69b0c2013-12-12 18:32:02 -08003 *
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;
Ben Giladbb69b0c2013-12-12 18:32:02 -080018
Sailesh Nepal61203862014-07-11 14:50:13 -070019import android.net.Uri;
Santos Cordon6b7f9552015-05-27 17:21:45 -070020import android.os.Bundle;
Santos Cordon52d8a152014-06-17 19:08:45 -070021import android.os.IBinder.DeathRecipient;
Sailesh Nepalab5d2822014-03-08 18:01:06 -080022import android.os.RemoteException;
23
Tyler Gunnef9f6f92014-09-12 22:16:17 -070024import com.android.internal.telecom.IConnectionServiceAdapter;
25import com.android.internal.telecom.RemoteServiceCallback;
Ben Giladbb69b0c2013-12-12 18:32:02 -080026
Jay Shraunerb0c0e362014-08-08 16:31:48 -070027import java.util.Collections;
Sailesh Nepal4dd9df52014-07-10 18:15:15 -070028import java.util.Iterator;
Santos Cordon980acb92014-05-31 10:31:19 -070029import java.util.List;
Santos Cordon52d8a152014-06-17 19:08:45 -070030import java.util.Set;
Jay Shraunerb0c0e362014-08-08 16:31:48 -070031import java.util.concurrent.ConcurrentHashMap;
Santos Cordon980acb92014-05-31 10:31:19 -070032
Ben Giladbb69b0c2013-12-12 18:32:02 -080033/**
Sailesh Nepal2a46b902014-07-04 17:21:07 -070034 * Provides methods for IConnectionService implementations to interact with the system phone app.
Sailesh Nepal2bed9562014-07-02 21:26:12 -070035 *
36 * @hide
Ben Giladbb69b0c2013-12-12 18:32:02 -080037 */
Sailesh Nepal2a46b902014-07-04 17:21:07 -070038final class ConnectionServiceAdapter implements DeathRecipient {
Jay Shrauner229e3822014-08-15 09:23:07 -070039 /**
40 * ConcurrentHashMap constructor params: 8 is initial table size, 0.9f is
41 * load factor before resizing, 1 means we only expect a single thread to
42 * access the map so make only a single shard
43 */
Jay Shraunerb0c0e362014-08-08 16:31:48 -070044 private final Set<IConnectionServiceAdapter> mAdapters = Collections.newSetFromMap(
Jay Shrauner229e3822014-08-15 09:23:07 -070045 new ConcurrentHashMap<IConnectionServiceAdapter, Boolean>(8, 0.9f, 1));
Sailesh Nepalab5d2822014-03-08 18:01:06 -080046
Sailesh Nepal2a46b902014-07-04 17:21:07 -070047 ConnectionServiceAdapter() {
Santos Cordon52d8a152014-06-17 19:08:45 -070048 }
49
Sailesh Nepal2a46b902014-07-04 17:21:07 -070050 void addAdapter(IConnectionServiceAdapter adapter) {
Santos Cordon52d8a152014-06-17 19:08:45 -070051 if (mAdapters.add(adapter)) {
52 try {
53 adapter.asBinder().linkToDeath(this, 0);
54 } catch (RemoteException e) {
55 mAdapters.remove(adapter);
56 }
57 }
58 }
59
Sailesh Nepal2a46b902014-07-04 17:21:07 -070060 void removeAdapter(IConnectionServiceAdapter adapter) {
Jay Shrauner229e3822014-08-15 09:23:07 -070061 if (adapter != null && mAdapters.remove(adapter)) {
Santos Cordon52d8a152014-06-17 19:08:45 -070062 adapter.asBinder().unlinkToDeath(this, 0);
63 }
64 }
65
66 /** ${inheritDoc} */
67 @Override
68 public void binderDied() {
Sailesh Nepal4dd9df52014-07-10 18:15:15 -070069 Iterator<IConnectionServiceAdapter> it = mAdapters.iterator();
70 while (it.hasNext()) {
71 IConnectionServiceAdapter adapter = it.next();
Santos Cordon52d8a152014-06-17 19:08:45 -070072 if (!adapter.asBinder().isBinderAlive()) {
Sailesh Nepal4dd9df52014-07-10 18:15:15 -070073 it.remove();
74 adapter.asBinder().unlinkToDeath(this, 0);
Santos Cordon52d8a152014-06-17 19:08:45 -070075 }
76 }
Sailesh Nepalab5d2822014-03-08 18:01:06 -080077 }
Ben Giladbb69b0c2013-12-12 18:32:02 -080078
Ihab Awad6107bab2014-08-18 09:23:25 -070079 void handleCreateConnectionComplete(
Ihab Awadb19a0bc2014-08-07 19:46:01 -070080 String id,
81 ConnectionRequest request,
82 ParcelableConnection connection) {
Sailesh Nepal2a46b902014-07-04 17:21:07 -070083 for (IConnectionServiceAdapter adapter : mAdapters) {
Santos Cordon52d8a152014-06-17 19:08:45 -070084 try {
Ihab Awad6107bab2014-08-18 09:23:25 -070085 adapter.handleCreateConnectionComplete(id, request, connection);
Sailesh Nepal506e3862014-06-25 13:35:14 -070086 } catch (RemoteException e) {
87 }
88 }
89 }
90
91 /**
Ben Giladbb69b0c2013-12-12 18:32:02 -080092 * Sets a call's state to active (e.g., an ongoing call where two parties can actively
93 * communicate).
Santos Cordon37841332013-12-17 13:30:53 -080094 *
95 * @param callId The unique ID of the call whose state is changing to active.
Ben Giladbb69b0c2013-12-12 18:32:02 -080096 */
Sailesh Nepal2a46b902014-07-04 17:21:07 -070097 void setActive(String callId) {
98 for (IConnectionServiceAdapter adapter : mAdapters) {
Santos Cordon52d8a152014-06-17 19:08:45 -070099 try {
100 adapter.setActive(callId);
101 } catch (RemoteException e) {
102 }
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800103 }
104 }
Ben Giladbb69b0c2013-12-12 18:32:02 -0800105
106 /**
107 * Sets a call's state to ringing (e.g., an inbound ringing call).
Santos Cordon37841332013-12-17 13:30:53 -0800108 *
109 * @param callId The unique ID of the call whose state is changing to ringing.
Ben Giladbb69b0c2013-12-12 18:32:02 -0800110 */
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700111 void setRinging(String callId) {
112 for (IConnectionServiceAdapter adapter : mAdapters) {
Santos Cordon52d8a152014-06-17 19:08:45 -0700113 try {
114 adapter.setRinging(callId);
115 } catch (RemoteException e) {
116 }
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800117 }
118 }
Ben Giladbb69b0c2013-12-12 18:32:02 -0800119
120 /**
121 * Sets a call's state to dialing (e.g., dialing an outbound call).
Santos Cordon37841332013-12-17 13:30:53 -0800122 *
123 * @param callId The unique ID of the call whose state is changing to dialing.
Ben Giladbb69b0c2013-12-12 18:32:02 -0800124 */
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700125 void setDialing(String callId) {
126 for (IConnectionServiceAdapter adapter : mAdapters) {
Santos Cordon52d8a152014-06-17 19:08:45 -0700127 try {
128 adapter.setDialing(callId);
129 } catch (RemoteException e) {
130 }
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800131 }
132 }
Ben Giladbb69b0c2013-12-12 18:32:02 -0800133
134 /**
135 * Sets a call's state to disconnected.
Santos Cordon37841332013-12-17 13:30:53 -0800136 *
137 * @param callId The unique ID of the call whose state is changing to disconnected.
Andrew Lee7f3d41f2014-09-11 17:33:16 -0700138 * @param disconnectCause The reason for the disconnection, as described by
139 * {@link android.telecomm.DisconnectCause}.
Ben Giladbb69b0c2013-12-12 18:32:02 -0800140 */
Andrew Lee7f3d41f2014-09-11 17:33:16 -0700141 void setDisconnected(String callId, DisconnectCause disconnectCause) {
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700142 for (IConnectionServiceAdapter adapter : mAdapters) {
Santos Cordon52d8a152014-06-17 19:08:45 -0700143 try {
Andrew Lee7f3d41f2014-09-11 17:33:16 -0700144 adapter.setDisconnected(callId, disconnectCause);
Santos Cordon52d8a152014-06-17 19:08:45 -0700145 } catch (RemoteException e) {
146 }
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800147 }
148 }
Yorke Lee81ccaaa2014-03-12 18:33:19 -0700149
150 /**
151 * Sets a call's state to be on hold.
152 *
153 * @param callId - The unique ID of the call whose state is changing to be on hold.
154 */
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700155 void setOnHold(String callId) {
156 for (IConnectionServiceAdapter adapter : mAdapters) {
Santos Cordon52d8a152014-06-17 19:08:45 -0700157 try {
158 adapter.setOnHold(callId);
159 } catch (RemoteException e) {
160 }
Yorke Lee81ccaaa2014-03-12 18:33:19 -0700161 }
162 }
163
Ihab Awadf8358972014-05-28 16:46:42 -0700164 /**
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700165 * Asks Telecom to start or stop a ringback tone for a call.
Ihab Awadf8358972014-05-28 16:46:42 -0700166 *
167 * @param callId The unique ID of the call whose ringback is being changed.
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700168 * @param ringback Whether Telecom should start playing a ringback tone.
Ihab Awadf8358972014-05-28 16:46:42 -0700169 */
Andrew Lee100e2932014-09-08 15:34:24 -0700170 void setRingbackRequested(String callId, boolean ringback) {
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700171 for (IConnectionServiceAdapter adapter : mAdapters) {
Santos Cordon52d8a152014-06-17 19:08:45 -0700172 try {
Andrew Lee100e2932014-09-08 15:34:24 -0700173 adapter.setRingbackRequested(callId, ringback);
Santos Cordon52d8a152014-06-17 19:08:45 -0700174 } catch (RemoteException e) {
175 }
Ihab Awadf8358972014-05-28 16:46:42 -0700176 }
177 }
Yorke Lee81ccaaa2014-03-12 18:33:19 -0700178
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800179 void setConnectionCapabilities(String callId, int capabilities) {
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700180 for (IConnectionServiceAdapter adapter : mAdapters) {
Santos Cordon52d8a152014-06-17 19:08:45 -0700181 try {
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800182 adapter.setConnectionCapabilities(callId, capabilities);
Santos Cordon52d8a152014-06-17 19:08:45 -0700183 } catch (RemoteException ignored) {
184 }
Santos Cordon980acb92014-05-31 10:31:19 -0700185 }
186 }
187
188 /**
189 * Indicates whether or not the specified call is currently conferenced into the specified
190 * conference call.
191 *
Santos Cordon980acb92014-05-31 10:31:19 -0700192 * @param callId The unique ID of the call being conferenced.
Santos Cordonb6939982014-06-04 20:20:58 -0700193 * @param conferenceCallId The unique ID of the conference call. Null if call is not
Santos Cordon52d8a152014-06-17 19:08:45 -0700194 * conferenced.
Santos Cordon980acb92014-05-31 10:31:19 -0700195 */
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700196 void setIsConferenced(String callId, String conferenceCallId) {
197 for (IConnectionServiceAdapter adapter : mAdapters) {
Santos Cordon52d8a152014-06-17 19:08:45 -0700198 try {
Santos Cordon0159ac02014-08-21 14:28:11 -0700199 Log.d(this, "sending connection %s with conference %s", callId, conferenceCallId);
Santos Cordon52d8a152014-06-17 19:08:45 -0700200 adapter.setIsConferenced(callId, conferenceCallId);
201 } catch (RemoteException ignored) {
202 }
Santos Cordon980acb92014-05-31 10:31:19 -0700203 }
204 }
205
206 /**
Anthony Lee17455a32015-04-24 15:25:29 -0700207 * Indicates that the merge request on this call has failed.
208 *
209 * @param callId The unique ID of the call being conferenced.
210 */
211 void onConferenceMergeFailed(String callId) {
212 for (IConnectionServiceAdapter adapter : mAdapters) {
213 try {
214 Log.d(this, "merge failed for call %s", callId);
215 adapter.setConferenceMergeFailed(callId);
216 } catch (RemoteException ignored) {
217 }
218 }
219 }
220
221 /**
Santos Cordon980acb92014-05-31 10:31:19 -0700222 * Indicates that the call no longer exists. Can be used with either a call or a conference
223 * call.
224 *
225 * @param callId The unique ID of the call.
Santos Cordon980acb92014-05-31 10:31:19 -0700226 */
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700227 void removeCall(String callId) {
228 for (IConnectionServiceAdapter adapter : mAdapters) {
Santos Cordon52d8a152014-06-17 19:08:45 -0700229 try {
230 adapter.removeCall(callId);
231 } catch (RemoteException ignored) {
232 }
Santos Cordon980acb92014-05-31 10:31:19 -0700233 }
234 }
Evan Charlton6dea4ac2014-06-03 14:07:13 -0700235
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700236 void onPostDialWait(String callId, String remaining) {
237 for (IConnectionServiceAdapter adapter : mAdapters) {
Santos Cordon52d8a152014-06-17 19:08:45 -0700238 try {
239 adapter.onPostDialWait(callId, remaining);
240 } catch (RemoteException ignored) {
241 }
Evan Charlton6dea4ac2014-06-03 14:07:13 -0700242 }
243 }
Sailesh Nepal8b4818d2014-06-06 10:54:07 -0700244
Nancy Chen27d1c2d2014-12-15 16:12:50 -0800245 void onPostDialChar(String callId, char nextChar) {
246 for (IConnectionServiceAdapter adapter : mAdapters) {
247 try {
248 adapter.onPostDialChar(callId, nextChar);
249 } catch (RemoteException ignored) {
250 }
251 }
252 }
253
Sailesh Nepal8b4818d2014-06-06 10:54:07 -0700254 /**
Santos Cordonb6939982014-06-04 20:20:58 -0700255 * Indicates that a new conference call has been created.
256 *
257 * @param callId The unique ID of the conference call.
258 */
Santos Cordon823fd3c2014-08-07 18:35:18 -0700259 void addConferenceCall(String callId, ParcelableConference parcelableConference) {
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700260 for (IConnectionServiceAdapter adapter : mAdapters) {
Santos Cordon52d8a152014-06-17 19:08:45 -0700261 try {
Santos Cordon823fd3c2014-08-07 18:35:18 -0700262 adapter.addConferenceCall(callId, parcelableConference);
Santos Cordon52d8a152014-06-17 19:08:45 -0700263 } catch (RemoteException ignored) {
264 }
265 }
266 }
267
268 /**
269 * Retrieves a list of remote connection services usable to place calls.
Santos Cordon52d8a152014-06-17 19:08:45 -0700270 */
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700271 void queryRemoteConnectionServices(RemoteServiceCallback callback) {
Santos Cordon52d8a152014-06-17 19:08:45 -0700272 // Only supported when there is only one adapter.
273 if (mAdapters.size() == 1) {
274 try {
275 mAdapters.iterator().next().queryRemoteConnectionServices(callback);
276 } catch (RemoteException e) {
277 Log.e(this, e, "Exception trying to query for remote CSs");
278 }
Santos Cordonb6939982014-06-04 20:20:58 -0700279 }
280 }
Andrew Lee5ffbe8b2014-06-20 16:29:33 -0700281
282 /**
283 * Sets the call video provider for a call.
284 *
285 * @param callId The unique ID of the call to set with the given call video provider.
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700286 * @param videoProvider The call video provider instance to set on the call.
Andrew Lee5ffbe8b2014-06-20 16:29:33 -0700287 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700288 void setVideoProvider(
289 String callId, Connection.VideoProvider videoProvider) {
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700290 for (IConnectionServiceAdapter adapter : mAdapters) {
Andrew Lee5ffbe8b2014-06-20 16:29:33 -0700291 try {
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700292 adapter.setVideoProvider(
Santos Cordone8dc4be2014-07-21 01:28:28 -0700293 callId,
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700294 videoProvider == null ? null : videoProvider.getInterface());
Andrew Lee5ffbe8b2014-06-20 16:29:33 -0700295 } catch (RemoteException e) {
296 }
297 }
298 }
Tyler Gunn8d83fa92014-07-01 11:31:21 -0700299
300 /**
Sailesh Nepal33aaae42014-07-07 22:49:44 -0700301 * Requests that the framework use VOIP audio mode for this connection.
302 *
303 * @param callId The unique ID of the call to set with the given call video provider.
304 * @param isVoip True if the audio mode is VOIP.
305 */
Andrew Lee100e2932014-09-08 15:34:24 -0700306 void setIsVoipAudioMode(String callId, boolean isVoip) {
Sailesh Nepal33aaae42014-07-07 22:49:44 -0700307 for (IConnectionServiceAdapter adapter : mAdapters) {
308 try {
Andrew Lee100e2932014-09-08 15:34:24 -0700309 adapter.setIsVoipAudioMode(callId, isVoip);
Sailesh Nepal33aaae42014-07-07 22:49:44 -0700310 } catch (RemoteException e) {
311 }
312 }
313 }
314
Sailesh Nepale7ef59a2014-07-08 21:48:22 -0700315 void setStatusHints(String callId, StatusHints statusHints) {
316 for (IConnectionServiceAdapter adapter : mAdapters) {
317 try {
318 adapter.setStatusHints(callId, statusHints);
319 } catch (RemoteException e) {
320 }
321 }
322 }
323
Andrew Lee100e2932014-09-08 15:34:24 -0700324 void setAddress(String callId, Uri address, int presentation) {
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700325 for (IConnectionServiceAdapter adapter : mAdapters) {
Tyler Gunn8d83fa92014-07-01 11:31:21 -0700326 try {
Andrew Lee100e2932014-09-08 15:34:24 -0700327 adapter.setAddress(callId, address, presentation);
Sailesh Nepal61203862014-07-11 14:50:13 -0700328 } catch (RemoteException e) {
329 }
330 }
331 }
332
333 void setCallerDisplayName(String callId, String callerDisplayName, int presentation) {
334 for (IConnectionServiceAdapter adapter : mAdapters) {
335 try {
336 adapter.setCallerDisplayName(callId, callerDisplayName, presentation);
337 } catch (RemoteException e) {
Tyler Gunn8d83fa92014-07-01 11:31:21 -0700338 }
339 }
340 }
Tyler Gunnaa07df82014-07-17 07:50:22 -0700341
342 /**
343 * Sets the video state associated with a call.
344 *
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700345 * Valid values: {@link VideoProfile.VideoState#AUDIO_ONLY},
346 * {@link VideoProfile.VideoState#BIDIRECTIONAL},
347 * {@link VideoProfile.VideoState#TX_ENABLED},
348 * {@link VideoProfile.VideoState#RX_ENABLED}.
Tyler Gunnaa07df82014-07-17 07:50:22 -0700349 *
350 * @param callId The unique ID of the call to set the video state for.
351 * @param videoState The video state.
352 */
353 void setVideoState(String callId, int videoState) {
354 Log.v(this, "setVideoState: %d", videoState);
355 for (IConnectionServiceAdapter adapter : mAdapters) {
356 try {
357 adapter.setVideoState(callId, videoState);
358 } catch (RemoteException ignored) {
359 }
360 }
361 }
Sailesh Nepal2ab88cc2014-07-18 14:49:18 -0700362
Santos Cordon7c7bc7f2014-07-28 18:15:48 -0700363 void setConferenceableConnections(String callId, List<String> conferenceableCallIds) {
364 Log.v(this, "setConferenceableConnections: %s, %s", callId, conferenceableCallIds);
365 for (IConnectionServiceAdapter adapter : mAdapters) {
366 try {
367 adapter.setConferenceableConnections(callId, conferenceableCallIds);
368 } catch (RemoteException ignored) {
369 }
370 }
371 }
Tyler Gunn4a57b9b2014-10-30 14:27:48 -0700372
373 /**
374 * Informs telecom of an existing connection which was added by the {@link ConnectionService}.
375 *
376 * @param callId The unique ID of the call being added.
377 * @param connection The connection.
378 */
379 void addExistingConnection(String callId, ParcelableConnection connection) {
380 Log.v(this, "addExistingConnection: %s", callId);
381 for (IConnectionServiceAdapter adapter : mAdapters) {
382 try {
383 adapter.addExistingConnection(callId, connection);
384 } catch (RemoteException ignored) {
385 }
386 }
387 }
Santos Cordon6b7f9552015-05-27 17:21:45 -0700388
389 /**
390 * Sets extras associated with a connection.
391 *
392 * @param callId The unique ID of the call.
393 * @param extras The extras to associate with this call.
394 */
395 void setExtras(String callId, Bundle extras) {
396 Log.v(this, "setExtras: %s", extras);
397 for (IConnectionServiceAdapter adapter : mAdapters) {
398 try {
399 adapter.setExtras(callId, extras);
400 } catch (RemoteException ignored) {
401 }
402 }
403 }
Ben Giladbb69b0c2013-12-12 18:32:02 -0800404}