Santos Cordon | 8f3fd30 | 2014-01-27 08:46:21 -0800 | [diff] [blame] | 1 | /* |
| 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 Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 17 | package android.telecom; |
Santos Cordon | 8f3fd30 | 2014-01-27 08:46:21 -0800 | [diff] [blame] | 18 | |
Pooja Jain | d34698d | 2017-12-28 14:15:31 +0530 | [diff] [blame] | 19 | import android.net.Uri; |
Hall Liu | a98f58b5 | 2017-11-07 17:59:28 -0800 | [diff] [blame] | 20 | import android.bluetooth.BluetoothDevice; |
Tyler Gunn | 876dbfb | 2016-03-14 15:18:07 -0700 | [diff] [blame] | 21 | import android.os.Bundle; |
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.IInCallAdapter; |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 25 | |
Tyler Gunn | dee56a8 | 2016-03-23 16:06:34 -0700 | [diff] [blame] | 26 | import java.util.List; |
| 27 | |
Santos Cordon | 8f3fd30 | 2014-01-27 08:46:21 -0800 | [diff] [blame] | 28 | /** |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 29 | * Receives commands from {@link InCallService} implementations which should be executed by |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 30 | * Telecom. When Telecom binds to a {@link InCallService}, an instance of this class is given to |
Santos Cordon | 8f3fd30 | 2014-01-27 08:46:21 -0800 | [diff] [blame] | 31 | * the in-call service through which it can manipulate live (active, dialing, ringing) calls. When |
Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 32 | * the in-call service is notified of new calls, it can use the |
Santos Cordon | 8f3fd30 | 2014-01-27 08:46:21 -0800 | [diff] [blame] | 33 | * given call IDs to execute commands such as {@link #answerCall} for incoming calls or |
| 34 | * {@link #disconnectCall} for active calls the user would like to end. Some commands are only |
| 35 | * appropriate for calls in certain states; please consult each method for such limitations. |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 36 | * <p> |
| 37 | * The adapter will stop functioning when there are no more calls. |
| 38 | * |
Hall Liu | 95d5587 | 2017-01-25 17:12:49 -0800 | [diff] [blame] | 39 | * @hide |
Santos Cordon | 8f3fd30 | 2014-01-27 08:46:21 -0800 | [diff] [blame] | 40 | */ |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 41 | public final class InCallAdapter { |
| 42 | private final IInCallAdapter mAdapter; |
| 43 | |
| 44 | /** |
| 45 | * {@hide} |
| 46 | */ |
| 47 | public InCallAdapter(IInCallAdapter adapter) { |
| 48 | mAdapter = adapter; |
| 49 | } |
| 50 | |
Santos Cordon | 8f3fd30 | 2014-01-27 08:46:21 -0800 | [diff] [blame] | 51 | /** |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 52 | * Instructs Telecom to answer the specified call. |
Santos Cordon | 8f3fd30 | 2014-01-27 08:46:21 -0800 | [diff] [blame] | 53 | * |
| 54 | * @param callId The identifier of the call to answer. |
Andrew Lee | 8da4c3c | 2014-07-16 10:11:42 -0700 | [diff] [blame] | 55 | * @param videoState The video state in which to answer the call. |
Santos Cordon | 8f3fd30 | 2014-01-27 08:46:21 -0800 | [diff] [blame] | 56 | */ |
Andrew Lee | 8da4c3c | 2014-07-16 10:11:42 -0700 | [diff] [blame] | 57 | public void answerCall(String callId, int videoState) { |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 58 | try { |
Andrew Lee | 8da4c3c | 2014-07-16 10:11:42 -0700 | [diff] [blame] | 59 | mAdapter.answerCall(callId, videoState); |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 60 | } catch (RemoteException e) { |
| 61 | } |
| 62 | } |
Santos Cordon | 8f3fd30 | 2014-01-27 08:46:21 -0800 | [diff] [blame] | 63 | |
| 64 | /** |
Pooja Jain | d34698d | 2017-12-28 14:15:31 +0530 | [diff] [blame] | 65 | * Instructs Telecom to deflect the specified call. |
| 66 | * |
| 67 | * @param callId The identifier of the call to deflect. |
| 68 | * @param address The address to deflect. |
| 69 | */ |
| 70 | public void deflectCall(String callId, Uri address) { |
| 71 | try { |
| 72 | mAdapter.deflectCall(callId, address); |
| 73 | } catch (RemoteException e) { |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | /** |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 78 | * Instructs Telecom to reject the specified call. |
Santos Cordon | 8f3fd30 | 2014-01-27 08:46:21 -0800 | [diff] [blame] | 79 | * |
| 80 | * @param callId The identifier of the call to reject. |
Ihab Awad | c067754 | 2014-06-10 13:29:47 -0700 | [diff] [blame] | 81 | * @param rejectWithMessage Whether to reject with a text message. |
| 82 | * @param textMessage An optional text message with which to respond. |
Santos Cordon | 8f3fd30 | 2014-01-27 08:46:21 -0800 | [diff] [blame] | 83 | */ |
Ihab Awad | c067754 | 2014-06-10 13:29:47 -0700 | [diff] [blame] | 84 | public void rejectCall(String callId, boolean rejectWithMessage, String textMessage) { |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 85 | try { |
Ihab Awad | c067754 | 2014-06-10 13:29:47 -0700 | [diff] [blame] | 86 | mAdapter.rejectCall(callId, rejectWithMessage, textMessage); |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 87 | } catch (RemoteException e) { |
| 88 | } |
| 89 | } |
Santos Cordon | 8f3fd30 | 2014-01-27 08:46:21 -0800 | [diff] [blame] | 90 | |
| 91 | /** |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 92 | * Instructs Telecom to disconnect the specified call. |
Santos Cordon | 8f3fd30 | 2014-01-27 08:46:21 -0800 | [diff] [blame] | 93 | * |
| 94 | * @param callId The identifier of the call to disconnect. |
| 95 | */ |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 96 | public void disconnectCall(String callId) { |
| 97 | try { |
| 98 | mAdapter.disconnectCall(callId); |
| 99 | } catch (RemoteException e) { |
| 100 | } |
| 101 | } |
Yorke Lee | 81ccaaa | 2014-03-12 18:33:19 -0700 | [diff] [blame] | 102 | |
| 103 | /** |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 104 | * Instructs Telecom to put the specified call on hold. |
Yorke Lee | 81ccaaa | 2014-03-12 18:33:19 -0700 | [diff] [blame] | 105 | * |
| 106 | * @param callId The identifier of the call to put on hold. |
| 107 | */ |
| 108 | public void holdCall(String callId) { |
| 109 | try { |
| 110 | mAdapter.holdCall(callId); |
| 111 | } catch (RemoteException e) { |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | /** |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 116 | * Instructs Telecom to release the specified call from hold. |
Yorke Lee | 81ccaaa | 2014-03-12 18:33:19 -0700 | [diff] [blame] | 117 | * |
| 118 | * @param callId The identifier of the call to release from hold. |
| 119 | */ |
| 120 | public void unholdCall(String callId) { |
| 121 | try { |
| 122 | mAdapter.unholdCall(callId); |
| 123 | } catch (RemoteException e) { |
| 124 | } |
| 125 | } |
Sailesh Nepal | 4cff392 | 2014-03-19 10:15:37 -0700 | [diff] [blame] | 126 | |
| 127 | /** |
| 128 | * Mute the microphone. |
| 129 | * |
| 130 | * @param shouldMute True if the microphone should be muted. |
| 131 | */ |
| 132 | public void mute(boolean shouldMute) { |
| 133 | try { |
| 134 | mAdapter.mute(shouldMute); |
| 135 | } catch (RemoteException e) { |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | /** |
Yorke Lee | 4af5935 | 2015-05-13 14:14:54 -0700 | [diff] [blame] | 140 | * Sets the audio route (speaker, bluetooth, etc...). See {@link CallAudioState}. |
Sailesh Nepal | 4cff392 | 2014-03-19 10:15:37 -0700 | [diff] [blame] | 141 | * |
| 142 | * @param route The audio route to use. |
| 143 | */ |
| 144 | public void setAudioRoute(int route) { |
| 145 | try { |
Hall Liu | a98f58b5 | 2017-11-07 17:59:28 -0800 | [diff] [blame] | 146 | mAdapter.setAudioRoute(route, null); |
| 147 | } catch (RemoteException e) { |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Request audio routing to a specific bluetooth device. Calling this method may result in |
| 153 | * the device routing audio to a different bluetooth device than the one specified. A list of |
| 154 | * available devices can be obtained via {@link CallAudioState#getSupportedBluetoothDevices()} |
| 155 | * |
| 156 | * @param bluetoothAddress The address of the bluetooth device to connect to, as returned by |
| 157 | * {@link BluetoothDevice#getAddress()}, or {@code null} if no device is preferred. |
| 158 | */ |
| 159 | public void requestBluetoothAudio(String bluetoothAddress) { |
| 160 | try { |
| 161 | mAdapter.setAudioRoute(CallAudioState.ROUTE_BLUETOOTH, bluetoothAddress); |
Sailesh Nepal | 4cff392 | 2014-03-19 10:15:37 -0700 | [diff] [blame] | 162 | } catch (RemoteException e) { |
| 163 | } |
| 164 | } |
Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 165 | |
| 166 | /** |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 167 | * Instructs Telecom to play a dual-tone multi-frequency signaling (DTMF) tone in a call. |
Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 168 | * |
| 169 | * Any other currently playing DTMF tone in the specified call is immediately stopped. |
| 170 | * |
| 171 | * @param callId The unique ID of the call in which the tone will be played. |
| 172 | * @param digit A character representing the DTMF digit for which to play the tone. This |
| 173 | * value must be one of {@code '0'} through {@code '9'}, {@code '*'} or {@code '#'}. |
| 174 | */ |
| 175 | public void playDtmfTone(String callId, char digit) { |
| 176 | try { |
| 177 | mAdapter.playDtmfTone(callId, digit); |
| 178 | } catch (RemoteException e) { |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | /** |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 183 | * Instructs Telecom to stop any dual-tone multi-frequency signaling (DTMF) tone currently |
Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 184 | * playing. |
| 185 | * |
| 186 | * DTMF tones are played by calling {@link #playDtmfTone(String,char)}. If no DTMF tone is |
| 187 | * currently playing, this method will do nothing. |
| 188 | * |
| 189 | * @param callId The unique ID of the call in which any currently playing tone will be stopped. |
| 190 | */ |
| 191 | public void stopDtmfTone(String callId) { |
| 192 | try { |
| 193 | mAdapter.stopDtmfTone(callId); |
| 194 | } catch (RemoteException e) { |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | /** |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 199 | * Instructs Telecom to continue playing a post-dial DTMF string. |
Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 200 | * |
| 201 | * A post-dial DTMF string is a string of digits entered after a phone number, when dialed, |
| 202 | * that are immediately sent as DTMF tones to the recipient as soon as the connection is made. |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 203 | * While these tones are playing, Telecom will notify the {@link InCallService} that the call |
Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 204 | * is in the post dial state. |
Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 205 | * |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 206 | * If the DTMF string contains a {@link TelecomManager#DTMF_CHARACTER_PAUSE} symbol, Telecom |
Evan Charlton | 8acdbb8 | 2014-04-01 13:50:07 -0700 | [diff] [blame] | 207 | * will temporarily pause playing the tones for a pre-defined period of time. |
Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 208 | * |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 209 | * If the DTMF string contains a {@link TelecomManager#DTMF_CHARACTER_WAIT} symbol, Telecom |
Evan Charlton | 8acdbb8 | 2014-04-01 13:50:07 -0700 | [diff] [blame] | 210 | * will pause playing the tones and notify the {@link InCallService} that the call is in the |
Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 211 | * post dial wait state. When the user decides to continue the postdial sequence, the |
| 212 | * {@link InCallService} should invoke the {@link #postDialContinue(String,boolean)} method. |
Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 213 | * |
| 214 | * @param callId The unique ID of the call for which postdial string playing should continue. |
Evan Charlton | 6dea4ac | 2014-06-03 14:07:13 -0700 | [diff] [blame] | 215 | * @param proceed Whether or not to continue with the post-dial sequence. |
Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 216 | */ |
Evan Charlton | 6dea4ac | 2014-06-03 14:07:13 -0700 | [diff] [blame] | 217 | public void postDialContinue(String callId, boolean proceed) { |
Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 218 | try { |
Evan Charlton | 6dea4ac | 2014-06-03 14:07:13 -0700 | [diff] [blame] | 219 | mAdapter.postDialContinue(callId, proceed); |
Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 220 | } catch (RemoteException e) { |
| 221 | } |
| 222 | } |
Sailesh Nepal | b632e5b | 2014-04-03 12:54:33 -0700 | [diff] [blame] | 223 | |
| 224 | /** |
Nancy Chen | 36c62f3 | 2014-10-21 18:36:39 -0700 | [diff] [blame] | 225 | * Instructs Telecom to add a PhoneAccountHandle to the specified call. |
Nancy Chen | 5da0fd5 | 2014-07-08 14:16:17 -0700 | [diff] [blame] | 226 | * |
Nancy Chen | 36c62f3 | 2014-10-21 18:36:39 -0700 | [diff] [blame] | 227 | * @param callId The identifier of the call. |
| 228 | * @param accountHandle The PhoneAccountHandle through which to place the call. |
| 229 | * @param setDefault {@code True} if this account should be set as the default for calls. |
Nancy Chen | 5da0fd5 | 2014-07-08 14:16:17 -0700 | [diff] [blame] | 230 | */ |
Nancy Chen | 36c62f3 | 2014-10-21 18:36:39 -0700 | [diff] [blame] | 231 | public void phoneAccountSelected(String callId, PhoneAccountHandle accountHandle, |
| 232 | boolean setDefault) { |
Nancy Chen | 5da0fd5 | 2014-07-08 14:16:17 -0700 | [diff] [blame] | 233 | try { |
Nancy Chen | 36c62f3 | 2014-10-21 18:36:39 -0700 | [diff] [blame] | 234 | mAdapter.phoneAccountSelected(callId, accountHandle, setDefault); |
Nancy Chen | 5da0fd5 | 2014-07-08 14:16:17 -0700 | [diff] [blame] | 235 | } catch (RemoteException e) { |
| 236 | } |
| 237 | } |
| 238 | |
| 239 | /** |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 240 | * Instructs Telecom to conference the specified call. |
Santos Cordon | 980acb9 | 2014-05-31 10:31:19 -0700 | [diff] [blame] | 241 | * |
| 242 | * @param callId The unique ID of the call. |
Santos Cordon | 980acb9 | 2014-05-31 10:31:19 -0700 | [diff] [blame] | 243 | * @hide |
| 244 | */ |
Santos Cordon | 7c7bc7f | 2014-07-28 18:15:48 -0700 | [diff] [blame] | 245 | public void conference(String callId, String otherCallId) { |
Santos Cordon | 980acb9 | 2014-05-31 10:31:19 -0700 | [diff] [blame] | 246 | try { |
Santos Cordon | 7c7bc7f | 2014-07-28 18:15:48 -0700 | [diff] [blame] | 247 | mAdapter.conference(callId, otherCallId); |
Santos Cordon | 980acb9 | 2014-05-31 10:31:19 -0700 | [diff] [blame] | 248 | } catch (RemoteException ignored) { |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | /** |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 253 | * Instructs Telecom to split the specified call from any conference call with which it may be |
Santos Cordon | 980acb9 | 2014-05-31 10:31:19 -0700 | [diff] [blame] | 254 | * connected. |
| 255 | * |
| 256 | * @param callId The unique ID of the call. |
| 257 | * @hide |
| 258 | */ |
Santos Cordon | b693998 | 2014-06-04 20:20:58 -0700 | [diff] [blame] | 259 | public void splitFromConference(String callId) { |
Santos Cordon | 980acb9 | 2014-05-31 10:31:19 -0700 | [diff] [blame] | 260 | try { |
| 261 | mAdapter.splitFromConference(callId); |
| 262 | } catch (RemoteException ignored) { |
| 263 | } |
| 264 | } |
Sailesh Nepal | 6120386 | 2014-07-11 14:50:13 -0700 | [diff] [blame] | 265 | |
| 266 | /** |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 267 | * Instructs Telecom to merge child calls of the specified conference call. |
Santos Cordon | a486804 | 2014-09-04 17:39:22 -0700 | [diff] [blame] | 268 | */ |
| 269 | public void mergeConference(String callId) { |
| 270 | try { |
| 271 | mAdapter.mergeConference(callId); |
| 272 | } catch (RemoteException ignored) { |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | /** |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 277 | * Instructs Telecom to swap the child calls of the specified conference call. |
Santos Cordon | a486804 | 2014-09-04 17:39:22 -0700 | [diff] [blame] | 278 | */ |
| 279 | public void swapConference(String callId) { |
| 280 | try { |
| 281 | mAdapter.swapConference(callId); |
| 282 | } catch (RemoteException ignored) { |
| 283 | } |
| 284 | } |
| 285 | |
| 286 | /** |
Tyler Gunn | 876dbfb | 2016-03-14 15:18:07 -0700 | [diff] [blame] | 287 | * Instructs Telecom to pull an external call to the local device. |
| 288 | * |
| 289 | * @param callId The callId to pull. |
| 290 | */ |
| 291 | public void pullExternalCall(String callId) { |
| 292 | try { |
| 293 | mAdapter.pullExternalCall(callId); |
| 294 | } catch (RemoteException ignored) { |
| 295 | } |
| 296 | } |
| 297 | |
| 298 | /** |
| 299 | * Intructs Telecom to send a call event. |
| 300 | * |
| 301 | * @param callId The callId to send the event for. |
| 302 | * @param event The event. |
Sanket Padawe | f6a9e5b | 2018-01-05 14:26:16 -0800 | [diff] [blame] | 303 | * @param targetSdkVer Target sdk version of the app calling this api |
Tyler Gunn | 876dbfb | 2016-03-14 15:18:07 -0700 | [diff] [blame] | 304 | * @param extras Extras associated with the event. |
| 305 | */ |
Sanket Padawe | f6a9e5b | 2018-01-05 14:26:16 -0800 | [diff] [blame] | 306 | public void sendCallEvent(String callId, String event, int targetSdkVer, Bundle extras) { |
Tyler Gunn | 876dbfb | 2016-03-14 15:18:07 -0700 | [diff] [blame] | 307 | try { |
Sanket Padawe | f6a9e5b | 2018-01-05 14:26:16 -0800 | [diff] [blame] | 308 | mAdapter.sendCallEvent(callId, event, targetSdkVer, extras); |
Tyler Gunn | 876dbfb | 2016-03-14 15:18:07 -0700 | [diff] [blame] | 309 | } catch (RemoteException ignored) { |
| 310 | } |
| 311 | } |
| 312 | |
| 313 | /** |
Tyler Gunn | dee56a8 | 2016-03-23 16:06:34 -0700 | [diff] [blame] | 314 | * Intructs Telecom to add extras to a call. |
| 315 | * |
| 316 | * @param callId The callId to add the extras to. |
| 317 | * @param extras The extras. |
| 318 | */ |
| 319 | public void putExtras(String callId, Bundle extras) { |
| 320 | try { |
| 321 | mAdapter.putExtras(callId, extras); |
| 322 | } catch (RemoteException ignored) { |
| 323 | } |
| 324 | } |
| 325 | |
| 326 | /** |
| 327 | * Intructs Telecom to add an extra to a call. |
| 328 | * |
| 329 | * @param callId The callId to add the extras to. |
| 330 | * @param key The extra key. |
| 331 | * @param value The extra value. |
| 332 | */ |
| 333 | public void putExtra(String callId, String key, boolean value) { |
| 334 | try { |
| 335 | Bundle bundle = new Bundle(); |
| 336 | bundle.putBoolean(key, value); |
| 337 | mAdapter.putExtras(callId, bundle); |
| 338 | } catch (RemoteException ignored) { |
| 339 | } |
| 340 | } |
| 341 | |
| 342 | /** |
| 343 | * Intructs Telecom to add an extra to a call. |
| 344 | * |
| 345 | * @param callId The callId to add the extras to. |
| 346 | * @param key The extra key. |
| 347 | * @param value The extra value. |
| 348 | */ |
| 349 | public void putExtra(String callId, String key, int value) { |
| 350 | try { |
| 351 | Bundle bundle = new Bundle(); |
| 352 | bundle.putInt(key, value); |
| 353 | mAdapter.putExtras(callId, bundle); |
| 354 | } catch (RemoteException ignored) { |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | /** |
| 359 | * Intructs Telecom to add an extra to a call. |
| 360 | * |
| 361 | * @param callId The callId to add the extras to. |
| 362 | * @param key The extra key. |
| 363 | * @param value The extra value. |
| 364 | */ |
| 365 | public void putExtra(String callId, String key, String value) { |
| 366 | try { |
| 367 | Bundle bundle = new Bundle(); |
| 368 | bundle.putString(key, value); |
| 369 | mAdapter.putExtras(callId, bundle); |
| 370 | } catch (RemoteException ignored) { |
| 371 | } |
| 372 | } |
| 373 | |
| 374 | /** |
| 375 | * Intructs Telecom to remove extras from a call. |
| 376 | * @param callId The callId to remove the extras from. |
| 377 | * @param keys The extra keys to remove. |
| 378 | */ |
| 379 | public void removeExtras(String callId, List<String> keys) { |
| 380 | try { |
| 381 | mAdapter.removeExtras(callId, keys); |
| 382 | } catch (RemoteException ignored) { |
| 383 | } |
| 384 | } |
| 385 | |
| 386 | /** |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 387 | * Instructs Telecom to turn the proximity sensor on. |
Yorke Lee | 0d6ea71 | 2014-07-28 14:39:23 -0700 | [diff] [blame] | 388 | */ |
| 389 | public void turnProximitySensorOn() { |
| 390 | try { |
| 391 | mAdapter.turnOnProximitySensor(); |
| 392 | } catch (RemoteException ignored) { |
| 393 | } |
| 394 | } |
| 395 | |
| 396 | /** |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 397 | * Instructs Telecom to turn the proximity sensor off. |
Yorke Lee | 0d6ea71 | 2014-07-28 14:39:23 -0700 | [diff] [blame] | 398 | * |
| 399 | * @param screenOnImmediately If true, the screen will be turned on immediately if it was |
| 400 | * previously off. Otherwise, the screen will only be turned on after the proximity sensor |
| 401 | * is no longer triggered. |
| 402 | */ |
| 403 | public void turnProximitySensorOff(boolean screenOnImmediately) { |
| 404 | try { |
| 405 | mAdapter.turnOffProximitySensor(screenOnImmediately); |
| 406 | } catch (RemoteException ignored) { |
| 407 | } |
| 408 | } |
Hall Liu | 95d5587 | 2017-01-25 17:12:49 -0800 | [diff] [blame] | 409 | |
| 410 | /** |
| 411 | * Sends an RTT upgrade request to the remote end of the connection. |
| 412 | */ |
Hall Liu | 57006aa | 2017-02-06 10:49:48 -0800 | [diff] [blame] | 413 | public void sendRttRequest(String callId) { |
Hall Liu | 95d5587 | 2017-01-25 17:12:49 -0800 | [diff] [blame] | 414 | try { |
Hall Liu | 57006aa | 2017-02-06 10:49:48 -0800 | [diff] [blame] | 415 | mAdapter.sendRttRequest(callId); |
Hall Liu | 95d5587 | 2017-01-25 17:12:49 -0800 | [diff] [blame] | 416 | } catch (RemoteException ignored) { |
| 417 | } |
| 418 | } |
| 419 | |
| 420 | /** |
| 421 | * Responds to an RTT upgrade request initiated from the remote end. |
| 422 | * |
| 423 | * @param id the ID of the request as specified by Telecom |
| 424 | * @param accept Whether the request should be accepted. |
| 425 | */ |
Hall Liu | 57006aa | 2017-02-06 10:49:48 -0800 | [diff] [blame] | 426 | public void respondToRttRequest(String callId, int id, boolean accept) { |
Hall Liu | 95d5587 | 2017-01-25 17:12:49 -0800 | [diff] [blame] | 427 | try { |
Hall Liu | 57006aa | 2017-02-06 10:49:48 -0800 | [diff] [blame] | 428 | mAdapter.respondToRttRequest(callId, id, accept); |
Hall Liu | 95d5587 | 2017-01-25 17:12:49 -0800 | [diff] [blame] | 429 | } catch (RemoteException ignored) { |
| 430 | } |
| 431 | } |
| 432 | |
| 433 | /** |
| 434 | * Instructs Telecom to shut down the RTT communication channel. |
| 435 | */ |
Hall Liu | 57006aa | 2017-02-06 10:49:48 -0800 | [diff] [blame] | 436 | public void stopRtt(String callId) { |
Hall Liu | 95d5587 | 2017-01-25 17:12:49 -0800 | [diff] [blame] | 437 | try { |
Hall Liu | 57006aa | 2017-02-06 10:49:48 -0800 | [diff] [blame] | 438 | mAdapter.stopRtt(callId); |
Hall Liu | 95d5587 | 2017-01-25 17:12:49 -0800 | [diff] [blame] | 439 | } catch (RemoteException ignored) { |
| 440 | } |
| 441 | } |
| 442 | |
| 443 | /** |
| 444 | * Sets the RTT audio mode. |
| 445 | * @param mode the desired RTT audio mode |
| 446 | */ |
Hall Liu | 57006aa | 2017-02-06 10:49:48 -0800 | [diff] [blame] | 447 | public void setRttMode(String callId, int mode) { |
Hall Liu | 95d5587 | 2017-01-25 17:12:49 -0800 | [diff] [blame] | 448 | try { |
Hall Liu | 57006aa | 2017-02-06 10:49:48 -0800 | [diff] [blame] | 449 | mAdapter.setRttMode(callId, mode); |
Hall Liu | 95d5587 | 2017-01-25 17:12:49 -0800 | [diff] [blame] | 450 | } catch (RemoteException ignored) { |
| 451 | } |
| 452 | } |
Sanket Padawe | a8eddd4 | 2017-11-03 11:07:35 -0700 | [diff] [blame] | 453 | |
| 454 | |
| 455 | /** |
| 456 | * Initiates a handover of this {@link Call} to the {@link ConnectionService} identified |
| 457 | * by destAcct. |
| 458 | * @param callId The callId of the Call which calls this function. |
| 459 | * @param destAcct ConnectionService to which the call should be handed over. |
| 460 | * @param videoState The video state desired after the handover. |
| 461 | * @param extras Extra information to be passed to ConnectionService |
| 462 | */ |
| 463 | public void handoverTo(String callId, PhoneAccountHandle destAcct, int videoState, |
| 464 | Bundle extras) { |
| 465 | try { |
| 466 | mAdapter.handoverTo(callId, destAcct, videoState, extras); |
| 467 | } catch (RemoteException ignored) { |
| 468 | } |
| 469 | } |
Santos Cordon | 8f3fd30 | 2014-01-27 08:46:21 -0800 | [diff] [blame] | 470 | } |