blob: dc0de0c462cfe6cbe3b9edf799d825ccb21bfcdf [file] [log] [blame]
Santos Cordon52d8a152014-06-17 19:08:45 -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
Ihab Awadb19a0bc2014-08-07 19:46:01 -070014 * limitations under the License.
Santos Cordon52d8a152014-06-17 19:08:45 -070015 */
16
Tyler Gunnef9f6f92014-09-12 22:16:17 -070017package android.telecom;
Santos Cordon52d8a152014-06-17 19:08:45 -070018
Santos Cordon52d8a152014-06-17 19:08:45 -070019import android.net.Uri;
Santos Cordon6b7f9552015-05-27 17:21:45 -070020import android.os.Bundle;
Ihab Awad5d0410f2014-07-30 10:07:40 -070021import android.os.IBinder;
Santos Cordone8dc4be2014-07-21 01:28:28 -070022import android.os.IBinder.DeathRecipient;
Santos Cordon52d8a152014-06-17 19:08:45 -070023import android.os.RemoteException;
Santos Cordon52d8a152014-06-17 19:08:45 -070024
Tyler Gunnef9f6f92014-09-12 22:16:17 -070025import com.android.internal.telecom.IConnectionService;
26import com.android.internal.telecom.IConnectionServiceAdapter;
27import com.android.internal.telecom.IVideoProvider;
28import com.android.internal.telecom.RemoteServiceCallback;
Santos Cordon52d8a152014-06-17 19:08:45 -070029
Ihab Awadb8e85c72014-08-23 20:34:57 -070030import java.util.ArrayList;
Ihab Awad5d0410f2014-07-30 10:07:40 -070031import java.util.HashMap;
32import java.util.HashSet;
33import java.util.Map;
34import java.util.Set;
Santos Cordon7c7bc7f2014-07-28 18:15:48 -070035import java.util.List;
Santos Cordon52d8a152014-06-17 19:08:45 -070036import java.util.UUID;
37
38/**
39 * Remote connection service which other connection services can use to place calls on their behalf.
Sailesh Nepal091768c2014-06-30 15:15:23 -070040 *
41 * @hide
Santos Cordon52d8a152014-06-17 19:08:45 -070042 */
Ihab Awad5d0410f2014-07-30 10:07:40 -070043final class RemoteConnectionService {
Sailesh Nepal48031592014-07-18 14:21:23 -070044
Tyler Gunn4a57b9b2014-10-30 14:27:48 -070045 // Note: Casting null to avoid ambiguous constructor reference.
Ihab Awadb8e85c72014-08-23 20:34:57 -070046 private static final RemoteConnection NULL_CONNECTION =
Tyler Gunn4a57b9b2014-10-30 14:27:48 -070047 new RemoteConnection("NULL", null, (ConnectionRequest) null);
Ihab Awadb8e85c72014-08-23 20:34:57 -070048
49 private static final RemoteConference NULL_CONFERENCE =
50 new RemoteConference("NULL", null);
Santos Cordon52d8a152014-06-17 19:08:45 -070051
Ihab Awad5d0410f2014-07-30 10:07:40 -070052 private final IConnectionServiceAdapter mServantDelegate = new IConnectionServiceAdapter() {
Sailesh Nepal48031592014-07-18 14:21:23 -070053 @Override
Ihab Awad6107bab2014-08-18 09:23:25 -070054 public void handleCreateConnectionComplete(
Ihab Awadb19a0bc2014-08-07 19:46:01 -070055 String id,
56 ConnectionRequest request,
Ihab Awad5d0410f2014-07-30 10:07:40 -070057 ParcelableConnection parcel) {
Ihab Awadb19a0bc2014-08-07 19:46:01 -070058 RemoteConnection connection =
59 findConnectionForAction(id, "handleCreateConnectionSuccessful");
Ihab Awad5d0410f2014-07-30 10:07:40 -070060 if (connection != NULL_CONNECTION && mPendingConnections.contains(connection)) {
61 mPendingConnections.remove(connection);
Ihab Awad6107bab2014-08-18 09:23:25 -070062 // Unconditionally initialize the connection ...
Ihab Awad5c9c86e2014-11-12 13:41:16 -080063 connection.setConnectionCapabilities(parcel.getConnectionCapabilities());
Sailesh Nepal2d3ced72015-01-31 20:17:35 -080064 if (parcel.getHandle() != null
65 || parcel.getState() != Connection.STATE_DISCONNECTED) {
66 connection.setAddress(parcel.getHandle(), parcel.getHandlePresentation());
67 }
68 if (parcel.getCallerDisplayName() != null
69 || parcel.getState() != Connection.STATE_DISCONNECTED) {
70 connection.setCallerDisplayName(
71 parcel.getCallerDisplayName(),
72 parcel.getCallerDisplayNamePresentation());
73 }
Sailesh Nepal70638f12014-09-09 21:49:14 -070074 // Set state after handle so that the client can identify the connection.
Sailesh Nepalc2a978d2014-09-20 18:23:05 -070075 if (parcel.getState() == Connection.STATE_DISCONNECTED) {
76 connection.setDisconnected(parcel.getDisconnectCause());
77 } else {
78 connection.setState(parcel.getState());
79 }
Ihab Awadb8e85c72014-08-23 20:34:57 -070080 List<RemoteConnection> conferenceable = new ArrayList<>();
81 for (String confId : parcel.getConferenceableConnectionIds()) {
82 if (mConnectionById.containsKey(confId)) {
83 conferenceable.add(mConnectionById.get(confId));
84 }
85 }
86 connection.setConferenceableConnections(conferenceable);
Ihab Awada64627c2014-08-20 09:36:40 -070087 connection.setVideoState(parcel.getVideoState());
Ihab Awad6107bab2014-08-18 09:23:25 -070088 if (connection.getState() == Connection.STATE_DISCONNECTED) {
89 // ... then, if it was created in a disconnected state, that indicates
90 // failure on the providing end, so immediately mark it destroyed
91 connection.setDestroyed();
92 }
Sailesh Nepal48031592014-07-18 14:21:23 -070093 }
94 }
Sailesh Nepal2ab88cc2014-07-18 14:49:18 -070095
Sailesh Nepal2a46b902014-07-04 17:21:07 -070096 @Override
Ihab Awad5d0410f2014-07-30 10:07:40 -070097 public void setActive(String callId) {
Ihab Awadb8e85c72014-08-23 20:34:57 -070098 if (mConnectionById.containsKey(callId)) {
99 findConnectionForAction(callId, "setActive")
100 .setState(Connection.STATE_ACTIVE);
101 } else {
102 findConferenceForAction(callId, "setActive")
103 .setState(Connection.STATE_ACTIVE);
104 }
Santos Cordon52d8a152014-06-17 19:08:45 -0700105 }
106
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700107 @Override
Ihab Awad5d0410f2014-07-30 10:07:40 -0700108 public void setRinging(String callId) {
109 findConnectionForAction(callId, "setRinging")
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700110 .setState(Connection.STATE_RINGING);
Andrew Lee5ffbe8b2014-06-20 16:29:33 -0700111 }
112
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700113 @Override
Ihab Awad5d0410f2014-07-30 10:07:40 -0700114 public void setDialing(String callId) {
115 findConnectionForAction(callId, "setDialing")
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700116 .setState(Connection.STATE_DIALING);
Santos Cordon52d8a152014-06-17 19:08:45 -0700117 }
118
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700119 @Override
Andrew Lee7f3d41f2014-09-11 17:33:16 -0700120 public void setDisconnected(String callId, DisconnectCause disconnectCause) {
Ihab Awadb8e85c72014-08-23 20:34:57 -0700121 if (mConnectionById.containsKey(callId)) {
122 findConnectionForAction(callId, "setDisconnected")
Andrew Lee7f3d41f2014-09-11 17:33:16 -0700123 .setDisconnected(disconnectCause);
Ihab Awadb8e85c72014-08-23 20:34:57 -0700124 } else {
125 findConferenceForAction(callId, "setDisconnected")
Andrew Lee7f3d41f2014-09-11 17:33:16 -0700126 .setDisconnected(disconnectCause);
Ihab Awadb8e85c72014-08-23 20:34:57 -0700127 }
Santos Cordon52d8a152014-06-17 19:08:45 -0700128 }
129
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700130 @Override
Ihab Awad5d0410f2014-07-30 10:07:40 -0700131 public void setOnHold(String callId) {
Ihab Awadb8e85c72014-08-23 20:34:57 -0700132 if (mConnectionById.containsKey(callId)) {
133 findConnectionForAction(callId, "setOnHold")
134 .setState(Connection.STATE_HOLDING);
135 } else {
136 findConferenceForAction(callId, "setOnHold")
137 .setState(Connection.STATE_HOLDING);
138 }
Santos Cordon52d8a152014-06-17 19:08:45 -0700139 }
140
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700141 @Override
Andrew Lee100e2932014-09-08 15:34:24 -0700142 public void setRingbackRequested(String callId, boolean ringing) {
143 findConnectionForAction(callId, "setRingbackRequested")
144 .setRingbackRequested(ringing);
Santos Cordon52d8a152014-06-17 19:08:45 -0700145 }
146
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700147 @Override
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800148 public void setConnectionCapabilities(String callId, int connectionCapabilities) {
Ihab Awadb8e85c72014-08-23 20:34:57 -0700149 if (mConnectionById.containsKey(callId)) {
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800150 findConnectionForAction(callId, "setConnectionCapabilities")
151 .setConnectionCapabilities(connectionCapabilities);
Ihab Awadb8e85c72014-08-23 20:34:57 -0700152 } else {
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800153 findConferenceForAction(callId, "setConnectionCapabilities")
154 .setConnectionCapabilities(connectionCapabilities);
Ihab Awadb8e85c72014-08-23 20:34:57 -0700155 }
Santos Cordon52d8a152014-06-17 19:08:45 -0700156 }
157
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700158 @Override
Ihab Awad5d0410f2014-07-30 10:07:40 -0700159 public void setIsConferenced(String callId, String conferenceCallId) {
Ihab Awadb8e85c72014-08-23 20:34:57 -0700160 // Note: callId should not be null; conferenceCallId may be null
161 RemoteConnection connection =
162 findConnectionForAction(callId, "setIsConferenced");
163 if (connection != NULL_CONNECTION) {
164 if (conferenceCallId == null) {
165 // 'connection' is being split from its conference
166 if (connection.getConference() != null) {
167 connection.getConference().removeConnection(connection);
168 }
169 } else {
170 RemoteConference conference =
171 findConferenceForAction(conferenceCallId, "setIsConferenced");
172 if (conference != NULL_CONFERENCE) {
173 conference.addConnection(connection);
174 }
175 }
176 }
Santos Cordon52d8a152014-06-17 19:08:45 -0700177 }
178
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700179 @Override
Anthony Lee17455a32015-04-24 15:25:29 -0700180 public void setConferenceMergeFailed(String callId) {
181 // Nothing to do here.
182 // The event has already been handled and there is no state to update
183 // in the underlying connection or conference objects
184 }
185
186 @Override
Ihab Awadb8e85c72014-08-23 20:34:57 -0700187 public void addConferenceCall(
188 final String callId,
189 ParcelableConference parcel) {
190 RemoteConference conference = new RemoteConference(callId,
191 mOutgoingConnectionServiceRpc);
192
193 for (String id : parcel.getConnectionIds()) {
194 RemoteConnection c = mConnectionById.get(id);
195 if (c != null) {
196 conference.addConnection(c);
197 }
198 }
199
200 if (conference.getConnections().size() == 0) {
201 // A conference was created, but none of its connections are ones that have been
202 // created by, and therefore being tracked by, this remote connection service. It
203 // is of no interest to us.
204 return;
205 }
206
207 conference.setState(parcel.getState());
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800208 conference.setConnectionCapabilities(parcel.getConnectionCapabilities());
Ihab Awadb8e85c72014-08-23 20:34:57 -0700209 mConferenceById.put(callId, conference);
Andrew Lee100e2932014-09-08 15:34:24 -0700210 conference.registerCallback(new RemoteConference.Callback() {
Ihab Awadb8e85c72014-08-23 20:34:57 -0700211 @Override
212 public void onDestroyed(RemoteConference c) {
213 mConferenceById.remove(callId);
214 maybeDisconnectAdapter();
215 }
216 });
217
218 mOurConnectionServiceImpl.addRemoteConference(conference);
Santos Cordon52d8a152014-06-17 19:08:45 -0700219 }
220
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700221 @Override
Ihab Awad5d0410f2014-07-30 10:07:40 -0700222 public void removeCall(String callId) {
Ihab Awadb8e85c72014-08-23 20:34:57 -0700223 if (mConnectionById.containsKey(callId)) {
224 findConnectionForAction(callId, "removeCall")
225 .setDestroyed();
226 } else {
227 findConferenceForAction(callId, "removeCall")
228 .setDestroyed();
229 }
Santos Cordon52d8a152014-06-17 19:08:45 -0700230 }
231
Sailesh Nepal2a46b902014-07-04 17:21:07 -0700232 @Override
Ihab Awad5d0410f2014-07-30 10:07:40 -0700233 public void onPostDialWait(String callId, String remaining) {
234 findConnectionForAction(callId, "onPostDialWait")
235 .setPostDialWait(remaining);
Santos Cordon52d8a152014-06-17 19:08:45 -0700236 }
237
Santos Cordon52d8a152014-06-17 19:08:45 -0700238 @Override
Nancy Chen27d1c2d2014-12-15 16:12:50 -0800239 public void onPostDialChar(String callId, char nextChar) {
240 findConnectionForAction(callId, "onPostDialChar")
241 .onPostDialChar(nextChar);
242 }
243
244 @Override
Santos Cordon52d8a152014-06-17 19:08:45 -0700245 public void queryRemoteConnectionServices(RemoteServiceCallback callback) {
Ihab Awad5d0410f2014-07-30 10:07:40 -0700246 // Not supported from remote connection service.
Santos Cordon52d8a152014-06-17 19:08:45 -0700247 }
Tyler Gunn8d83fa92014-07-01 11:31:21 -0700248
Sailesh Nepal33aaae42014-07-07 22:49:44 -0700249 @Override
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700250 public void setVideoProvider(String callId, IVideoProvider videoProvider) {
Sailesh Nepal11aeae52015-01-28 16:54:09 -0800251 RemoteConnection.VideoProvider remoteVideoProvider = null;
252 if (videoProvider != null) {
253 remoteVideoProvider = new RemoteConnection.VideoProvider(videoProvider);
254 }
Ihab Awada64627c2014-08-20 09:36:40 -0700255 findConnectionForAction(callId, "setVideoProvider")
Sailesh Nepal11aeae52015-01-28 16:54:09 -0800256 .setVideoProvider(remoteVideoProvider);
Tyler Gunnaa07df82014-07-17 07:50:22 -0700257 }
258
259 @Override
Ihab Awad5d0410f2014-07-30 10:07:40 -0700260 public void setVideoState(String callId, int videoState) {
261 findConnectionForAction(callId, "setVideoState")
262 .setVideoState(videoState);
Sailesh Nepal33aaae42014-07-07 22:49:44 -0700263 }
Sailesh Nepale7ef59a2014-07-08 21:48:22 -0700264
Sailesh Nepale7ef59a2014-07-08 21:48:22 -0700265 @Override
Andrew Lee100e2932014-09-08 15:34:24 -0700266 public void setIsVoipAudioMode(String callId, boolean isVoip) {
267 findConnectionForAction(callId, "setIsVoipAudioMode")
268 .setIsVoipAudioMode(isVoip);
Sailesh Nepale7ef59a2014-07-08 21:48:22 -0700269 }
Sailesh Nepal61203862014-07-11 14:50:13 -0700270
271 @Override
Ihab Awad5d0410f2014-07-30 10:07:40 -0700272 public void setStatusHints(String callId, StatusHints statusHints) {
273 findConnectionForAction(callId, "setStatusHints")
274 .setStatusHints(statusHints);
Sailesh Nepal61203862014-07-11 14:50:13 -0700275 }
276
277 @Override
Andrew Lee100e2932014-09-08 15:34:24 -0700278 public void setAddress(String callId, Uri address, int presentation) {
279 findConnectionForAction(callId, "setAddress")
280 .setAddress(address, presentation);
Sailesh Nepal61203862014-07-11 14:50:13 -0700281 }
Sailesh Nepal2ab88cc2014-07-18 14:49:18 -0700282
283 @Override
Ihab Awad5d0410f2014-07-30 10:07:40 -0700284 public void setCallerDisplayName(String callId, String callerDisplayName,
285 int presentation) {
286 findConnectionForAction(callId, "setCallerDisplayName")
287 .setCallerDisplayName(callerDisplayName, presentation);
288 }
289
290 @Override
Ihab Awad5d0410f2014-07-30 10:07:40 -0700291 public IBinder asBinder() {
292 throw new UnsupportedOperationException();
Sailesh Nepal2ab88cc2014-07-18 14:49:18 -0700293 }
Santos Cordon7c7bc7f2014-07-28 18:15:48 -0700294
295 @Override
296 public final void setConferenceableConnections(
297 String callId, List<String> conferenceableConnectionIds) {
Ihab Awadb8e85c72014-08-23 20:34:57 -0700298 List<RemoteConnection> conferenceable = new ArrayList<>();
299 for (String id : conferenceableConnectionIds) {
300 if (mConnectionById.containsKey(id)) {
301 conferenceable.add(mConnectionById.get(id));
302 }
303 }
Santos Cordon7c7bc7f2014-07-28 18:15:48 -0700304
Ihab Awad50e35062014-09-30 09:17:03 -0700305 if (hasConnection(callId)) {
306 findConnectionForAction(callId, "setConferenceableConnections")
307 .setConferenceableConnections(conferenceable);
308 } else {
309 findConferenceForAction(callId, "setConferenceableConnections")
310 .setConferenceableConnections(conferenceable);
311 }
Santos Cordon7c7bc7f2014-07-28 18:15:48 -0700312 }
Tyler Gunn4a57b9b2014-10-30 14:27:48 -0700313
314 @Override
315 public void addExistingConnection(String callId, ParcelableConnection connection) {
316 // TODO: add contents of this method
317 RemoteConnection remoteConnction = new RemoteConnection(callId,
318 mOutgoingConnectionServiceRpc, connection);
319
320 mOurConnectionServiceImpl.addRemoteExistingConnection(remoteConnction);
321 }
Santos Cordon6b7f9552015-05-27 17:21:45 -0700322
323 @Override
324 public void setExtras(String callId, Bundle extras) {
325 if (mConnectionById.containsKey(callId)) {
326 findConnectionForAction(callId, "setExtras")
327 .setExtras(extras);
328 } else {
329 findConferenceForAction(callId, "setExtras")
330 .setExtras(extras);
331 }
332 }
Santos Cordon52d8a152014-06-17 19:08:45 -0700333 };
334
Ihab Awad5d0410f2014-07-30 10:07:40 -0700335 private final ConnectionServiceAdapterServant mServant =
336 new ConnectionServiceAdapterServant(mServantDelegate);
Santos Cordon52d8a152014-06-17 19:08:45 -0700337
Ihab Awad5d0410f2014-07-30 10:07:40 -0700338 private final DeathRecipient mDeathRecipient = new DeathRecipient() {
339 @Override
340 public void binderDied() {
341 for (RemoteConnection c : mConnectionById.values()) {
342 c.setDestroyed();
343 }
Ihab Awadb8e85c72014-08-23 20:34:57 -0700344 for (RemoteConference c : mConferenceById.values()) {
345 c.setDestroyed();
346 }
Ihab Awad5d0410f2014-07-30 10:07:40 -0700347 mConnectionById.clear();
Ihab Awadb8e85c72014-08-23 20:34:57 -0700348 mConferenceById.clear();
Ihab Awad5d0410f2014-07-30 10:07:40 -0700349 mPendingConnections.clear();
Ihab Awadb8e85c72014-08-23 20:34:57 -0700350 mOutgoingConnectionServiceRpc.asBinder().unlinkToDeath(mDeathRecipient, 0);
Ihab Awad5d0410f2014-07-30 10:07:40 -0700351 }
352 };
353
Ihab Awadb8e85c72014-08-23 20:34:57 -0700354 private final IConnectionService mOutgoingConnectionServiceRpc;
355 private final ConnectionService mOurConnectionServiceImpl;
Ihab Awad5d0410f2014-07-30 10:07:40 -0700356 private final Map<String, RemoteConnection> mConnectionById = new HashMap<>();
Ihab Awadb8e85c72014-08-23 20:34:57 -0700357 private final Map<String, RemoteConference> mConferenceById = new HashMap<>();
Ihab Awad5d0410f2014-07-30 10:07:40 -0700358 private final Set<RemoteConnection> mPendingConnections = new HashSet<>();
359
Ihab Awadb8e85c72014-08-23 20:34:57 -0700360 RemoteConnectionService(
361 IConnectionService outgoingConnectionServiceRpc,
362 ConnectionService ourConnectionServiceImpl) throws RemoteException {
363 mOutgoingConnectionServiceRpc = outgoingConnectionServiceRpc;
364 mOutgoingConnectionServiceRpc.asBinder().linkToDeath(mDeathRecipient, 0);
365 mOurConnectionServiceImpl = ourConnectionServiceImpl;
Santos Cordon52d8a152014-06-17 19:08:45 -0700366 }
367
368 @Override
369 public String toString() {
Ihab Awadb8e85c72014-08-23 20:34:57 -0700370 return "[RemoteCS - " + mOutgoingConnectionServiceRpc.asBinder().toString() + "]";
Santos Cordon52d8a152014-06-17 19:08:45 -0700371 }
372
Ihab Awadf8b69882014-07-25 15:14:01 -0700373 final RemoteConnection createRemoteConnection(
374 PhoneAccountHandle connectionManagerPhoneAccount,
375 ConnectionRequest request,
376 boolean isIncoming) {
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700377 final String id = UUID.randomUUID().toString();
Ihab Awad8aecfed2014-08-08 17:06:11 -0700378 final ConnectionRequest newRequest = new ConnectionRequest(
Ihab Awad5d0410f2014-07-30 10:07:40 -0700379 request.getAccountHandle(),
Nancy Chenea38cca2014-09-05 16:38:49 -0700380 request.getAddress(),
Ihab Awad5d0410f2014-07-30 10:07:40 -0700381 request.getExtras(),
382 request.getVideoState());
383 try {
Ihab Awad8aecfed2014-08-08 17:06:11 -0700384 if (mConnectionById.isEmpty()) {
Ihab Awadb8e85c72014-08-23 20:34:57 -0700385 mOutgoingConnectionServiceRpc.addConnectionServiceAdapter(mServant.getStub());
Ihab Awad8aecfed2014-08-08 17:06:11 -0700386 }
387 RemoteConnection connection =
Ihab Awadb8e85c72014-08-23 20:34:57 -0700388 new RemoteConnection(id, mOutgoingConnectionServiceRpc, newRequest);
Ihab Awad8aecfed2014-08-08 17:06:11 -0700389 mPendingConnections.add(connection);
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700390 mConnectionById.put(id, connection);
Ihab Awadb8e85c72014-08-23 20:34:57 -0700391 mOutgoingConnectionServiceRpc.createConnection(
Ihab Awad5d0410f2014-07-30 10:07:40 -0700392 connectionManagerPhoneAccount,
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700393 id,
Ihab Awad5d0410f2014-07-30 10:07:40 -0700394 newRequest,
Yorke Leec3cf9822014-10-02 09:38:39 -0700395 isIncoming,
396 false /* isUnknownCall */);
Andrew Lee100e2932014-09-08 15:34:24 -0700397 connection.registerCallback(new RemoteConnection.Callback() {
Ihab Awad8aecfed2014-08-08 17:06:11 -0700398 @Override
399 public void onDestroyed(RemoteConnection connection) {
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700400 mConnectionById.remove(id);
Ihab Awadb8e85c72014-08-23 20:34:57 -0700401 maybeDisconnectAdapter();
Ihab Awad8aecfed2014-08-08 17:06:11 -0700402 }
403 });
Ihab Awad5d0410f2014-07-30 10:07:40 -0700404 return connection;
405 } catch (RemoteException e) {
Andrew Lee7f3d41f2014-09-11 17:33:16 -0700406 return RemoteConnection.failure(
407 new DisconnectCause(DisconnectCause.ERROR, e.toString()));
Santos Cordon52d8a152014-06-17 19:08:45 -0700408 }
409 }
410
Ihab Awad50e35062014-09-30 09:17:03 -0700411 private boolean hasConnection(String callId) {
mike dooley879142b2014-10-08 13:39:28 -0700412 return mConnectionById.containsKey(callId);
Ihab Awad50e35062014-09-30 09:17:03 -0700413 }
414
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700415 private RemoteConnection findConnectionForAction(
416 String callId, String action) {
Ihab Awad5d0410f2014-07-30 10:07:40 -0700417 if (mConnectionById.containsKey(callId)) {
418 return mConnectionById.get(callId);
419 }
420 Log.w(this, "%s - Cannot find Connection %s", action, callId);
421 return NULL_CONNECTION;
Santos Cordon52d8a152014-06-17 19:08:45 -0700422 }
Ihab Awadb8e85c72014-08-23 20:34:57 -0700423
424 private RemoteConference findConferenceForAction(
425 String callId, String action) {
426 if (mConferenceById.containsKey(callId)) {
427 return mConferenceById.get(callId);
428 }
429 Log.w(this, "%s - Cannot find Conference %s", action, callId);
430 return NULL_CONFERENCE;
431 }
432
433 private void maybeDisconnectAdapter() {
434 if (mConnectionById.isEmpty() && mConferenceById.isEmpty()) {
435 try {
436 mOutgoingConnectionServiceRpc.removeConnectionServiceAdapter(mServant.getStub());
437 } catch (RemoteException e) {
438 }
439 }
440 }
Santos Cordon52d8a152014-06-17 19:08:45 -0700441}