Ben Gilad | bb69b0c | 2013-12-12 18:32:02 -0800 | [diff] [blame] | 1 | /* |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 2 | * Copyright (C) 2014 The Android Open Source Project |
Ben Gilad | bb69b0c | 2013-12-12 18:32:02 -0800 | [diff] [blame] | 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 Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 17 | package android.telecom; |
Ben Gilad | bb69b0c | 2013-12-12 18:32:02 -0800 | [diff] [blame] | 18 | |
Sailesh Nepal | 6120386 | 2014-07-11 14:50:13 -0700 | [diff] [blame] | 19 | import android.net.Uri; |
Santos Cordon | 6b7f955 | 2015-05-27 17:21:45 -0700 | [diff] [blame] | 20 | import android.os.Bundle; |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 21 | import android.os.IBinder.DeathRecipient; |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 22 | import android.os.RemoteException; |
| 23 | |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 24 | import com.android.internal.telecom.IConnectionServiceAdapter; |
| 25 | import com.android.internal.telecom.RemoteServiceCallback; |
Ben Gilad | bb69b0c | 2013-12-12 18:32:02 -0800 | [diff] [blame] | 26 | |
Jay Shrauner | b0c0e36 | 2014-08-08 16:31:48 -0700 | [diff] [blame] | 27 | import java.util.Collections; |
Sailesh Nepal | 4dd9df5 | 2014-07-10 18:15:15 -0700 | [diff] [blame] | 28 | import java.util.Iterator; |
Santos Cordon | 980acb9 | 2014-05-31 10:31:19 -0700 | [diff] [blame] | 29 | import java.util.List; |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 30 | import java.util.Set; |
Jay Shrauner | b0c0e36 | 2014-08-08 16:31:48 -0700 | [diff] [blame] | 31 | import java.util.concurrent.ConcurrentHashMap; |
Santos Cordon | 980acb9 | 2014-05-31 10:31:19 -0700 | [diff] [blame] | 32 | |
Ben Gilad | bb69b0c | 2013-12-12 18:32:02 -0800 | [diff] [blame] | 33 | /** |
Sailesh Nepal | 2a46b90 | 2014-07-04 17:21:07 -0700 | [diff] [blame] | 34 | * Provides methods for IConnectionService implementations to interact with the system phone app. |
Sailesh Nepal | 2bed956 | 2014-07-02 21:26:12 -0700 | [diff] [blame] | 35 | * |
| 36 | * @hide |
Ben Gilad | bb69b0c | 2013-12-12 18:32:02 -0800 | [diff] [blame] | 37 | */ |
Sailesh Nepal | 2a46b90 | 2014-07-04 17:21:07 -0700 | [diff] [blame] | 38 | final class ConnectionServiceAdapter implements DeathRecipient { |
Jay Shrauner | 229e382 | 2014-08-15 09:23:07 -0700 | [diff] [blame] | 39 | /** |
| 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 Shrauner | b0c0e36 | 2014-08-08 16:31:48 -0700 | [diff] [blame] | 44 | private final Set<IConnectionServiceAdapter> mAdapters = Collections.newSetFromMap( |
Jay Shrauner | 229e382 | 2014-08-15 09:23:07 -0700 | [diff] [blame] | 45 | new ConcurrentHashMap<IConnectionServiceAdapter, Boolean>(8, 0.9f, 1)); |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 46 | |
Sailesh Nepal | 2a46b90 | 2014-07-04 17:21:07 -0700 | [diff] [blame] | 47 | ConnectionServiceAdapter() { |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 48 | } |
| 49 | |
Sailesh Nepal | 2a46b90 | 2014-07-04 17:21:07 -0700 | [diff] [blame] | 50 | void addAdapter(IConnectionServiceAdapter adapter) { |
Roshan Pius | 75c36b6 | 2015-07-08 16:52:37 -0700 | [diff] [blame] | 51 | for (IConnectionServiceAdapter it : mAdapters) { |
| 52 | if (it.asBinder() == adapter.asBinder()) { |
| 53 | Log.w(this, "Ignoring duplicate adapter addition."); |
| 54 | return; |
| 55 | } |
| 56 | } |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 57 | if (mAdapters.add(adapter)) { |
| 58 | try { |
| 59 | adapter.asBinder().linkToDeath(this, 0); |
| 60 | } catch (RemoteException e) { |
| 61 | mAdapters.remove(adapter); |
| 62 | } |
| 63 | } |
| 64 | } |
| 65 | |
Sailesh Nepal | 2a46b90 | 2014-07-04 17:21:07 -0700 | [diff] [blame] | 66 | void removeAdapter(IConnectionServiceAdapter adapter) { |
Roshan Pius | 75c36b6 | 2015-07-08 16:52:37 -0700 | [diff] [blame] | 67 | if (adapter != null) { |
| 68 | for (IConnectionServiceAdapter it : mAdapters) { |
| 69 | if (it.asBinder() == adapter.asBinder() && mAdapters.remove(it)) { |
| 70 | adapter.asBinder().unlinkToDeath(this, 0); |
| 71 | break; |
| 72 | } |
| 73 | } |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 74 | } |
| 75 | } |
| 76 | |
| 77 | /** ${inheritDoc} */ |
| 78 | @Override |
| 79 | public void binderDied() { |
Sailesh Nepal | 4dd9df5 | 2014-07-10 18:15:15 -0700 | [diff] [blame] | 80 | Iterator<IConnectionServiceAdapter> it = mAdapters.iterator(); |
| 81 | while (it.hasNext()) { |
| 82 | IConnectionServiceAdapter adapter = it.next(); |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 83 | if (!adapter.asBinder().isBinderAlive()) { |
Sailesh Nepal | 4dd9df5 | 2014-07-10 18:15:15 -0700 | [diff] [blame] | 84 | it.remove(); |
| 85 | adapter.asBinder().unlinkToDeath(this, 0); |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 86 | } |
| 87 | } |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 88 | } |
Ben Gilad | bb69b0c | 2013-12-12 18:32:02 -0800 | [diff] [blame] | 89 | |
Ihab Awad | 6107bab | 2014-08-18 09:23:25 -0700 | [diff] [blame] | 90 | void handleCreateConnectionComplete( |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 91 | String id, |
| 92 | ConnectionRequest request, |
| 93 | ParcelableConnection connection) { |
Sailesh Nepal | 2a46b90 | 2014-07-04 17:21:07 -0700 | [diff] [blame] | 94 | for (IConnectionServiceAdapter adapter : mAdapters) { |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 95 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 96 | adapter.handleCreateConnectionComplete(id, request, connection, |
| 97 | Log.getExternalSession()); |
Sailesh Nepal | 506e386 | 2014-06-25 13:35:14 -0700 | [diff] [blame] | 98 | } catch (RemoteException e) { |
| 99 | } |
| 100 | } |
| 101 | } |
| 102 | |
Ravi Paluri | 80aa214 | 2019-12-02 11:57:37 +0530 | [diff] [blame] | 103 | void handleCreateConferenceComplete( |
| 104 | String id, |
| 105 | ConnectionRequest request, |
| 106 | ParcelableConference conference) { |
| 107 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 108 | try { |
| 109 | adapter.handleCreateConferenceComplete(id, request, conference, |
| 110 | Log.getExternalSession()); |
| 111 | } catch (RemoteException e) { |
| 112 | } |
| 113 | } |
| 114 | } |
| 115 | |
Sailesh Nepal | 506e386 | 2014-06-25 13:35:14 -0700 | [diff] [blame] | 116 | /** |
Ben Gilad | bb69b0c | 2013-12-12 18:32:02 -0800 | [diff] [blame] | 117 | * Sets a call's state to active (e.g., an ongoing call where two parties can actively |
| 118 | * communicate). |
Santos Cordon | 3784133 | 2013-12-17 13:30:53 -0800 | [diff] [blame] | 119 | * |
| 120 | * @param callId The unique ID of the call whose state is changing to active. |
Ben Gilad | bb69b0c | 2013-12-12 18:32:02 -0800 | [diff] [blame] | 121 | */ |
Sailesh Nepal | 2a46b90 | 2014-07-04 17:21:07 -0700 | [diff] [blame] | 122 | void setActive(String callId) { |
| 123 | for (IConnectionServiceAdapter adapter : mAdapters) { |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 124 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 125 | adapter.setActive(callId, Log.getExternalSession()); |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 126 | } catch (RemoteException e) { |
| 127 | } |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 128 | } |
| 129 | } |
Ben Gilad | bb69b0c | 2013-12-12 18:32:02 -0800 | [diff] [blame] | 130 | |
| 131 | /** |
| 132 | * Sets a call's state to ringing (e.g., an inbound ringing call). |
Santos Cordon | 3784133 | 2013-12-17 13:30:53 -0800 | [diff] [blame] | 133 | * |
| 134 | * @param callId The unique ID of the call whose state is changing to ringing. |
Ben Gilad | bb69b0c | 2013-12-12 18:32:02 -0800 | [diff] [blame] | 135 | */ |
Sailesh Nepal | 2a46b90 | 2014-07-04 17:21:07 -0700 | [diff] [blame] | 136 | void setRinging(String callId) { |
| 137 | for (IConnectionServiceAdapter adapter : mAdapters) { |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 138 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 139 | adapter.setRinging(callId, Log.getExternalSession()); |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 140 | } catch (RemoteException e) { |
| 141 | } |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 142 | } |
| 143 | } |
Ben Gilad | bb69b0c | 2013-12-12 18:32:02 -0800 | [diff] [blame] | 144 | |
| 145 | /** |
| 146 | * Sets a call's state to dialing (e.g., dialing an outbound call). |
Santos Cordon | 3784133 | 2013-12-17 13:30:53 -0800 | [diff] [blame] | 147 | * |
| 148 | * @param callId The unique ID of the call whose state is changing to dialing. |
Ben Gilad | bb69b0c | 2013-12-12 18:32:02 -0800 | [diff] [blame] | 149 | */ |
Sailesh Nepal | 2a46b90 | 2014-07-04 17:21:07 -0700 | [diff] [blame] | 150 | void setDialing(String callId) { |
| 151 | for (IConnectionServiceAdapter adapter : mAdapters) { |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 152 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 153 | adapter.setDialing(callId, Log.getExternalSession()); |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 154 | } catch (RemoteException e) { |
| 155 | } |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 156 | } |
| 157 | } |
Ben Gilad | bb69b0c | 2013-12-12 18:32:02 -0800 | [diff] [blame] | 158 | |
| 159 | /** |
Tyler Gunn | c96b5e0 | 2016-07-07 22:53:57 -0700 | [diff] [blame] | 160 | * Sets a call's state to pulling (e.g. a call with {@link Connection#PROPERTY_IS_EXTERNAL_CALL} |
| 161 | * is being pulled to the local device. |
| 162 | * |
| 163 | * @param callId The unique ID of the call whose state is changing to dialing. |
| 164 | */ |
| 165 | void setPulling(String callId) { |
| 166 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 167 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 168 | adapter.setPulling(callId, Log.getExternalSession()); |
Tyler Gunn | c96b5e0 | 2016-07-07 22:53:57 -0700 | [diff] [blame] | 169 | } catch (RemoteException e) { |
| 170 | } |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | /** |
Ben Gilad | bb69b0c | 2013-12-12 18:32:02 -0800 | [diff] [blame] | 175 | * Sets a call's state to disconnected. |
Santos Cordon | 3784133 | 2013-12-17 13:30:53 -0800 | [diff] [blame] | 176 | * |
| 177 | * @param callId The unique ID of the call whose state is changing to disconnected. |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 178 | * @param disconnectCause The reason for the disconnection, as described by |
| 179 | * {@link android.telecomm.DisconnectCause}. |
Ben Gilad | bb69b0c | 2013-12-12 18:32:02 -0800 | [diff] [blame] | 180 | */ |
Andrew Lee | 7f3d41f | 2014-09-11 17:33:16 -0700 | [diff] [blame] | 181 | void setDisconnected(String callId, DisconnectCause disconnectCause) { |
Sailesh Nepal | 2a46b90 | 2014-07-04 17:21:07 -0700 | [diff] [blame] | 182 | for (IConnectionServiceAdapter adapter : mAdapters) { |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 183 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 184 | adapter.setDisconnected(callId, disconnectCause, Log.getExternalSession()); |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 185 | } catch (RemoteException e) { |
| 186 | } |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 187 | } |
| 188 | } |
Yorke Lee | 81ccaaa | 2014-03-12 18:33:19 -0700 | [diff] [blame] | 189 | |
| 190 | /** |
| 191 | * Sets a call's state to be on hold. |
| 192 | * |
| 193 | * @param callId - The unique ID of the call whose state is changing to be on hold. |
| 194 | */ |
Sailesh Nepal | 2a46b90 | 2014-07-04 17:21:07 -0700 | [diff] [blame] | 195 | void setOnHold(String callId) { |
| 196 | for (IConnectionServiceAdapter adapter : mAdapters) { |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 197 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 198 | adapter.setOnHold(callId, Log.getExternalSession()); |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 199 | } catch (RemoteException e) { |
| 200 | } |
Yorke Lee | 81ccaaa | 2014-03-12 18:33:19 -0700 | [diff] [blame] | 201 | } |
| 202 | } |
| 203 | |
Ihab Awad | f835897 | 2014-05-28 16:46:42 -0700 | [diff] [blame] | 204 | /** |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 205 | * Asks Telecom to start or stop a ringback tone for a call. |
Ihab Awad | f835897 | 2014-05-28 16:46:42 -0700 | [diff] [blame] | 206 | * |
| 207 | * @param callId The unique ID of the call whose ringback is being changed. |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 208 | * @param ringback Whether Telecom should start playing a ringback tone. |
Ihab Awad | f835897 | 2014-05-28 16:46:42 -0700 | [diff] [blame] | 209 | */ |
Andrew Lee | 100e293 | 2014-09-08 15:34:24 -0700 | [diff] [blame] | 210 | void setRingbackRequested(String callId, boolean ringback) { |
Sailesh Nepal | 2a46b90 | 2014-07-04 17:21:07 -0700 | [diff] [blame] | 211 | for (IConnectionServiceAdapter adapter : mAdapters) { |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 212 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 213 | adapter.setRingbackRequested(callId, ringback, Log.getExternalSession()); |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 214 | } catch (RemoteException e) { |
| 215 | } |
Ihab Awad | f835897 | 2014-05-28 16:46:42 -0700 | [diff] [blame] | 216 | } |
| 217 | } |
Yorke Lee | 81ccaaa | 2014-03-12 18:33:19 -0700 | [diff] [blame] | 218 | |
Ihab Awad | 5c9c86e | 2014-11-12 13:41:16 -0800 | [diff] [blame] | 219 | void setConnectionCapabilities(String callId, int capabilities) { |
Sailesh Nepal | 2a46b90 | 2014-07-04 17:21:07 -0700 | [diff] [blame] | 220 | for (IConnectionServiceAdapter adapter : mAdapters) { |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 221 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 222 | adapter.setConnectionCapabilities(callId, capabilities, Log.getExternalSession()); |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 223 | } catch (RemoteException ignored) { |
| 224 | } |
Santos Cordon | 980acb9 | 2014-05-31 10:31:19 -0700 | [diff] [blame] | 225 | } |
| 226 | } |
| 227 | |
Tyler Gunn | 720c664 | 2016-03-22 09:02:47 -0700 | [diff] [blame] | 228 | void setConnectionProperties(String callId, int properties) { |
| 229 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 230 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 231 | adapter.setConnectionProperties(callId, properties, Log.getExternalSession()); |
Tyler Gunn | 720c664 | 2016-03-22 09:02:47 -0700 | [diff] [blame] | 232 | } catch (RemoteException ignored) { |
| 233 | } |
| 234 | } |
| 235 | } |
| 236 | |
Santos Cordon | 980acb9 | 2014-05-31 10:31:19 -0700 | [diff] [blame] | 237 | /** |
| 238 | * Indicates whether or not the specified call is currently conferenced into the specified |
| 239 | * conference call. |
| 240 | * |
Santos Cordon | 980acb9 | 2014-05-31 10:31:19 -0700 | [diff] [blame] | 241 | * @param callId The unique ID of the call being conferenced. |
Santos Cordon | b693998 | 2014-06-04 20:20:58 -0700 | [diff] [blame] | 242 | * @param conferenceCallId The unique ID of the conference call. Null if call is not |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 243 | * conferenced. |
Santos Cordon | 980acb9 | 2014-05-31 10:31:19 -0700 | [diff] [blame] | 244 | */ |
Sailesh Nepal | 2a46b90 | 2014-07-04 17:21:07 -0700 | [diff] [blame] | 245 | void setIsConferenced(String callId, String conferenceCallId) { |
| 246 | for (IConnectionServiceAdapter adapter : mAdapters) { |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 247 | try { |
Santos Cordon | 0159ac0 | 2014-08-21 14:28:11 -0700 | [diff] [blame] | 248 | Log.d(this, "sending connection %s with conference %s", callId, conferenceCallId); |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 249 | adapter.setIsConferenced(callId, conferenceCallId, Log.getExternalSession()); |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 250 | } catch (RemoteException ignored) { |
| 251 | } |
Santos Cordon | 980acb9 | 2014-05-31 10:31:19 -0700 | [diff] [blame] | 252 | } |
| 253 | } |
| 254 | |
| 255 | /** |
Anthony Lee | 17455a3 | 2015-04-24 15:25:29 -0700 | [diff] [blame] | 256 | * Indicates that the merge request on this call has failed. |
| 257 | * |
| 258 | * @param callId The unique ID of the call being conferenced. |
| 259 | */ |
| 260 | void onConferenceMergeFailed(String callId) { |
| 261 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 262 | try { |
| 263 | Log.d(this, "merge failed for call %s", callId); |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 264 | adapter.setConferenceMergeFailed(callId, Log.getExternalSession()); |
Anthony Lee | 17455a3 | 2015-04-24 15:25:29 -0700 | [diff] [blame] | 265 | } catch (RemoteException ignored) { |
| 266 | } |
| 267 | } |
| 268 | } |
| 269 | |
| 270 | /** |
Mengjun Leng | 2570774 | 2017-07-04 11:10:37 +0800 | [diff] [blame] | 271 | * Resets the cdma connection time. |
| 272 | */ |
| 273 | void resetConnectionTime(String callId) { |
| 274 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 275 | try { |
| 276 | adapter.resetConnectionTime(callId, Log.getExternalSession()); |
| 277 | } catch (RemoteException e) { |
| 278 | } |
| 279 | } |
| 280 | } |
| 281 | |
| 282 | /** |
Santos Cordon | 980acb9 | 2014-05-31 10:31:19 -0700 | [diff] [blame] | 283 | * Indicates that the call no longer exists. Can be used with either a call or a conference |
| 284 | * call. |
| 285 | * |
| 286 | * @param callId The unique ID of the call. |
Santos Cordon | 980acb9 | 2014-05-31 10:31:19 -0700 | [diff] [blame] | 287 | */ |
Sailesh Nepal | 2a46b90 | 2014-07-04 17:21:07 -0700 | [diff] [blame] | 288 | void removeCall(String callId) { |
| 289 | for (IConnectionServiceAdapter adapter : mAdapters) { |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 290 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 291 | adapter.removeCall(callId, Log.getExternalSession()); |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 292 | } catch (RemoteException ignored) { |
| 293 | } |
Santos Cordon | 980acb9 | 2014-05-31 10:31:19 -0700 | [diff] [blame] | 294 | } |
| 295 | } |
Evan Charlton | 6dea4ac | 2014-06-03 14:07:13 -0700 | [diff] [blame] | 296 | |
Sailesh Nepal | 2a46b90 | 2014-07-04 17:21:07 -0700 | [diff] [blame] | 297 | void onPostDialWait(String callId, String remaining) { |
| 298 | for (IConnectionServiceAdapter adapter : mAdapters) { |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 299 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 300 | adapter.onPostDialWait(callId, remaining, Log.getExternalSession()); |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 301 | } catch (RemoteException ignored) { |
| 302 | } |
Evan Charlton | 6dea4ac | 2014-06-03 14:07:13 -0700 | [diff] [blame] | 303 | } |
| 304 | } |
Sailesh Nepal | 8b4818d | 2014-06-06 10:54:07 -0700 | [diff] [blame] | 305 | |
Nancy Chen | 27d1c2d | 2014-12-15 16:12:50 -0800 | [diff] [blame] | 306 | void onPostDialChar(String callId, char nextChar) { |
| 307 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 308 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 309 | adapter.onPostDialChar(callId, nextChar, Log.getExternalSession()); |
Nancy Chen | 27d1c2d | 2014-12-15 16:12:50 -0800 | [diff] [blame] | 310 | } catch (RemoteException ignored) { |
| 311 | } |
| 312 | } |
| 313 | } |
| 314 | |
Sailesh Nepal | 8b4818d | 2014-06-06 10:54:07 -0700 | [diff] [blame] | 315 | /** |
Santos Cordon | b693998 | 2014-06-04 20:20:58 -0700 | [diff] [blame] | 316 | * Indicates that a new conference call has been created. |
| 317 | * |
| 318 | * @param callId The unique ID of the conference call. |
| 319 | */ |
Santos Cordon | 823fd3c | 2014-08-07 18:35:18 -0700 | [diff] [blame] | 320 | void addConferenceCall(String callId, ParcelableConference parcelableConference) { |
Sailesh Nepal | 2a46b90 | 2014-07-04 17:21:07 -0700 | [diff] [blame] | 321 | for (IConnectionServiceAdapter adapter : mAdapters) { |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 322 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 323 | adapter.addConferenceCall(callId, parcelableConference, Log.getExternalSession()); |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 324 | } catch (RemoteException ignored) { |
| 325 | } |
| 326 | } |
| 327 | } |
| 328 | |
| 329 | /** |
| 330 | * Retrieves a list of remote connection services usable to place calls. |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 331 | */ |
Tyler Gunn | 4c69fb3 | 2019-05-17 10:49:16 -0700 | [diff] [blame] | 332 | void queryRemoteConnectionServices(RemoteServiceCallback callback, String callingPackage) { |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 333 | // Only supported when there is only one adapter. |
| 334 | if (mAdapters.size() == 1) { |
| 335 | try { |
Tyler Gunn | 4c69fb3 | 2019-05-17 10:49:16 -0700 | [diff] [blame] | 336 | mAdapters.iterator().next().queryRemoteConnectionServices(callback, callingPackage, |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 337 | Log.getExternalSession()); |
Santos Cordon | 52d8a15 | 2014-06-17 19:08:45 -0700 | [diff] [blame] | 338 | } catch (RemoteException e) { |
| 339 | Log.e(this, e, "Exception trying to query for remote CSs"); |
| 340 | } |
Tyler Gunn | 156a33b | 2019-05-30 16:52:28 -0700 | [diff] [blame] | 341 | } else { |
| 342 | try { |
| 343 | // This is not an error condition, so just pass back an empty list. |
| 344 | // This happens when querying from a remote connection service, not the connection |
| 345 | // manager itself. |
| 346 | callback.onResult(Collections.EMPTY_LIST, Collections.EMPTY_LIST); |
| 347 | } catch (RemoteException e) { |
| 348 | Log.e(this, e, "Exception trying to query for remote CSs"); |
| 349 | } |
Santos Cordon | b693998 | 2014-06-04 20:20:58 -0700 | [diff] [blame] | 350 | } |
| 351 | } |
Andrew Lee | 5ffbe8b8 | 2014-06-20 16:29:33 -0700 | [diff] [blame] | 352 | |
| 353 | /** |
| 354 | * Sets the call video provider for a call. |
| 355 | * |
| 356 | * @param callId The unique ID of the call to set with the given call video provider. |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 357 | * @param videoProvider The call video provider instance to set on the call. |
Andrew Lee | 5ffbe8b8 | 2014-06-20 16:29:33 -0700 | [diff] [blame] | 358 | */ |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 359 | void setVideoProvider( |
| 360 | String callId, Connection.VideoProvider videoProvider) { |
Sailesh Nepal | 2a46b90 | 2014-07-04 17:21:07 -0700 | [diff] [blame] | 361 | for (IConnectionServiceAdapter adapter : mAdapters) { |
Andrew Lee | 5ffbe8b8 | 2014-06-20 16:29:33 -0700 | [diff] [blame] | 362 | try { |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 363 | adapter.setVideoProvider( |
Santos Cordon | e8dc4be | 2014-07-21 01:28:28 -0700 | [diff] [blame] | 364 | callId, |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 365 | videoProvider == null ? null : videoProvider.getInterface(), |
| 366 | Log.getExternalSession()); |
Andrew Lee | 5ffbe8b8 | 2014-06-20 16:29:33 -0700 | [diff] [blame] | 367 | } catch (RemoteException e) { |
| 368 | } |
| 369 | } |
| 370 | } |
Tyler Gunn | 8d83fa9 | 2014-07-01 11:31:21 -0700 | [diff] [blame] | 371 | |
| 372 | /** |
Sailesh Nepal | 33aaae4 | 2014-07-07 22:49:44 -0700 | [diff] [blame] | 373 | * Requests that the framework use VOIP audio mode for this connection. |
| 374 | * |
| 375 | * @param callId The unique ID of the call to set with the given call video provider. |
| 376 | * @param isVoip True if the audio mode is VOIP. |
| 377 | */ |
Andrew Lee | 100e293 | 2014-09-08 15:34:24 -0700 | [diff] [blame] | 378 | void setIsVoipAudioMode(String callId, boolean isVoip) { |
Sailesh Nepal | 33aaae4 | 2014-07-07 22:49:44 -0700 | [diff] [blame] | 379 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 380 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 381 | adapter.setIsVoipAudioMode(callId, isVoip, Log.getExternalSession()); |
Sailesh Nepal | 33aaae4 | 2014-07-07 22:49:44 -0700 | [diff] [blame] | 382 | } catch (RemoteException e) { |
| 383 | } |
| 384 | } |
| 385 | } |
| 386 | |
Sailesh Nepal | e7ef59a | 2014-07-08 21:48:22 -0700 | [diff] [blame] | 387 | void setStatusHints(String callId, StatusHints statusHints) { |
| 388 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 389 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 390 | adapter.setStatusHints(callId, statusHints, Log.getExternalSession()); |
Sailesh Nepal | e7ef59a | 2014-07-08 21:48:22 -0700 | [diff] [blame] | 391 | } catch (RemoteException e) { |
| 392 | } |
| 393 | } |
| 394 | } |
| 395 | |
Andrew Lee | 100e293 | 2014-09-08 15:34:24 -0700 | [diff] [blame] | 396 | void setAddress(String callId, Uri address, int presentation) { |
Sailesh Nepal | 2a46b90 | 2014-07-04 17:21:07 -0700 | [diff] [blame] | 397 | for (IConnectionServiceAdapter adapter : mAdapters) { |
Tyler Gunn | 8d83fa9 | 2014-07-01 11:31:21 -0700 | [diff] [blame] | 398 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 399 | adapter.setAddress(callId, address, presentation, Log.getExternalSession()); |
Sailesh Nepal | 6120386 | 2014-07-11 14:50:13 -0700 | [diff] [blame] | 400 | } catch (RemoteException e) { |
| 401 | } |
| 402 | } |
| 403 | } |
| 404 | |
| 405 | void setCallerDisplayName(String callId, String callerDisplayName, int presentation) { |
| 406 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 407 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 408 | adapter.setCallerDisplayName(callId, callerDisplayName, presentation, |
| 409 | Log.getExternalSession()); |
Sailesh Nepal | 6120386 | 2014-07-11 14:50:13 -0700 | [diff] [blame] | 410 | } catch (RemoteException e) { |
Tyler Gunn | 8d83fa9 | 2014-07-01 11:31:21 -0700 | [diff] [blame] | 411 | } |
| 412 | } |
| 413 | } |
Tyler Gunn | aa07df8 | 2014-07-17 07:50:22 -0700 | [diff] [blame] | 414 | |
| 415 | /** |
| 416 | * Sets the video state associated with a call. |
| 417 | * |
Tyler Gunn | 87b73f3 | 2015-06-03 10:09:59 -0700 | [diff] [blame] | 418 | * Valid values: {@link VideoProfile#STATE_BIDIRECTIONAL}, |
| 419 | * {@link VideoProfile#STATE_AUDIO_ONLY}, |
| 420 | * {@link VideoProfile#STATE_TX_ENABLED}, |
| 421 | * {@link VideoProfile#STATE_RX_ENABLED}. |
Tyler Gunn | aa07df8 | 2014-07-17 07:50:22 -0700 | [diff] [blame] | 422 | * |
| 423 | * @param callId The unique ID of the call to set the video state for. |
| 424 | * @param videoState The video state. |
| 425 | */ |
| 426 | void setVideoState(String callId, int videoState) { |
| 427 | Log.v(this, "setVideoState: %d", videoState); |
| 428 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 429 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 430 | adapter.setVideoState(callId, videoState, Log.getExternalSession()); |
Tyler Gunn | aa07df8 | 2014-07-17 07:50:22 -0700 | [diff] [blame] | 431 | } catch (RemoteException ignored) { |
| 432 | } |
| 433 | } |
| 434 | } |
Sailesh Nepal | 2ab88cc | 2014-07-18 14:49:18 -0700 | [diff] [blame] | 435 | |
Santos Cordon | 7c7bc7f | 2014-07-28 18:15:48 -0700 | [diff] [blame] | 436 | void setConferenceableConnections(String callId, List<String> conferenceableCallIds) { |
| 437 | Log.v(this, "setConferenceableConnections: %s, %s", callId, conferenceableCallIds); |
| 438 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 439 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 440 | adapter.setConferenceableConnections(callId, conferenceableCallIds, |
| 441 | Log.getExternalSession()); |
Santos Cordon | 7c7bc7f | 2014-07-28 18:15:48 -0700 | [diff] [blame] | 442 | } catch (RemoteException ignored) { |
| 443 | } |
| 444 | } |
| 445 | } |
Tyler Gunn | 4a57b9b | 2014-10-30 14:27:48 -0700 | [diff] [blame] | 446 | |
| 447 | /** |
| 448 | * Informs telecom of an existing connection which was added by the {@link ConnectionService}. |
| 449 | * |
| 450 | * @param callId The unique ID of the call being added. |
| 451 | * @param connection The connection. |
| 452 | */ |
| 453 | void addExistingConnection(String callId, ParcelableConnection connection) { |
| 454 | Log.v(this, "addExistingConnection: %s", callId); |
| 455 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 456 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 457 | adapter.addExistingConnection(callId, connection, Log.getExternalSession()); |
Tyler Gunn | 4a57b9b | 2014-10-30 14:27:48 -0700 | [diff] [blame] | 458 | } catch (RemoteException ignored) { |
| 459 | } |
| 460 | } |
| 461 | } |
Santos Cordon | 6b7f955 | 2015-05-27 17:21:45 -0700 | [diff] [blame] | 462 | |
| 463 | /** |
Tyler Gunn | dee56a8 | 2016-03-23 16:06:34 -0700 | [diff] [blame] | 464 | * Adds some extras associated with a {@code Connection}. |
Santos Cordon | 6b7f955 | 2015-05-27 17:21:45 -0700 | [diff] [blame] | 465 | * |
| 466 | * @param callId The unique ID of the call. |
Tyler Gunn | dee56a8 | 2016-03-23 16:06:34 -0700 | [diff] [blame] | 467 | * @param extras The extras to add. |
Santos Cordon | 6b7f955 | 2015-05-27 17:21:45 -0700 | [diff] [blame] | 468 | */ |
Tyler Gunn | dee56a8 | 2016-03-23 16:06:34 -0700 | [diff] [blame] | 469 | void putExtras(String callId, Bundle extras) { |
| 470 | Log.v(this, "putExtras: %s", callId); |
Santos Cordon | 6b7f955 | 2015-05-27 17:21:45 -0700 | [diff] [blame] | 471 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 472 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 473 | adapter.putExtras(callId, extras, Log.getExternalSession()); |
Tyler Gunn | dee56a8 | 2016-03-23 16:06:34 -0700 | [diff] [blame] | 474 | } catch (RemoteException ignored) { |
| 475 | } |
| 476 | } |
| 477 | } |
| 478 | |
| 479 | /** |
| 480 | * Adds an extra associated with a {@code Connection}. |
| 481 | * |
| 482 | * @param callId The unique ID of the call. |
| 483 | * @param key The extra key. |
| 484 | * @param value The extra value. |
| 485 | */ |
| 486 | void putExtra(String callId, String key, boolean value) { |
| 487 | Log.v(this, "putExtra: %s %s=%b", callId, key, value); |
| 488 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 489 | try { |
| 490 | Bundle bundle = new Bundle(); |
| 491 | bundle.putBoolean(key, value); |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 492 | adapter.putExtras(callId, bundle, Log.getExternalSession()); |
Tyler Gunn | dee56a8 | 2016-03-23 16:06:34 -0700 | [diff] [blame] | 493 | } catch (RemoteException ignored) { |
| 494 | } |
| 495 | } |
| 496 | } |
| 497 | |
| 498 | /** |
| 499 | * Adds an extra associated with a {@code Connection}. |
| 500 | * |
| 501 | * @param callId The unique ID of the call. |
| 502 | * @param key The extra key. |
| 503 | * @param value The extra value. |
| 504 | */ |
| 505 | void putExtra(String callId, String key, int value) { |
| 506 | Log.v(this, "putExtra: %s %s=%d", callId, key, value); |
| 507 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 508 | try { |
| 509 | Bundle bundle = new Bundle(); |
| 510 | bundle.putInt(key, value); |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 511 | adapter.putExtras(callId, bundle, Log.getExternalSession()); |
Tyler Gunn | dee56a8 | 2016-03-23 16:06:34 -0700 | [diff] [blame] | 512 | } catch (RemoteException ignored) { |
| 513 | } |
| 514 | } |
| 515 | } |
| 516 | |
| 517 | /** |
| 518 | * Adds an extra associated with a {@code Connection}. |
| 519 | * |
| 520 | * @param callId The unique ID of the call. |
| 521 | * @param key The extra key. |
| 522 | * @param value The extra value. |
| 523 | */ |
| 524 | void putExtra(String callId, String key, String value) { |
| 525 | Log.v(this, "putExtra: %s %s=%s", callId, key, value); |
| 526 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 527 | try { |
| 528 | Bundle bundle = new Bundle(); |
| 529 | bundle.putString(key, value); |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 530 | adapter.putExtras(callId, bundle, Log.getExternalSession()); |
Tyler Gunn | dee56a8 | 2016-03-23 16:06:34 -0700 | [diff] [blame] | 531 | } catch (RemoteException ignored) { |
| 532 | } |
| 533 | } |
| 534 | } |
| 535 | |
| 536 | /** |
| 537 | * Removes extras associated with a {@code Connection}. |
| 538 | * @param callId The unique ID of the call. |
| 539 | * @param keys The extra keys to remove. |
| 540 | */ |
| 541 | void removeExtras(String callId, List<String> keys) { |
| 542 | Log.v(this, "removeExtras: %s %s", callId, keys); |
| 543 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 544 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 545 | adapter.removeExtras(callId, keys, Log.getExternalSession()); |
Santos Cordon | 6b7f955 | 2015-05-27 17:21:45 -0700 | [diff] [blame] | 546 | } catch (RemoteException ignored) { |
| 547 | } |
| 548 | } |
| 549 | } |
Tyler Gunn | bd1eb1f | 2016-02-16 14:36:20 -0800 | [diff] [blame] | 550 | |
| 551 | /** |
Tyler Gunn | f503543 | 2017-01-09 09:43:12 -0800 | [diff] [blame] | 552 | * Sets the audio route associated with a {@link Connection}. |
| 553 | * |
| 554 | * @param callId The unique ID of the call. |
| 555 | * @param audioRoute The new audio route (see {@code CallAudioState#ROUTE_*}). |
| 556 | */ |
Hall Liu | a98f58b5 | 2017-11-07 17:59:28 -0800 | [diff] [blame] | 557 | void setAudioRoute(String callId, int audioRoute, String bluetoothAddress) { |
| 558 | Log.v(this, "setAudioRoute: %s %s %s", callId, |
| 559 | CallAudioState.audioRouteToString(audioRoute), |
| 560 | bluetoothAddress); |
Tyler Gunn | f503543 | 2017-01-09 09:43:12 -0800 | [diff] [blame] | 561 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 562 | try { |
Hall Liu | a98f58b5 | 2017-11-07 17:59:28 -0800 | [diff] [blame] | 563 | adapter.setAudioRoute(callId, audioRoute, |
| 564 | bluetoothAddress, Log.getExternalSession()); |
Tyler Gunn | f503543 | 2017-01-09 09:43:12 -0800 | [diff] [blame] | 565 | } catch (RemoteException ignored) { |
| 566 | } |
| 567 | } |
| 568 | } |
| 569 | |
| 570 | |
| 571 | /** |
Tyler Gunn | bd1eb1f | 2016-02-16 14:36:20 -0800 | [diff] [blame] | 572 | * Informs Telecom of a connection level event. |
| 573 | * |
| 574 | * @param callId The unique ID of the call. |
| 575 | * @param event The event. |
Tyler Gunn | 876dbfb | 2016-03-14 15:18:07 -0700 | [diff] [blame] | 576 | * @param extras Extras associated with the event. |
Tyler Gunn | bd1eb1f | 2016-02-16 14:36:20 -0800 | [diff] [blame] | 577 | */ |
Tyler Gunn | 876dbfb | 2016-03-14 15:18:07 -0700 | [diff] [blame] | 578 | void onConnectionEvent(String callId, String event, Bundle extras) { |
Tyler Gunn | bd1eb1f | 2016-02-16 14:36:20 -0800 | [diff] [blame] | 579 | Log.v(this, "onConnectionEvent: %s", event); |
| 580 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 581 | try { |
Brad Ebinger | 4d75bee | 2016-10-28 12:29:55 -0700 | [diff] [blame] | 582 | adapter.onConnectionEvent(callId, event, extras, Log.getExternalSession()); |
Tyler Gunn | bd1eb1f | 2016-02-16 14:36:20 -0800 | [diff] [blame] | 583 | } catch (RemoteException ignored) { |
| 584 | } |
| 585 | } |
| 586 | } |
Hall Liu | 57006aa | 2017-02-06 10:49:48 -0800 | [diff] [blame] | 587 | |
| 588 | /** |
| 589 | * Notifies Telecom that an RTT session was successfully established. |
| 590 | * |
| 591 | * @param callId The unique ID of the call. |
| 592 | */ |
| 593 | void onRttInitiationSuccess(String callId) { |
| 594 | Log.v(this, "onRttInitiationSuccess: %s", callId); |
| 595 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 596 | try { |
| 597 | adapter.onRttInitiationSuccess(callId, Log.getExternalSession()); |
| 598 | } catch (RemoteException ignored) { |
| 599 | } |
| 600 | } |
| 601 | } |
| 602 | |
| 603 | /** |
| 604 | * Notifies Telecom that a requested RTT session failed to be established. |
| 605 | * |
| 606 | * @param callId The unique ID of the call. |
| 607 | */ |
| 608 | void onRttInitiationFailure(String callId, int reason) { |
| 609 | Log.v(this, "onRttInitiationFailure: %s", callId); |
| 610 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 611 | try { |
| 612 | adapter.onRttInitiationFailure(callId, reason, Log.getExternalSession()); |
| 613 | } catch (RemoteException ignored) { |
| 614 | } |
| 615 | } |
| 616 | } |
| 617 | |
| 618 | /** |
| 619 | * Notifies Telecom that an established RTT session was terminated by the remote user on |
| 620 | * the call. |
| 621 | * |
| 622 | * @param callId The unique ID of the call. |
| 623 | */ |
| 624 | void onRttSessionRemotelyTerminated(String callId) { |
| 625 | Log.v(this, "onRttSessionRemotelyTerminated: %s", callId); |
| 626 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 627 | try { |
| 628 | adapter.onRttSessionRemotelyTerminated(callId, Log.getExternalSession()); |
| 629 | } catch (RemoteException ignored) { |
| 630 | } |
| 631 | } |
| 632 | } |
| 633 | |
| 634 | /** |
| 635 | * Notifies Telecom that the remote user on the call has requested an upgrade to an RTT |
| 636 | * session for this call. |
| 637 | * |
| 638 | * @param callId The unique ID of the call. |
| 639 | */ |
| 640 | void onRemoteRttRequest(String callId) { |
| 641 | Log.v(this, "onRemoteRttRequest: %s", callId); |
| 642 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 643 | try { |
| 644 | adapter.onRemoteRttRequest(callId, Log.getExternalSession()); |
| 645 | } catch (RemoteException ignored) { |
| 646 | } |
| 647 | } |
| 648 | } |
Srikanth Chintala | fcb1501 | 2017-05-04 20:58:34 +0530 | [diff] [blame] | 649 | |
| 650 | /** |
| 651 | * Notifies Telecom that a call's PhoneAccountHandle has changed. |
| 652 | * |
| 653 | * @param callId The unique ID of the call. |
| 654 | * @param pHandle The new PhoneAccountHandle associated with the call. |
| 655 | */ |
| 656 | void onPhoneAccountChanged(String callId, PhoneAccountHandle pHandle) { |
| 657 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 658 | try { |
| 659 | Log.d(this, "onPhoneAccountChanged %s", callId); |
| 660 | adapter.onPhoneAccountChanged(callId, pHandle, Log.getExternalSession()); |
| 661 | } catch (RemoteException ignored) { |
| 662 | } |
| 663 | } |
| 664 | } |
Pengquan Meng | 63d25a5 | 2017-11-21 18:01:13 -0800 | [diff] [blame] | 665 | |
| 666 | /** |
| 667 | * Notifies Telecom that the {@link ConnectionService} has released the call resource. |
| 668 | */ |
| 669 | void onConnectionServiceFocusReleased() { |
| 670 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 671 | try { |
| 672 | Log.d(this, "onConnectionServiceFocusReleased"); |
| 673 | adapter.onConnectionServiceFocusReleased(Log.getExternalSession()); |
| 674 | } catch (RemoteException ignored) { |
| 675 | } |
| 676 | } |
| 677 | } |
Tyler Gunn | 68a73a4 | 2018-10-03 15:38:57 -0700 | [diff] [blame] | 678 | |
| 679 | /** |
| 680 | * Sets whether a conference is treated as a conference or a single party call. |
| 681 | * See {@link Conference#setConferenceState(boolean)} for more information. |
| 682 | * |
| 683 | * @param callId The ID of the telecom call. |
| 684 | * @param isConference {@code true} if this call should be treated as a conference, |
| 685 | * {@code false} otherwise. |
| 686 | */ |
| 687 | void setConferenceState(String callId, boolean isConference) { |
| 688 | Log.v(this, "setConferenceState: %s %b", callId, isConference); |
| 689 | for (IConnectionServiceAdapter adapter : mAdapters) { |
| 690 | try { |
| 691 | adapter.setConferenceState(callId, isConference, Log.getExternalSession()); |
| 692 | } catch (RemoteException ignored) { |
| 693 | } |
| 694 | } |
| 695 | } |
Ben Gilad | bb69b0c | 2013-12-12 18:32:02 -0800 | [diff] [blame] | 696 | } |