blob: fcf04c9a7eef88dada858117e769d7400b956d51 [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 Liua98f58b2017-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 Liua98f58b2017-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>
Sailesh Nepalab5d2822014-03-08 18:01:06 -080063 */
Santos Cordon2f42b112014-07-19 13:19:37 -070064public abstract class InCallService extends Service {
Tyler Gunn2ac40102014-08-18 16:23:10 -070065
66 /**
67 * The {@link Intent} that must be declared as handled by the service.
68 */
69 @SdkConstant(SdkConstant.SdkConstantType.SERVICE_ACTION)
Tyler Gunnef9f6f92014-09-12 22:16:17 -070070 public static final String SERVICE_INTERFACE = "android.telecom.InCallService";
Tyler Gunn2ac40102014-08-18 16:23:10 -070071
Sailesh Nepalab5d2822014-03-08 18:01:06 -080072 private static final int MSG_SET_IN_CALL_ADAPTER = 1;
73 private static final int MSG_ADD_CALL = 2;
Sailesh Nepal60437932014-04-05 16:44:55 -070074 private static final int MSG_UPDATE_CALL = 3;
Ihab Awad5d0410f2014-07-30 10:07:40 -070075 private static final int MSG_SET_POST_DIAL_WAIT = 4;
Yorke Lee4af59352015-05-13 14:14:54 -070076 private static final int MSG_ON_CALL_AUDIO_STATE_CHANGED = 5;
Ihab Awad5d0410f2014-07-30 10:07:40 -070077 private static final int MSG_BRING_TO_FOREGROUND = 6;
Santos Cordon6c912b72014-11-07 16:05:09 -080078 private static final int MSG_ON_CAN_ADD_CALL_CHANGED = 7;
Sailesh Nepal9c2618b2016-01-23 16:28:22 -080079 private static final int MSG_SILENCE_RINGER = 8;
Tyler Gunn876dbfb2016-03-14 15:18:07 -070080 private static final int MSG_ON_CONNECTION_EVENT = 9;
Hall Liu95d55872017-01-25 17:12:49 -080081 private static final int MSG_ON_RTT_UPGRADE_REQUEST = 10;
Hall Liu57006aa2017-02-06 10:49:48 -080082 private static final int MSG_ON_RTT_INITIATION_FAILURE = 11;
Sanket Padawee29a2662017-12-01 13:59:27 -080083 private static final int MSG_ON_HANDOVER_FAILED = 12;
Tyler Gunn79bc1ec2018-01-22 15:17:54 -080084 private static final int MSG_ON_HANDOVER_COMPLETE = 13;
Sailesh Nepalab5d2822014-03-08 18:01:06 -080085
86 /** Default Handler used to consolidate binder method calls onto a single thread. */
87 private final Handler mHandler = new Handler(Looper.getMainLooper()) {
88 @Override
89 public void handleMessage(Message msg) {
Jay Shrauner5e6162d2014-09-22 20:47:45 -070090 if (mPhone == null && msg.what != MSG_SET_IN_CALL_ADAPTER) {
91 return;
92 }
93
Sailesh Nepalab5d2822014-03-08 18:01:06 -080094 switch (msg.what) {
95 case MSG_SET_IN_CALL_ADAPTER:
Tyler Gunnbf9c6fd2016-11-09 10:19:23 -080096 String callingPackage = getApplicationContext().getOpPackageName();
Tyler Gunn159f35c2017-03-02 09:28:37 -080097 mPhone = new Phone(new InCallAdapter((IInCallAdapter) msg.obj), callingPackage,
98 getApplicationContext().getApplicationInfo().targetSdkVersion);
Santos Cordona2492812015-04-15 11:05:16 -070099 mPhone.addListener(mPhoneListener);
Ihab Awade63fadb2014-07-09 21:52:04 -0700100 onPhoneCreated(mPhone);
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800101 break;
102 case MSG_ADD_CALL:
Santos Cordon88b771d2014-07-19 13:10:40 -0700103 mPhone.internalAddCall((ParcelableCall) msg.obj);
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800104 break;
Sailesh Nepal60437932014-04-05 16:44:55 -0700105 case MSG_UPDATE_CALL:
Santos Cordon88b771d2014-07-19 13:10:40 -0700106 mPhone.internalUpdateCall((ParcelableCall) msg.obj);
Ihab Awad2f236642014-03-10 15:33:45 -0700107 break;
Ihab Awad2f236642014-03-10 15:33:45 -0700108 case MSG_SET_POST_DIAL_WAIT: {
109 SomeArgs args = (SomeArgs) msg.obj;
110 try {
111 String callId = (String) args.arg1;
112 String remaining = (String) args.arg2;
Ihab Awade63fadb2014-07-09 21:52:04 -0700113 mPhone.internalSetPostDialWait(callId, remaining);
Ihab Awad2f236642014-03-10 15:33:45 -0700114 } finally {
115 args.recycle();
116 }
117 break;
118 }
Yorke Lee4af59352015-05-13 14:14:54 -0700119 case MSG_ON_CALL_AUDIO_STATE_CHANGED:
120 mPhone.internalCallAudioStateChanged((CallAudioState) msg.obj);
Sailesh Nepalb632e5b2014-04-03 12:54:33 -0700121 break;
Santos Cordon3534ede2014-05-29 13:07:10 -0700122 case MSG_BRING_TO_FOREGROUND:
Ihab Awade63fadb2014-07-09 21:52:04 -0700123 mPhone.internalBringToForeground(msg.arg1 == 1);
Santos Cordon3534ede2014-05-29 13:07:10 -0700124 break;
Santos Cordon6c912b72014-11-07 16:05:09 -0800125 case MSG_ON_CAN_ADD_CALL_CHANGED:
126 mPhone.internalSetCanAddCall(msg.arg1 == 1);
127 break;
Sailesh Nepal9c2618b2016-01-23 16:28:22 -0800128 case MSG_SILENCE_RINGER:
129 mPhone.internalSilenceRinger();
130 break;
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700131 case MSG_ON_CONNECTION_EVENT: {
132 SomeArgs args = (SomeArgs) msg.obj;
133 try {
134 String callId = (String) args.arg1;
135 String event = (String) args.arg2;
136 Bundle extras = (Bundle) args.arg3;
137 mPhone.internalOnConnectionEvent(callId, event, extras);
138 } finally {
139 args.recycle();
140 }
141 break;
142 }
Hall Liu95d55872017-01-25 17:12:49 -0800143 case MSG_ON_RTT_UPGRADE_REQUEST: {
144 String callId = (String) msg.obj;
145 int requestId = msg.arg1;
146 mPhone.internalOnRttUpgradeRequest(callId, requestId);
147 break;
148 }
Hall Liu57006aa2017-02-06 10:49:48 -0800149 case MSG_ON_RTT_INITIATION_FAILURE: {
150 String callId = (String) msg.obj;
151 int reason = msg.arg1;
152 mPhone.internalOnRttInitiationFailure(callId, reason);
153 break;
154 }
Sanket Padawee29a2662017-12-01 13:59:27 -0800155 case MSG_ON_HANDOVER_FAILED: {
156 String callId = (String) msg.obj;
157 int error = msg.arg1;
158 mPhone.internalOnHandoverFailed(callId, error);
159 break;
160 }
Tyler Gunn79bc1ec2018-01-22 15:17:54 -0800161 case MSG_ON_HANDOVER_COMPLETE: {
162 String callId = (String) msg.obj;
163 mPhone.internalOnHandoverComplete(callId);
164 break;
165 }
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800166 default:
167 break;
168 }
169 }
170 };
171
172 /** Manages the binder calls so that the implementor does not need to deal with it. */
173 private final class InCallServiceBinder extends IInCallService.Stub {
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800174 @Override
175 public void setInCallAdapter(IInCallAdapter inCallAdapter) {
176 mHandler.obtainMessage(MSG_SET_IN_CALL_ADAPTER, inCallAdapter).sendToTarget();
177 }
178
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800179 @Override
Santos Cordon88b771d2014-07-19 13:10:40 -0700180 public void addCall(ParcelableCall call) {
Sailesh Nepal60437932014-04-05 16:44:55 -0700181 mHandler.obtainMessage(MSG_ADD_CALL, call).sendToTarget();
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800182 }
183
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800184 @Override
Santos Cordon88b771d2014-07-19 13:10:40 -0700185 public void updateCall(ParcelableCall call) {
Sailesh Nepal60437932014-04-05 16:44:55 -0700186 mHandler.obtainMessage(MSG_UPDATE_CALL, call).sendToTarget();
Ihab Awad2f236642014-03-10 15:33:45 -0700187 }
188
189 @Override
190 public void setPostDial(String callId, String remaining) {
Ihab Awad5d0410f2014-07-30 10:07:40 -0700191 // TODO: Unused
Ihab Awad2f236642014-03-10 15:33:45 -0700192 }
193
194 @Override
195 public void setPostDialWait(String callId, String remaining) {
196 SomeArgs args = SomeArgs.obtain();
197 args.arg1 = callId;
198 args.arg2 = remaining;
199 mHandler.obtainMessage(MSG_SET_POST_DIAL_WAIT, args).sendToTarget();
200 }
Sailesh Nepalb632e5b2014-04-03 12:54:33 -0700201
202 @Override
Yorke Lee4af59352015-05-13 14:14:54 -0700203 public void onCallAudioStateChanged(CallAudioState callAudioState) {
204 mHandler.obtainMessage(MSG_ON_CALL_AUDIO_STATE_CHANGED, callAudioState).sendToTarget();
Sailesh Nepalb632e5b2014-04-03 12:54:33 -0700205 }
Santos Cordon3534ede2014-05-29 13:07:10 -0700206
Santos Cordon3534ede2014-05-29 13:07:10 -0700207 @Override
208 public void bringToForeground(boolean showDialpad) {
209 mHandler.obtainMessage(MSG_BRING_TO_FOREGROUND, showDialpad ? 1 : 0, 0).sendToTarget();
210 }
Santos Cordon6c912b72014-11-07 16:05:09 -0800211
212 @Override
213 public void onCanAddCallChanged(boolean canAddCall) {
214 mHandler.obtainMessage(MSG_ON_CAN_ADD_CALL_CHANGED, canAddCall ? 1 : 0, 0)
215 .sendToTarget();
216 }
Sailesh Nepal9c2618b2016-01-23 16:28:22 -0800217
218 @Override
219 public void silenceRinger() {
220 mHandler.obtainMessage(MSG_SILENCE_RINGER).sendToTarget();
221 }
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700222
223 @Override
224 public void onConnectionEvent(String callId, String event, Bundle extras) {
225 SomeArgs args = SomeArgs.obtain();
226 args.arg1 = callId;
227 args.arg2 = event;
228 args.arg3 = extras;
229 mHandler.obtainMessage(MSG_ON_CONNECTION_EVENT, args).sendToTarget();
230 }
Hall Liu95d55872017-01-25 17:12:49 -0800231
232 @Override
233 public void onRttUpgradeRequest(String callId, int id) {
234 mHandler.obtainMessage(MSG_ON_RTT_UPGRADE_REQUEST, id, 0, callId).sendToTarget();
235 }
Hall Liu57006aa2017-02-06 10:49:48 -0800236
237 @Override
238 public void onRttInitiationFailure(String callId, int reason) {
239 mHandler.obtainMessage(MSG_ON_RTT_INITIATION_FAILURE, reason, 0, callId).sendToTarget();
240 }
Sanket Padawee29a2662017-12-01 13:59:27 -0800241
242 @Override
243 public void onHandoverFailed(String callId, int error) {
244 mHandler.obtainMessage(MSG_ON_HANDOVER_FAILED, error, 0, callId).sendToTarget();
245 }
Tyler Gunn79bc1ec2018-01-22 15:17:54 -0800246
247 @Override
248 public void onHandoverComplete(String callId) {
249 mHandler.obtainMessage(MSG_ON_HANDOVER_COMPLETE, callId).sendToTarget();
250 }
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800251 }
252
Santos Cordona2492812015-04-15 11:05:16 -0700253 private Phone.Listener mPhoneListener = new Phone.Listener() {
254 /** ${inheritDoc} */
255 @Override
256 public void onAudioStateChanged(Phone phone, AudioState audioState) {
257 InCallService.this.onAudioStateChanged(audioState);
258 }
259
Yorke Lee4af59352015-05-13 14:14:54 -0700260 public void onCallAudioStateChanged(Phone phone, CallAudioState callAudioState) {
261 InCallService.this.onCallAudioStateChanged(callAudioState);
262 };
263
Santos Cordona2492812015-04-15 11:05:16 -0700264 /** ${inheritDoc} */
265 @Override
266 public void onBringToForeground(Phone phone, boolean showDialpad) {
267 InCallService.this.onBringToForeground(showDialpad);
268 }
269
270 /** ${inheritDoc} */
271 @Override
272 public void onCallAdded(Phone phone, Call call) {
273 InCallService.this.onCallAdded(call);
274 }
275
276 /** ${inheritDoc} */
277 @Override
278 public void onCallRemoved(Phone phone, Call call) {
279 InCallService.this.onCallRemoved(call);
280 }
281
282 /** ${inheritDoc} */
283 @Override
284 public void onCanAddCallChanged(Phone phone, boolean canAddCall) {
285 InCallService.this.onCanAddCallChanged(canAddCall);
286 }
287
Sailesh Nepal9c2618b2016-01-23 16:28:22 -0800288 /** ${inheritDoc} */
289 @Override
290 public void onSilenceRinger(Phone phone) {
291 InCallService.this.onSilenceRinger();
292 }
293
Santos Cordona2492812015-04-15 11:05:16 -0700294 };
295
Ihab Awade63fadb2014-07-09 21:52:04 -0700296 private Phone mPhone;
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800297
Santos Cordon2f42b112014-07-19 13:19:37 -0700298 public InCallService() {
299 }
Evan Charlton924748f2014-04-03 08:36:38 -0700300
Santos Cordon2f42b112014-07-19 13:19:37 -0700301 @Override
302 public IBinder onBind(Intent intent) {
Ihab Awade63fadb2014-07-09 21:52:04 -0700303 return new InCallServiceBinder();
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800304 }
305
Santos Cordonf30d7e92014-08-26 09:54:33 -0700306 @Override
307 public boolean onUnbind(Intent intent) {
Santos Cordon619b3c02014-09-02 17:13:45 -0700308 if (mPhone != null) {
309 Phone oldPhone = mPhone;
310 mPhone = null;
Santos Cordonf30d7e92014-08-26 09:54:33 -0700311
Santos Cordon619b3c02014-09-02 17:13:45 -0700312 oldPhone.destroy();
Santos Cordona2492812015-04-15 11:05:16 -0700313 // destroy sets all the calls to disconnected if any live ones still exist. Therefore,
314 // it is important to remove the Listener *after* the call to destroy so that
315 // InCallService.on* callbacks are appropriately called.
316 oldPhone.removeListener(mPhoneListener);
317
Santos Cordon619b3c02014-09-02 17:13:45 -0700318 onPhoneDestroyed(oldPhone);
319 }
Santos Cordona2492812015-04-15 11:05:16 -0700320
Santos Cordonf30d7e92014-08-26 09:54:33 -0700321 return false;
322 }
323
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800324 /**
Ihab Awade63fadb2014-07-09 21:52:04 -0700325 * Obtain the {@code Phone} associated with this {@code InCallService}.
326 *
327 * @return The {@code Phone} object associated with this {@code InCallService}, or {@code null}
Santos Cordon2f42b112014-07-19 13:19:37 -0700328 * if the {@code InCallService} is not in a state where it has an associated
329 * {@code Phone}.
Santos Cordona2492812015-04-15 11:05:16 -0700330 * @hide
Santos Cordon29886d82015-04-16 15:34:07 -0700331 * @deprecated Use direct methods on InCallService instead of {@link Phone}.
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800332 */
Santos Cordona2492812015-04-15 11:05:16 -0700333 @SystemApi
Santos Cordon29886d82015-04-16 15:34:07 -0700334 @Deprecated
335 public Phone getPhone() {
Ihab Awade63fadb2014-07-09 21:52:04 -0700336 return mPhone;
Evan Charlton924748f2014-04-03 08:36:38 -0700337 }
338
339 /**
Santos Cordon895d4b82015-06-25 16:41:48 -0700340 * Obtains the current list of {@code Call}s to be displayed by this in-call service.
Santos Cordona2492812015-04-15 11:05:16 -0700341 *
342 * @return A list of the relevant {@code Call}s.
343 */
344 public final List<Call> getCalls() {
345 return mPhone == null ? Collections.<Call>emptyList() : mPhone.getCalls();
346 }
347
348 /**
349 * Returns if the device can support additional calls.
350 *
351 * @return Whether the phone supports adding more calls.
352 */
353 public final boolean canAddCall() {
354 return mPhone == null ? false : mPhone.canAddCall();
355 }
356
357 /**
358 * Obtains the current phone call audio state.
359 *
360 * @return An object encapsulating the audio state. Returns null if the service is not
361 * fully initialized.
Yorke Lee4af59352015-05-13 14:14:54 -0700362 * @deprecated Use {@link #getCallAudioState()} instead.
363 * @hide
Santos Cordona2492812015-04-15 11:05:16 -0700364 */
Yorke Lee4af59352015-05-13 14:14:54 -0700365 @Deprecated
Santos Cordona2492812015-04-15 11:05:16 -0700366 public final AudioState getAudioState() {
367 return mPhone == null ? null : mPhone.getAudioState();
368 }
369
370 /**
Yorke Lee4af59352015-05-13 14:14:54 -0700371 * Obtains the current phone call audio state.
372 *
373 * @return An object encapsulating the audio state. Returns null if the service is not
374 * fully initialized.
375 */
376 public final CallAudioState getCallAudioState() {
377 return mPhone == null ? null : mPhone.getCallAudioState();
378 }
379
380 /**
Santos Cordona2492812015-04-15 11:05:16 -0700381 * Sets the microphone mute state. When this request is honored, there will be change to
Yorke Lee4af59352015-05-13 14:14:54 -0700382 * the {@link #getCallAudioState()}.
Santos Cordona2492812015-04-15 11:05:16 -0700383 *
384 * @param state {@code true} if the microphone should be muted; {@code false} otherwise.
385 */
386 public final void setMuted(boolean state) {
387 if (mPhone != null) {
388 mPhone.setMuted(state);
389 }
390 }
391
392 /**
393 * Sets the audio route (speaker, bluetooth, etc...). When this request is honored, there will
Yorke Lee4af59352015-05-13 14:14:54 -0700394 * be change to the {@link #getCallAudioState()}.
Santos Cordona2492812015-04-15 11:05:16 -0700395 *
396 * @param route The audio route to use.
397 */
398 public final void setAudioRoute(int route) {
399 if (mPhone != null) {
400 mPhone.setAudioRoute(route);
401 }
402 }
403
404 /**
Hall Liua98f58b2017-11-07 17:59:28 -0800405 * Request audio routing to a specific bluetooth device. Calling this method may result in
406 * the device routing audio to a different bluetooth device than the one specified if the
407 * bluetooth stack is unable to route audio to the requested device.
408 * A list of available devices can be obtained via
409 * {@link CallAudioState#getSupportedBluetoothDevices()}
410 *
411 * @param bluetoothAddress The address of the bluetooth device to connect to, as returned by
412 * {@link BluetoothDevice#getAddress()}.
413 */
414 public final void requestBluetoothAudio(@NonNull String bluetoothAddress) {
415 if (mPhone != null) {
416 mPhone.requestBluetoothAudio(bluetoothAddress);
417 }
418 }
419
420 /**
Ihab Awade63fadb2014-07-09 21:52:04 -0700421 * Invoked when the {@code Phone} has been created. This is a signal to the in-call experience
422 * to start displaying in-call information to the user. Each instance of {@code InCallService}
Santos Cordon2f42b112014-07-19 13:19:37 -0700423 * will have only one {@code Phone}, and this method will be called exactly once in the lifetime
424 * of the {@code InCallService}.
Evan Charlton924748f2014-04-03 08:36:38 -0700425 *
Ihab Awade63fadb2014-07-09 21:52:04 -0700426 * @param phone The {@code Phone} object associated with this {@code InCallService}.
Santos Cordona2492812015-04-15 11:05:16 -0700427 * @hide
Santos Cordon29886d82015-04-16 15:34:07 -0700428 * @deprecated Use direct methods on InCallService instead of {@link Phone}.
Evan Charlton924748f2014-04-03 08:36:38 -0700429 */
Santos Cordona2492812015-04-15 11:05:16 -0700430 @SystemApi
Santos Cordon29886d82015-04-16 15:34:07 -0700431 @Deprecated
Santos Cordon2f42b112014-07-19 13:19:37 -0700432 public void onPhoneCreated(Phone phone) {
433 }
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800434
435 /**
Ihab Awade63fadb2014-07-09 21:52:04 -0700436 * Invoked when a {@code Phone} has been destroyed. This is a signal to the in-call experience
437 * to stop displaying in-call information to the user. This method will be called exactly once
438 * in the lifetime of the {@code InCallService}, and it will always be called after a previous
439 * call to {@link #onPhoneCreated(Phone)}.
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800440 *
Ihab Awade63fadb2014-07-09 21:52:04 -0700441 * @param phone The {@code Phone} object associated with this {@code InCallService}.
Santos Cordona2492812015-04-15 11:05:16 -0700442 * @hide
Santos Cordon29886d82015-04-16 15:34:07 -0700443 * @deprecated Use direct methods on InCallService instead of {@link Phone}.
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800444 */
Santos Cordona2492812015-04-15 11:05:16 -0700445 @SystemApi
Santos Cordon29886d82015-04-16 15:34:07 -0700446 @Deprecated
Santos Cordon2f42b112014-07-19 13:19:37 -0700447 public void onPhoneDestroyed(Phone phone) {
448 }
Andrew Lee50aca232014-07-22 16:41:54 -0700449
450 /**
Santos Cordona2492812015-04-15 11:05:16 -0700451 * Called when the audio state changes.
452 *
453 * @param audioState The new {@link AudioState}.
Yorke Lee4af59352015-05-13 14:14:54 -0700454 * @deprecated Use {@link #onCallAudioStateChanged(CallAudioState) instead}.
455 * @hide
Santos Cordona2492812015-04-15 11:05:16 -0700456 */
Yorke Lee4af59352015-05-13 14:14:54 -0700457 @Deprecated
Santos Cordona2492812015-04-15 11:05:16 -0700458 public void onAudioStateChanged(AudioState audioState) {
459 }
460
461 /**
Yorke Lee4af59352015-05-13 14:14:54 -0700462 * Called when the audio state changes.
463 *
464 * @param audioState The new {@link CallAudioState}.
465 */
466 public void onCallAudioStateChanged(CallAudioState audioState) {
467 }
468
469 /**
Santos Cordona2492812015-04-15 11:05:16 -0700470 * Called to bring the in-call screen to the foreground. The in-call experience should
471 * respond immediately by coming to the foreground to inform the user of the state of
472 * ongoing {@code Call}s.
473 *
474 * @param showDialpad If true, put up the dialpad when the screen is shown.
475 */
476 public void onBringToForeground(boolean showDialpad) {
477 }
478
479 /**
480 * Called when a {@code Call} has been added to this in-call session. The in-call user
481 * experience should add necessary state listeners to the specified {@code Call} and
482 * immediately start to show the user information about the existence
483 * and nature of this {@code Call}. Subsequent invocations of {@link #getCalls()} will
484 * include this {@code Call}.
485 *
486 * @param call A newly added {@code Call}.
487 */
488 public void onCallAdded(Call call) {
489 }
490
491 /**
492 * Called when a {@code Call} has been removed from this in-call session. The in-call user
493 * experience should remove any state listeners from the specified {@code Call} and
494 * immediately stop displaying any information about this {@code Call}.
495 * Subsequent invocations of {@link #getCalls()} will no longer include this {@code Call}.
496 *
497 * @param call A newly removed {@code Call}.
498 */
499 public void onCallRemoved(Call call) {
500 }
501
502 /**
503 * Called when the ability to add more calls changes. If the phone cannot
504 * support more calls then {@code canAddCall} is set to {@code false}. If it can, then it
505 * is set to {@code true}. This can be used to control the visibility of UI to add more calls.
506 *
507 * @param canAddCall Indicates whether an additional call can be added.
508 */
509 public void onCanAddCallChanged(boolean canAddCall) {
510 }
511
512 /**
Sailesh Nepal9c2618b2016-01-23 16:28:22 -0800513 * Called to silence the ringer if a ringing call exists.
514 */
515 public void onSilenceRinger() {
516 }
517
518 /**
Tyler Gunn06f3fa62016-08-25 09:26:15 -0700519 * Unused; to handle connection events issued by a {@link ConnectionService}, implement the
520 * {@link android.telecom.Call.Callback#onConnectionEvent(Call, String, Bundle)} callback.
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700521 * <p>
522 * See {@link Connection#sendConnectionEvent(String, Bundle)}.
523 *
524 * @param call The call the event is associated with.
525 * @param event The event.
526 * @param extras Any associated extras.
527 */
528 public void onConnectionEvent(Call call, String event, Bundle extras) {
529 }
530
531 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700532 * Used to issue commands to the {@link Connection.VideoProvider} associated with a
533 * {@link Call}.
Andrew Lee50aca232014-07-22 16:41:54 -0700534 */
535 public static abstract class VideoCall {
536
Andrew Lee011728f2015-04-23 15:47:06 -0700537 /** @hide */
538 public abstract void destroy();
539
Andrew Lee50aca232014-07-22 16:41:54 -0700540 /**
Andrew Lee7c9ee2b2015-04-16 15:26:08 -0700541 * Registers a callback to receive commands and state changes for video calls.
Andrew Lee50aca232014-07-22 16:41:54 -0700542 *
Andrew Lee7c9ee2b2015-04-16 15:26:08 -0700543 * @param callback The video call callback.
Andrew Lee50aca232014-07-22 16:41:54 -0700544 */
Andrew Leeda80c872015-04-15 14:09:50 -0700545 public abstract void registerCallback(VideoCall.Callback callback);
546
547 /**
Andrew Lee011728f2015-04-23 15:47:06 -0700548 * Registers a callback to receive commands and state changes for video calls.
549 *
550 * @param callback The video call callback.
551 * @param handler A handler which commands and status changes will be delivered to.
552 */
553 public abstract void registerCallback(VideoCall.Callback callback, Handler handler);
554
555 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700556 * Clears the video call callback set via {@link #registerCallback}.
Tyler Gunn295f5d72015-06-04 11:08:54 -0700557 *
558 * @param callback The video call callback to clear.
Tyler Gunn75958422015-04-15 14:23:42 -0700559 */
Andrew Lee011728f2015-04-23 15:47:06 -0700560 public abstract void unregisterCallback(VideoCall.Callback callback);
Tyler Gunn75958422015-04-15 14:23:42 -0700561
562 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700563 * Sets the camera to be used for the outgoing video.
564 * <p>
565 * Handled by {@link Connection.VideoProvider#onSetCamera(String)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700566 *
Tyler Gunnb702ef82015-05-29 11:51:53 -0700567 * @param cameraId The id of the camera (use ids as reported by
568 * {@link CameraManager#getCameraIdList()}).
Andrew Lee50aca232014-07-22 16:41:54 -0700569 */
570 public abstract void setCamera(String cameraId);
571
572 /**
573 * Sets the surface to be used for displaying a preview of what the user's camera is
574 * currently capturing. When video transmission is enabled, this is the video signal which
575 * is sent to the remote device.
Tyler Gunnb702ef82015-05-29 11:51:53 -0700576 * <p>
577 * Handled by {@link Connection.VideoProvider#onSetPreviewSurface(Surface)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700578 *
Tyler Gunnb702ef82015-05-29 11:51:53 -0700579 * @param surface The {@link Surface}.
Andrew Lee50aca232014-07-22 16:41:54 -0700580 */
581 public abstract void setPreviewSurface(Surface surface);
582
583 /**
584 * Sets the surface to be used for displaying the video received from the remote device.
Tyler Gunnb702ef82015-05-29 11:51:53 -0700585 * <p>
586 * Handled by {@link Connection.VideoProvider#onSetDisplaySurface(Surface)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700587 *
Tyler Gunnb702ef82015-05-29 11:51:53 -0700588 * @param surface The {@link Surface}.
Andrew Lee50aca232014-07-22 16:41:54 -0700589 */
590 public abstract void setDisplaySurface(Surface surface);
591
592 /**
593 * Sets the device orientation, in degrees. Assumes that a standard portrait orientation of
594 * the device is 0 degrees.
Tyler Gunnb702ef82015-05-29 11:51:53 -0700595 * <p>
596 * Handled by {@link Connection.VideoProvider#onSetDeviceOrientation(int)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700597 *
598 * @param rotation The device orientation, in degrees.
599 */
600 public abstract void setDeviceOrientation(int rotation);
601
602 /**
603 * Sets camera zoom ratio.
Tyler Gunnb702ef82015-05-29 11:51:53 -0700604 * <p>
605 * Handled by {@link Connection.VideoProvider#onSetZoom(float)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700606 *
607 * @param value The camera zoom ratio.
608 */
609 public abstract void setZoom(float value);
610
611 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700612 * Issues a request to modify the properties of the current video session.
613 * <p>
614 * Example scenarios include: requesting an audio-only call to be upgraded to a
615 * bi-directional video call, turning on or off the user's camera, sending a pause signal
616 * when the {@link InCallService} is no longer the foreground application.
617 * <p>
618 * Handled by
619 * {@link Connection.VideoProvider#onSendSessionModifyRequest(VideoProfile, VideoProfile)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700620 *
621 * @param requestProfile The requested call video properties.
622 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700623 public abstract void sendSessionModifyRequest(VideoProfile requestProfile);
Andrew Lee50aca232014-07-22 16:41:54 -0700624
625 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700626 * Provides a response to a request to change the current call video session
627 * properties. This should be called in response to a request the {@link InCallService} has
628 * received via {@link VideoCall.Callback#onSessionModifyRequestReceived}.
629 * <p>
630 * Handled by
631 * {@link Connection.VideoProvider#onSendSessionModifyResponse(VideoProfile)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700632 *
633 * @param responseProfile The response call video properties.
634 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700635 public abstract void sendSessionModifyResponse(VideoProfile responseProfile);
Andrew Lee50aca232014-07-22 16:41:54 -0700636
637 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700638 * Issues a request to the {@link Connection.VideoProvider} to retrieve the capabilities
639 * of the current camera. The current camera is selected using
640 * {@link VideoCall#setCamera(String)}.
641 * <p>
642 * Camera capabilities are reported to the caller via
643 * {@link VideoCall.Callback#onCameraCapabilitiesChanged(VideoProfile.CameraCapabilities)}.
644 * <p>
645 * Handled by {@link Connection.VideoProvider#onRequestCameraCapabilities()}.
Andrew Lee50aca232014-07-22 16:41:54 -0700646 */
647 public abstract void requestCameraCapabilities();
648
649 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700650 * Issues a request to the {@link Connection.VideoProvider} to retrieve the cumulative data
651 * usage for the video component of the current call (in bytes). Data usage is reported
652 * to the caller via {@link VideoCall.Callback#onCallDataUsageChanged}.
653 * <p>
654 * Handled by {@link Connection.VideoProvider#onRequestConnectionDataUsage()}.
Andrew Lee50aca232014-07-22 16:41:54 -0700655 */
656 public abstract void requestCallDataUsage();
657
658 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700659 * Provides the {@link Connection.VideoProvider} with the {@link Uri} of an image to be
660 * displayed to the peer device when the video signal is paused.
661 * <p>
662 * Handled by {@link Connection.VideoProvider#onSetPauseImage(Uri)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700663 *
664 * @param uri URI of image to display.
665 */
Yorke Lee32f24732015-05-12 16:18:03 -0700666 public abstract void setPauseImage(Uri uri);
Andrew Lee50aca232014-07-22 16:41:54 -0700667
668 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700669 * The {@link InCallService} extends this class to provide a means of receiving callbacks
Tyler Gunn295f5d72015-06-04 11:08:54 -0700670 * from the {@link Connection.VideoProvider}.
671 * <p>
Tyler Gunnb702ef82015-05-29 11:51:53 -0700672 * When the {@link InCallService} receives the
673 * {@link Call.Callback#onVideoCallChanged(Call, VideoCall)} callback, it should create an
674 * instance its {@link VideoCall.Callback} implementation and set it on the
675 * {@link VideoCall} using {@link VideoCall#registerCallback(Callback)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700676 */
Andrew Leeda80c872015-04-15 14:09:50 -0700677 public static abstract class Callback {
Andrew Lee50aca232014-07-22 16:41:54 -0700678 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700679 * Called when the {@link Connection.VideoProvider} receives a session modification
Tyler Gunn295f5d72015-06-04 11:08:54 -0700680 * request from the peer device.
Tyler Gunnb702ef82015-05-29 11:51:53 -0700681 * <p>
682 * The {@link InCallService} may potentially prompt the user to confirm whether they
683 * wish to accept the request, or decide to automatically accept the request. In either
684 * case the {@link InCallService} should call
685 * {@link VideoCall#sendSessionModifyResponse(VideoProfile)} to indicate the video
686 * profile agreed upon.
687 * <p>
688 * Callback originates from
689 * {@link Connection.VideoProvider#receiveSessionModifyRequest(VideoProfile)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700690 *
Tyler Gunnb702ef82015-05-29 11:51:53 -0700691 * @param videoProfile The requested video profile.
Andrew Lee50aca232014-07-22 16:41:54 -0700692 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700693 public abstract void onSessionModifyRequestReceived(VideoProfile videoProfile);
Andrew Lee50aca232014-07-22 16:41:54 -0700694
695 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700696 * Called when the {@link Connection.VideoProvider} receives a response to a session
697 * modification request previously sent to the peer device.
698 * <p>
699 * The new video state should not be considered active by the {@link InCallService}
700 * until the {@link Call} video state changes (the
701 * {@link Call.Callback#onDetailsChanged(Call, Call.Details)} callback is triggered
702 * when the video state changes).
703 * <p>
704 * Callback originates from
705 * {@link Connection.VideoProvider#receiveSessionModifyResponse(int, VideoProfile,
706 * VideoProfile)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700707 *
708 * @param status Status of the session modify request. Valid values are
Tyler Gunnb702ef82015-05-29 11:51:53 -0700709 * {@link Connection.VideoProvider#SESSION_MODIFY_REQUEST_SUCCESS},
710 * {@link Connection.VideoProvider#SESSION_MODIFY_REQUEST_FAIL},
711 * {@link Connection.VideoProvider#SESSION_MODIFY_REQUEST_INVALID},
712 * {@link Connection.VideoProvider#SESSION_MODIFY_REQUEST_TIMED_OUT},
713 * {@link Connection.VideoProvider#SESSION_MODIFY_REQUEST_REJECTED_BY_REMOTE}.
714 * @param requestedProfile The original request which was sent to the peer device.
715 * @param responseProfile The actual profile changes made by the peer device.
Andrew Lee50aca232014-07-22 16:41:54 -0700716 */
717 public abstract void onSessionModifyResponseReceived(int status,
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700718 VideoProfile requestedProfile, VideoProfile responseProfile);
Andrew Lee50aca232014-07-22 16:41:54 -0700719
720 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700721 * Handles events related to the current video session which the {@link InCallService}
722 * may wish to handle. These are separate from requested changes to the session due to
723 * the underlying protocol or connection.
724 * <p>
725 * Callback originates from
726 * {@link Connection.VideoProvider#handleCallSessionEvent(int)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700727 *
Tyler Gunnb702ef82015-05-29 11:51:53 -0700728 * @param event The event. Valid values are:
729 * {@link Connection.VideoProvider#SESSION_EVENT_RX_PAUSE},
730 * {@link Connection.VideoProvider#SESSION_EVENT_RX_RESUME},
731 * {@link Connection.VideoProvider#SESSION_EVENT_TX_START},
732 * {@link Connection.VideoProvider#SESSION_EVENT_TX_STOP},
733 * {@link Connection.VideoProvider#SESSION_EVENT_CAMERA_FAILURE},
Tyler Gunnbf9c6fd2016-11-09 10:19:23 -0800734 * {@link Connection.VideoProvider#SESSION_EVENT_CAMERA_READY},
735 * {@link Connection.VideoProvider#SESSION_EVENT_CAMERA_PERMISSION_ERROR}.
Andrew Lee50aca232014-07-22 16:41:54 -0700736 */
737 public abstract void onCallSessionEvent(int event);
738
739 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700740 * Handles a change to the video dimensions from the peer device. This could happen if,
741 * for example, the peer changes orientation of their device, or switches cameras.
742 * <p>
743 * Callback originates from
744 * {@link Connection.VideoProvider#changePeerDimensions(int, int)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700745 *
746 * @param width The updated peer video width.
747 * @param height The updated peer video height.
748 */
749 public abstract void onPeerDimensionsChanged(int width, int height);
750
751 /**
Rekha Kumar07366812015-03-24 16:42:31 -0700752 * Handles a change to the video quality.
Tyler Gunnb702ef82015-05-29 11:51:53 -0700753 * <p>
754 * Callback originates from {@link Connection.VideoProvider#changeVideoQuality(int)}.
Rekha Kumar07366812015-03-24 16:42:31 -0700755 *
Tyler Gunnb702ef82015-05-29 11:51:53 -0700756 * @param videoQuality The updated peer video quality. Valid values:
757 * {@link VideoProfile#QUALITY_HIGH},
758 * {@link VideoProfile#QUALITY_MEDIUM},
759 * {@link VideoProfile#QUALITY_LOW},
760 * {@link VideoProfile#QUALITY_DEFAULT}.
Rekha Kumar07366812015-03-24 16:42:31 -0700761 */
762 public abstract void onVideoQualityChanged(int videoQuality);
763
764 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700765 * Handles an update to the total data used for the current video session.
766 * <p>
767 * Used by the {@link Connection.VideoProvider} in response to
768 * {@link VideoCall#requestCallDataUsage()}. May also be called periodically by the
769 * {@link Connection.VideoProvider}.
770 * <p>
771 * Callback originates from {@link Connection.VideoProvider#setCallDataUsage(long)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700772 *
Tyler Gunnb702ef82015-05-29 11:51:53 -0700773 * @param dataUsage The updated data usage (in bytes).
Andrew Lee50aca232014-07-22 16:41:54 -0700774 */
Rekha Kumar07366812015-03-24 16:42:31 -0700775 public abstract void onCallDataUsageChanged(long dataUsage);
Andrew Lee50aca232014-07-22 16:41:54 -0700776
777 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700778 * Handles a change in the capabilities of the currently selected camera.
779 * <p>
780 * Used by the {@link Connection.VideoProvider} in response to
781 * {@link VideoCall#requestCameraCapabilities()}. The {@link Connection.VideoProvider}
782 * may also report the camera capabilities after a call to
783 * {@link VideoCall#setCamera(String)}.
784 * <p>
785 * Callback originates from
786 * {@link Connection.VideoProvider#changeCameraCapabilities(
787 * VideoProfile.CameraCapabilities)}.
Andrew Lee50aca232014-07-22 16:41:54 -0700788 *
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700789 * @param cameraCapabilities The changed camera capabilities.
Andrew Lee50aca232014-07-22 16:41:54 -0700790 */
Yorke Lee400470f2015-05-12 13:31:25 -0700791 public abstract void onCameraCapabilitiesChanged(
792 VideoProfile.CameraCapabilities cameraCapabilities);
Andrew Lee50aca232014-07-22 16:41:54 -0700793 }
794 }
Sailesh Nepalab5d2822014-03-08 18:01:06 -0800795}