blob: af65c65a48b7db1c32590d7c180af935cfbe463c [file] [log] [blame]
Sailesh Nepalab5d2822014-03-08 18:01:06 -08001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Tyler Gunnef9f6f92014-09-12 22:16:17 -070017package android.telecom;
Sailesh Nepalab5d2822014-03-08 18:01:06 -080018
Hall Liua98f58b52017-11-07 17:59:28 -080019import android.annotation.NonNull;
Tyler Gunn2ac40102014-08-18 16:23:10 -070020import android.annotation.SdkConstant;
Santos Cordona2492812015-04-15 11:05:16 -070021import android.annotation.SystemApi;
Santos Cordon2f42b112014-07-19 13:19:37 -070022import android.app.Service;
Hall Liua98f58b52017-11-07 17:59:28 -080023import android.bluetooth.BluetoothDevice;
Santos Cordon2f42b112014-07-19 13:19:37 -070024import android.content.Intent;
Tyler Gunnb702ef82015-05-29 11:51:53 -070025import android.hardware.camera2.CameraManager;
Yorke Lee32f24732015-05-12 16:18:03 -070026import android.net.Uri;
Tyler Gunn876dbfb2016-03-14 15:18:07 -070027import android.os.Bundle;
Sailesh Nepalab5d2822014-03-08 18:01:06 -080028import android.os.Handler;
29import android.os.IBinder;
30import android.os.Looper;
31import android.os.Message;
Andrew Lee50aca232014-07-22 16:41:54 -070032import android.view.Surface;
Sailesh Nepalab5d2822014-03-08 18:01:06 -080033
Ihab Awad2f236642014-03-10 15:33:45 -070034import com.android.internal.os.SomeArgs;
Tyler Gunnef9f6f92014-09-12 22:16:17 -070035import com.android.internal.telecom.IInCallAdapter;
36import com.android.internal.telecom.IInCallService;
Sailesh Nepalab5d2822014-03-08 18:01:06 -080037
Andrew Lee50aca232014-07-22 16:41:54 -070038import java.lang.String;
Santos Cordona2492812015-04-15 11:05:16 -070039import java.util.Collections;
40import java.util.List;
Andrew Lee50aca232014-07-22 16:41:54 -070041
Sailesh Nepalab5d2822014-03-08 18:01:06 -080042/**
43 * This service is implemented by any app that wishes to provide the user-interface for managing
Tyler Gunnef9f6f92014-09-12 22:16:17 -070044 * phone calls. Telecom binds to this service while there exists a live (active or incoming) call,
Santos Cordonf2600eb2015-06-22 15:02:20 -070045 * and uses it to notify the in-call app of any live and recently disconnected calls. An app must
46 * first be set as the default phone app (See {@link TelecomManager#getDefaultDialerPackage()})
47 * before the telecom service will bind to its {@code InCallService} implementation.
48 * <p>
49 * Below is an example manifest registration for an {@code InCallService}. The meta-data
50 * ({@link TelecomManager#METADATA_IN_CALL_SERVICE_UI}) indicates that this particular
51 * {@code InCallService} implementation intends to replace the built-in in-call UI.
52 * <pre>
53 * {@code
Neil Fuller71fbb812015-11-30 09:51:33 +000054 * <service android:name="your.package.YourInCallServiceImplementation"
Sailesh Nepal78f3ba62015-12-28 16:20:56 -080055 * android:permission="android.permission.BIND_INCALL_SERVICE">
Neil Fuller71fbb812015-11-30 09:51:33 +000056 * <meta-data android:name="android.telecom.IN_CALL_SERVICE_UI" android:value="true" />
57 * <intent-filter>
58 * <action android:name="android.telecom.InCallService"/>
59 * </intent-filter>
60 * </service>
Santos Cordonf2600eb2015-06-22 15:02:20 -070061 * }
62 * </pre>
Tyler Gunnfe39efa2018-02-02 13:18:02 -080063 * <p>
64 * In addition to implementing the {@link InCallService} API, you must also declare an activity in
65 * your manifest which handles the {@link Intent#ACTION_DIAL} intent. The example below illustrates
66 * how this is done:
67 * <pre>
68 * {@code
69 * <activity android:name="your.package.YourDialerActivity"
70 * android:label="@string/yourDialerActivityLabel">
71 * <intent-filter>
72 * <action android:name="android.intent.action.DIAL" />
73 * <category android:name="android.intent.category.DEFAULT" />
74 * </intent-filter>
75 * </activity>
76 * }
77 * </pre>
78 * <p>
79 * When a user installs your application and runs it for the first time, you should prompt the user
80 * to see if they would like your application to be the new default phone app. See the
81 * {@link TelecomManager#ACTION_CHANGE_DEFAULT_DIALER} intent documentation for more information on
82 * how to do this.
Sailesh Nepalab5d2822014-03-08 18:01:06 -080083 */
Santos Cordon2f42b112014-07-19 13:19:37 -070084public abstract class InCallService extends Service {
Tyler Gunn2ac40102014-08-18 16:23:10 -070085
86 /**
87 * The {@link Intent} that must be declared as handled by the service.
88 */
89 @SdkConstant(SdkConstant.SdkConstantType.SERVICE_ACTION)
Tyler Gunnef9f6f92014-09-12 22:16:17 -070090 public static final String SERVICE_INTERFACE = "android.telecom.InCallService";
Tyler Gunn2ac40102014-08-18 16:23:10 -070091
Sailesh Nepalab5d2822014-03-08 18:01:06 -080092 private static final int MSG_SET_IN_CALL_ADAPTER = 1;
93 private static final int MSG_ADD_CALL = 2;
Sailesh Nepal60437932014-04-05 16:44:55 -070094 private static final int MSG_UPDATE_CALL = 3;
Ihab Awad5d0410f2014-07-30 10:07:40 -070095 private static final int MSG_SET_POST_DIAL_WAIT = 4;
Yorke Lee4af59352015-05-13 14:14:54 -070096 private static final int MSG_ON_CALL_AUDIO_STATE_CHANGED = 5;
Ihab Awad5d0410f2014-07-30 10:07:40 -070097 private static final int MSG_BRING_TO_FOREGROUND = 6;
Santos Cordon6c912b72014-11-07 16:05:09 -080098 private static final int MSG_ON_CAN_ADD_CALL_CHANGED = 7;
Sailesh Nepal9c2618b2016-01-23 16:28:22 -080099 private static final int MSG_SILENCE_RINGER = 8;
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700100 private static final int MSG_ON_CONNECTION_EVENT = 9;
Hall Liu95d55872017-01-25 17:12:49 -0800101 private static final int MSG_ON_RTT_UPGRADE_REQUEST = 10;
Hall Liu57006aa2017-02-06 10:49:48 -0800102 private static final int MSG_ON_RTT_INITIATION_FAILURE = 11;
Sanket Padawe85291f62017-12-01 13:59:27 -0800103 private static final int MSG_ON_HANDOVER_FAILED = 12;
Tyler Gunn858bfaf2018-01-22 15:17:54 -0800104 private static final int MSG_ON_HANDOVER_COMPLETE = 13;
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800105
106 /** Default Handler used to consolidate binder method calls onto a single thread. */
107 private final Handler mHandler = new Handler(Looper.getMainLooper()) {
108 @Override
109 public void handleMessage(Message msg) {
Jay Shrauner5e6162d2014-09-22 20:47:45 -0700110 if (mPhone == null && msg.what != MSG_SET_IN_CALL_ADAPTER) {
111 return;
112 }
113
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800114 switch (msg.what) {
115 case MSG_SET_IN_CALL_ADAPTER:
Tyler Gunnbf9c6fd2016-11-09 10:19:23 -0800116 String callingPackage = getApplicationContext().getOpPackageName();
Tyler Gunn159f35c2017-03-02 09:28:37 -0800117 mPhone = new Phone(new InCallAdapter((IInCallAdapter) msg.obj), callingPackage,
118 getApplicationContext().getApplicationInfo().targetSdkVersion);
Santos Cordona2492812015-04-15 11:05:16 -0700119 mPhone.addListener(mPhoneListener);
Ihab Awade63fadb2014-07-09 21:52:04 -0700120 onPhoneCreated(mPhone);
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800121 break;
122 case MSG_ADD_CALL:
Santos Cordon88b771d2014-07-19 13:10:40 -0700123 mPhone.internalAddCall((ParcelableCall) msg.obj);
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800124 break;
Sailesh Nepal60437932014-04-05 16:44:55 -0700125 case MSG_UPDATE_CALL:
Santos Cordon88b771d2014-07-19 13:10:40 -0700126 mPhone.internalUpdateCall((ParcelableCall) msg.obj);
Ihab Awad2f236642014-03-10 15:33:45 -0700127 break;
Ihab Awad2f236642014-03-10 15:33:45 -0700128 case MSG_SET_POST_DIAL_WAIT: {
129 SomeArgs args = (SomeArgs) msg.obj;
130 try {
131 String callId = (String) args.arg1;
132 String remaining = (String) args.arg2;
Ihab Awade63fadb2014-07-09 21:52:04 -0700133 mPhone.internalSetPostDialWait(callId, remaining);
Ihab Awad2f236642014-03-10 15:33:45 -0700134 } finally {
135 args.recycle();
136 }
137 break;
138 }
Yorke Lee4af59352015-05-13 14:14:54 -0700139 case MSG_ON_CALL_AUDIO_STATE_CHANGED:
140 mPhone.internalCallAudioStateChanged((CallAudioState) msg.obj);
Sailesh Nepalb632e5b2014-04-03 12:54:33 -0700141 break;
Santos Cordon3534ede2014-05-29 13:07:10 -0700142 case MSG_BRING_TO_FOREGROUND:
Ihab Awade63fadb2014-07-09 21:52:04 -0700143 mPhone.internalBringToForeground(msg.arg1 == 1);
Santos Cordon3534ede2014-05-29 13:07:10 -0700144 break;
Santos Cordon6c912b72014-11-07 16:05:09 -0800145 case MSG_ON_CAN_ADD_CALL_CHANGED:
146 mPhone.internalSetCanAddCall(msg.arg1 == 1);
147 break;
Sailesh Nepal9c2618b2016-01-23 16:28:22 -0800148 case MSG_SILENCE_RINGER:
149 mPhone.internalSilenceRinger();
150 break;
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700151 case MSG_ON_CONNECTION_EVENT: {
152 SomeArgs args = (SomeArgs) msg.obj;
153 try {
154 String callId = (String) args.arg1;
155 String event = (String) args.arg2;
156 Bundle extras = (Bundle) args.arg3;
157 mPhone.internalOnConnectionEvent(callId, event, extras);
158 } finally {
159 args.recycle();
160 }
161 break;
162 }
Hall Liu95d55872017-01-25 17:12:49 -0800163 case MSG_ON_RTT_UPGRADE_REQUEST: {
164 String callId = (String) msg.obj;
165 int requestId = msg.arg1;
166 mPhone.internalOnRttUpgradeRequest(callId, requestId);
167 break;
168 }
Hall Liu57006aa2017-02-06 10:49:48 -0800169 case MSG_ON_RTT_INITIATION_FAILURE: {
170 String callId = (String) msg.obj;
171 int reason = msg.arg1;
172 mPhone.internalOnRttInitiationFailure(callId, reason);
173 break;
174 }
Sanket Padawe85291f62017-12-01 13:59:27 -0800175 case MSG_ON_HANDOVER_FAILED: {
176 String callId = (String) msg.obj;
177 int error = msg.arg1;
178 mPhone.internalOnHandoverFailed(callId, error);
179 break;
180 }
Tyler Gunn858bfaf2018-01-22 15:17:54 -0800181 case MSG_ON_HANDOVER_COMPLETE: {
182 String callId = (String) msg.obj;
183 mPhone.internalOnHandoverComplete(callId);
184 break;
185 }
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800186 default:
187 break;
188 }
189 }
190 };
191
192 /** Manages the binder calls so that the implementor does not need to deal with it. */
193 private final class InCallServiceBinder extends IInCallService.Stub {
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800194 @Override
195 public void setInCallAdapter(IInCallAdapter inCallAdapter) {
196 mHandler.obtainMessage(MSG_SET_IN_CALL_ADAPTER, inCallAdapter).sendToTarget();
197 }
198
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800199 @Override
Santos Cordon88b771d2014-07-19 13:10:40 -0700200 public void addCall(ParcelableCall call) {
Sailesh Nepal60437932014-04-05 16:44:55 -0700201 mHandler.obtainMessage(MSG_ADD_CALL, call).sendToTarget();
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800202 }
203
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800204 @Override
Santos Cordon88b771d2014-07-19 13:10:40 -0700205 public void updateCall(ParcelableCall call) {
Sailesh Nepal60437932014-04-05 16:44:55 -0700206 mHandler.obtainMessage(MSG_UPDATE_CALL, call).sendToTarget();
Ihab Awad2f236642014-03-10 15:33:45 -0700207 }
208
209 @Override
210 public void setPostDial(String callId, String remaining) {
Ihab Awad5d0410f2014-07-30 10:07:40 -0700211 // TODO: Unused
Ihab Awad2f236642014-03-10 15:33:45 -0700212 }
213
214 @Override
215 public void setPostDialWait(String callId, String remaining) {
216 SomeArgs args = SomeArgs.obtain();
217 args.arg1 = callId;
218 args.arg2 = remaining;
219 mHandler.obtainMessage(MSG_SET_POST_DIAL_WAIT, args).sendToTarget();
220 }
Sailesh Nepalb632e5b2014-04-03 12:54:33 -0700221
222 @Override
Yorke Lee4af59352015-05-13 14:14:54 -0700223 public void onCallAudioStateChanged(CallAudioState callAudioState) {
224 mHandler.obtainMessage(MSG_ON_CALL_AUDIO_STATE_CHANGED, callAudioState).sendToTarget();
Sailesh Nepalb632e5b2014-04-03 12:54:33 -0700225 }
Santos Cordon3534ede2014-05-29 13:07:10 -0700226
Santos Cordon3534ede2014-05-29 13:07:10 -0700227 @Override
228 public void bringToForeground(boolean showDialpad) {
229 mHandler.obtainMessage(MSG_BRING_TO_FOREGROUND, showDialpad ? 1 : 0, 0).sendToTarget();
230 }
Santos Cordon6c912b72014-11-07 16:05:09 -0800231
232 @Override
233 public void onCanAddCallChanged(boolean canAddCall) {
234 mHandler.obtainMessage(MSG_ON_CAN_ADD_CALL_CHANGED, canAddCall ? 1 : 0, 0)
235 .sendToTarget();
236 }
Sailesh Nepal9c2618b2016-01-23 16:28:22 -0800237
238 @Override
239 public void silenceRinger() {
240 mHandler.obtainMessage(MSG_SILENCE_RINGER).sendToTarget();
241 }
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700242
243 @Override
244 public void onConnectionEvent(String callId, String event, Bundle extras) {
245 SomeArgs args = SomeArgs.obtain();
246 args.arg1 = callId;
247 args.arg2 = event;
248 args.arg3 = extras;
249 mHandler.obtainMessage(MSG_ON_CONNECTION_EVENT, args).sendToTarget();
250 }
Hall Liu95d55872017-01-25 17:12:49 -0800251
252 @Override
253 public void onRttUpgradeRequest(String callId, int id) {
254 mHandler.obtainMessage(MSG_ON_RTT_UPGRADE_REQUEST, id, 0, callId).sendToTarget();
255 }
Hall Liu57006aa2017-02-06 10:49:48 -0800256
257 @Override
258 public void onRttInitiationFailure(String callId, int reason) {
259 mHandler.obtainMessage(MSG_ON_RTT_INITIATION_FAILURE, reason, 0, callId).sendToTarget();
260 }
Sanket Padawe85291f62017-12-01 13:59:27 -0800261
262 @Override
263 public void onHandoverFailed(String callId, int error) {
264 mHandler.obtainMessage(MSG_ON_HANDOVER_FAILED, error, 0, callId).sendToTarget();
265 }
Tyler Gunn858bfaf2018-01-22 15:17:54 -0800266
267 @Override
268 public void onHandoverComplete(String callId) {
269 mHandler.obtainMessage(MSG_ON_HANDOVER_COMPLETE, callId).sendToTarget();
270 }
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800271 }
272
Santos Cordona2492812015-04-15 11:05:16 -0700273 private Phone.Listener mPhoneListener = new Phone.Listener() {
274 /** ${inheritDoc} */
275 @Override
276 public void onAudioStateChanged(Phone phone, AudioState audioState) {
277 InCallService.this.onAudioStateChanged(audioState);
278 }
279
Yorke Lee4af59352015-05-13 14:14:54 -0700280 public void onCallAudioStateChanged(Phone phone, CallAudioState callAudioState) {
281 InCallService.this.onCallAudioStateChanged(callAudioState);
282 };
283
Santos Cordona2492812015-04-15 11:05:16 -0700284 /** ${inheritDoc} */
285 @Override
286 public void onBringToForeground(Phone phone, boolean showDialpad) {
287 InCallService.this.onBringToForeground(showDialpad);
288 }
289
290 /** ${inheritDoc} */
291 @Override
292 public void onCallAdded(Phone phone, Call call) {
293 InCallService.this.onCallAdded(call);
294 }
295
296 /** ${inheritDoc} */
297 @Override
298 public void onCallRemoved(Phone phone, Call call) {
299 InCallService.this.onCallRemoved(call);
300 }
301
302 /** ${inheritDoc} */
303 @Override
304 public void onCanAddCallChanged(Phone phone, boolean canAddCall) {
305 InCallService.this.onCanAddCallChanged(canAddCall);
306 }
307
Sailesh Nepal9c2618b2016-01-23 16:28:22 -0800308 /** ${inheritDoc} */
309 @Override
310 public void onSilenceRinger(Phone phone) {
311 InCallService.this.onSilenceRinger();
312 }
313
Santos Cordona2492812015-04-15 11:05:16 -0700314 };
315
Ihab Awade63fadb2014-07-09 21:52:04 -0700316 private Phone mPhone;
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800317
Santos Cordon2f42b112014-07-19 13:19:37 -0700318 public InCallService() {
319 }
Evan Charlton924748f2014-04-03 08:36:38 -0700320
Santos Cordon2f42b112014-07-19 13:19:37 -0700321 @Override
322 public IBinder onBind(Intent intent) {
Ihab Awade63fadb2014-07-09 21:52:04 -0700323 return new InCallServiceBinder();
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800324 }
325
Santos Cordonf30d7e92014-08-26 09:54:33 -0700326 @Override
327 public boolean onUnbind(Intent intent) {
Santos Cordon619b3c02014-09-02 17:13:45 -0700328 if (mPhone != null) {
329 Phone oldPhone = mPhone;
330 mPhone = null;
Santos Cordonf30d7e92014-08-26 09:54:33 -0700331
Santos Cordon619b3c02014-09-02 17:13:45 -0700332 oldPhone.destroy();
Santos Cordona2492812015-04-15 11:05:16 -0700333 // destroy sets all the calls to disconnected if any live ones still exist. Therefore,
334 // it is important to remove the Listener *after* the call to destroy so that
335 // InCallService.on* callbacks are appropriately called.
336 oldPhone.removeListener(mPhoneListener);
337
Santos Cordon619b3c02014-09-02 17:13:45 -0700338 onPhoneDestroyed(oldPhone);
339 }
Santos Cordona2492812015-04-15 11:05:16 -0700340
Santos Cordonf30d7e92014-08-26 09:54:33 -0700341 return false;
342 }
343
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800344 /**
Ihab Awade63fadb2014-07-09 21:52:04 -0700345 * Obtain the {@code Phone} associated with this {@code InCallService}.
346 *
347 * @return The {@code Phone} object associated with this {@code InCallService}, or {@code null}
Santos Cordon2f42b112014-07-19 13:19:37 -0700348 * if the {@code InCallService} is not in a state where it has an associated
349 * {@code Phone}.
Santos Cordona2492812015-04-15 11:05:16 -0700350 * @hide
Santos Cordon29886d82015-04-16 15:34:07 -0700351 * @deprecated Use direct methods on InCallService instead of {@link Phone}.
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800352 */
Santos Cordona2492812015-04-15 11:05:16 -0700353 @SystemApi
Santos Cordon29886d82015-04-16 15:34:07 -0700354 @Deprecated
355 public Phone getPhone() {
Ihab Awade63fadb2014-07-09 21:52:04 -0700356 return mPhone;
Evan Charlton924748f2014-04-03 08:36:38 -0700357 }
358
359 /**
Santos Cordon895d4b82015-06-25 16:41:48 -0700360 * Obtains the current list of {@code Call}s to be displayed by this in-call service.
Santos Cordona2492812015-04-15 11:05:16 -0700361 *
362 * @return A list of the relevant {@code Call}s.
363 */
364 public final List<Call> getCalls() {
365 return mPhone == null ? Collections.<Call>emptyList() : mPhone.getCalls();
366 }
367
368 /**
369 * Returns if the device can support additional calls.
370 *
371 * @return Whether the phone supports adding more calls.
372 */
373 public final boolean canAddCall() {
374 return mPhone == null ? false : mPhone.canAddCall();
375 }
376
377 /**
378 * Obtains the current phone call audio state.
379 *
380 * @return An object encapsulating the audio state. Returns null if the service is not
381 * fully initialized.
Yorke Lee4af59352015-05-13 14:14:54 -0700382 * @deprecated Use {@link #getCallAudioState()} instead.
383 * @hide
Santos Cordona2492812015-04-15 11:05:16 -0700384 */
Yorke Lee4af59352015-05-13 14:14:54 -0700385 @Deprecated
Santos Cordona2492812015-04-15 11:05:16 -0700386 public final AudioState getAudioState() {
387 return mPhone == null ? null : mPhone.getAudioState();
388 }
389
390 /**
Yorke Lee4af59352015-05-13 14:14:54 -0700391 * Obtains the current phone call audio state.
392 *
393 * @return An object encapsulating the audio state. Returns null if the service is not
394 * fully initialized.
395 */
396 public final CallAudioState getCallAudioState() {
397 return mPhone == null ? null : mPhone.getCallAudioState();
398 }
399
400 /**
Santos Cordona2492812015-04-15 11:05:16 -0700401 * Sets the microphone mute state. When this request is honored, there will be change to
Yorke Lee4af59352015-05-13 14:14:54 -0700402 * the {@link #getCallAudioState()}.
Santos Cordona2492812015-04-15 11:05:16 -0700403 *
404 * @param state {@code true} if the microphone should be muted; {@code false} otherwise.
405 */
406 public final void setMuted(boolean state) {
407 if (mPhone != null) {
408 mPhone.setMuted(state);
409 }
410 }
411
412 /**
413 * Sets the audio route (speaker, bluetooth, etc...). When this request is honored, there will
Yorke Lee4af59352015-05-13 14:14:54 -0700414 * be change to the {@link #getCallAudioState()}.
Santos Cordona2492812015-04-15 11:05:16 -0700415 *
416 * @param route The audio route to use.
417 */
418 public final void setAudioRoute(int route) {
419 if (mPhone != null) {
420 mPhone.setAudioRoute(route);
421 }
422 }
423
424 /**
Hall Liua98f58b52017-11-07 17:59:28 -0800425 * Request audio routing to a specific bluetooth device. Calling this method may result in
426 * the device routing audio to a different bluetooth device than the one specified if the
427 * bluetooth stack is unable to route audio to the requested device.
428 * A list of available devices can be obtained via
429 * {@link CallAudioState#getSupportedBluetoothDevices()}
430 *
431 * @param bluetoothAddress The address of the bluetooth device to connect to, as returned by
432 * {@link BluetoothDevice#getAddress()}.
433 */
434 public final void requestBluetoothAudio(@NonNull String bluetoothAddress) {
435 if (mPhone != null) {
436 mPhone.requestBluetoothAudio(bluetoothAddress);
437 }
438 }
439
440 /**
Ihab Awade63fadb2014-07-09 21:52:04 -0700441 * Invoked when the {@code Phone} has been created. This is a signal to the in-call experience
442 * to start displaying in-call information to the user. Each instance of {@code InCallService}
Santos Cordon2f42b112014-07-19 13:19:37 -0700443 * will have only one {@code Phone}, and this method will be called exactly once in the lifetime
444 * of the {@code InCallService}.
Evan Charlton924748f2014-04-03 08:36:38 -0700445 *
Ihab Awade63fadb2014-07-09 21:52:04 -0700446 * @param phone The {@code Phone} object associated with this {@code InCallService}.
Santos Cordona2492812015-04-15 11:05:16 -0700447 * @hide
Santos Cordon29886d82015-04-16 15:34:07 -0700448 * @deprecated Use direct methods on InCallService instead of {@link Phone}.
Evan Charlton924748f2014-04-03 08:36:38 -0700449 */
Santos Cordona2492812015-04-15 11:05:16 -0700450 @SystemApi
Santos Cordon29886d82015-04-16 15:34:07 -0700451 @Deprecated
Santos Cordon2f42b112014-07-19 13:19:37 -0700452 public void onPhoneCreated(Phone phone) {
453 }
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800454
455 /**
Ihab Awade63fadb2014-07-09 21:52:04 -0700456 * Invoked when a {@code Phone} has been destroyed. This is a signal to the in-call experience
457 * to stop displaying in-call information to the user. This method will be called exactly once
458 * in the lifetime of the {@code InCallService}, and it will always be called after a previous
459 * call to {@link #onPhoneCreated(Phone)}.
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800460 *
Ihab Awade63fadb2014-07-09 21:52:04 -0700461 * @param phone The {@code Phone} object associated with this {@code InCallService}.
Santos Cordona2492812015-04-15 11:05:16 -0700462 * @hide
Santos Cordon29886d82015-04-16 15:34:07 -0700463 * @deprecated Use direct methods on InCallService instead of {@link Phone}.
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800464 */
Santos Cordona2492812015-04-15 11:05:16 -0700465 @SystemApi
Santos Cordon29886d82015-04-16 15:34:07 -0700466 @Deprecated
Santos Cordon2f42b112014-07-19 13:19:37 -0700467 public void onPhoneDestroyed(Phone phone) {
468 }
Andrew Lee50aca232014-07-22 16:41:54 -0700469
470 /**
Santos Cordona2492812015-04-15 11:05:16 -0700471 * Called when the audio state changes.
472 *
473 * @param audioState The new {@link AudioState}.
Yorke Lee4af59352015-05-13 14:14:54 -0700474 * @deprecated Use {@link #onCallAudioStateChanged(CallAudioState) instead}.
475 * @hide
Santos Cordona2492812015-04-15 11:05:16 -0700476 */
Yorke Lee4af59352015-05-13 14:14:54 -0700477 @Deprecated
Santos Cordona2492812015-04-15 11:05:16 -0700478 public void onAudioStateChanged(AudioState audioState) {
479 }
480
481 /**
Yorke Lee4af59352015-05-13 14:14:54 -0700482 * Called when the audio state changes.
483 *
484 * @param audioState The new {@link CallAudioState}.
485 */
486 public void onCallAudioStateChanged(CallAudioState audioState) {
487 }
488
489 /**
Santos Cordona2492812015-04-15 11:05:16 -0700490 * Called to bring the in-call screen to the foreground. The in-call experience should
491 * respond immediately by coming to the foreground to inform the user of the state of
492 * ongoing {@code Call}s.
493 *
494 * @param showDialpad If true, put up the dialpad when the screen is shown.
495 */
496 public void onBringToForeground(boolean showDialpad) {
497 }
498
499 /**
500 * Called when a {@code Call} has been added to this in-call session. The in-call user
501 * experience should add necessary state listeners to the specified {@code Call} and
502 * immediately start to show the user information about the existence
503 * and nature of this {@code Call}. Subsequent invocations of {@link #getCalls()} will
504 * include this {@code Call}.
505 *
506 * @param call A newly added {@code Call}.
507 */
508 public void onCallAdded(Call call) {
509 }
510
511 /**
512 * Called when a {@code Call} has been removed from this in-call session. The in-call user
513 * experience should remove any state listeners from the specified {@code Call} and
514 * immediately stop displaying any information about this {@code Call}.
515 * Subsequent invocations of {@link #getCalls()} will no longer include this {@code Call}.
516 *
517 * @param call A newly removed {@code Call}.
518 */
519 public void onCallRemoved(Call call) {
520 }
521
522 /**
523 * Called when the ability to add more calls changes. If the phone cannot
524 * support more calls then {@code canAddCall} is set to {@code false}. If it can, then it
525 * is set to {@code true}. This can be used to control the visibility of UI to add more calls.
526 *
527 * @param canAddCall Indicates whether an additional call can be added.
528 */
529 public void onCanAddCallChanged(boolean canAddCall) {
530 }
531
532 /**
Sailesh Nepal9c2618b2016-01-23 16:28:22 -0800533 * Called to silence the ringer if a ringing call exists.
534 */
535 public void onSilenceRinger() {
536 }
537
538 /**
Tyler Gunn06f3fa62016-08-25 09:26:15 -0700539 * Unused; to handle connection events issued by a {@link ConnectionService}, implement the
540 * {@link android.telecom.Call.Callback#onConnectionEvent(Call, String, Bundle)} callback.
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700541 * <p>
542 * See {@link Connection#sendConnectionEvent(String, Bundle)}.
543 *
544 * @param call The call the event is associated with.
545 * @param event The event.
546 * @param extras Any associated extras.
547 */
548 public void onConnectionEvent(Call call, String event, Bundle extras) {
549 }
550
551 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700552 * Used to issue commands to the {@link Connection.VideoProvider} associated with a
553 * {@link Call}.
Andrew Lee50aca232014-07-22 16:41:54 -0700554 */
555 public static abstract class VideoCall {
556
Andrew Lee011728f2015-04-23 15:47:06 -0700557 /** @hide */
558 public abstract void destroy();
559
Andrew Lee50aca232014-07-22 16:41:54 -0700560 /**
Andrew Lee7c9ee2b2015-04-16 15:26:08 -0700561 * Registers a callback to receive commands and state changes for video calls.
Andrew Lee50aca232014-07-22 16:41:54 -0700562 *
Andrew Lee7c9ee2b2015-04-16 15:26:08 -0700563 * @param callback The video call callback.
Andrew Lee50aca232014-07-22 16:41:54 -0700564 */
Andrew Leeda80c872015-04-15 14:09:50 -0700565 public abstract void registerCallback(VideoCall.Callback callback);
566
567 /**
Andrew Lee011728f2015-04-23 15:47:06 -0700568 * Registers a callback to receive commands and state changes for video calls.
569 *
570 * @param callback The video call callback.
571 * @param handler A handler which commands and status changes will be delivered to.
572 */
573 public abstract void registerCallback(VideoCall.Callback callback, Handler handler);
574
575 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700576 * Clears the video call callback set via {@link #registerCallback}.
Tyler Gunn295f5d72015-06-04 11:08:54 -0700577 *
578 * @param callback The video call callback to clear.
Tyler Gunn75958422015-04-15 14:23:42 -0700579 */
Andrew Lee011728f2015-04-23 15:47:06 -0700580 public abstract void unregisterCallback(VideoCall.Callback callback);
Tyler Gunn75958422015-04-15 14:23:42 -0700581
582 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700583 * Sets the camera to be used for the outgoing video.
584 * <p>
585 * Handled by {@link Connection.VideoProvider#onSetCamera(String)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700586 *
Tyler Gunnb702ef82015-05-29 11:51:53 -0700587 * @param cameraId The id of the camera (use ids as reported by
588 * {@link CameraManager#getCameraIdList()}).
Andrew Lee50aca232014-07-22 16:41:54 -0700589 */
590 public abstract void setCamera(String cameraId);
591
592 /**
593 * Sets the surface to be used for displaying a preview of what the user's camera is
594 * currently capturing. When video transmission is enabled, this is the video signal which
595 * is sent to the remote device.
Tyler Gunnb702ef82015-05-29 11:51:53 -0700596 * <p>
597 * Handled by {@link Connection.VideoProvider#onSetPreviewSurface(Surface)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700598 *
Tyler Gunnb702ef82015-05-29 11:51:53 -0700599 * @param surface The {@link Surface}.
Andrew Lee50aca232014-07-22 16:41:54 -0700600 */
601 public abstract void setPreviewSurface(Surface surface);
602
603 /**
604 * Sets the surface to be used for displaying the video received from the remote device.
Tyler Gunnb702ef82015-05-29 11:51:53 -0700605 * <p>
606 * Handled by {@link Connection.VideoProvider#onSetDisplaySurface(Surface)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700607 *
Tyler Gunnb702ef82015-05-29 11:51:53 -0700608 * @param surface The {@link Surface}.
Andrew Lee50aca232014-07-22 16:41:54 -0700609 */
610 public abstract void setDisplaySurface(Surface surface);
611
612 /**
613 * Sets the device orientation, in degrees. Assumes that a standard portrait orientation of
614 * the device is 0 degrees.
Tyler Gunnb702ef82015-05-29 11:51:53 -0700615 * <p>
616 * Handled by {@link Connection.VideoProvider#onSetDeviceOrientation(int)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700617 *
618 * @param rotation The device orientation, in degrees.
619 */
620 public abstract void setDeviceOrientation(int rotation);
621
622 /**
623 * Sets camera zoom ratio.
Tyler Gunnb702ef82015-05-29 11:51:53 -0700624 * <p>
625 * Handled by {@link Connection.VideoProvider#onSetZoom(float)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700626 *
627 * @param value The camera zoom ratio.
628 */
629 public abstract void setZoom(float value);
630
631 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700632 * Issues a request to modify the properties of the current video session.
633 * <p>
634 * Example scenarios include: requesting an audio-only call to be upgraded to a
635 * bi-directional video call, turning on or off the user's camera, sending a pause signal
636 * when the {@link InCallService} is no longer the foreground application.
637 * <p>
638 * Handled by
639 * {@link Connection.VideoProvider#onSendSessionModifyRequest(VideoProfile, VideoProfile)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700640 *
641 * @param requestProfile The requested call video properties.
642 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700643 public abstract void sendSessionModifyRequest(VideoProfile requestProfile);
Andrew Lee50aca232014-07-22 16:41:54 -0700644
645 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700646 * Provides a response to a request to change the current call video session
647 * properties. This should be called in response to a request the {@link InCallService} has
648 * received via {@link VideoCall.Callback#onSessionModifyRequestReceived}.
649 * <p>
650 * Handled by
651 * {@link Connection.VideoProvider#onSendSessionModifyResponse(VideoProfile)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700652 *
653 * @param responseProfile The response call video properties.
654 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700655 public abstract void sendSessionModifyResponse(VideoProfile responseProfile);
Andrew Lee50aca232014-07-22 16:41:54 -0700656
657 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700658 * Issues a request to the {@link Connection.VideoProvider} to retrieve the capabilities
659 * of the current camera. The current camera is selected using
660 * {@link VideoCall#setCamera(String)}.
661 * <p>
662 * Camera capabilities are reported to the caller via
663 * {@link VideoCall.Callback#onCameraCapabilitiesChanged(VideoProfile.CameraCapabilities)}.
664 * <p>
665 * Handled by {@link Connection.VideoProvider#onRequestCameraCapabilities()}.
Andrew Lee50aca232014-07-22 16:41:54 -0700666 */
667 public abstract void requestCameraCapabilities();
668
669 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700670 * Issues a request to the {@link Connection.VideoProvider} to retrieve the cumulative data
671 * usage for the video component of the current call (in bytes). Data usage is reported
672 * to the caller via {@link VideoCall.Callback#onCallDataUsageChanged}.
673 * <p>
674 * Handled by {@link Connection.VideoProvider#onRequestConnectionDataUsage()}.
Andrew Lee50aca232014-07-22 16:41:54 -0700675 */
676 public abstract void requestCallDataUsage();
677
678 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700679 * Provides the {@link Connection.VideoProvider} with the {@link Uri} of an image to be
680 * displayed to the peer device when the video signal is paused.
681 * <p>
682 * Handled by {@link Connection.VideoProvider#onSetPauseImage(Uri)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700683 *
684 * @param uri URI of image to display.
685 */
Yorke Lee32f24732015-05-12 16:18:03 -0700686 public abstract void setPauseImage(Uri uri);
Andrew Lee50aca232014-07-22 16:41:54 -0700687
688 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700689 * The {@link InCallService} extends this class to provide a means of receiving callbacks
Tyler Gunn295f5d72015-06-04 11:08:54 -0700690 * from the {@link Connection.VideoProvider}.
691 * <p>
Tyler Gunnb702ef82015-05-29 11:51:53 -0700692 * When the {@link InCallService} receives the
693 * {@link Call.Callback#onVideoCallChanged(Call, VideoCall)} callback, it should create an
694 * instance its {@link VideoCall.Callback} implementation and set it on the
695 * {@link VideoCall} using {@link VideoCall#registerCallback(Callback)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700696 */
Andrew Leeda80c872015-04-15 14:09:50 -0700697 public static abstract class Callback {
Andrew Lee50aca232014-07-22 16:41:54 -0700698 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700699 * Called when the {@link Connection.VideoProvider} receives a session modification
Tyler Gunn295f5d72015-06-04 11:08:54 -0700700 * request from the peer device.
Tyler Gunnb702ef82015-05-29 11:51:53 -0700701 * <p>
702 * The {@link InCallService} may potentially prompt the user to confirm whether they
703 * wish to accept the request, or decide to automatically accept the request. In either
704 * case the {@link InCallService} should call
705 * {@link VideoCall#sendSessionModifyResponse(VideoProfile)} to indicate the video
706 * profile agreed upon.
707 * <p>
708 * Callback originates from
709 * {@link Connection.VideoProvider#receiveSessionModifyRequest(VideoProfile)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700710 *
Tyler Gunnb702ef82015-05-29 11:51:53 -0700711 * @param videoProfile The requested video profile.
Andrew Lee50aca232014-07-22 16:41:54 -0700712 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700713 public abstract void onSessionModifyRequestReceived(VideoProfile videoProfile);
Andrew Lee50aca232014-07-22 16:41:54 -0700714
715 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700716 * Called when the {@link Connection.VideoProvider} receives a response to a session
717 * modification request previously sent to the peer device.
718 * <p>
719 * The new video state should not be considered active by the {@link InCallService}
720 * until the {@link Call} video state changes (the
721 * {@link Call.Callback#onDetailsChanged(Call, Call.Details)} callback is triggered
722 * when the video state changes).
723 * <p>
724 * Callback originates from
725 * {@link Connection.VideoProvider#receiveSessionModifyResponse(int, VideoProfile,
726 * VideoProfile)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700727 *
728 * @param status Status of the session modify request. Valid values are
Tyler Gunnb702ef82015-05-29 11:51:53 -0700729 * {@link Connection.VideoProvider#SESSION_MODIFY_REQUEST_SUCCESS},
730 * {@link Connection.VideoProvider#SESSION_MODIFY_REQUEST_FAIL},
731 * {@link Connection.VideoProvider#SESSION_MODIFY_REQUEST_INVALID},
732 * {@link Connection.VideoProvider#SESSION_MODIFY_REQUEST_TIMED_OUT},
733 * {@link Connection.VideoProvider#SESSION_MODIFY_REQUEST_REJECTED_BY_REMOTE}.
734 * @param requestedProfile The original request which was sent to the peer device.
735 * @param responseProfile The actual profile changes made by the peer device.
Andrew Lee50aca232014-07-22 16:41:54 -0700736 */
737 public abstract void onSessionModifyResponseReceived(int status,
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700738 VideoProfile requestedProfile, VideoProfile responseProfile);
Andrew Lee50aca232014-07-22 16:41:54 -0700739
740 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700741 * Handles events related to the current video session which the {@link InCallService}
742 * may wish to handle. These are separate from requested changes to the session due to
743 * the underlying protocol or connection.
744 * <p>
745 * Callback originates from
746 * {@link Connection.VideoProvider#handleCallSessionEvent(int)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700747 *
Tyler Gunnb702ef82015-05-29 11:51:53 -0700748 * @param event The event. Valid values are:
749 * {@link Connection.VideoProvider#SESSION_EVENT_RX_PAUSE},
750 * {@link Connection.VideoProvider#SESSION_EVENT_RX_RESUME},
751 * {@link Connection.VideoProvider#SESSION_EVENT_TX_START},
752 * {@link Connection.VideoProvider#SESSION_EVENT_TX_STOP},
753 * {@link Connection.VideoProvider#SESSION_EVENT_CAMERA_FAILURE},
Tyler Gunnbf9c6fd2016-11-09 10:19:23 -0800754 * {@link Connection.VideoProvider#SESSION_EVENT_CAMERA_READY},
755 * {@link Connection.VideoProvider#SESSION_EVENT_CAMERA_PERMISSION_ERROR}.
Andrew Lee50aca232014-07-22 16:41:54 -0700756 */
757 public abstract void onCallSessionEvent(int event);
758
759 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700760 * Handles a change to the video dimensions from the peer device. This could happen if,
761 * for example, the peer changes orientation of their device, or switches cameras.
762 * <p>
763 * Callback originates from
764 * {@link Connection.VideoProvider#changePeerDimensions(int, int)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700765 *
766 * @param width The updated peer video width.
767 * @param height The updated peer video height.
768 */
769 public abstract void onPeerDimensionsChanged(int width, int height);
770
771 /**
Rekha Kumar07366812015-03-24 16:42:31 -0700772 * Handles a change to the video quality.
Tyler Gunnb702ef82015-05-29 11:51:53 -0700773 * <p>
774 * Callback originates from {@link Connection.VideoProvider#changeVideoQuality(int)}.
Rekha Kumar07366812015-03-24 16:42:31 -0700775 *
Tyler Gunnb702ef82015-05-29 11:51:53 -0700776 * @param videoQuality The updated peer video quality. Valid values:
777 * {@link VideoProfile#QUALITY_HIGH},
778 * {@link VideoProfile#QUALITY_MEDIUM},
779 * {@link VideoProfile#QUALITY_LOW},
780 * {@link VideoProfile#QUALITY_DEFAULT}.
Rekha Kumar07366812015-03-24 16:42:31 -0700781 */
782 public abstract void onVideoQualityChanged(int videoQuality);
783
784 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700785 * Handles an update to the total data used for the current video session.
786 * <p>
787 * Used by the {@link Connection.VideoProvider} in response to
788 * {@link VideoCall#requestCallDataUsage()}. May also be called periodically by the
789 * {@link Connection.VideoProvider}.
790 * <p>
791 * Callback originates from {@link Connection.VideoProvider#setCallDataUsage(long)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700792 *
Tyler Gunnb702ef82015-05-29 11:51:53 -0700793 * @param dataUsage The updated data usage (in bytes).
Andrew Lee50aca232014-07-22 16:41:54 -0700794 */
Rekha Kumar07366812015-03-24 16:42:31 -0700795 public abstract void onCallDataUsageChanged(long dataUsage);
Andrew Lee50aca232014-07-22 16:41:54 -0700796
797 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700798 * Handles a change in the capabilities of the currently selected camera.
799 * <p>
800 * Used by the {@link Connection.VideoProvider} in response to
801 * {@link VideoCall#requestCameraCapabilities()}. The {@link Connection.VideoProvider}
802 * may also report the camera capabilities after a call to
803 * {@link VideoCall#setCamera(String)}.
804 * <p>
805 * Callback originates from
806 * {@link Connection.VideoProvider#changeCameraCapabilities(
807 * VideoProfile.CameraCapabilities)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700808 *
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700809 * @param cameraCapabilities The changed camera capabilities.
Andrew Lee50aca232014-07-22 16:41:54 -0700810 */
Yorke Lee400470f2015-05-12 13:31:25 -0700811 public abstract void onCameraCapabilitiesChanged(
812 VideoProfile.CameraCapabilities cameraCapabilities);
Andrew Lee50aca232014-07-22 16:41:54 -0700813 }
814 }
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800815}