blob: 095069d5386c243bd9ab2781b8b08f755c27baf9 [file] [log] [blame]
Ihab Awad542e0ea2014-05-16 10:22:16 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Tyler Gunnef9f6f92014-09-12 22:16:17 -070017package android.telecom;
Ihab Awad542e0ea2014-05-16 10:22:16 -070018
Tyler Gunn45382162015-05-06 08:52:27 -070019import com.android.internal.os.SomeArgs;
Tyler Gunnef9f6f92014-09-12 22:16:17 -070020import com.android.internal.telecom.IVideoCallback;
21import com.android.internal.telecom.IVideoProvider;
Ihab Awadb19a0bc2014-08-07 19:46:01 -070022
Hall Liub64ac4c2017-02-06 10:49:48 -080023import android.annotation.IntDef;
Tyler Gunndee56a82016-03-23 16:06:34 -070024import android.annotation.NonNull;
Santos Cordon6b7f9552015-05-27 17:21:45 -070025import android.annotation.Nullable;
Yorke Lee4af59352015-05-13 14:14:54 -070026import android.annotation.SystemApi;
Hall Liuffa4a812017-03-02 16:11:00 -080027import android.annotation.TestApi;
Tyler Gunn159f35c2017-03-02 09:28:37 -080028import android.app.Notification;
29import android.content.Intent;
Tyler Gunnb702ef82015-05-29 11:51:53 -070030import android.hardware.camera2.CameraManager;
Ihab Awad542e0ea2014-05-16 10:22:16 -070031import android.net.Uri;
Tyler Gunnbf9c6fd2016-11-09 10:19:23 -080032import android.os.Binder;
Santos Cordon6b7f9552015-05-27 17:21:45 -070033import android.os.Bundle;
Ihab Awadb19a0bc2014-08-07 19:46:01 -070034import android.os.Handler;
35import android.os.IBinder;
Tyler Gunn4e9bbaf2015-05-22 15:43:28 -070036import android.os.Looper;
Ihab Awadb19a0bc2014-08-07 19:46:01 -070037import android.os.Message;
Hall Liu95d55872017-01-25 17:12:49 -080038import android.os.ParcelFileDescriptor;
Ihab Awadb19a0bc2014-08-07 19:46:01 -070039import android.os.RemoteException;
Tyler Gunndee56a82016-03-23 16:06:34 -070040import android.util.ArraySet;
Ihab Awadb19a0bc2014-08-07 19:46:01 -070041import android.view.Surface;
Ihab Awad542e0ea2014-05-16 10:22:16 -070042
Hall Liu95d55872017-01-25 17:12:49 -080043import java.io.IOException;
44import java.io.InputStreamReader;
45import java.io.OutputStreamWriter;
Hall Liub64ac4c2017-02-06 10:49:48 -080046import java.lang.annotation.Retention;
47import java.lang.annotation.RetentionPolicy;
Santos Cordonb6939982014-06-04 20:20:58 -070048import java.util.ArrayList;
Tyler Gunn071be6f2016-05-10 14:52:33 -070049import java.util.Arrays;
Ihab Awadb19a0bc2014-08-07 19:46:01 -070050import java.util.Collections;
Santos Cordonb6939982014-06-04 20:20:58 -070051import java.util.List;
Ihab Awad542e0ea2014-05-16 10:22:16 -070052import java.util.Set;
Jay Shrauner229e3822014-08-15 09:23:07 -070053import java.util.concurrent.ConcurrentHashMap;
Ihab Awad542e0ea2014-05-16 10:22:16 -070054
55/**
Santos Cordon895d4b82015-06-25 16:41:48 -070056 * Represents a phone call or connection to a remote endpoint that carries voice and/or video
57 * traffic.
Ihab Awad6107bab2014-08-18 09:23:25 -070058 * <p>
59 * Implementations create a custom subclass of {@code Connection} and return it to the framework
60 * as the return value of
61 * {@link ConnectionService#onCreateIncomingConnection(PhoneAccountHandle, ConnectionRequest)}
62 * or
63 * {@link ConnectionService#onCreateOutgoingConnection(PhoneAccountHandle, ConnectionRequest)}.
64 * Implementations are then responsible for updating the state of the {@code Connection}, and
65 * must call {@link #destroy()} to signal to the framework that the {@code Connection} is no
66 * longer used and associated resources may be recovered.
Tyler Gunn9c0eb0b2016-06-29 11:23:25 -070067 * <p>
68 * Subclasses of {@code Connection} override the {@code on*} methods to provide the the
69 * {@link ConnectionService}'s implementation of calling functionality. The {@code on*} methods are
70 * called by Telecom to inform an instance of a {@code Connection} of actions specific to that
71 * {@code Connection} instance.
72 * <p>
73 * Basic call support requires overriding the following methods: {@link #onAnswer()},
74 * {@link #onDisconnect()}, {@link #onReject()}, {@link #onAbort()}
75 * <p>
76 * Where a {@code Connection} has {@link #CAPABILITY_SUPPORT_HOLD}, the {@link #onHold()} and
77 * {@link #onUnhold()} methods should be overridden to provide hold support for the
78 * {@code Connection}.
79 * <p>
80 * Where a {@code Connection} supports a variation of video calling (e.g. the
81 * {@code CAPABILITY_SUPPORTS_VT_*} capability bits), {@link #onAnswer(int)} should be overridden
82 * to support answering a call as a video call.
83 * <p>
84 * Where a {@code Connection} has {@link #PROPERTY_IS_EXTERNAL_CALL} and
85 * {@link #CAPABILITY_CAN_PULL_CALL}, {@link #onPullExternalCall()} should be overridden to provide
86 * support for pulling the external call.
87 * <p>
88 * Where a {@code Connection} supports conference calling {@link #onSeparate()} should be
89 * overridden.
90 * <p>
91 * There are a number of other {@code on*} methods which a {@code Connection} can choose to
92 * implement, depending on whether it is concerned with the associated calls from Telecom. If,
93 * for example, call events from a {@link InCallService} are handled,
94 * {@link #onCallEvent(String, Bundle)} should be overridden. Another example is
95 * {@link #onExtrasChanged(Bundle)}, which should be overridden if the {@code Connection} wishes to
96 * make use of extra information provided via the {@link Call#putExtras(Bundle)} and
97 * {@link Call#removeExtras(String...)} methods.
Ihab Awad542e0ea2014-05-16 10:22:16 -070098 */
Yorke Leeabfcfdc2015-05-13 18:55:18 -070099public abstract class Connection extends Conferenceable {
Ihab Awad542e0ea2014-05-16 10:22:16 -0700100
Santos Cordon895d4b82015-06-25 16:41:48 -0700101 /**
102 * The connection is initializing. This is generally the first state for a {@code Connection}
103 * returned by a {@link ConnectionService}.
104 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700105 public static final int STATE_INITIALIZING = 0;
106
Santos Cordon895d4b82015-06-25 16:41:48 -0700107 /**
108 * The connection is new and not connected.
109 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700110 public static final int STATE_NEW = 1;
111
Santos Cordon895d4b82015-06-25 16:41:48 -0700112 /**
113 * An incoming connection is in the ringing state. During this state, the user's ringer or
114 * vibration feature will be activated.
115 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700116 public static final int STATE_RINGING = 2;
117
Santos Cordon895d4b82015-06-25 16:41:48 -0700118 /**
119 * An outgoing connection is in the dialing state. In this state the other party has not yet
120 * answered the call and the user traditionally hears a ringback tone.
121 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700122 public static final int STATE_DIALING = 3;
123
Santos Cordon895d4b82015-06-25 16:41:48 -0700124 /**
125 * A connection is active. Both parties are connected to the call and can actively communicate.
126 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700127 public static final int STATE_ACTIVE = 4;
128
Santos Cordon895d4b82015-06-25 16:41:48 -0700129 /**
130 * A connection is on hold.
131 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700132 public static final int STATE_HOLDING = 5;
133
Santos Cordon895d4b82015-06-25 16:41:48 -0700134 /**
135 * A connection has been disconnected. This is the final state once the user has been
136 * disconnected from a call either locally, remotely or by an error in the service.
137 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700138 public static final int STATE_DISCONNECTED = 6;
139
Santos Cordon895d4b82015-06-25 16:41:48 -0700140 /**
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700141 * The state of an external connection which is in the process of being pulled from a remote
142 * device to the local device.
143 * <p>
Tyler Gunn720c6642016-03-22 09:02:47 -0700144 * A connection can only be in this state if the {@link #PROPERTY_IS_EXTERNAL_CALL} property and
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700145 * {@link #CAPABILITY_CAN_PULL_CALL} capability bits are set on the connection.
146 */
147 public static final int STATE_PULLING_CALL = 7;
148
149 /**
Santos Cordon895d4b82015-06-25 16:41:48 -0700150 * Connection can currently be put on hold or unheld. This is distinct from
151 * {@link #CAPABILITY_SUPPORT_HOLD} in that although a connection may support 'hold' most times,
152 * it does not at the moment support the function. This can be true while the call is in the
153 * state {@link #STATE_DIALING}, for example. During this condition, an in-call UI may
154 * display a disabled 'hold' button.
155 */
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800156 public static final int CAPABILITY_HOLD = 0x00000001;
157
158 /** Connection supports the hold feature. */
159 public static final int CAPABILITY_SUPPORT_HOLD = 0x00000002;
160
161 /**
162 * Connections within a conference can be merged. A {@link ConnectionService} has the option to
163 * add a {@link Conference} before the child {@link Connection}s are merged. This is how
164 * CDMA-based {@link Connection}s are implemented. For these unmerged {@link Conference}s, this
165 * capability allows a merge button to be shown while the conference is in the foreground
166 * of the in-call UI.
167 * <p>
168 * This is only intended for use by a {@link Conference}.
169 */
170 public static final int CAPABILITY_MERGE_CONFERENCE = 0x00000004;
171
172 /**
173 * Connections within a conference can be swapped between foreground and background.
174 * See {@link #CAPABILITY_MERGE_CONFERENCE} for additional information.
175 * <p>
176 * This is only intended for use by a {@link Conference}.
177 */
178 public static final int CAPABILITY_SWAP_CONFERENCE = 0x00000008;
179
180 /**
181 * @hide
182 */
183 public static final int CAPABILITY_UNUSED = 0x00000010;
184
185 /** Connection supports responding via text option. */
186 public static final int CAPABILITY_RESPOND_VIA_TEXT = 0x00000020;
187
188 /** Connection can be muted. */
189 public static final int CAPABILITY_MUTE = 0x00000040;
190
191 /**
192 * Connection supports conference management. This capability only applies to
193 * {@link Conference}s which can have {@link Connection}s as children.
194 */
195 public static final int CAPABILITY_MANAGE_CONFERENCE = 0x00000080;
196
197 /**
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700198 * Local device supports receiving video.
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800199 */
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700200 public static final int CAPABILITY_SUPPORTS_VT_LOCAL_RX = 0x00000100;
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800201
202 /**
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700203 * Local device supports transmitting video.
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800204 */
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700205 public static final int CAPABILITY_SUPPORTS_VT_LOCAL_TX = 0x00000200;
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800206
207 /**
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700208 * Local device supports bidirectional video calling.
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800209 */
Andrew Lee9a8f9ce2015-04-10 18:09:46 -0700210 public static final int CAPABILITY_SUPPORTS_VT_LOCAL_BIDIRECTIONAL =
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700211 CAPABILITY_SUPPORTS_VT_LOCAL_RX | CAPABILITY_SUPPORTS_VT_LOCAL_TX;
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800212
213 /**
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700214 * Remote device supports receiving video.
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800215 */
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700216 public static final int CAPABILITY_SUPPORTS_VT_REMOTE_RX = 0x00000400;
217
218 /**
219 * Remote device supports transmitting video.
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700220 */
221 public static final int CAPABILITY_SUPPORTS_VT_REMOTE_TX = 0x00000800;
222
223 /**
224 * Remote device supports bidirectional video calling.
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700225 */
Andrew Lee9a8f9ce2015-04-10 18:09:46 -0700226 public static final int CAPABILITY_SUPPORTS_VT_REMOTE_BIDIRECTIONAL =
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700227 CAPABILITY_SUPPORTS_VT_REMOTE_RX | CAPABILITY_SUPPORTS_VT_REMOTE_TX;
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800228
229 /**
230 * Connection is able to be separated from its parent {@code Conference}, if any.
231 */
232 public static final int CAPABILITY_SEPARATE_FROM_CONFERENCE = 0x00001000;
233
234 /**
235 * Connection is able to be individually disconnected when in a {@code Conference}.
236 */
237 public static final int CAPABILITY_DISCONNECT_FROM_CONFERENCE = 0x00002000;
238
239 /**
Tyler Gunn720c6642016-03-22 09:02:47 -0700240 * Un-used.
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800241 * @hide
242 */
Tyler Gunn720c6642016-03-22 09:02:47 -0700243 public static final int CAPABILITY_UNUSED_2 = 0x00004000;
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800244
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700245 /**
Tyler Gunn720c6642016-03-22 09:02:47 -0700246 * Un-used.
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700247 * @hide
248 */
Tyler Gunn720c6642016-03-22 09:02:47 -0700249 public static final int CAPABILITY_UNUSED_3 = 0x00008000;
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700250
251 /**
Tyler Gunn720c6642016-03-22 09:02:47 -0700252 * Un-used.
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700253 * @hide
254 */
Tyler Gunn720c6642016-03-22 09:02:47 -0700255 public static final int CAPABILITY_UNUSED_4 = 0x00010000;
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700256
Tyler Gunn068085b2015-02-06 13:56:52 -0800257 /**
Tyler Gunn720c6642016-03-22 09:02:47 -0700258 * Un-used.
Tyler Gunn068085b2015-02-06 13:56:52 -0800259 * @hide
260 */
Tyler Gunn720c6642016-03-22 09:02:47 -0700261 public static final int CAPABILITY_UNUSED_5 = 0x00020000;
Tyler Gunn068085b2015-02-06 13:56:52 -0800262
Tyler Gunn96d6c402015-03-18 12:39:23 -0700263 /**
Dong Zhou89f41eb2015-03-15 11:59:49 -0500264 * Speed up audio setup for MT call.
265 * @hide
Tyler Gunn96d6c402015-03-18 12:39:23 -0700266 */
267 public static final int CAPABILITY_SPEED_UP_MT_AUDIO = 0x00040000;
Tyler Gunn068085b2015-02-06 13:56:52 -0800268
Rekha Kumar07366812015-03-24 16:42:31 -0700269 /**
Tyler Gunnb5e0cfb2015-04-07 16:10:51 -0700270 * Call can be upgraded to a video call.
Rekha Kumar07366812015-03-24 16:42:31 -0700271 */
272 public static final int CAPABILITY_CAN_UPGRADE_TO_VIDEO = 0x00080000;
273
Tyler Gunnb5e0cfb2015-04-07 16:10:51 -0700274 /**
275 * For video calls, indicates whether the outgoing video for the call can be paused using
Yorke Lee32f24732015-05-12 16:18:03 -0700276 * the {@link android.telecom.VideoProfile#STATE_PAUSED} VideoState.
Tyler Gunnb5e0cfb2015-04-07 16:10:51 -0700277 */
278 public static final int CAPABILITY_CAN_PAUSE_VIDEO = 0x00100000;
279
Tyler Gunnd4091732015-06-29 09:15:37 -0700280 /**
281 * For a conference, indicates the conference will not have child connections.
282 * <p>
283 * An example of a conference with child connections is a GSM conference call, where the radio
284 * retains connections to the individual participants of the conference. Another example is an
285 * IMS conference call where conference event package functionality is supported; in this case
286 * the conference server ensures the radio is aware of the participants in the conference, which
287 * are represented by child connections.
288 * <p>
289 * An example of a conference with no child connections is an IMS conference call with no
290 * conference event package support. Such a conference is represented by the radio as a single
291 * connection to the IMS conference server.
292 * <p>
293 * Indicating whether a conference has children or not is important to help user interfaces
294 * visually represent a conference. A conference with no children, for example, will have the
295 * conference connection shown in the list of calls on a Bluetooth device, where if the
296 * conference has children, only the children will be shown in the list of calls on a Bluetooth
297 * device.
298 * @hide
299 */
300 public static final int CAPABILITY_CONFERENCE_HAS_NO_CHILDREN = 0x00200000;
301
Bryce Lee81901682015-08-28 16:38:02 -0700302 /**
303 * Indicates that the connection itself wants to handle any sort of reply response, rather than
304 * relying on SMS.
Bryce Lee81901682015-08-28 16:38:02 -0700305 */
306 public static final int CAPABILITY_CAN_SEND_RESPONSE_VIA_CONNECTION = 0x00400000;
307
Tyler Gunnf97a0092016-01-19 15:59:34 -0800308 /**
309 * When set, prevents a video call from being downgraded to an audio-only call.
310 * <p>
311 * Should be set when the VideoState has the {@link VideoProfile#STATE_TX_ENABLED} or
312 * {@link VideoProfile#STATE_RX_ENABLED} bits set to indicate that the connection cannot be
313 * downgraded from a video call back to a VideoState of
314 * {@link VideoProfile#STATE_AUDIO_ONLY}.
315 * <p>
316 * Intuitively, a call which can be downgraded to audio should also have local and remote
317 * video
318 * capabilities (see {@link #CAPABILITY_SUPPORTS_VT_LOCAL_BIDIRECTIONAL} and
319 * {@link #CAPABILITY_SUPPORTS_VT_REMOTE_BIDIRECTIONAL}).
320 */
321 public static final int CAPABILITY_CANNOT_DOWNGRADE_VIDEO_TO_AUDIO = 0x00800000;
322
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700323 /**
Tyler Gunn720c6642016-03-22 09:02:47 -0700324 * When set for an external connection, indicates that this {@code Connection} can be pulled
325 * from a remote device to the current device.
326 * <p>
327 * Should only be set on a {@code Connection} where {@link #PROPERTY_IS_EXTERNAL_CALL}
328 * is set.
329 */
330 public static final int CAPABILITY_CAN_PULL_CALL = 0x01000000;
331
332 //**********************************************************************************************
333 // Next CAPABILITY value: 0x02000000
334 //**********************************************************************************************
335
336 /**
337 * Indicates that the current device callback number should be shown.
338 *
339 * @hide
340 */
Hall Liu25c7c4d2016-08-30 13:41:02 -0700341 public static final int PROPERTY_EMERGENCY_CALLBACK_MODE = 1<<0;
Tyler Gunn720c6642016-03-22 09:02:47 -0700342
343 /**
344 * Whether the call is a generic conference, where we do not know the precise state of
345 * participants in the conference (eg. on CDMA).
346 *
347 * @hide
348 */
349 public static final int PROPERTY_GENERIC_CONFERENCE = 1<<1;
350
351 /**
352 * Connection is using high definition audio.
353 * @hide
354 */
355 public static final int PROPERTY_HIGH_DEF_AUDIO = 1<<2;
356
357 /**
358 * Connection is using WIFI.
359 * @hide
360 */
361 public static final int PROPERTY_WIFI = 1<<3;
362
363 /**
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700364 * When set, indicates that the {@code Connection} does not actually exist locally for the
365 * {@link ConnectionService}.
366 * <p>
367 * Consider, for example, a scenario where a user has two devices with the same phone number.
368 * When a user places a call on one devices, the telephony stack can represent that call on the
369 * other device by adding is to the {@link ConnectionService} with the
Tyler Gunn720c6642016-03-22 09:02:47 -0700370 * {@link #PROPERTY_IS_EXTERNAL_CALL} capability set.
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700371 * <p>
372 * An {@link ConnectionService} should not assume that all {@link InCallService}s will handle
373 * external connections. Only those {@link InCallService}s which have the
374 * {@link TelecomManager#METADATA_INCLUDE_EXTERNAL_CALLS} metadata set to {@code true} in its
375 * manifest will see external connections.
376 */
Tyler Gunn720c6642016-03-22 09:02:47 -0700377 public static final int PROPERTY_IS_EXTERNAL_CALL = 1<<4;
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700378
Brad Ebinger15847072016-05-18 11:08:36 -0700379 /**
380 * Indicates that the connection has CDMA Enhanced Voice Privacy enabled.
381 */
382 public static final int PROPERTY_HAS_CDMA_VOICE_PRIVACY = 1<<5;
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700383
Hall Liu9f332c72016-07-14 15:37:37 -0700384 /**
385 * Indicates that the connection represents a downgraded IMS conference.
386 * @hide
387 */
388 public static final int PROPERTY_IS_DOWNGRADED_CONFERENCE = 1<<6;
389
Tyler Gunnf5035432017-01-09 09:43:12 -0800390 /**
391 * Set by the framework to indicate that the {@link Connection} originated from a self-managed
392 * {@link ConnectionService}.
393 * <p>
394 * See {@link PhoneAccount#CAPABILITY_SELF_MANAGED}.
395 */
396 public static final int PROPERTY_SELF_MANAGED = 1<<7;
397
Hall Liu95d55872017-01-25 17:12:49 -0800398 /**
Hall Liuffa4a812017-03-02 16:11:00 -0800399 * Set by the framework to indicate that a connection has an active RTT session associated with
400 * it.
Hall Liu95d55872017-01-25 17:12:49 -0800401 * @hide
402 */
Hall Liuffa4a812017-03-02 16:11:00 -0800403 @TestApi
Hall Liu95d55872017-01-25 17:12:49 -0800404 public static final int PROPERTY_IS_RTT = 1 << 8;
405
Tyler Gunn96d6c402015-03-18 12:39:23 -0700406 //**********************************************************************************************
Hall Liu95d55872017-01-25 17:12:49 -0800407 // Next PROPERTY value: 1<<9
Tyler Gunn96d6c402015-03-18 12:39:23 -0700408 //**********************************************************************************************
Tyler Gunn068085b2015-02-06 13:56:52 -0800409
Tyler Gunn335ff2e2015-07-30 14:18:33 -0700410 /**
411 * Connection extra key used to store the last forwarded number associated with the current
412 * connection. Used to communicate to the user interface that the connection was forwarded via
413 * the specified number.
414 */
415 public static final String EXTRA_LAST_FORWARDED_NUMBER =
416 "android.telecom.extra.LAST_FORWARDED_NUMBER";
417
418 /**
419 * Connection extra key used to store a child number associated with the current connection.
420 * Used to communicate to the user interface that the connection was received via
421 * a child address (i.e. phone number) associated with the {@link PhoneAccount}'s primary
422 * address.
423 */
424 public static final String EXTRA_CHILD_ADDRESS = "android.telecom.extra.CHILD_ADDRESS";
425
426 /**
427 * Connection extra key used to store the subject for an incoming call. The user interface can
428 * query this extra and display its contents for incoming calls. Will only be used if the
429 * {@link PhoneAccount} supports the capability {@link PhoneAccount#CAPABILITY_CALL_SUBJECT}.
430 */
431 public static final String EXTRA_CALL_SUBJECT = "android.telecom.extra.CALL_SUBJECT";
432
Tyler Gunnbd1eb1f2016-02-16 14:36:20 -0800433 /**
Tyler Gunn4b6614e2016-06-22 10:35:13 -0700434 * Boolean connection extra key set on a {@link Connection} in
435 * {@link Connection#STATE_RINGING} state to indicate that answering the call will cause the
436 * current active foreground call to be dropped.
437 */
438 public static final String EXTRA_ANSWERING_DROPS_FG_CALL =
439 "android.telecom.extra.ANSWERING_DROPS_FG_CALL";
440
441 /**
Tyler Gunn37653562017-03-13 18:15:15 -0700442 * String connection extra key set on a {@link Connection} in {@link Connection#STATE_RINGING}
443 * state to indicate the name of the third-party app which is responsible for the current
444 * foreground call.
445 * <p>
446 * Used when {@link #EXTRA_ANSWERING_DROPS_FG_CALL} is true to ensure that the default Phone app
447 * is able to inform the user that answering the new incoming call will cause a call owned by
448 * another app to be dropped when the incoming call is answered.
449 */
450 public static final String EXTRA_ANSWERING_DROPS_FG_CALL_APP_NAME =
451 "android.telecom.extra.ANSWERING_DROPS_FG_CALL_APP_NAME";
452
453 /**
Hall Liu10208662016-06-15 17:55:00 -0700454 * Boolean connection extra key on a {@link Connection} which indicates that adding an
Hall Liuee6e86b2016-07-06 16:32:43 -0700455 * additional call is disallowed.
Hall Liu10208662016-06-15 17:55:00 -0700456 * @hide
457 */
Hall Liuee6e86b2016-07-06 16:32:43 -0700458 public static final String EXTRA_DISABLE_ADD_CALL =
459 "android.telecom.extra.DISABLE_ADD_CALL";
Hall Liu10208662016-06-15 17:55:00 -0700460
461 /**
Tyler Gunncd6ccfd2016-10-17 15:48:19 -0700462 * String connection extra key on a {@link Connection} or {@link Conference} which contains the
463 * original Connection ID associated with the connection. Used in
464 * {@link RemoteConnectionService} to track the Connection ID which was originally assigned to a
465 * connection/conference added via
466 * {@link ConnectionService#addExistingConnection(PhoneAccountHandle, Connection)} and
467 * {@link ConnectionService#addConference(Conference)} APIs. This is important to pass to
468 * Telecom for when it deals with RemoteConnections. When the ConnectionManager wraps the
469 * {@link RemoteConnection} and {@link RemoteConference} and adds it to Telecom, there needs to
470 * be a way to ensure that we don't add the connection again as a duplicate.
471 * <p>
472 * For example, the TelephonyCS calls addExistingConnection for a Connection with ID
473 * {@code TelephonyCS@1}. The ConnectionManager learns of this via
474 * {@link ConnectionService#onRemoteExistingConnectionAdded(RemoteConnection)}, and wraps this
475 * in a new {@link Connection} which it adds to Telecom via
476 * {@link ConnectionService#addExistingConnection(PhoneAccountHandle, Connection)}. As part of
477 * this process, the wrapped RemoteConnection gets assigned a new ID (e.g. {@code ConnMan@1}).
478 * The TelephonyCS will ALSO try to add the existing connection to Telecom, except with the
479 * ID it originally referred to the connection as. Thus Telecom needs to know that the
480 * Connection with ID {@code ConnMan@1} is really the same as {@code TelephonyCS@1}.
481 * @hide
482 */
483 public static final String EXTRA_ORIGINAL_CONNECTION_ID =
484 "android.telecom.extra.ORIGINAL_CONNECTION_ID";
485
486 /**
Tyler Gunnbd1eb1f2016-02-16 14:36:20 -0800487 * Connection event used to inform Telecom that it should play the on hold tone. This is used
488 * to play a tone when the peer puts the current call on hold. Sent to Telecom via
Tyler Gunn9c0eb0b2016-06-29 11:23:25 -0700489 * {@link #sendConnectionEvent(String, Bundle)}.
Tyler Gunnbd1eb1f2016-02-16 14:36:20 -0800490 * @hide
491 */
492 public static final String EVENT_ON_HOLD_TONE_START =
493 "android.telecom.event.ON_HOLD_TONE_START";
494
495 /**
496 * Connection event used to inform Telecom that it should stop the on hold tone. This is used
497 * to stop a tone when the peer puts the current call on hold. Sent to Telecom via
Tyler Gunn9c0eb0b2016-06-29 11:23:25 -0700498 * {@link #sendConnectionEvent(String, Bundle)}.
Tyler Gunnbd1eb1f2016-02-16 14:36:20 -0800499 * @hide
500 */
501 public static final String EVENT_ON_HOLD_TONE_END =
502 "android.telecom.event.ON_HOLD_TONE_END";
503
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700504 /**
505 * Connection event used to inform {@link InCallService}s when pulling of an external call has
506 * failed. The user interface should inform the user of the error.
507 * <p>
508 * Expected to be used by the {@link ConnectionService} when the {@link Call#pullExternalCall()}
509 * API is called on a {@link Call} with the properties
510 * {@link Call.Details#PROPERTY_IS_EXTERNAL_CALL} and
511 * {@link Call.Details#CAPABILITY_CAN_PULL_CALL}, but the {@link ConnectionService} could not
512 * pull the external call due to an error condition.
Tyler Gunn9c0eb0b2016-06-29 11:23:25 -0700513 * <p>
514 * Sent via {@link #sendConnectionEvent(String, Bundle)}. The {@link Bundle} parameter is
515 * expected to be null when this connection event is used.
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700516 */
517 public static final String EVENT_CALL_PULL_FAILED = "android.telecom.event.CALL_PULL_FAILED";
518
Brad Ebinger2c1c16452016-05-27 15:58:10 -0700519 /**
520 * Connection event used to inform {@link InCallService}s when the merging of two calls has
521 * failed. The User Interface should use this message to inform the user of the error.
Tyler Gunn9c0eb0b2016-06-29 11:23:25 -0700522 * <p>
523 * Sent via {@link #sendConnectionEvent(String, Bundle)}. The {@link Bundle} parameter is
524 * expected to be null when this connection event is used.
Brad Ebinger2c1c16452016-05-27 15:58:10 -0700525 */
526 public static final String EVENT_CALL_MERGE_FAILED = "android.telecom.event.CALL_MERGE_FAILED";
527
Tyler Gunnb5ed8602016-08-17 13:48:27 -0700528 /**
Tyler Gunn78da7812017-05-09 14:34:57 -0700529 * Connection event used to inform {@link InCallService}s when the process of merging a
530 * Connection into a conference has begun.
531 * <p>
532 * Sent via {@link #sendConnectionEvent(String, Bundle)}. The {@link Bundle} parameter is
533 * expected to be null when this connection event is used.
534 * @hide
535 */
536 public static final String EVENT_MERGE_START = "android.telecom.event.MERGE_START";
537
538 /**
539 * Connection event used to inform {@link InCallService}s when the process of merging a
540 * Connection into a conference has completed.
541 * <p>
542 * Sent via {@link #sendConnectionEvent(String, Bundle)}. The {@link Bundle} parameter is
543 * expected to be null when this connection event is used.
544 * @hide
545 */
546 public static final String EVENT_MERGE_COMPLETE = "android.telecom.event.MERGE_COMPLETE";
547
548 /**
Tyler Gunnb5ed8602016-08-17 13:48:27 -0700549 * Connection event used to inform {@link InCallService}s when a call has been put on hold by
550 * the remote party.
551 * <p>
552 * This is different than the {@link Connection#STATE_HOLDING} state which indicates that the
553 * call is being held locally on the device. When a capable {@link ConnectionService} receives
554 * signalling to indicate that the remote party has put the call on hold, it can send this
555 * connection event.
556 * @hide
557 */
558 public static final String EVENT_CALL_REMOTELY_HELD =
559 "android.telecom.event.CALL_REMOTELY_HELD";
560
561 /**
562 * Connection event used to inform {@link InCallService}s when a call which was remotely held
563 * (see {@link #EVENT_CALL_REMOTELY_HELD}) has been un-held by the remote party.
564 * <p>
565 * This is different than the {@link Connection#STATE_HOLDING} state which indicates that the
566 * call is being held locally on the device. When a capable {@link ConnectionService} receives
567 * signalling to indicate that the remote party has taken the call off hold, it can send this
568 * connection event.
569 * @hide
570 */
571 public static final String EVENT_CALL_REMOTELY_UNHELD =
572 "android.telecom.event.CALL_REMOTELY_UNHELD";
573
Tyler Gunn9f6f0472017-04-17 18:25:22 -0700574 /**
575 * Connection event used to inform an {@link InCallService} which initiated a call handover via
576 * {@link Call#EVENT_REQUEST_HANDOVER} that the handover from this {@link Connection} has
577 * successfully completed.
578 * @hide
579 */
580 public static final String EVENT_HANDOVER_COMPLETE =
581 "android.telecom.event.HANDOVER_COMPLETE";
582
583 /**
584 * Connection event used to inform an {@link InCallService} which initiated a call handover via
585 * {@link Call#EVENT_REQUEST_HANDOVER} that the handover from this {@link Connection} has failed
586 * to complete.
587 * @hide
588 */
589 public static final String EVENT_HANDOVER_FAILED =
590 "android.telecom.event.HANDOVER_FAILED";
591
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700592 // Flag controlling whether PII is emitted into the logs
593 private static final boolean PII_DEBUG = Log.isLoggable(android.util.Log.DEBUG);
594
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800595 /**
596 * Whether the given capabilities support the specified capability.
597 *
598 * @param capabilities A capability bit field.
599 * @param capability The capability to check capabilities for.
600 * @return Whether the specified capability is supported.
601 * @hide
602 */
603 public static boolean can(int capabilities, int capability) {
Tyler Gunn014c7112015-12-18 14:33:57 -0800604 return (capabilities & capability) == capability;
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800605 }
606
607 /**
608 * Whether the capabilities of this {@code Connection} supports the specified capability.
609 *
610 * @param capability The capability to check capabilities for.
611 * @return Whether the specified capability is supported.
612 * @hide
613 */
614 public boolean can(int capability) {
615 return can(mConnectionCapabilities, capability);
616 }
617
618 /**
619 * Removes the specified capability from the set of capabilities of this {@code Connection}.
620 *
621 * @param capability The capability to remove from the set.
622 * @hide
623 */
624 public void removeCapability(int capability) {
625 mConnectionCapabilities &= ~capability;
626 }
627
628 /**
629 * Adds the specified capability to the set of capabilities of this {@code Connection}.
630 *
631 * @param capability The capability to add to the set.
632 * @hide
633 */
634 public void addCapability(int capability) {
635 mConnectionCapabilities |= capability;
636 }
637
Tyler Gunn9c0eb0b2016-06-29 11:23:25 -0700638 /**
639 * Renders a set of capability bits ({@code CAPABILITY_*}) as a human readable string.
640 *
641 * @param capabilities A capability bit field.
642 * @return A human readable string representation.
643 */
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800644 public static String capabilitiesToString(int capabilities) {
Santos Cordon1a749302016-07-26 16:08:53 -0700645 return capabilitiesToStringInternal(capabilities, true /* isLong */);
646 }
647
648 /**
649 * Renders a set of capability bits ({@code CAPABILITY_*}) as a *short* human readable
650 * string.
651 *
652 * @param capabilities A capability bit field.
653 * @return A human readable string representation.
654 * @hide
655 */
656 public static String capabilitiesToStringShort(int capabilities) {
657 return capabilitiesToStringInternal(capabilities, false /* isLong */);
658 }
659
660 private static String capabilitiesToStringInternal(int capabilities, boolean isLong) {
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800661 StringBuilder builder = new StringBuilder();
Santos Cordon1a749302016-07-26 16:08:53 -0700662 builder.append("[");
663 if (isLong) {
664 builder.append("Capabilities:");
665 }
666
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800667 if (can(capabilities, CAPABILITY_HOLD)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700668 builder.append(isLong ? " CAPABILITY_HOLD" : " hld");
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800669 }
670 if (can(capabilities, CAPABILITY_SUPPORT_HOLD)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700671 builder.append(isLong ? " CAPABILITY_SUPPORT_HOLD" : " sup_hld");
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800672 }
673 if (can(capabilities, CAPABILITY_MERGE_CONFERENCE)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700674 builder.append(isLong ? " CAPABILITY_MERGE_CONFERENCE" : " mrg_cnf");
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800675 }
676 if (can(capabilities, CAPABILITY_SWAP_CONFERENCE)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700677 builder.append(isLong ? " CAPABILITY_SWAP_CONFERENCE" : " swp_cnf");
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800678 }
679 if (can(capabilities, CAPABILITY_RESPOND_VIA_TEXT)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700680 builder.append(isLong ? " CAPABILITY_RESPOND_VIA_TEXT" : " txt");
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800681 }
682 if (can(capabilities, CAPABILITY_MUTE)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700683 builder.append(isLong ? " CAPABILITY_MUTE" : " mut");
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800684 }
685 if (can(capabilities, CAPABILITY_MANAGE_CONFERENCE)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700686 builder.append(isLong ? " CAPABILITY_MANAGE_CONFERENCE" : " mng_cnf");
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800687 }
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700688 if (can(capabilities, CAPABILITY_SUPPORTS_VT_LOCAL_RX)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700689 builder.append(isLong ? " CAPABILITY_SUPPORTS_VT_LOCAL_RX" : " VTlrx");
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700690 }
691 if (can(capabilities, CAPABILITY_SUPPORTS_VT_LOCAL_TX)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700692 builder.append(isLong ? " CAPABILITY_SUPPORTS_VT_LOCAL_TX" : " VTltx");
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700693 }
Andrew Lee9a8f9ce2015-04-10 18:09:46 -0700694 if (can(capabilities, CAPABILITY_SUPPORTS_VT_LOCAL_BIDIRECTIONAL)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700695 builder.append(isLong ? " CAPABILITY_SUPPORTS_VT_LOCAL_BIDIRECTIONAL" : " VTlbi");
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800696 }
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700697 if (can(capabilities, CAPABILITY_SUPPORTS_VT_REMOTE_RX)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700698 builder.append(isLong ? " CAPABILITY_SUPPORTS_VT_REMOTE_RX" : " VTrrx");
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700699 }
700 if (can(capabilities, CAPABILITY_SUPPORTS_VT_REMOTE_TX)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700701 builder.append(isLong ? " CAPABILITY_SUPPORTS_VT_REMOTE_TX" : " VTrtx");
Andrew Lee5e9e8bb2015-03-10 13:58:24 -0700702 }
Andrew Lee9a8f9ce2015-04-10 18:09:46 -0700703 if (can(capabilities, CAPABILITY_SUPPORTS_VT_REMOTE_BIDIRECTIONAL)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700704 builder.append(isLong ? " CAPABILITY_SUPPORTS_VT_REMOTE_BIDIRECTIONAL" : " VTrbi");
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800705 }
Tyler Gunnf97a0092016-01-19 15:59:34 -0800706 if (can(capabilities, CAPABILITY_CANNOT_DOWNGRADE_VIDEO_TO_AUDIO)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700707 builder.append(isLong ? " CAPABILITY_CANNOT_DOWNGRADE_VIDEO_TO_AUDIO" : " !v2a");
Tyler Gunnf97a0092016-01-19 15:59:34 -0800708 }
Dong Zhou89f41eb2015-03-15 11:59:49 -0500709 if (can(capabilities, CAPABILITY_SPEED_UP_MT_AUDIO)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700710 builder.append(isLong ? " CAPABILITY_SPEED_UP_MT_AUDIO" : " spd_aud");
Dong Zhou89f41eb2015-03-15 11:59:49 -0500711 }
Rekha Kumar07366812015-03-24 16:42:31 -0700712 if (can(capabilities, CAPABILITY_CAN_UPGRADE_TO_VIDEO)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700713 builder.append(isLong ? " CAPABILITY_CAN_UPGRADE_TO_VIDEO" : " a2v");
Rekha Kumar07366812015-03-24 16:42:31 -0700714 }
Tyler Gunnb5e0cfb2015-04-07 16:10:51 -0700715 if (can(capabilities, CAPABILITY_CAN_PAUSE_VIDEO)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700716 builder.append(isLong ? " CAPABILITY_CAN_PAUSE_VIDEO" : " paus_VT");
Tyler Gunnb5e0cfb2015-04-07 16:10:51 -0700717 }
Tyler Gunnd4091732015-06-29 09:15:37 -0700718 if (can(capabilities, CAPABILITY_CONFERENCE_HAS_NO_CHILDREN)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700719 builder.append(isLong ? " CAPABILITY_SINGLE_PARTY_CONFERENCE" : " 1p_cnf");
Tyler Gunnd4091732015-06-29 09:15:37 -0700720 }
Bryce Lee81901682015-08-28 16:38:02 -0700721 if (can(capabilities, CAPABILITY_CAN_SEND_RESPONSE_VIA_CONNECTION)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700722 builder.append(isLong ? " CAPABILITY_CAN_SEND_RESPONSE_VIA_CONNECTION" : " rsp_by_con");
Bryce Lee81901682015-08-28 16:38:02 -0700723 }
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700724 if (can(capabilities, CAPABILITY_CAN_PULL_CALL)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700725 builder.append(isLong ? " CAPABILITY_CAN_PULL_CALL" : " pull");
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700726 }
Bryce Lee81901682015-08-28 16:38:02 -0700727
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800728 builder.append("]");
729 return builder.toString();
730 }
731
Tyler Gunn9c0eb0b2016-06-29 11:23:25 -0700732 /**
733 * Renders a set of property bits ({@code PROPERTY_*}) as a human readable string.
734 *
735 * @param properties A property bit field.
736 * @return A human readable string representation.
737 */
Tyler Gunn720c6642016-03-22 09:02:47 -0700738 public static String propertiesToString(int properties) {
Santos Cordon1a749302016-07-26 16:08:53 -0700739 return propertiesToStringInternal(properties, true /* isLong */);
740 }
741
742 /**
743 * Renders a set of property bits ({@code PROPERTY_*}) as a *short* human readable string.
744 *
745 * @param properties A property bit field.
746 * @return A human readable string representation.
747 * @hide
748 */
749 public static String propertiesToStringShort(int properties) {
750 return propertiesToStringInternal(properties, false /* isLong */);
751 }
752
753 private static String propertiesToStringInternal(int properties, boolean isLong) {
Tyler Gunn720c6642016-03-22 09:02:47 -0700754 StringBuilder builder = new StringBuilder();
Santos Cordon1a749302016-07-26 16:08:53 -0700755 builder.append("[");
756 if (isLong) {
757 builder.append("Properties:");
758 }
Tyler Gunn720c6642016-03-22 09:02:47 -0700759
Tyler Gunnf5035432017-01-09 09:43:12 -0800760 if (can(properties, PROPERTY_SELF_MANAGED)) {
761 builder.append(isLong ? " PROPERTY_SELF_MANAGED" : " self_mng");
762 }
763
Hall Liu25c7c4d2016-08-30 13:41:02 -0700764 if (can(properties, PROPERTY_EMERGENCY_CALLBACK_MODE)) {
765 builder.append(isLong ? " PROPERTY_EMERGENCY_CALLBACK_MODE" : " ecbm");
Tyler Gunn720c6642016-03-22 09:02:47 -0700766 }
767
768 if (can(properties, PROPERTY_HIGH_DEF_AUDIO)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700769 builder.append(isLong ? " PROPERTY_HIGH_DEF_AUDIO" : " HD");
Tyler Gunn720c6642016-03-22 09:02:47 -0700770 }
771
772 if (can(properties, PROPERTY_WIFI)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700773 builder.append(isLong ? " PROPERTY_WIFI" : " wifi");
Tyler Gunn720c6642016-03-22 09:02:47 -0700774 }
775
776 if (can(properties, PROPERTY_GENERIC_CONFERENCE)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700777 builder.append(isLong ? " PROPERTY_GENERIC_CONFERENCE" : " gen_conf");
Tyler Gunn720c6642016-03-22 09:02:47 -0700778 }
779
780 if (can(properties, PROPERTY_IS_EXTERNAL_CALL)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700781 builder.append(isLong ? " PROPERTY_IS_EXTERNAL_CALL" : " xtrnl");
Tyler Gunn720c6642016-03-22 09:02:47 -0700782 }
783
Brad Ebinger15847072016-05-18 11:08:36 -0700784 if (can(properties, PROPERTY_HAS_CDMA_VOICE_PRIVACY)) {
Santos Cordon1a749302016-07-26 16:08:53 -0700785 builder.append(isLong ? " PROPERTY_HAS_CDMA_VOICE_PRIVACY" : " priv");
Brad Ebinger15847072016-05-18 11:08:36 -0700786 }
787
Tyler Gunn720c6642016-03-22 09:02:47 -0700788 builder.append("]");
789 return builder.toString();
790 }
791
Sailesh Nepal091768c2014-06-30 15:15:23 -0700792 /** @hide */
Sailesh Nepal61203862014-07-11 14:50:13 -0700793 public abstract static class Listener {
Ihab Awad542e0ea2014-05-16 10:22:16 -0700794 public void onStateChanged(Connection c, int state) {}
Andrew Lee100e2932014-09-08 15:34:24 -0700795 public void onAddressChanged(Connection c, Uri newAddress, int presentation) {}
Sailesh Nepal61203862014-07-11 14:50:13 -0700796 public void onCallerDisplayNameChanged(
797 Connection c, String callerDisplayName, int presentation) {}
Tyler Gunnaa07df82014-07-17 07:50:22 -0700798 public void onVideoStateChanged(Connection c, int videoState) {}
Andrew Lee7f3d41f2014-09-11 17:33:16 -0700799 public void onDisconnected(Connection c, DisconnectCause disconnectCause) {}
Sailesh Nepal091768c2014-06-30 15:15:23 -0700800 public void onPostDialWait(Connection c, String remaining) {}
Nancy Chen27d1c2d2014-12-15 16:12:50 -0800801 public void onPostDialChar(Connection c, char nextChar) {}
Andrew Lee100e2932014-09-08 15:34:24 -0700802 public void onRingbackRequested(Connection c, boolean ringback) {}
Sailesh Nepal61203862014-07-11 14:50:13 -0700803 public void onDestroyed(Connection c) {}
Ihab Awad5c9c86e2014-11-12 13:41:16 -0800804 public void onConnectionCapabilitiesChanged(Connection c, int capabilities) {}
Tyler Gunn720c6642016-03-22 09:02:47 -0700805 public void onConnectionPropertiesChanged(Connection c, int properties) {}
Christine Hallstrom2830ce92016-11-30 16:06:42 -0800806 public void onSupportedAudioRoutesChanged(Connection c, int supportedAudioRoutes) {}
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700807 public void onVideoProviderChanged(
808 Connection c, VideoProvider videoProvider) {}
Sailesh Nepal001bbbb2014-07-15 14:40:39 -0700809 public void onAudioModeIsVoipChanged(Connection c, boolean isVoip) {}
810 public void onStatusHintsChanged(Connection c, StatusHints statusHints) {}
Tyler Gunn6d76ca02014-11-17 15:49:51 -0800811 public void onConferenceablesChanged(
Tyler Gunndf2cbc82015-04-20 09:13:01 -0700812 Connection c, List<Conferenceable> conferenceables) {}
Santos Cordon823fd3c2014-08-07 18:35:18 -0700813 public void onConferenceChanged(Connection c, Conference conference) {}
Tyler Gunn3bffcf72014-10-28 13:51:27 -0700814 /** @hide */
Tyler Gunnab4650c2014-11-06 20:06:23 -0800815 public void onConferenceParticipantsChanged(Connection c,
816 List<ConferenceParticipant> participants) {}
Tyler Gunn8a2b1192015-01-29 11:47:24 -0800817 public void onConferenceStarted() {}
Anthony Lee17455a32015-04-24 15:25:29 -0700818 public void onConferenceMergeFailed(Connection c) {}
Santos Cordon6b7f9552015-05-27 17:21:45 -0700819 public void onExtrasChanged(Connection c, Bundle extras) {}
Tyler Gunndee56a82016-03-23 16:06:34 -0700820 public void onExtrasRemoved(Connection c, List<String> keys) {}
Tyler Gunn876dbfb2016-03-14 15:18:07 -0700821 public void onConnectionEvent(Connection c, String event, Bundle extras) {}
Tyler Gunn7d633d32016-06-24 07:30:10 -0700822 /** @hide */
823 public void onConferenceSupportedChanged(Connection c, boolean isConferenceSupported) {}
Tyler Gunnf5035432017-01-09 09:43:12 -0800824 public void onAudioRouteChanged(Connection c, int audioRoute) {}
Hall Liub64ac4c2017-02-06 10:49:48 -0800825 public void onRttInitiationSuccess(Connection c) {}
826 public void onRttInitiationFailure(Connection c, int reason) {}
827 public void onRttSessionRemotelyTerminated(Connection c) {}
828 public void onRemoteRttRequest(Connection c) {}
Srikanth Chintala732b7fb2017-05-04 20:58:34 +0530829 /** @hide */
830 public void onPhoneAccountChanged(Connection c, PhoneAccountHandle pHandle) {}
Ihab Awad542e0ea2014-05-16 10:22:16 -0700831 }
832
Tyler Gunnb702ef82015-05-29 11:51:53 -0700833 /**
Hall Liu95d55872017-01-25 17:12:49 -0800834 * Provides methods to read and write RTT data to/from the in-call app.
835 * @hide
836 */
Hall Liuffa4a812017-03-02 16:11:00 -0800837 @TestApi
Hall Liu95d55872017-01-25 17:12:49 -0800838 public static final class RttTextStream {
839 private static final int READ_BUFFER_SIZE = 1000;
840 private final InputStreamReader mPipeFromInCall;
841 private final OutputStreamWriter mPipeToInCall;
Hall Liub64ac4c2017-02-06 10:49:48 -0800842 private final ParcelFileDescriptor mFdFromInCall;
843 private final ParcelFileDescriptor mFdToInCall;
Hall Liu95d55872017-01-25 17:12:49 -0800844 private char[] mReadBuffer = new char[READ_BUFFER_SIZE];
845
846 /**
847 * @hide
848 */
849 public RttTextStream(ParcelFileDescriptor toInCall, ParcelFileDescriptor fromInCall) {
Hall Liub64ac4c2017-02-06 10:49:48 -0800850 mFdFromInCall = fromInCall;
851 mFdToInCall = toInCall;
Hall Liu95d55872017-01-25 17:12:49 -0800852 mPipeFromInCall = new InputStreamReader(
853 new ParcelFileDescriptor.AutoCloseInputStream(fromInCall));
854 mPipeToInCall = new OutputStreamWriter(
855 new ParcelFileDescriptor.AutoCloseOutputStream(toInCall));
856 }
857
858 /**
859 * Writes the string {@param input} into the text stream to the UI for this RTT call. Since
860 * RTT transmits text in real-time, this method should be called as often as text snippets
861 * are received from the remote user, even if it is only one character.
862 *
863 * This method is not thread-safe -- calling it from multiple threads simultaneously may
864 * lead to interleaved text.
865 * @param input The message to send to the in-call app.
866 */
867 public void write(String input) throws IOException {
868 mPipeToInCall.write(input);
869 mPipeToInCall.flush();
870 }
871
872
873 /**
874 * Reads a string from the in-call app, blocking if there is no data available. Returns
875 * {@code null} if the RTT conversation has been terminated and there is no further data
876 * to read.
877 *
878 * This method is not thread-safe -- calling it from multiple threads simultaneously may
879 * lead to interleaved text.
880 * @return A string containing text entered by the user, or {@code null} if the
881 * conversation has been terminated or if there was an error while reading.
882 */
Hall Liuffa4a812017-03-02 16:11:00 -0800883 public String read() throws IOException {
884 int numRead = mPipeFromInCall.read(mReadBuffer, 0, READ_BUFFER_SIZE);
885 if (numRead < 0) {
886 return null;
887 }
888 return new String(mReadBuffer, 0, numRead);
889 }
890
891 /**
892 * Non-blocking version of {@link #read()}. Returns {@code null} if there is nothing to
893 * be read.
894 * @return A string containing text entered by the user, or {@code null} if the user has
895 * not entered any new text yet.
896 */
897 public String readImmediately() throws IOException {
898 if (mPipeFromInCall.ready()) {
899 return read();
900 } else {
Hall Liu95d55872017-01-25 17:12:49 -0800901 return null;
902 }
903 }
Hall Liub64ac4c2017-02-06 10:49:48 -0800904
905 /** @hide */
906 public ParcelFileDescriptor getFdFromInCall() {
907 return mFdFromInCall;
908 }
909
910 /** @hide */
911 public ParcelFileDescriptor getFdToInCall() {
912 return mFdToInCall;
913 }
914 }
915
916 /**
917 * Provides constants to represent the results of responses to session modify requests sent via
918 * {@link Call#sendRttRequest()}
919 */
920 public static final class RttModifyStatus {
Hall Liu8dd49082017-04-21 14:33:12 -0700921 private RttModifyStatus() {}
Hall Liub64ac4c2017-02-06 10:49:48 -0800922 /**
923 * Session modify request was successful.
924 */
925 public static final int SESSION_MODIFY_REQUEST_SUCCESS = 1;
926
927 /**
928 * Session modify request failed.
929 */
930 public static final int SESSION_MODIFY_REQUEST_FAIL = 2;
931
932 /**
933 * Session modify request ignored due to invalid parameters.
934 */
935 public static final int SESSION_MODIFY_REQUEST_INVALID = 3;
936
937 /**
938 * Session modify request timed out.
939 */
940 public static final int SESSION_MODIFY_REQUEST_TIMED_OUT = 4;
941
942 /**
943 * Session modify request rejected by remote user.
944 */
945 public static final int SESSION_MODIFY_REQUEST_REJECTED_BY_REMOTE = 5;
Hall Liu95d55872017-01-25 17:12:49 -0800946 }
947
948 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700949 * Provides a means of controlling the video session associated with a {@link Connection}.
950 * <p>
951 * Implementations create a custom subclass of {@link VideoProvider} and the
952 * {@link ConnectionService} creates an instance sets it on the {@link Connection} using
953 * {@link Connection#setVideoProvider(VideoProvider)}. Any connection which supports video
954 * should set the {@link VideoProvider}.
955 * <p>
956 * The {@link VideoProvider} serves two primary purposes: it provides a means for Telecom and
957 * {@link InCallService} implementations to issue requests related to the video session;
958 * it provides a means for the {@link ConnectionService} to report events and information
959 * related to the video session to Telecom and the {@link InCallService} implementations.
960 * <p>
961 * {@link InCallService} implementations interact with the {@link VideoProvider} via
962 * {@link android.telecom.InCallService.VideoCall}.
963 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700964 public static abstract class VideoProvider {
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700965 /**
966 * Video is not being received (no protocol pause was issued).
Tyler Gunnb702ef82015-05-29 11:51:53 -0700967 * @see #handleCallSessionEvent(int)
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700968 */
969 public static final int SESSION_EVENT_RX_PAUSE = 1;
Evan Charltonbf11f982014-07-20 22:06:28 -0700970
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700971 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700972 * Video reception has resumed after a {@link #SESSION_EVENT_RX_PAUSE}.
973 * @see #handleCallSessionEvent(int)
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700974 */
975 public static final int SESSION_EVENT_RX_RESUME = 2;
976
977 /**
978 * Video transmission has begun. This occurs after a negotiated start of video transmission
979 * when the underlying protocol has actually begun transmitting video to the remote party.
Tyler Gunnb702ef82015-05-29 11:51:53 -0700980 * @see #handleCallSessionEvent(int)
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700981 */
982 public static final int SESSION_EVENT_TX_START = 3;
983
984 /**
985 * Video transmission has stopped. This occurs after a negotiated stop of video transmission
986 * when the underlying protocol has actually stopped transmitting video to the remote party.
Tyler Gunnb702ef82015-05-29 11:51:53 -0700987 * @see #handleCallSessionEvent(int)
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700988 */
989 public static final int SESSION_EVENT_TX_STOP = 4;
990
991 /**
Tyler Gunnbf9c6fd2016-11-09 10:19:23 -0800992 * A camera failure has occurred for the selected camera. The {@link VideoProvider} can use
Tyler Gunnb702ef82015-05-29 11:51:53 -0700993 * this as a cue to inform the user the camera is not available.
994 * @see #handleCallSessionEvent(int)
Ihab Awadb19a0bc2014-08-07 19:46:01 -0700995 */
996 public static final int SESSION_EVENT_CAMERA_FAILURE = 5;
997
998 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -0700999 * Issued after {@link #SESSION_EVENT_CAMERA_FAILURE} when the camera is once again ready
Tyler Gunnbf9c6fd2016-11-09 10:19:23 -08001000 * for operation. The {@link VideoProvider} can use this as a cue to inform the user that
Tyler Gunnb702ef82015-05-29 11:51:53 -07001001 * the camera has become available again.
1002 * @see #handleCallSessionEvent(int)
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001003 */
1004 public static final int SESSION_EVENT_CAMERA_READY = 6;
1005
1006 /**
Tyler Gunnbf9c6fd2016-11-09 10:19:23 -08001007 * Session event raised by Telecom when
1008 * {@link android.telecom.InCallService.VideoCall#setCamera(String)} is called and the
1009 * caller does not have the necessary {@link android.Manifest.permission#CAMERA} permission.
1010 * @see #handleCallSessionEvent(int)
1011 */
1012 public static final int SESSION_EVENT_CAMERA_PERMISSION_ERROR = 7;
1013
1014 /**
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001015 * Session modify request was successful.
Tyler Gunnb702ef82015-05-29 11:51:53 -07001016 * @see #receiveSessionModifyResponse(int, VideoProfile, VideoProfile)
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001017 */
1018 public static final int SESSION_MODIFY_REQUEST_SUCCESS = 1;
1019
1020 /**
1021 * Session modify request failed.
Tyler Gunnb702ef82015-05-29 11:51:53 -07001022 * @see #receiveSessionModifyResponse(int, VideoProfile, VideoProfile)
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001023 */
1024 public static final int SESSION_MODIFY_REQUEST_FAIL = 2;
1025
1026 /**
1027 * Session modify request ignored due to invalid parameters.
Tyler Gunnb702ef82015-05-29 11:51:53 -07001028 * @see #receiveSessionModifyResponse(int, VideoProfile, VideoProfile)
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001029 */
1030 public static final int SESSION_MODIFY_REQUEST_INVALID = 3;
1031
Rekha Kumar07366812015-03-24 16:42:31 -07001032 /**
1033 * Session modify request timed out.
Tyler Gunnb702ef82015-05-29 11:51:53 -07001034 * @see #receiveSessionModifyResponse(int, VideoProfile, VideoProfile)
Rekha Kumar07366812015-03-24 16:42:31 -07001035 */
1036 public static final int SESSION_MODIFY_REQUEST_TIMED_OUT = 4;
1037
1038 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -07001039 * Session modify request rejected by remote user.
1040 * @see #receiveSessionModifyResponse(int, VideoProfile, VideoProfile)
Rekha Kumar07366812015-03-24 16:42:31 -07001041 */
1042 public static final int SESSION_MODIFY_REQUEST_REJECTED_BY_REMOTE = 5;
1043
Tyler Gunn75958422015-04-15 14:23:42 -07001044 private static final int MSG_ADD_VIDEO_CALLBACK = 1;
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001045 private static final int MSG_SET_CAMERA = 2;
1046 private static final int MSG_SET_PREVIEW_SURFACE = 3;
1047 private static final int MSG_SET_DISPLAY_SURFACE = 4;
1048 private static final int MSG_SET_DEVICE_ORIENTATION = 5;
1049 private static final int MSG_SET_ZOOM = 6;
1050 private static final int MSG_SEND_SESSION_MODIFY_REQUEST = 7;
1051 private static final int MSG_SEND_SESSION_MODIFY_RESPONSE = 8;
1052 private static final int MSG_REQUEST_CAMERA_CAPABILITIES = 9;
Ihab Awad5c9c86e2014-11-12 13:41:16 -08001053 private static final int MSG_REQUEST_CONNECTION_DATA_USAGE = 10;
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001054 private static final int MSG_SET_PAUSE_IMAGE = 11;
Tyler Gunn75958422015-04-15 14:23:42 -07001055 private static final int MSG_REMOVE_VIDEO_CALLBACK = 12;
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001056
Tyler Gunn6f657ee2016-09-02 09:55:25 -07001057 private static final String SESSION_EVENT_RX_PAUSE_STR = "RX_PAUSE";
1058 private static final String SESSION_EVENT_RX_RESUME_STR = "RX_RESUME";
1059 private static final String SESSION_EVENT_TX_START_STR = "TX_START";
1060 private static final String SESSION_EVENT_TX_STOP_STR = "TX_STOP";
1061 private static final String SESSION_EVENT_CAMERA_FAILURE_STR = "CAMERA_FAIL";
1062 private static final String SESSION_EVENT_CAMERA_READY_STR = "CAMERA_READY";
Tyler Gunnbf9c6fd2016-11-09 10:19:23 -08001063 private static final String SESSION_EVENT_CAMERA_PERMISSION_ERROR_STR =
1064 "CAMERA_PERMISSION_ERROR";
Tyler Gunn6f657ee2016-09-02 09:55:25 -07001065 private static final String SESSION_EVENT_UNKNOWN_STR = "UNKNOWN";
1066
Tyler Gunn4e9bbaf2015-05-22 15:43:28 -07001067 private VideoProvider.VideoProviderHandler mMessageHandler;
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001068 private final VideoProvider.VideoProviderBinder mBinder;
Tyler Gunn75958422015-04-15 14:23:42 -07001069
1070 /**
1071 * Stores a list of the video callbacks, keyed by IBinder.
Tyler Gunn84f381b2015-06-12 09:26:45 -07001072 *
1073 * ConcurrentHashMap constructor params: 8 is initial table size, 0.9f is
1074 * load factor before resizing, 1 means we only expect a single thread to
1075 * access the map so make only a single shard
Tyler Gunn75958422015-04-15 14:23:42 -07001076 */
Tyler Gunn84f381b2015-06-12 09:26:45 -07001077 private ConcurrentHashMap<IBinder, IVideoCallback> mVideoCallbacks =
1078 new ConcurrentHashMap<IBinder, IVideoCallback>(8, 0.9f, 1);
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001079
1080 /**
1081 * Default handler used to consolidate binder method calls onto a single thread.
1082 */
1083 private final class VideoProviderHandler extends Handler {
Tyler Gunn4e9bbaf2015-05-22 15:43:28 -07001084 public VideoProviderHandler() {
1085 super();
1086 }
1087
1088 public VideoProviderHandler(Looper looper) {
1089 super(looper);
1090 }
1091
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001092 @Override
1093 public void handleMessage(Message msg) {
1094 switch (msg.what) {
Tyler Gunn75958422015-04-15 14:23:42 -07001095 case MSG_ADD_VIDEO_CALLBACK: {
1096 IBinder binder = (IBinder) msg.obj;
1097 IVideoCallback callback = IVideoCallback.Stub
1098 .asInterface((IBinder) msg.obj);
Tyler Gunn84f381b2015-06-12 09:26:45 -07001099 if (callback == null) {
1100 Log.w(this, "addVideoProvider - skipped; callback is null.");
1101 break;
1102 }
1103
Tyler Gunn75958422015-04-15 14:23:42 -07001104 if (mVideoCallbacks.containsKey(binder)) {
1105 Log.i(this, "addVideoProvider - skipped; already present.");
1106 break;
1107 }
1108 mVideoCallbacks.put(binder, callback);
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001109 break;
Tyler Gunn75958422015-04-15 14:23:42 -07001110 }
1111 case MSG_REMOVE_VIDEO_CALLBACK: {
1112 IBinder binder = (IBinder) msg.obj;
1113 IVideoCallback callback = IVideoCallback.Stub
1114 .asInterface((IBinder) msg.obj);
1115 if (!mVideoCallbacks.containsKey(binder)) {
1116 Log.i(this, "removeVideoProvider - skipped; not present.");
1117 break;
1118 }
1119 mVideoCallbacks.remove(binder);
1120 break;
1121 }
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001122 case MSG_SET_CAMERA:
Tyler Gunnbf9c6fd2016-11-09 10:19:23 -08001123 {
1124 SomeArgs args = (SomeArgs) msg.obj;
1125 try {
1126 onSetCamera((String) args.arg1);
1127 onSetCamera((String) args.arg1, (String) args.arg2, args.argi1,
Tyler Gunn159f35c2017-03-02 09:28:37 -08001128 args.argi2, args.argi3);
Tyler Gunnbf9c6fd2016-11-09 10:19:23 -08001129 } finally {
1130 args.recycle();
1131 }
1132 }
1133 break;
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001134 case MSG_SET_PREVIEW_SURFACE:
1135 onSetPreviewSurface((Surface) msg.obj);
1136 break;
1137 case MSG_SET_DISPLAY_SURFACE:
1138 onSetDisplaySurface((Surface) msg.obj);
1139 break;
1140 case MSG_SET_DEVICE_ORIENTATION:
1141 onSetDeviceOrientation(msg.arg1);
1142 break;
1143 case MSG_SET_ZOOM:
1144 onSetZoom((Float) msg.obj);
1145 break;
Tyler Gunn45382162015-05-06 08:52:27 -07001146 case MSG_SEND_SESSION_MODIFY_REQUEST: {
1147 SomeArgs args = (SomeArgs) msg.obj;
1148 try {
1149 onSendSessionModifyRequest((VideoProfile) args.arg1,
1150 (VideoProfile) args.arg2);
1151 } finally {
1152 args.recycle();
1153 }
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001154 break;
Tyler Gunn45382162015-05-06 08:52:27 -07001155 }
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001156 case MSG_SEND_SESSION_MODIFY_RESPONSE:
1157 onSendSessionModifyResponse((VideoProfile) msg.obj);
1158 break;
1159 case MSG_REQUEST_CAMERA_CAPABILITIES:
1160 onRequestCameraCapabilities();
1161 break;
Ihab Awad5c9c86e2014-11-12 13:41:16 -08001162 case MSG_REQUEST_CONNECTION_DATA_USAGE:
1163 onRequestConnectionDataUsage();
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001164 break;
1165 case MSG_SET_PAUSE_IMAGE:
Yorke Lee32f24732015-05-12 16:18:03 -07001166 onSetPauseImage((Uri) msg.obj);
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001167 break;
1168 default:
1169 break;
1170 }
1171 }
1172 }
1173
1174 /**
1175 * IVideoProvider stub implementation.
1176 */
1177 private final class VideoProviderBinder extends IVideoProvider.Stub {
Tyler Gunn75958422015-04-15 14:23:42 -07001178 public void addVideoCallback(IBinder videoCallbackBinder) {
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001179 mMessageHandler.obtainMessage(
Tyler Gunn75958422015-04-15 14:23:42 -07001180 MSG_ADD_VIDEO_CALLBACK, videoCallbackBinder).sendToTarget();
1181 }
1182
1183 public void removeVideoCallback(IBinder videoCallbackBinder) {
1184 mMessageHandler.obtainMessage(
1185 MSG_REMOVE_VIDEO_CALLBACK, videoCallbackBinder).sendToTarget();
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001186 }
1187
Tyler Gunn159f35c2017-03-02 09:28:37 -08001188 public void setCamera(String cameraId, String callingPackageName,
1189 int targetSdkVersion) {
1190
Tyler Gunnbf9c6fd2016-11-09 10:19:23 -08001191 SomeArgs args = SomeArgs.obtain();
1192 args.arg1 = cameraId;
1193 // Propagate the calling package; originally determined in
1194 // android.telecom.InCallService.VideoCall#setCamera(String) from the calling
1195 // process.
1196 args.arg2 = callingPackageName;
1197 // Pass along the uid and pid of the calling app; this gets lost when we put the
1198 // message onto the handler. These are required for Telecom to perform a permission
1199 // check to see if the calling app is able to use the camera.
1200 args.argi1 = Binder.getCallingUid();
1201 args.argi2 = Binder.getCallingPid();
Tyler Gunn159f35c2017-03-02 09:28:37 -08001202 // Pass along the target SDK version of the calling InCallService. This is used to
1203 // maintain backwards compatibility of the API for older callers.
1204 args.argi3 = targetSdkVersion;
Tyler Gunnbf9c6fd2016-11-09 10:19:23 -08001205 mMessageHandler.obtainMessage(MSG_SET_CAMERA, args).sendToTarget();
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001206 }
1207
1208 public void setPreviewSurface(Surface surface) {
1209 mMessageHandler.obtainMessage(MSG_SET_PREVIEW_SURFACE, surface).sendToTarget();
1210 }
1211
1212 public void setDisplaySurface(Surface surface) {
1213 mMessageHandler.obtainMessage(MSG_SET_DISPLAY_SURFACE, surface).sendToTarget();
1214 }
1215
1216 public void setDeviceOrientation(int rotation) {
Rekha Kumar07366812015-03-24 16:42:31 -07001217 mMessageHandler.obtainMessage(
1218 MSG_SET_DEVICE_ORIENTATION, rotation, 0).sendToTarget();
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001219 }
1220
1221 public void setZoom(float value) {
1222 mMessageHandler.obtainMessage(MSG_SET_ZOOM, value).sendToTarget();
1223 }
1224
Tyler Gunn45382162015-05-06 08:52:27 -07001225 public void sendSessionModifyRequest(VideoProfile fromProfile, VideoProfile toProfile) {
1226 SomeArgs args = SomeArgs.obtain();
1227 args.arg1 = fromProfile;
1228 args.arg2 = toProfile;
1229 mMessageHandler.obtainMessage(MSG_SEND_SESSION_MODIFY_REQUEST, args).sendToTarget();
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001230 }
1231
1232 public void sendSessionModifyResponse(VideoProfile responseProfile) {
1233 mMessageHandler.obtainMessage(
1234 MSG_SEND_SESSION_MODIFY_RESPONSE, responseProfile).sendToTarget();
1235 }
1236
1237 public void requestCameraCapabilities() {
1238 mMessageHandler.obtainMessage(MSG_REQUEST_CAMERA_CAPABILITIES).sendToTarget();
1239 }
1240
1241 public void requestCallDataUsage() {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08001242 mMessageHandler.obtainMessage(MSG_REQUEST_CONNECTION_DATA_USAGE).sendToTarget();
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001243 }
1244
Yorke Lee32f24732015-05-12 16:18:03 -07001245 public void setPauseImage(Uri uri) {
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001246 mMessageHandler.obtainMessage(MSG_SET_PAUSE_IMAGE, uri).sendToTarget();
1247 }
1248 }
1249
1250 public VideoProvider() {
1251 mBinder = new VideoProvider.VideoProviderBinder();
Tyler Gunn84f381b2015-06-12 09:26:45 -07001252 mMessageHandler = new VideoProvider.VideoProviderHandler(Looper.getMainLooper());
Tyler Gunn4e9bbaf2015-05-22 15:43:28 -07001253 }
1254
1255 /**
1256 * Creates an instance of the {@link VideoProvider}, specifying the looper to use.
1257 *
1258 * @param looper The looper.
1259 * @hide
1260 */
1261 public VideoProvider(Looper looper) {
1262 mBinder = new VideoProvider.VideoProviderBinder();
1263 mMessageHandler = new VideoProvider.VideoProviderHandler(looper);
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001264 }
1265
1266 /**
1267 * Returns binder object which can be used across IPC methods.
1268 * @hide
1269 */
1270 public final IVideoProvider getInterface() {
1271 return mBinder;
1272 }
1273
1274 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -07001275 * Sets the camera to be used for the outgoing video.
1276 * <p>
1277 * The {@link VideoProvider} should respond by communicating the capabilities of the chosen
1278 * camera via
1279 * {@link VideoProvider#changeCameraCapabilities(VideoProfile.CameraCapabilities)}.
1280 * <p>
1281 * Sent from the {@link InCallService} via
1282 * {@link InCallService.VideoCall#setCamera(String)}.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001283 *
Tyler Gunnb702ef82015-05-29 11:51:53 -07001284 * @param cameraId The id of the camera (use ids as reported by
1285 * {@link CameraManager#getCameraIdList()}).
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001286 */
1287 public abstract void onSetCamera(String cameraId);
1288
1289 /**
Tyler Gunnbf9c6fd2016-11-09 10:19:23 -08001290 * Sets the camera to be used for the outgoing video.
1291 * <p>
1292 * The {@link VideoProvider} should respond by communicating the capabilities of the chosen
1293 * camera via
1294 * {@link VideoProvider#changeCameraCapabilities(VideoProfile.CameraCapabilities)}.
1295 * <p>
1296 * This prototype is used internally to ensure that the calling package name, UID and PID
1297 * are sent to Telecom so that can perform a camera permission check on the caller.
1298 * <p>
1299 * Sent from the {@link InCallService} via
1300 * {@link InCallService.VideoCall#setCamera(String)}.
1301 *
1302 * @param cameraId The id of the camera (use ids as reported by
1303 * {@link CameraManager#getCameraIdList()}).
1304 * @param callingPackageName The AppOpps package name of the caller.
1305 * @param callingUid The UID of the caller.
1306 * @param callingPid The PID of the caller.
Tyler Gunn159f35c2017-03-02 09:28:37 -08001307 * @param targetSdkVersion The target SDK version of the caller.
Tyler Gunnbf9c6fd2016-11-09 10:19:23 -08001308 * @hide
1309 */
1310 public void onSetCamera(String cameraId, String callingPackageName, int callingUid,
Tyler Gunn159f35c2017-03-02 09:28:37 -08001311 int callingPid, int targetSdkVersion) {}
Tyler Gunnbf9c6fd2016-11-09 10:19:23 -08001312
1313 /**
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001314 * Sets the surface to be used for displaying a preview of what the user's camera is
1315 * currently capturing. When video transmission is enabled, this is the video signal which
1316 * is sent to the remote device.
Tyler Gunnb702ef82015-05-29 11:51:53 -07001317 * <p>
1318 * Sent from the {@link InCallService} via
1319 * {@link InCallService.VideoCall#setPreviewSurface(Surface)}.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001320 *
Tyler Gunnb702ef82015-05-29 11:51:53 -07001321 * @param surface The {@link Surface}.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001322 */
1323 public abstract void onSetPreviewSurface(Surface surface);
1324
1325 /**
1326 * Sets the surface to be used for displaying the video received from the remote device.
Tyler Gunnb702ef82015-05-29 11:51:53 -07001327 * <p>
1328 * Sent from the {@link InCallService} via
1329 * {@link InCallService.VideoCall#setDisplaySurface(Surface)}.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001330 *
Tyler Gunnb702ef82015-05-29 11:51:53 -07001331 * @param surface The {@link Surface}.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001332 */
1333 public abstract void onSetDisplaySurface(Surface surface);
1334
1335 /**
1336 * Sets the device orientation, in degrees. Assumes that a standard portrait orientation of
1337 * the device is 0 degrees.
Tyler Gunnb702ef82015-05-29 11:51:53 -07001338 * <p>
1339 * Sent from the {@link InCallService} via
1340 * {@link InCallService.VideoCall#setDeviceOrientation(int)}.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001341 *
1342 * @param rotation The device orientation, in degrees.
1343 */
1344 public abstract void onSetDeviceOrientation(int rotation);
1345
1346 /**
1347 * Sets camera zoom ratio.
Tyler Gunnb702ef82015-05-29 11:51:53 -07001348 * <p>
1349 * Sent from the {@link InCallService} via {@link InCallService.VideoCall#setZoom(float)}.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001350 *
1351 * @param value The camera zoom ratio.
1352 */
1353 public abstract void onSetZoom(float value);
1354
1355 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -07001356 * Issues a request to modify the properties of the current video session.
1357 * <p>
1358 * Example scenarios include: requesting an audio-only call to be upgraded to a
1359 * bi-directional video call, turning on or off the user's camera, sending a pause signal
1360 * when the {@link InCallService} is no longer the foreground application.
1361 * <p>
1362 * If the {@link VideoProvider} determines a request to be invalid, it should call
1363 * {@link #receiveSessionModifyResponse(int, VideoProfile, VideoProfile)} to report the
1364 * invalid request back to the {@link InCallService}.
1365 * <p>
1366 * Where a request requires confirmation from the user of the peer device, the
1367 * {@link VideoProvider} must communicate the request to the peer device and handle the
1368 * user's response. {@link #receiveSessionModifyResponse(int, VideoProfile, VideoProfile)}
1369 * is used to inform the {@link InCallService} of the result of the request.
1370 * <p>
1371 * Sent from the {@link InCallService} via
1372 * {@link InCallService.VideoCall#sendSessionModifyRequest(VideoProfile)}.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001373 *
Tyler Gunnb702ef82015-05-29 11:51:53 -07001374 * @param fromProfile The video profile prior to the request.
1375 * @param toProfile The video profile with the requested changes made.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001376 */
Tyler Gunn45382162015-05-06 08:52:27 -07001377 public abstract void onSendSessionModifyRequest(VideoProfile fromProfile,
1378 VideoProfile toProfile);
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001379
Tyler Gunnb702ef82015-05-29 11:51:53 -07001380 /**
1381 * Provides a response to a request to change the current video session properties.
1382 * <p>
1383 * For example, if the peer requests and upgrade from an audio-only call to a bi-directional
1384 * video call, could decline the request and keep the call as audio-only.
1385 * In such a scenario, the {@code responseProfile} would have a video state of
1386 * {@link VideoProfile#STATE_AUDIO_ONLY}. If the user had decided to accept the request,
1387 * the video state would be {@link VideoProfile#STATE_BIDIRECTIONAL}.
1388 * <p>
1389 * Sent from the {@link InCallService} via
1390 * {@link InCallService.VideoCall#sendSessionModifyResponse(VideoProfile)} in response to
1391 * a {@link InCallService.VideoCall.Callback#onSessionModifyRequestReceived(VideoProfile)}
1392 * callback.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001393 *
Tyler Gunnb702ef82015-05-29 11:51:53 -07001394 * @param responseProfile The response video profile.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001395 */
1396 public abstract void onSendSessionModifyResponse(VideoProfile responseProfile);
1397
1398 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -07001399 * Issues a request to the {@link VideoProvider} to retrieve the camera capabilities.
1400 * <p>
1401 * The {@link VideoProvider} should respond by communicating the capabilities of the chosen
1402 * camera via
1403 * {@link VideoProvider#changeCameraCapabilities(VideoProfile.CameraCapabilities)}.
1404 * <p>
1405 * Sent from the {@link InCallService} via
1406 * {@link InCallService.VideoCall#requestCameraCapabilities()}.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001407 */
1408 public abstract void onRequestCameraCapabilities();
1409
1410 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -07001411 * Issues a request to the {@link VideoProvider} to retrieve the current data usage for the
1412 * video component of the current {@link Connection}.
1413 * <p>
1414 * The {@link VideoProvider} should respond by communicating current data usage, in bytes,
1415 * via {@link VideoProvider#setCallDataUsage(long)}.
1416 * <p>
1417 * Sent from the {@link InCallService} via
1418 * {@link InCallService.VideoCall#requestCallDataUsage()}.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001419 */
Ihab Awad5c9c86e2014-11-12 13:41:16 -08001420 public abstract void onRequestConnectionDataUsage();
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001421
1422 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -07001423 * Provides the {@link VideoProvider} with the {@link Uri} of an image to be displayed to
1424 * the peer device when the video signal is paused.
1425 * <p>
1426 * Sent from the {@link InCallService} via
1427 * {@link InCallService.VideoCall#setPauseImage(Uri)}.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001428 *
1429 * @param uri URI of image to display.
1430 */
Yorke Lee32f24732015-05-12 16:18:03 -07001431 public abstract void onSetPauseImage(Uri uri);
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001432
1433 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -07001434 * Used to inform listening {@link InCallService} implementations when the
1435 * {@link VideoProvider} receives a session modification request.
1436 * <p>
1437 * Received by the {@link InCallService} via
1438 * {@link InCallService.VideoCall.Callback#onSessionModifyRequestReceived(VideoProfile)},
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001439 *
Tyler Gunnb702ef82015-05-29 11:51:53 -07001440 * @param videoProfile The requested video profile.
1441 * @see #onSendSessionModifyRequest(VideoProfile, VideoProfile)
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001442 */
1443 public void receiveSessionModifyRequest(VideoProfile videoProfile) {
Tyler Gunn75958422015-04-15 14:23:42 -07001444 if (mVideoCallbacks != null) {
Tyler Gunn84f381b2015-06-12 09:26:45 -07001445 for (IVideoCallback callback : mVideoCallbacks.values()) {
1446 try {
Tyler Gunn75958422015-04-15 14:23:42 -07001447 callback.receiveSessionModifyRequest(videoProfile);
Tyler Gunn84f381b2015-06-12 09:26:45 -07001448 } catch (RemoteException ignored) {
1449 Log.w(this, "receiveSessionModifyRequest callback failed", ignored);
Tyler Gunn75958422015-04-15 14:23:42 -07001450 }
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001451 }
1452 }
1453 }
1454
1455 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -07001456 * Used to inform listening {@link InCallService} implementations when the
1457 * {@link VideoProvider} receives a response to a session modification request.
1458 * <p>
1459 * Received by the {@link InCallService} via
1460 * {@link InCallService.VideoCall.Callback#onSessionModifyResponseReceived(int,
1461 * VideoProfile, VideoProfile)}.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001462 *
1463 * @param status Status of the session modify request. Valid values are
1464 * {@link VideoProvider#SESSION_MODIFY_REQUEST_SUCCESS},
1465 * {@link VideoProvider#SESSION_MODIFY_REQUEST_FAIL},
Tyler Gunnb702ef82015-05-29 11:51:53 -07001466 * {@link VideoProvider#SESSION_MODIFY_REQUEST_INVALID},
1467 * {@link VideoProvider#SESSION_MODIFY_REQUEST_TIMED_OUT},
1468 * {@link VideoProvider#SESSION_MODIFY_REQUEST_REJECTED_BY_REMOTE}
1469 * @param requestedProfile The original request which was sent to the peer device.
1470 * @param responseProfile The actual profile changes agreed to by the peer device.
1471 * @see #onSendSessionModifyRequest(VideoProfile, VideoProfile)
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001472 */
1473 public void receiveSessionModifyResponse(int status,
1474 VideoProfile requestedProfile, VideoProfile responseProfile) {
Tyler Gunn75958422015-04-15 14:23:42 -07001475 if (mVideoCallbacks != null) {
Tyler Gunn84f381b2015-06-12 09:26:45 -07001476 for (IVideoCallback callback : mVideoCallbacks.values()) {
1477 try {
Tyler Gunn75958422015-04-15 14:23:42 -07001478 callback.receiveSessionModifyResponse(status, requestedProfile,
1479 responseProfile);
Tyler Gunn84f381b2015-06-12 09:26:45 -07001480 } catch (RemoteException ignored) {
1481 Log.w(this, "receiveSessionModifyResponse callback failed", ignored);
Tyler Gunn75958422015-04-15 14:23:42 -07001482 }
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001483 }
1484 }
1485 }
1486
1487 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -07001488 * Used to inform listening {@link InCallService} implementations when the
1489 * {@link VideoProvider} reports a call session event.
1490 * <p>
1491 * Received by the {@link InCallService} via
1492 * {@link InCallService.VideoCall.Callback#onCallSessionEvent(int)}.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001493 *
Tyler Gunnb702ef82015-05-29 11:51:53 -07001494 * @param event The event. Valid values are: {@link VideoProvider#SESSION_EVENT_RX_PAUSE},
1495 * {@link VideoProvider#SESSION_EVENT_RX_RESUME},
1496 * {@link VideoProvider#SESSION_EVENT_TX_START},
1497 * {@link VideoProvider#SESSION_EVENT_TX_STOP},
1498 * {@link VideoProvider#SESSION_EVENT_CAMERA_FAILURE},
Tyler Gunnbf9c6fd2016-11-09 10:19:23 -08001499 * {@link VideoProvider#SESSION_EVENT_CAMERA_READY},
1500 * {@link VideoProvider#SESSION_EVENT_CAMERA_FAILURE}.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001501 */
1502 public void handleCallSessionEvent(int event) {
Tyler Gunn75958422015-04-15 14:23:42 -07001503 if (mVideoCallbacks != null) {
Tyler Gunn84f381b2015-06-12 09:26:45 -07001504 for (IVideoCallback callback : mVideoCallbacks.values()) {
1505 try {
Tyler Gunn75958422015-04-15 14:23:42 -07001506 callback.handleCallSessionEvent(event);
Tyler Gunn84f381b2015-06-12 09:26:45 -07001507 } catch (RemoteException ignored) {
1508 Log.w(this, "handleCallSessionEvent callback failed", ignored);
Tyler Gunn75958422015-04-15 14:23:42 -07001509 }
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001510 }
1511 }
1512 }
1513
1514 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -07001515 * Used to inform listening {@link InCallService} implementations when the dimensions of the
1516 * peer's video have changed.
1517 * <p>
1518 * This could occur if, for example, the peer rotates their device, changing the aspect
1519 * ratio of the video, or if the user switches between the back and front cameras.
1520 * <p>
1521 * Received by the {@link InCallService} via
1522 * {@link InCallService.VideoCall.Callback#onPeerDimensionsChanged(int, int)}.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001523 *
1524 * @param width The updated peer video width.
1525 * @param height The updated peer video height.
1526 */
1527 public void changePeerDimensions(int width, int height) {
Tyler Gunn75958422015-04-15 14:23:42 -07001528 if (mVideoCallbacks != null) {
Tyler Gunn84f381b2015-06-12 09:26:45 -07001529 for (IVideoCallback callback : mVideoCallbacks.values()) {
1530 try {
Tyler Gunn75958422015-04-15 14:23:42 -07001531 callback.changePeerDimensions(width, height);
Tyler Gunn84f381b2015-06-12 09:26:45 -07001532 } catch (RemoteException ignored) {
1533 Log.w(this, "changePeerDimensions callback failed", ignored);
Tyler Gunn75958422015-04-15 14:23:42 -07001534 }
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001535 }
1536 }
1537 }
1538
1539 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -07001540 * Used to inform listening {@link InCallService} implementations when the data usage of the
1541 * video associated with the current {@link Connection} has changed.
1542 * <p>
1543 * This could be in response to a preview request via
1544 * {@link #onRequestConnectionDataUsage()}, or as a periodic update by the
Tyler Gunn295f5d72015-06-04 11:08:54 -07001545 * {@link VideoProvider}. Where periodic updates of data usage are provided, they should be
1546 * provided at most for every 1 MB of data transferred and no more than once every 10 sec.
Tyler Gunnb702ef82015-05-29 11:51:53 -07001547 * <p>
1548 * Received by the {@link InCallService} via
1549 * {@link InCallService.VideoCall.Callback#onCallDataUsageChanged(long)}.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001550 *
Tyler Gunnb702ef82015-05-29 11:51:53 -07001551 * @param dataUsage The updated data usage (in bytes). Reported as the cumulative bytes
1552 * used since the start of the call.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001553 */
Yorke Lee32f24732015-05-12 16:18:03 -07001554 public void setCallDataUsage(long dataUsage) {
Tyler Gunn75958422015-04-15 14:23:42 -07001555 if (mVideoCallbacks != null) {
Tyler Gunn84f381b2015-06-12 09:26:45 -07001556 for (IVideoCallback callback : mVideoCallbacks.values()) {
1557 try {
Tyler Gunn75958422015-04-15 14:23:42 -07001558 callback.changeCallDataUsage(dataUsage);
Tyler Gunn84f381b2015-06-12 09:26:45 -07001559 } catch (RemoteException ignored) {
1560 Log.w(this, "setCallDataUsage callback failed", ignored);
Tyler Gunn75958422015-04-15 14:23:42 -07001561 }
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001562 }
1563 }
1564 }
1565
1566 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -07001567 * @see #setCallDataUsage(long)
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001568 *
Tyler Gunnb702ef82015-05-29 11:51:53 -07001569 * @param dataUsage The updated data usage (in byes).
Yorke Lee32f24732015-05-12 16:18:03 -07001570 * @deprecated - Use {@link #setCallDataUsage(long)} instead.
1571 * @hide
1572 */
1573 public void changeCallDataUsage(long dataUsage) {
1574 setCallDataUsage(dataUsage);
1575 }
1576
1577 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -07001578 * Used to inform listening {@link InCallService} implementations when the capabilities of
1579 * the current camera have changed.
1580 * <p>
1581 * The {@link VideoProvider} should call this in response to
1582 * {@link VideoProvider#onRequestCameraCapabilities()}, or when the current camera is
1583 * changed via {@link VideoProvider#onSetCamera(String)}.
1584 * <p>
1585 * Received by the {@link InCallService} via
1586 * {@link InCallService.VideoCall.Callback#onCameraCapabilitiesChanged(
1587 * VideoProfile.CameraCapabilities)}.
Yorke Lee32f24732015-05-12 16:18:03 -07001588 *
Tyler Gunnb702ef82015-05-29 11:51:53 -07001589 * @param cameraCapabilities The new camera capabilities.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001590 */
Yorke Lee400470f2015-05-12 13:31:25 -07001591 public void changeCameraCapabilities(VideoProfile.CameraCapabilities cameraCapabilities) {
Tyler Gunn75958422015-04-15 14:23:42 -07001592 if (mVideoCallbacks != null) {
Tyler Gunn84f381b2015-06-12 09:26:45 -07001593 for (IVideoCallback callback : mVideoCallbacks.values()) {
1594 try {
Tyler Gunn75958422015-04-15 14:23:42 -07001595 callback.changeCameraCapabilities(cameraCapabilities);
Tyler Gunn84f381b2015-06-12 09:26:45 -07001596 } catch (RemoteException ignored) {
1597 Log.w(this, "changeCameraCapabilities callback failed", ignored);
Tyler Gunn75958422015-04-15 14:23:42 -07001598 }
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001599 }
1600 }
1601 }
Rekha Kumar07366812015-03-24 16:42:31 -07001602
1603 /**
Tyler Gunnb702ef82015-05-29 11:51:53 -07001604 * Used to inform listening {@link InCallService} implementations when the video quality
1605 * of the call has changed.
1606 * <p>
1607 * Received by the {@link InCallService} via
1608 * {@link InCallService.VideoCall.Callback#onVideoQualityChanged(int)}.
Rekha Kumar07366812015-03-24 16:42:31 -07001609 *
Tyler Gunnb702ef82015-05-29 11:51:53 -07001610 * @param videoQuality The updated video quality. Valid values:
1611 * {@link VideoProfile#QUALITY_HIGH},
1612 * {@link VideoProfile#QUALITY_MEDIUM},
1613 * {@link VideoProfile#QUALITY_LOW},
1614 * {@link VideoProfile#QUALITY_DEFAULT}.
Rekha Kumar07366812015-03-24 16:42:31 -07001615 */
1616 public void changeVideoQuality(int videoQuality) {
Tyler Gunn75958422015-04-15 14:23:42 -07001617 if (mVideoCallbacks != null) {
Tyler Gunn84f381b2015-06-12 09:26:45 -07001618 for (IVideoCallback callback : mVideoCallbacks.values()) {
1619 try {
Tyler Gunn75958422015-04-15 14:23:42 -07001620 callback.changeVideoQuality(videoQuality);
Tyler Gunn84f381b2015-06-12 09:26:45 -07001621 } catch (RemoteException ignored) {
1622 Log.w(this, "changeVideoQuality callback failed", ignored);
Tyler Gunn75958422015-04-15 14:23:42 -07001623 }
Rekha Kumar07366812015-03-24 16:42:31 -07001624 }
1625 }
1626 }
Tyler Gunn6f657ee2016-09-02 09:55:25 -07001627
1628 /**
1629 * Returns a string representation of a call session event.
1630 *
1631 * @param event A call session event passed to {@link #handleCallSessionEvent(int)}.
1632 * @return String representation of the call session event.
1633 * @hide
1634 */
1635 public static String sessionEventToString(int event) {
1636 switch (event) {
1637 case SESSION_EVENT_CAMERA_FAILURE:
1638 return SESSION_EVENT_CAMERA_FAILURE_STR;
1639 case SESSION_EVENT_CAMERA_READY:
1640 return SESSION_EVENT_CAMERA_READY_STR;
1641 case SESSION_EVENT_RX_PAUSE:
1642 return SESSION_EVENT_RX_PAUSE_STR;
1643 case SESSION_EVENT_RX_RESUME:
1644 return SESSION_EVENT_RX_RESUME_STR;
1645 case SESSION_EVENT_TX_START:
1646 return SESSION_EVENT_TX_START_STR;
1647 case SESSION_EVENT_TX_STOP:
1648 return SESSION_EVENT_TX_STOP_STR;
Tyler Gunnbf9c6fd2016-11-09 10:19:23 -08001649 case SESSION_EVENT_CAMERA_PERMISSION_ERROR:
1650 return SESSION_EVENT_CAMERA_PERMISSION_ERROR_STR;
Tyler Gunn6f657ee2016-09-02 09:55:25 -07001651 default:
1652 return SESSION_EVENT_UNKNOWN_STR + " " + event;
1653 }
1654 }
Ihab Awad542e0ea2014-05-16 10:22:16 -07001655 }
1656
Santos Cordon7c7bc7f2014-07-28 18:15:48 -07001657 private final Listener mConnectionDeathListener = new Listener() {
1658 @Override
1659 public void onDestroyed(Connection c) {
Tyler Gunn6d76ca02014-11-17 15:49:51 -08001660 if (mConferenceables.remove(c)) {
1661 fireOnConferenceableConnectionsChanged();
1662 }
1663 }
1664 };
1665
1666 private final Conference.Listener mConferenceDeathListener = new Conference.Listener() {
1667 @Override
1668 public void onDestroyed(Conference c) {
1669 if (mConferenceables.remove(c)) {
Santos Cordon7c7bc7f2014-07-28 18:15:48 -07001670 fireOnConferenceableConnectionsChanged();
1671 }
1672 }
1673 };
1674
Jay Shrauner229e3822014-08-15 09:23:07 -07001675 /**
1676 * ConcurrentHashMap constructor params: 8 is initial table size, 0.9f is
1677 * load factor before resizing, 1 means we only expect a single thread to
1678 * access the map so make only a single shard
1679 */
1680 private final Set<Listener> mListeners = Collections.newSetFromMap(
1681 new ConcurrentHashMap<Listener, Boolean>(8, 0.9f, 1));
Tyler Gunndf2cbc82015-04-20 09:13:01 -07001682 private final List<Conferenceable> mConferenceables = new ArrayList<>();
1683 private final List<Conferenceable> mUnmodifiableConferenceables =
Tyler Gunn6d76ca02014-11-17 15:49:51 -08001684 Collections.unmodifiableList(mConferenceables);
Santos Cordonb6939982014-06-04 20:20:58 -07001685
Tyler Gunnf0500bd2015-09-01 10:59:48 -07001686 // The internal telecom call ID associated with this connection.
1687 private String mTelecomCallId;
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001688 private int mState = STATE_NEW;
Yorke Lee4af59352015-05-13 14:14:54 -07001689 private CallAudioState mCallAudioState;
Andrew Lee100e2932014-09-08 15:34:24 -07001690 private Uri mAddress;
1691 private int mAddressPresentation;
Sailesh Nepal61203862014-07-11 14:50:13 -07001692 private String mCallerDisplayName;
1693 private int mCallerDisplayNamePresentation;
Andrew Lee100e2932014-09-08 15:34:24 -07001694 private boolean mRingbackRequested = false;
Ihab Awad5c9c86e2014-11-12 13:41:16 -08001695 private int mConnectionCapabilities;
Tyler Gunn720c6642016-03-22 09:02:47 -07001696 private int mConnectionProperties;
Christine Hallstrom2830ce92016-11-30 16:06:42 -08001697 private int mSupportedAudioRoutes = CallAudioState.ROUTE_ALL;
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001698 private VideoProvider mVideoProvider;
Sailesh Nepal33aaae42014-07-07 22:49:44 -07001699 private boolean mAudioModeIsVoip;
Roshan Piuse927ec02015-07-15 15:47:21 -07001700 private long mConnectTimeMillis = Conference.CONNECT_TIME_NOT_SPECIFIED;
Sailesh Nepale7ef59a2014-07-08 21:48:22 -07001701 private StatusHints mStatusHints;
Tyler Gunnaa07df82014-07-17 07:50:22 -07001702 private int mVideoState;
Andrew Lee7f3d41f2014-09-11 17:33:16 -07001703 private DisconnectCause mDisconnectCause;
Santos Cordon823fd3c2014-08-07 18:35:18 -07001704 private Conference mConference;
1705 private ConnectionService mConnectionService;
Santos Cordon6b7f9552015-05-27 17:21:45 -07001706 private Bundle mExtras;
Brad Ebinger4fa6a012016-06-14 17:04:01 -07001707 private final Object mExtrasLock = new Object();
Ihab Awad542e0ea2014-05-16 10:22:16 -07001708
1709 /**
Tyler Gunndee56a82016-03-23 16:06:34 -07001710 * Tracks the key set for the extras bundle provided on the last invocation of
1711 * {@link #setExtras(Bundle)}. Used so that on subsequent invocations we can remove any extras
1712 * keys which were set previously but are no longer present in the replacement Bundle.
1713 */
1714 private Set<String> mPreviousExtraKeys;
1715
1716 /**
Ihab Awad542e0ea2014-05-16 10:22:16 -07001717 * Create a new Connection.
1718 */
Santos Cordonf2951102014-07-20 19:06:29 -07001719 public Connection() {}
Ihab Awad542e0ea2014-05-16 10:22:16 -07001720
1721 /**
Tyler Gunnf0500bd2015-09-01 10:59:48 -07001722 * Returns the Telecom internal call ID associated with this connection. Should only be used
1723 * for debugging and tracing purposes.
1724 *
1725 * @return The Telecom call ID.
1726 * @hide
1727 */
1728 public final String getTelecomCallId() {
1729 return mTelecomCallId;
1730 }
1731
1732 /**
Andrew Lee100e2932014-09-08 15:34:24 -07001733 * @return The address (e.g., phone number) to which this Connection is currently communicating.
Ihab Awad542e0ea2014-05-16 10:22:16 -07001734 */
Andrew Lee100e2932014-09-08 15:34:24 -07001735 public final Uri getAddress() {
1736 return mAddress;
Ihab Awad542e0ea2014-05-16 10:22:16 -07001737 }
1738
1739 /**
Andrew Lee100e2932014-09-08 15:34:24 -07001740 * @return The presentation requirements for the address.
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001741 * See {@link TelecomManager} for valid values.
Sailesh Nepal61203862014-07-11 14:50:13 -07001742 */
Andrew Lee100e2932014-09-08 15:34:24 -07001743 public final int getAddressPresentation() {
1744 return mAddressPresentation;
Sailesh Nepal61203862014-07-11 14:50:13 -07001745 }
1746
1747 /**
1748 * @return The caller display name (CNAP).
1749 */
1750 public final String getCallerDisplayName() {
1751 return mCallerDisplayName;
1752 }
1753
1754 /**
Nancy Chen9d568c02014-09-08 14:17:59 -07001755 * @return The presentation requirements for the handle.
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001756 * See {@link TelecomManager} for valid values.
Sailesh Nepal61203862014-07-11 14:50:13 -07001757 */
1758 public final int getCallerDisplayNamePresentation() {
1759 return mCallerDisplayNamePresentation;
1760 }
1761
1762 /**
Ihab Awad542e0ea2014-05-16 10:22:16 -07001763 * @return The state of this Connection.
Ihab Awad542e0ea2014-05-16 10:22:16 -07001764 */
1765 public final int getState() {
1766 return mState;
1767 }
1768
1769 /**
Ihab Awad5c9c86e2014-11-12 13:41:16 -08001770 * Returns the video state of the connection.
Yorke Lee32f24732015-05-12 16:18:03 -07001771 * Valid values: {@link VideoProfile#STATE_AUDIO_ONLY},
1772 * {@link VideoProfile#STATE_BIDIRECTIONAL},
1773 * {@link VideoProfile#STATE_TX_ENABLED},
1774 * {@link VideoProfile#STATE_RX_ENABLED}.
Tyler Gunnaa07df82014-07-17 07:50:22 -07001775 *
Ihab Awad5c9c86e2014-11-12 13:41:16 -08001776 * @return The video state of the connection.
Tyler Gunn27d1e252014-08-21 16:38:40 -07001777 * @hide
Tyler Gunnaa07df82014-07-17 07:50:22 -07001778 */
1779 public final int getVideoState() {
1780 return mVideoState;
1781 }
1782
1783 /**
Ihab Awad5c9c86e2014-11-12 13:41:16 -08001784 * @return The audio state of the connection, describing how its audio is currently
Ihab Awad542e0ea2014-05-16 10:22:16 -07001785 * being routed by the system. This is {@code null} if this Connection
1786 * does not directly know about its audio state.
Yorke Lee4af59352015-05-13 14:14:54 -07001787 * @deprecated Use {@link #getCallAudioState()} instead.
1788 * @hide
Ihab Awad542e0ea2014-05-16 10:22:16 -07001789 */
Yorke Lee4af59352015-05-13 14:14:54 -07001790 @SystemApi
1791 @Deprecated
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001792 public final AudioState getAudioState() {
Sailesh Nepal000d38a2015-06-21 10:25:13 -07001793 if (mCallAudioState == null) {
1794 return null;
1795 }
Yorke Lee4af59352015-05-13 14:14:54 -07001796 return new AudioState(mCallAudioState);
1797 }
1798
1799 /**
1800 * @return The audio state of the connection, describing how its audio is currently
1801 * being routed by the system. This is {@code null} if this Connection
1802 * does not directly know about its audio state.
1803 */
1804 public final CallAudioState getCallAudioState() {
1805 return mCallAudioState;
Ihab Awad542e0ea2014-05-16 10:22:16 -07001806 }
1807
1808 /**
Santos Cordon823fd3c2014-08-07 18:35:18 -07001809 * @return The conference that this connection is a part of. Null if it is not part of any
1810 * conference.
1811 */
1812 public final Conference getConference() {
1813 return mConference;
1814 }
1815
1816 /**
Sailesh Nepal2a46b902014-07-04 17:21:07 -07001817 * Returns whether this connection is requesting that the system play a ringback tone
1818 * on its behalf.
1819 */
Andrew Lee100e2932014-09-08 15:34:24 -07001820 public final boolean isRingbackRequested() {
1821 return mRingbackRequested;
Sailesh Nepal2a46b902014-07-04 17:21:07 -07001822 }
1823
1824 /**
Sailesh Nepal33aaae42014-07-07 22:49:44 -07001825 * @return True if the connection's audio mode is VOIP.
1826 */
1827 public final boolean getAudioModeIsVoip() {
1828 return mAudioModeIsVoip;
1829 }
1830
1831 /**
Roshan Piuse927ec02015-07-15 15:47:21 -07001832 * Retrieves the connection start time of the {@code Connnection}, if specified. A value of
1833 * {@link Conference#CONNECT_TIME_NOT_SPECIFIED} indicates that Telecom should determine the
1834 * start time of the conference.
1835 *
1836 * @return The time at which the {@code Connnection} was connected.
1837 *
1838 * @hide
1839 */
1840 public final long getConnectTimeMillis() {
1841 return mConnectTimeMillis;
1842 }
1843
1844 /**
Sailesh Nepale7ef59a2014-07-08 21:48:22 -07001845 * @return The status hints for this connection.
1846 */
1847 public final StatusHints getStatusHints() {
1848 return mStatusHints;
1849 }
1850
1851 /**
Tyler Gunndee56a82016-03-23 16:06:34 -07001852 * Returns the extras associated with this connection.
Tyler Gunn2cbe2b52016-05-04 15:48:10 +00001853 * <p>
1854 * Extras should be updated using {@link #putExtras(Bundle)}.
1855 * <p>
1856 * Telecom or an {@link InCallService} can also update the extras via
1857 * {@link android.telecom.Call#putExtras(Bundle)}, and
1858 * {@link Call#removeExtras(List)}.
1859 * <p>
1860 * The connection is notified of changes to the extras made by Telecom or an
1861 * {@link InCallService} by {@link #onExtrasChanged(Bundle)}.
Tyler Gunndee56a82016-03-23 16:06:34 -07001862 *
Santos Cordon6b7f9552015-05-27 17:21:45 -07001863 * @return The extras associated with this connection.
1864 */
1865 public final Bundle getExtras() {
Brad Ebinger4fa6a012016-06-14 17:04:01 -07001866 Bundle extras = null;
1867 synchronized (mExtrasLock) {
1868 if (mExtras != null) {
1869 extras = new Bundle(mExtras);
1870 }
1871 }
1872 return extras;
Santos Cordon6b7f9552015-05-27 17:21:45 -07001873 }
1874
1875 /**
Ihab Awad542e0ea2014-05-16 10:22:16 -07001876 * Assign a listener to be notified of state changes.
1877 *
1878 * @param l A listener.
1879 * @return This Connection.
1880 *
1881 * @hide
1882 */
1883 public final Connection addConnectionListener(Listener l) {
Santos Cordond34e5712014-08-05 18:54:03 +00001884 mListeners.add(l);
Ihab Awad542e0ea2014-05-16 10:22:16 -07001885 return this;
1886 }
1887
1888 /**
1889 * Remove a previously assigned listener that was being notified of state changes.
1890 *
1891 * @param l A Listener.
1892 * @return This Connection.
1893 *
1894 * @hide
1895 */
1896 public final Connection removeConnectionListener(Listener l) {
Jay Shrauner229e3822014-08-15 09:23:07 -07001897 if (l != null) {
1898 mListeners.remove(l);
1899 }
Ihab Awad542e0ea2014-05-16 10:22:16 -07001900 return this;
1901 }
1902
1903 /**
Sailesh Nepalcf7020b2014-08-20 10:07:19 -07001904 * @return The {@link DisconnectCause} for this connection.
Evan Charltonbf11f982014-07-20 22:06:28 -07001905 */
Andrew Lee7f3d41f2014-09-11 17:33:16 -07001906 public final DisconnectCause getDisconnectCause() {
Sailesh Nepalcf7020b2014-08-20 10:07:19 -07001907 return mDisconnectCause;
Evan Charltonbf11f982014-07-20 22:06:28 -07001908 }
1909
1910 /**
Tyler Gunnf0500bd2015-09-01 10:59:48 -07001911 * Sets the telecom call ID associated with this Connection. The Telecom Call ID should be used
1912 * ONLY for debugging purposes.
1913 *
1914 * @param callId The telecom call ID.
1915 * @hide
1916 */
1917 public void setTelecomCallId(String callId) {
1918 mTelecomCallId = callId;
1919 }
1920
1921 /**
Ihab Awad542e0ea2014-05-16 10:22:16 -07001922 * Inform this Connection that the state of its audio output has been changed externally.
1923 *
1924 * @param state The new audio state.
Sailesh Nepal400cc482014-06-26 12:04:00 -07001925 * @hide
Ihab Awad542e0ea2014-05-16 10:22:16 -07001926 */
Yorke Lee4af59352015-05-13 14:14:54 -07001927 final void setCallAudioState(CallAudioState state) {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08001928 checkImmutable();
Ihab Awad60ac30b2014-05-20 22:32:12 -07001929 Log.d(this, "setAudioState %s", state);
Yorke Lee4af59352015-05-13 14:14:54 -07001930 mCallAudioState = state;
1931 onAudioStateChanged(getAudioState());
1932 onCallAudioStateChanged(state);
Ihab Awad542e0ea2014-05-16 10:22:16 -07001933 }
1934
1935 /**
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001936 * @param state An integer value of a {@code STATE_*} constant.
Ihab Awad542e0ea2014-05-16 10:22:16 -07001937 * @return A string representation of the value.
1938 */
1939 public static String stateToString(int state) {
1940 switch (state) {
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001941 case STATE_INITIALIZING:
Yorke Leee911c8d2015-07-14 11:39:36 -07001942 return "INITIALIZING";
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001943 case STATE_NEW:
Yorke Leee911c8d2015-07-14 11:39:36 -07001944 return "NEW";
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001945 case STATE_RINGING:
Yorke Leee911c8d2015-07-14 11:39:36 -07001946 return "RINGING";
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001947 case STATE_DIALING:
Yorke Leee911c8d2015-07-14 11:39:36 -07001948 return "DIALING";
Tyler Gunnc96b5e02016-07-07 22:53:57 -07001949 case STATE_PULLING_CALL:
1950 return "PULLING_CALL";
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001951 case STATE_ACTIVE:
Yorke Leee911c8d2015-07-14 11:39:36 -07001952 return "ACTIVE";
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001953 case STATE_HOLDING:
Yorke Leee911c8d2015-07-14 11:39:36 -07001954 return "HOLDING";
Ihab Awadb19a0bc2014-08-07 19:46:01 -07001955 case STATE_DISCONNECTED:
Ihab Awad542e0ea2014-05-16 10:22:16 -07001956 return "DISCONNECTED";
1957 default:
Ihab Awad60ac30b2014-05-20 22:32:12 -07001958 Log.wtf(Connection.class, "Unknown state %d", state);
Ihab Awad542e0ea2014-05-16 10:22:16 -07001959 return "UNKNOWN";
1960 }
1961 }
1962
1963 /**
Ihab Awad5c9c86e2014-11-12 13:41:16 -08001964 * Returns the connection's capabilities, as a bit mask of the {@code CAPABILITY_*} constants.
Ihab Awad52a28f62014-06-18 10:26:34 -07001965 */
Ihab Awad5c9c86e2014-11-12 13:41:16 -08001966 public final int getConnectionCapabilities() {
1967 return mConnectionCapabilities;
Ihab Awad52a28f62014-06-18 10:26:34 -07001968 }
1969
1970 /**
Tyler Gunn720c6642016-03-22 09:02:47 -07001971 * Returns the connection's properties, as a bit mask of the {@code PROPERTY_*} constants.
1972 */
1973 public final int getConnectionProperties() {
1974 return mConnectionProperties;
1975 }
1976
1977 /**
Christine Hallstrom2830ce92016-11-30 16:06:42 -08001978 * Returns the connection's supported audio routes.
1979 *
1980 * @hide
1981 */
1982 public final int getSupportedAudioRoutes() {
1983 return mSupportedAudioRoutes;
1984 }
1985
1986 /**
Andrew Lee100e2932014-09-08 15:34:24 -07001987 * Sets the value of the {@link #getAddress()} property.
Ihab Awad542e0ea2014-05-16 10:22:16 -07001988 *
Andrew Lee100e2932014-09-08 15:34:24 -07001989 * @param address The new address.
1990 * @param presentation The presentation requirements for the address.
Tyler Gunnef9f6f92014-09-12 22:16:17 -07001991 * See {@link TelecomManager} for valid values.
Ihab Awad542e0ea2014-05-16 10:22:16 -07001992 */
Andrew Lee100e2932014-09-08 15:34:24 -07001993 public final void setAddress(Uri address, int presentation) {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08001994 checkImmutable();
Andrew Lee100e2932014-09-08 15:34:24 -07001995 Log.d(this, "setAddress %s", address);
1996 mAddress = address;
1997 mAddressPresentation = presentation;
Santos Cordond34e5712014-08-05 18:54:03 +00001998 for (Listener l : mListeners) {
Andrew Lee100e2932014-09-08 15:34:24 -07001999 l.onAddressChanged(this, address, presentation);
Santos Cordond34e5712014-08-05 18:54:03 +00002000 }
Ihab Awad542e0ea2014-05-16 10:22:16 -07002001 }
2002
2003 /**
Sailesh Nepal61203862014-07-11 14:50:13 -07002004 * Sets the caller display name (CNAP).
Sailesh Nepal2a46b902014-07-04 17:21:07 -07002005 *
Sailesh Nepal61203862014-07-11 14:50:13 -07002006 * @param callerDisplayName The new display name.
Nancy Chen9d568c02014-09-08 14:17:59 -07002007 * @param presentation The presentation requirements for the handle.
Tyler Gunnef9f6f92014-09-12 22:16:17 -07002008 * See {@link TelecomManager} for valid values.
Sailesh Nepal2a46b902014-07-04 17:21:07 -07002009 */
Sailesh Nepal61203862014-07-11 14:50:13 -07002010 public final void setCallerDisplayName(String callerDisplayName, int presentation) {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002011 checkImmutable();
Sailesh Nepal61203862014-07-11 14:50:13 -07002012 Log.d(this, "setCallerDisplayName %s", callerDisplayName);
Santos Cordond34e5712014-08-05 18:54:03 +00002013 mCallerDisplayName = callerDisplayName;
2014 mCallerDisplayNamePresentation = presentation;
2015 for (Listener l : mListeners) {
2016 l.onCallerDisplayNameChanged(this, callerDisplayName, presentation);
2017 }
Sailesh Nepal2a46b902014-07-04 17:21:07 -07002018 }
2019
2020 /**
Tyler Gunnaa07df82014-07-17 07:50:22 -07002021 * Set the video state for the connection.
Yorke Lee32f24732015-05-12 16:18:03 -07002022 * Valid values: {@link VideoProfile#STATE_AUDIO_ONLY},
2023 * {@link VideoProfile#STATE_BIDIRECTIONAL},
2024 * {@link VideoProfile#STATE_TX_ENABLED},
2025 * {@link VideoProfile#STATE_RX_ENABLED}.
Tyler Gunnaa07df82014-07-17 07:50:22 -07002026 *
2027 * @param videoState The new video state.
2028 */
2029 public final void setVideoState(int videoState) {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002030 checkImmutable();
Tyler Gunnaa07df82014-07-17 07:50:22 -07002031 Log.d(this, "setVideoState %d", videoState);
Santos Cordond34e5712014-08-05 18:54:03 +00002032 mVideoState = videoState;
2033 for (Listener l : mListeners) {
2034 l.onVideoStateChanged(this, mVideoState);
2035 }
Tyler Gunnaa07df82014-07-17 07:50:22 -07002036 }
2037
2038 /**
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002039 * Sets state to active (e.g., an ongoing connection where two or more parties can actively
Ihab Awad542e0ea2014-05-16 10:22:16 -07002040 * communicate).
2041 */
Sailesh Nepal400cc482014-06-26 12:04:00 -07002042 public final void setActive() {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002043 checkImmutable();
Andrew Lee100e2932014-09-08 15:34:24 -07002044 setRingbackRequested(false);
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002045 setState(STATE_ACTIVE);
Ihab Awad542e0ea2014-05-16 10:22:16 -07002046 }
2047
2048 /**
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002049 * Sets state to ringing (e.g., an inbound ringing connection).
Ihab Awad542e0ea2014-05-16 10:22:16 -07002050 */
Sailesh Nepal400cc482014-06-26 12:04:00 -07002051 public final void setRinging() {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002052 checkImmutable();
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002053 setState(STATE_RINGING);
Ihab Awad542e0ea2014-05-16 10:22:16 -07002054 }
2055
2056 /**
Evan Charltonbf11f982014-07-20 22:06:28 -07002057 * Sets state to initializing (this Connection is not yet ready to be used).
2058 */
2059 public final void setInitializing() {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002060 checkImmutable();
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002061 setState(STATE_INITIALIZING);
Evan Charltonbf11f982014-07-20 22:06:28 -07002062 }
2063
2064 /**
2065 * Sets state to initialized (the Connection has been set up and is now ready to be used).
2066 */
2067 public final void setInitialized() {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002068 checkImmutable();
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002069 setState(STATE_NEW);
Evan Charltonbf11f982014-07-20 22:06:28 -07002070 }
2071
2072 /**
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002073 * Sets state to dialing (e.g., dialing an outbound connection).
Ihab Awad542e0ea2014-05-16 10:22:16 -07002074 */
Sailesh Nepal400cc482014-06-26 12:04:00 -07002075 public final void setDialing() {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002076 checkImmutable();
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002077 setState(STATE_DIALING);
Ihab Awad542e0ea2014-05-16 10:22:16 -07002078 }
2079
2080 /**
Tyler Gunnc242ceb2016-06-29 22:35:45 -07002081 * Sets state to pulling (e.g. the connection is being pulled to the local device from another
2082 * device). Only applicable for {@link Connection}s with
2083 * {@link Connection#PROPERTY_IS_EXTERNAL_CALL} and {@link Connection#CAPABILITY_CAN_PULL_CALL}.
2084 */
2085 public final void setPulling() {
2086 checkImmutable();
2087 setState(STATE_PULLING_CALL);
2088 }
2089
2090 /**
Ihab Awad542e0ea2014-05-16 10:22:16 -07002091 * Sets state to be on hold.
2092 */
Sailesh Nepal400cc482014-06-26 12:04:00 -07002093 public final void setOnHold() {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002094 checkImmutable();
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002095 setState(STATE_HOLDING);
Ihab Awad542e0ea2014-05-16 10:22:16 -07002096 }
2097
2098 /**
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002099 * Sets the video connection provider.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002100 * @param videoProvider The video provider.
Andrew Lee5ffbe8b82014-06-20 16:29:33 -07002101 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002102 public final void setVideoProvider(VideoProvider videoProvider) {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002103 checkImmutable();
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002104 mVideoProvider = videoProvider;
Santos Cordond34e5712014-08-05 18:54:03 +00002105 for (Listener l : mListeners) {
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002106 l.onVideoProviderChanged(this, videoProvider);
Santos Cordond34e5712014-08-05 18:54:03 +00002107 }
Andrew Lee5ffbe8b82014-06-20 16:29:33 -07002108 }
2109
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002110 public final VideoProvider getVideoProvider() {
2111 return mVideoProvider;
Andrew Leea27a1932014-07-09 17:07:13 -07002112 }
2113
Andrew Lee5ffbe8b82014-06-20 16:29:33 -07002114 /**
Sailesh Nepal091768c2014-06-30 15:15:23 -07002115 * Sets state to disconnected.
Ihab Awad542e0ea2014-05-16 10:22:16 -07002116 *
Andrew Lee7f3d41f2014-09-11 17:33:16 -07002117 * @param disconnectCause The reason for the disconnection, as specified by
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002118 * {@link DisconnectCause}.
Ihab Awad542e0ea2014-05-16 10:22:16 -07002119 */
Andrew Lee7f3d41f2014-09-11 17:33:16 -07002120 public final void setDisconnected(DisconnectCause disconnectCause) {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002121 checkImmutable();
Andrew Lee7f3d41f2014-09-11 17:33:16 -07002122 mDisconnectCause = disconnectCause;
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002123 setState(STATE_DISCONNECTED);
mike dooleyf34519b2014-09-16 17:33:40 -07002124 Log.d(this, "Disconnected with cause %s", disconnectCause);
Santos Cordond34e5712014-08-05 18:54:03 +00002125 for (Listener l : mListeners) {
Andrew Lee7f3d41f2014-09-11 17:33:16 -07002126 l.onDisconnected(this, disconnectCause);
Santos Cordond34e5712014-08-05 18:54:03 +00002127 }
Ihab Awad542e0ea2014-05-16 10:22:16 -07002128 }
2129
2130 /**
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002131 * Informs listeners that this {@code Connection} is in a post-dial wait state. This is done
2132 * when (a) the {@code Connection} is issuing a DTMF sequence; (b) it has encountered a "wait"
2133 * character; and (c) it wishes to inform the In-Call app that it is waiting for the end-user
2134 * to send an {@link #onPostDialContinue(boolean)} signal.
2135 *
2136 * @param remaining The DTMF character sequence remaining to be emitted once the
2137 * {@link #onPostDialContinue(boolean)} is received, including any "wait" characters
2138 * that remaining sequence may contain.
Sailesh Nepal091768c2014-06-30 15:15:23 -07002139 */
2140 public final void setPostDialWait(String remaining) {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002141 checkImmutable();
Santos Cordond34e5712014-08-05 18:54:03 +00002142 for (Listener l : mListeners) {
2143 l.onPostDialWait(this, remaining);
2144 }
Sailesh Nepal091768c2014-06-30 15:15:23 -07002145 }
2146
2147 /**
Nancy Chen27d1c2d2014-12-15 16:12:50 -08002148 * Informs listeners that this {@code Connection} has processed a character in the post-dial
2149 * started state. This is done when (a) the {@code Connection} is issuing a DTMF sequence;
Sailesh Nepal1ed85612015-01-31 15:17:19 -08002150 * and (b) it wishes to signal Telecom to play the corresponding DTMF tone locally.
Nancy Chen27d1c2d2014-12-15 16:12:50 -08002151 *
2152 * @param nextChar The DTMF character that was just processed by the {@code Connection}.
Nancy Chen27d1c2d2014-12-15 16:12:50 -08002153 */
Sailesh Nepal1ed85612015-01-31 15:17:19 -08002154 public final void setNextPostDialChar(char nextChar) {
Nancy Chen27d1c2d2014-12-15 16:12:50 -08002155 checkImmutable();
2156 for (Listener l : mListeners) {
2157 l.onPostDialChar(this, nextChar);
2158 }
2159 }
2160
2161 /**
Ihab Awadf8358972014-05-28 16:46:42 -07002162 * Requests that the framework play a ringback tone. This is to be invoked by implementations
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002163 * that do not play a ringback tone themselves in the connection's audio stream.
Ihab Awadf8358972014-05-28 16:46:42 -07002164 *
2165 * @param ringback Whether the ringback tone is to be played.
2166 */
Andrew Lee100e2932014-09-08 15:34:24 -07002167 public final void setRingbackRequested(boolean ringback) {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002168 checkImmutable();
Andrew Lee100e2932014-09-08 15:34:24 -07002169 if (mRingbackRequested != ringback) {
2170 mRingbackRequested = ringback;
Santos Cordond34e5712014-08-05 18:54:03 +00002171 for (Listener l : mListeners) {
Andrew Lee100e2932014-09-08 15:34:24 -07002172 l.onRingbackRequested(this, ringback);
Santos Cordond34e5712014-08-05 18:54:03 +00002173 }
2174 }
Ihab Awadf8358972014-05-28 16:46:42 -07002175 }
2176
2177 /**
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002178 * Sets the connection's capabilities as a bit mask of the {@code CAPABILITY_*} constants.
Sailesh Nepal1a7061b2014-07-09 21:03:20 -07002179 *
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002180 * @param connectionCapabilities The new connection capabilities.
Santos Cordonb6939982014-06-04 20:20:58 -07002181 */
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002182 public final void setConnectionCapabilities(int connectionCapabilities) {
2183 checkImmutable();
2184 if (mConnectionCapabilities != connectionCapabilities) {
2185 mConnectionCapabilities = connectionCapabilities;
Santos Cordond34e5712014-08-05 18:54:03 +00002186 for (Listener l : mListeners) {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002187 l.onConnectionCapabilitiesChanged(this, mConnectionCapabilities);
Santos Cordond34e5712014-08-05 18:54:03 +00002188 }
2189 }
Santos Cordonb6939982014-06-04 20:20:58 -07002190 }
2191
2192 /**
Tyler Gunn720c6642016-03-22 09:02:47 -07002193 * Sets the connection's properties as a bit mask of the {@code PROPERTY_*} constants.
2194 *
2195 * @param connectionProperties The new connection properties.
2196 */
2197 public final void setConnectionProperties(int connectionProperties) {
2198 checkImmutable();
2199 if (mConnectionProperties != connectionProperties) {
2200 mConnectionProperties = connectionProperties;
2201 for (Listener l : mListeners) {
2202 l.onConnectionPropertiesChanged(this, mConnectionProperties);
2203 }
2204 }
2205 }
2206
2207 /**
Christine Hallstrom2830ce92016-11-30 16:06:42 -08002208 * Sets the supported audio routes.
2209 *
2210 * @param supportedAudioRoutes the supported audio routes as a bitmask.
2211 * See {@link CallAudioState}
2212 * @hide
2213 */
2214 public final void setSupportedAudioRoutes(int supportedAudioRoutes) {
2215 if ((supportedAudioRoutes
2216 & (CallAudioState.ROUTE_EARPIECE | CallAudioState.ROUTE_SPEAKER)) == 0) {
2217 throw new IllegalArgumentException(
2218 "supported audio routes must include either speaker or earpiece");
2219 }
2220
2221 if (mSupportedAudioRoutes != supportedAudioRoutes) {
2222 mSupportedAudioRoutes = supportedAudioRoutes;
2223 for (Listener l : mListeners) {
2224 l.onSupportedAudioRoutesChanged(this, mSupportedAudioRoutes);
2225 }
2226 }
2227 }
2228
2229 /**
Santos Cordon7c7bc7f2014-07-28 18:15:48 -07002230 * Tears down the Connection object.
Santos Cordonb6939982014-06-04 20:20:58 -07002231 */
Evan Charlton36a71342014-07-19 16:31:02 -07002232 public final void destroy() {
Jay Shrauner229e3822014-08-15 09:23:07 -07002233 for (Listener l : mListeners) {
2234 l.onDestroyed(this);
Santos Cordond34e5712014-08-05 18:54:03 +00002235 }
Santos Cordonb6939982014-06-04 20:20:58 -07002236 }
2237
2238 /**
Sailesh Nepal33aaae42014-07-07 22:49:44 -07002239 * Requests that the framework use VOIP audio mode for this connection.
2240 *
2241 * @param isVoip True if the audio mode is VOIP.
2242 */
2243 public final void setAudioModeIsVoip(boolean isVoip) {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002244 checkImmutable();
Santos Cordond34e5712014-08-05 18:54:03 +00002245 mAudioModeIsVoip = isVoip;
2246 for (Listener l : mListeners) {
2247 l.onAudioModeIsVoipChanged(this, isVoip);
2248 }
Sailesh Nepal33aaae42014-07-07 22:49:44 -07002249 }
2250
2251 /**
Roshan Piuse927ec02015-07-15 15:47:21 -07002252 * Sets the time at which a call became active on this Connection. This is set only
2253 * when a conference call becomes active on this connection.
2254 *
2255 * @param connectionTimeMillis The connection time, in milliseconds.
2256 *
2257 * @hide
2258 */
2259 public final void setConnectTimeMillis(long connectTimeMillis) {
2260 mConnectTimeMillis = connectTimeMillis;
2261 }
2262
2263 /**
Sailesh Nepale7ef59a2014-07-08 21:48:22 -07002264 * Sets the label and icon status to display in the in-call UI.
2265 *
2266 * @param statusHints The status label and icon to set.
2267 */
2268 public final void setStatusHints(StatusHints statusHints) {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002269 checkImmutable();
Santos Cordond34e5712014-08-05 18:54:03 +00002270 mStatusHints = statusHints;
2271 for (Listener l : mListeners) {
2272 l.onStatusHintsChanged(this, statusHints);
2273 }
Sailesh Nepale7ef59a2014-07-08 21:48:22 -07002274 }
2275
2276 /**
Santos Cordon7c7bc7f2014-07-28 18:15:48 -07002277 * Sets the connections with which this connection can be conferenced.
2278 *
2279 * @param conferenceableConnections The set of connections this connection can conference with.
2280 */
2281 public final void setConferenceableConnections(List<Connection> conferenceableConnections) {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002282 checkImmutable();
Santos Cordon7c7bc7f2014-07-28 18:15:48 -07002283 clearConferenceableList();
2284 for (Connection c : conferenceableConnections) {
2285 // If statement checks for duplicates in input. It makes it N^2 but we're dealing with a
2286 // small amount of items here.
Tyler Gunn6d76ca02014-11-17 15:49:51 -08002287 if (!mConferenceables.contains(c)) {
Santos Cordon7c7bc7f2014-07-28 18:15:48 -07002288 c.addConnectionListener(mConnectionDeathListener);
Tyler Gunn6d76ca02014-11-17 15:49:51 -08002289 mConferenceables.add(c);
Santos Cordon7c7bc7f2014-07-28 18:15:48 -07002290 }
2291 }
2292 fireOnConferenceableConnectionsChanged();
2293 }
2294
2295 /**
Tyler Gunn6d76ca02014-11-17 15:49:51 -08002296 * Similar to {@link #setConferenceableConnections(java.util.List)}, sets a list of connections
2297 * or conferences with which this connection can be conferenced.
2298 *
2299 * @param conferenceables The conferenceables.
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002300 */
Tyler Gunndf2cbc82015-04-20 09:13:01 -07002301 public final void setConferenceables(List<Conferenceable> conferenceables) {
Tyler Gunn6d76ca02014-11-17 15:49:51 -08002302 clearConferenceableList();
Tyler Gunndf2cbc82015-04-20 09:13:01 -07002303 for (Conferenceable c : conferenceables) {
Tyler Gunn6d76ca02014-11-17 15:49:51 -08002304 // If statement checks for duplicates in input. It makes it N^2 but we're dealing with a
2305 // small amount of items here.
2306 if (!mConferenceables.contains(c)) {
2307 if (c instanceof Connection) {
2308 Connection connection = (Connection) c;
2309 connection.addConnectionListener(mConnectionDeathListener);
2310 } else if (c instanceof Conference) {
2311 Conference conference = (Conference) c;
2312 conference.addListener(mConferenceDeathListener);
2313 }
2314 mConferenceables.add(c);
2315 }
2316 }
2317 fireOnConferenceableConnectionsChanged();
2318 }
2319
2320 /**
2321 * Returns the connections or conferences with which this connection can be conferenced.
2322 */
Tyler Gunndf2cbc82015-04-20 09:13:01 -07002323 public final List<Conferenceable> getConferenceables() {
Tyler Gunn6d76ca02014-11-17 15:49:51 -08002324 return mUnmodifiableConferenceables;
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002325 }
2326
Yorke Lee53463962015-08-04 16:07:19 -07002327 /**
Santos Cordon823fd3c2014-08-07 18:35:18 -07002328 * @hide
2329 */
2330 public final void setConnectionService(ConnectionService connectionService) {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002331 checkImmutable();
Santos Cordon823fd3c2014-08-07 18:35:18 -07002332 if (mConnectionService != null) {
2333 Log.e(this, new Exception(), "Trying to set ConnectionService on a connection " +
2334 "which is already associated with another ConnectionService.");
2335 } else {
2336 mConnectionService = connectionService;
2337 }
2338 }
2339
2340 /**
2341 * @hide
2342 */
2343 public final void unsetConnectionService(ConnectionService connectionService) {
2344 if (mConnectionService != connectionService) {
2345 Log.e(this, new Exception(), "Trying to remove ConnectionService from a Connection " +
2346 "that does not belong to the ConnectionService.");
2347 } else {
2348 mConnectionService = null;
2349 }
2350 }
2351
2352 /**
Santos Cordonaf1b2962014-10-16 19:23:54 -07002353 * @hide
2354 */
2355 public final ConnectionService getConnectionService() {
2356 return mConnectionService;
2357 }
2358
2359 /**
Santos Cordon823fd3c2014-08-07 18:35:18 -07002360 * Sets the conference that this connection is a part of. This will fail if the connection is
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002361 * already part of a conference. {@link #resetConference} to un-set the conference first.
Santos Cordon823fd3c2014-08-07 18:35:18 -07002362 *
2363 * @param conference The conference.
2364 * @return {@code true} if the conference was successfully set.
2365 * @hide
2366 */
2367 public final boolean setConference(Conference conference) {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002368 checkImmutable();
Santos Cordon823fd3c2014-08-07 18:35:18 -07002369 // We check to see if it is already part of another conference.
Santos Cordon0159ac02014-08-21 14:28:11 -07002370 if (mConference == null) {
Santos Cordon823fd3c2014-08-07 18:35:18 -07002371 mConference = conference;
Santos Cordon0159ac02014-08-21 14:28:11 -07002372 if (mConnectionService != null && mConnectionService.containsConference(conference)) {
2373 fireConferenceChanged();
2374 }
Santos Cordon823fd3c2014-08-07 18:35:18 -07002375 return true;
2376 }
2377 return false;
2378 }
2379
2380 /**
2381 * Resets the conference that this connection is a part of.
2382 * @hide
2383 */
2384 public final void resetConference() {
2385 if (mConference != null) {
Santos Cordon0159ac02014-08-21 14:28:11 -07002386 Log.d(this, "Conference reset");
Santos Cordon823fd3c2014-08-07 18:35:18 -07002387 mConference = null;
2388 fireConferenceChanged();
2389 }
2390 }
2391
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002392 /**
Tyler Gunndee56a82016-03-23 16:06:34 -07002393 * Set some extras that can be associated with this {@code Connection}.
2394 * <p>
2395 * New or existing keys are replaced in the {@code Connection} extras. Keys which are no longer
2396 * in the new extras, but were present the last time {@code setExtras} was called are removed.
2397 * <p>
Tyler Gunn9c0eb0b2016-06-29 11:23:25 -07002398 * Alternatively you may use the {@link #putExtras(Bundle)}, and
2399 * {@link #removeExtras(String...)} methods to modify the extras.
2400 * <p>
Tyler Gunndee56a82016-03-23 16:06:34 -07002401 * No assumptions should be made as to how an In-Call UI or service will handle these extras.
Santos Cordon6b7f9552015-05-27 17:21:45 -07002402 * Keys should be fully qualified (e.g., com.example.MY_EXTRA) to avoid conflicts.
2403 *
2404 * @param extras The extras associated with this {@code Connection}.
2405 */
2406 public final void setExtras(@Nullable Bundle extras) {
2407 checkImmutable();
Tyler Gunndee56a82016-03-23 16:06:34 -07002408
2409 // Add/replace any new or changed extras values.
2410 putExtras(extras);
2411
2412 // If we have used "setExtras" in the past, compare the key set from the last invocation to
2413 // the current one and remove any keys that went away.
2414 if (mPreviousExtraKeys != null) {
2415 List<String> toRemove = new ArrayList<String>();
2416 for (String oldKey : mPreviousExtraKeys) {
Tyler Gunna8fb8ab2016-03-29 10:24:22 -07002417 if (extras == null || !extras.containsKey(oldKey)) {
Tyler Gunndee56a82016-03-23 16:06:34 -07002418 toRemove.add(oldKey);
2419 }
2420 }
2421 if (!toRemove.isEmpty()) {
2422 removeExtras(toRemove);
2423 }
2424 }
2425
2426 // Track the keys the last time set called setExtras. This way, the next time setExtras is
2427 // called we can see if the caller has removed any extras values.
2428 if (mPreviousExtraKeys == null) {
2429 mPreviousExtraKeys = new ArraySet<String>();
2430 }
2431 mPreviousExtraKeys.clear();
Tyler Gunna8fb8ab2016-03-29 10:24:22 -07002432 if (extras != null) {
2433 mPreviousExtraKeys.addAll(extras.keySet());
2434 }
Tyler Gunndee56a82016-03-23 16:06:34 -07002435 }
2436
2437 /**
2438 * Adds some extras to this {@code Connection}. Existing keys are replaced and new ones are
2439 * added.
2440 * <p>
2441 * No assumptions should be made as to how an In-Call UI or service will handle these extras.
2442 * Keys should be fully qualified (e.g., com.example.MY_EXTRA) to avoid conflicts.
2443 *
2444 * @param extras The extras to add.
2445 */
2446 public final void putExtras(@NonNull Bundle extras) {
2447 checkImmutable();
2448 if (extras == null) {
2449 return;
2450 }
Brad Ebinger4fa6a012016-06-14 17:04:01 -07002451 // Creating a duplicate bundle so we don't have to synchronize on mExtrasLock while calling
2452 // the listeners.
2453 Bundle listenerExtras;
2454 synchronized (mExtrasLock) {
2455 if (mExtras == null) {
2456 mExtras = new Bundle();
2457 }
2458 mExtras.putAll(extras);
2459 listenerExtras = new Bundle(mExtras);
Tyler Gunndee56a82016-03-23 16:06:34 -07002460 }
Santos Cordon6b7f9552015-05-27 17:21:45 -07002461 for (Listener l : mListeners) {
Brad Ebinger4fa6a012016-06-14 17:04:01 -07002462 // Create a new clone of the extras for each listener so that they don't clobber
2463 // each other
2464 l.onExtrasChanged(this, new Bundle(listenerExtras));
Santos Cordon6b7f9552015-05-27 17:21:45 -07002465 }
2466 }
2467
2468 /**
Tyler Gunndee56a82016-03-23 16:06:34 -07002469 * Adds a boolean extra to this {@code Connection}.
2470 *
2471 * @param key The extra key.
2472 * @param value The value.
2473 * @hide
2474 */
2475 public final void putExtra(String key, boolean value) {
2476 Bundle newExtras = new Bundle();
2477 newExtras.putBoolean(key, value);
2478 putExtras(newExtras);
2479 }
2480
2481 /**
2482 * Adds an integer extra to this {@code Connection}.
2483 *
2484 * @param key The extra key.
2485 * @param value The value.
2486 * @hide
2487 */
2488 public final void putExtra(String key, int value) {
2489 Bundle newExtras = new Bundle();
2490 newExtras.putInt(key, value);
2491 putExtras(newExtras);
2492 }
2493
2494 /**
2495 * Adds a string extra to this {@code Connection}.
2496 *
2497 * @param key The extra key.
2498 * @param value The value.
2499 * @hide
2500 */
2501 public final void putExtra(String key, String value) {
2502 Bundle newExtras = new Bundle();
2503 newExtras.putString(key, value);
2504 putExtras(newExtras);
2505 }
2506
2507 /**
Tyler Gunn071be6f2016-05-10 14:52:33 -07002508 * Removes extras from this {@code Connection}.
Tyler Gunndee56a82016-03-23 16:06:34 -07002509 *
Tyler Gunn071be6f2016-05-10 14:52:33 -07002510 * @param keys The keys of the extras to remove.
Tyler Gunndee56a82016-03-23 16:06:34 -07002511 */
2512 public final void removeExtras(List<String> keys) {
Brad Ebinger4fa6a012016-06-14 17:04:01 -07002513 synchronized (mExtrasLock) {
2514 if (mExtras != null) {
2515 for (String key : keys) {
2516 mExtras.remove(key);
2517 }
Tyler Gunndee56a82016-03-23 16:06:34 -07002518 }
2519 }
Brad Ebinger4fa6a012016-06-14 17:04:01 -07002520 List<String> unmodifiableKeys = Collections.unmodifiableList(keys);
Tyler Gunndee56a82016-03-23 16:06:34 -07002521 for (Listener l : mListeners) {
Brad Ebinger4fa6a012016-06-14 17:04:01 -07002522 l.onExtrasRemoved(this, unmodifiableKeys);
Tyler Gunndee56a82016-03-23 16:06:34 -07002523 }
2524 }
2525
2526 /**
Tyler Gunn071be6f2016-05-10 14:52:33 -07002527 * Removes extras from this {@code Connection}.
2528 *
2529 * @param keys The keys of the extras to remove.
2530 */
2531 public final void removeExtras(String ... keys) {
2532 removeExtras(Arrays.asList(keys));
2533 }
2534
2535 /**
Tyler Gunnf5035432017-01-09 09:43:12 -08002536 * Sets the audio route (speaker, bluetooth, etc...). When this request is honored, there will
2537 * be change to the {@link #getCallAudioState()}.
2538 * <p>
2539 * Used by self-managed {@link ConnectionService}s which wish to change the audio route for a
2540 * self-managed {@link Connection} (see {@link PhoneAccount#CAPABILITY_SELF_MANAGED}.)
2541 * <p>
2542 * See also {@link InCallService#setAudioRoute(int)}.
2543 *
2544 * @param route The audio route to use (one of {@link CallAudioState#ROUTE_BLUETOOTH},
2545 * {@link CallAudioState#ROUTE_EARPIECE}, {@link CallAudioState#ROUTE_SPEAKER}, or
2546 * {@link CallAudioState#ROUTE_WIRED_HEADSET}).
2547 */
2548 public final void setAudioRoute(int route) {
2549 for (Listener l : mListeners) {
2550 l.onAudioRouteChanged(this, route);
2551 }
2552 }
2553
2554 /**
Hall Liub64ac4c2017-02-06 10:49:48 -08002555 * Informs listeners that a previously requested RTT session via
2556 * {@link ConnectionRequest#isRequestingRtt()} or
2557 * {@link #onStartRtt(ParcelFileDescriptor, ParcelFileDescriptor)} has succeeded.
2558 * @hide
2559 */
Hall Liuffa4a812017-03-02 16:11:00 -08002560 @TestApi
Hall Liub64ac4c2017-02-06 10:49:48 -08002561 public final void sendRttInitiationSuccess() {
Hall Liuffa4a812017-03-02 16:11:00 -08002562 setRttProperty();
Hall Liub64ac4c2017-02-06 10:49:48 -08002563 mListeners.forEach((l) -> l.onRttInitiationSuccess(Connection.this));
2564 }
2565
2566 /**
2567 * Informs listeners that a previously requested RTT session via
2568 * {@link ConnectionRequest#isRequestingRtt()} or
2569 * {@link #onStartRtt(ParcelFileDescriptor, ParcelFileDescriptor)}
2570 * has failed.
2571 * @param reason One of the reason codes defined in {@link RttModifyStatus}, with the
2572 * exception of {@link RttModifyStatus#SESSION_MODIFY_REQUEST_SUCCESS}.
2573 * @hide
2574 */
Hall Liuffa4a812017-03-02 16:11:00 -08002575 @TestApi
Hall Liub64ac4c2017-02-06 10:49:48 -08002576 public final void sendRttInitiationFailure(int reason) {
Hall Liuffa4a812017-03-02 16:11:00 -08002577 unsetRttProperty();
Hall Liub64ac4c2017-02-06 10:49:48 -08002578 mListeners.forEach((l) -> l.onRttInitiationFailure(Connection.this, reason));
2579 }
2580
2581 /**
2582 * Informs listeners that a currently active RTT session has been terminated by the remote
2583 * side of the coll.
2584 * @hide
2585 */
Hall Liuffa4a812017-03-02 16:11:00 -08002586 @TestApi
Hall Liub64ac4c2017-02-06 10:49:48 -08002587 public final void sendRttSessionRemotelyTerminated() {
2588 mListeners.forEach((l) -> l.onRttSessionRemotelyTerminated(Connection.this));
2589 }
2590
2591 /**
2592 * Informs listeners that the remote side of the call has requested an upgrade to include an
2593 * RTT session in the call.
2594 * @hide
2595 */
Hall Liuffa4a812017-03-02 16:11:00 -08002596 @TestApi
Hall Liub64ac4c2017-02-06 10:49:48 -08002597 public final void sendRemoteRttRequest() {
2598 mListeners.forEach((l) -> l.onRemoteRttRequest(Connection.this));
2599 }
2600
2601 /**
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002602 * Notifies this Connection that the {@link #getAudioState()} property has a new value.
Sailesh Nepal400cc482014-06-26 12:04:00 -07002603 *
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002604 * @param state The new connection audio state.
Yorke Lee4af59352015-05-13 14:14:54 -07002605 * @deprecated Use {@link #onCallAudioStateChanged(CallAudioState)} instead.
2606 * @hide
Sailesh Nepal400cc482014-06-26 12:04:00 -07002607 */
Yorke Lee4af59352015-05-13 14:14:54 -07002608 @SystemApi
2609 @Deprecated
Nancy Chen354b2bd2014-09-08 18:27:26 -07002610 public void onAudioStateChanged(AudioState state) {}
Sailesh Nepal400cc482014-06-26 12:04:00 -07002611
2612 /**
Yorke Lee4af59352015-05-13 14:14:54 -07002613 * Notifies this Connection that the {@link #getCallAudioState()} property has a new value.
2614 *
2615 * @param state The new connection audio state.
2616 */
2617 public void onCallAudioStateChanged(CallAudioState state) {}
2618
2619 /**
Evan Charltonbf11f982014-07-20 22:06:28 -07002620 * Notifies this Connection of an internal state change. This method is called after the
2621 * state is changed.
Ihab Awadf8358972014-05-28 16:46:42 -07002622 *
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002623 * @param state The new state, one of the {@code STATE_*} constants.
Ihab Awadf8358972014-05-28 16:46:42 -07002624 */
Nancy Chen354b2bd2014-09-08 18:27:26 -07002625 public void onStateChanged(int state) {}
Ihab Awadf8358972014-05-28 16:46:42 -07002626
2627 /**
Ihab Awad542e0ea2014-05-16 10:22:16 -07002628 * Notifies this Connection of a request to play a DTMF tone.
2629 *
2630 * @param c A DTMF character.
2631 */
Santos Cordonf2951102014-07-20 19:06:29 -07002632 public void onPlayDtmfTone(char c) {}
Ihab Awad542e0ea2014-05-16 10:22:16 -07002633
2634 /**
2635 * Notifies this Connection of a request to stop any currently playing DTMF tones.
2636 */
Santos Cordonf2951102014-07-20 19:06:29 -07002637 public void onStopDtmfTone() {}
Ihab Awad542e0ea2014-05-16 10:22:16 -07002638
2639 /**
2640 * Notifies this Connection of a request to disconnect.
2641 */
Santos Cordonf2951102014-07-20 19:06:29 -07002642 public void onDisconnect() {}
Ihab Awad542e0ea2014-05-16 10:22:16 -07002643
2644 /**
Tyler Gunn3b4b1dc2014-11-04 14:53:37 -08002645 * Notifies this Connection of a request to disconnect a participant of the conference managed
2646 * by the connection.
2647 *
2648 * @param endpoint the {@link Uri} of the participant to disconnect.
2649 * @hide
2650 */
2651 public void onDisconnectConferenceParticipant(Uri endpoint) {}
2652
2653 /**
Santos Cordon7c7bc7f2014-07-28 18:15:48 -07002654 * Notifies this Connection of a request to separate from its parent conference.
Santos Cordonb6939982014-06-04 20:20:58 -07002655 */
Santos Cordonf2951102014-07-20 19:06:29 -07002656 public void onSeparate() {}
Santos Cordonb6939982014-06-04 20:20:58 -07002657
2658 /**
Ihab Awad542e0ea2014-05-16 10:22:16 -07002659 * Notifies this Connection of a request to abort.
2660 */
Santos Cordonf2951102014-07-20 19:06:29 -07002661 public void onAbort() {}
Ihab Awad542e0ea2014-05-16 10:22:16 -07002662
2663 /**
2664 * Notifies this Connection of a request to hold.
2665 */
Santos Cordonf2951102014-07-20 19:06:29 -07002666 public void onHold() {}
Ihab Awad542e0ea2014-05-16 10:22:16 -07002667
2668 /**
2669 * Notifies this Connection of a request to exit a hold state.
2670 */
Santos Cordonf2951102014-07-20 19:06:29 -07002671 public void onUnhold() {}
Ihab Awad542e0ea2014-05-16 10:22:16 -07002672
2673 /**
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002674 * Notifies this Connection, which is in {@link #STATE_RINGING}, of
Santos Cordond34e5712014-08-05 18:54:03 +00002675 * a request to accept.
Andrew Lee8da4c3c2014-07-16 10:11:42 -07002676 *
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002677 * @param videoState The video state in which to answer the connection.
Ihab Awad542e0ea2014-05-16 10:22:16 -07002678 */
Santos Cordonf2951102014-07-20 19:06:29 -07002679 public void onAnswer(int videoState) {}
Ihab Awad542e0ea2014-05-16 10:22:16 -07002680
2681 /**
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002682 * Notifies this Connection, which is in {@link #STATE_RINGING}, of
Tyler Gunnbe74de02014-08-29 14:51:48 -07002683 * a request to accept.
2684 */
2685 public void onAnswer() {
Tyler Gunn87b73f32015-06-03 10:09:59 -07002686 onAnswer(VideoProfile.STATE_AUDIO_ONLY);
Tyler Gunnbe74de02014-08-29 14:51:48 -07002687 }
2688
2689 /**
2690 * Notifies this Connection, which is in {@link #STATE_RINGING}, of
Santos Cordond34e5712014-08-05 18:54:03 +00002691 * a request to reject.
Ihab Awad542e0ea2014-05-16 10:22:16 -07002692 */
Santos Cordonf2951102014-07-20 19:06:29 -07002693 public void onReject() {}
Ihab Awad542e0ea2014-05-16 10:22:16 -07002694
Evan Charlton6dea4ac2014-06-03 14:07:13 -07002695 /**
Hall Liu712acbe2016-03-14 16:38:56 -07002696 * Notifies this Connection, which is in {@link #STATE_RINGING}, of
2697 * a request to reject with a message.
Bryce Lee81901682015-08-28 16:38:02 -07002698 */
2699 public void onReject(String replyMessage) {}
2700
2701 /**
Bryce Leecac50772015-11-17 15:13:29 -08002702 * Notifies the Connection of a request to silence the ringer.
2703 *
2704 * @hide
2705 */
2706 public void onSilence() {}
2707
2708 /**
Evan Charlton6dea4ac2014-06-03 14:07:13 -07002709 * Notifies this Connection whether the user wishes to proceed with the post-dial DTMF codes.
2710 */
Santos Cordonf2951102014-07-20 19:06:29 -07002711 public void onPostDialContinue(boolean proceed) {}
Evan Charlton6dea4ac2014-06-03 14:07:13 -07002712
Tyler Gunn876dbfb2016-03-14 15:18:07 -07002713 /**
2714 * Notifies this Connection of a request to pull an external call to the local device.
2715 * <p>
2716 * The {@link InCallService} issues a request to pull an external call to the local device via
2717 * {@link Call#pullExternalCall()}.
2718 * <p>
Tyler Gunn720c6642016-03-22 09:02:47 -07002719 * For a Connection to be pulled, both the {@link Connection#CAPABILITY_CAN_PULL_CALL}
2720 * capability and {@link Connection#PROPERTY_IS_EXTERNAL_CALL} property bits must be set.
Tyler Gunn876dbfb2016-03-14 15:18:07 -07002721 * <p>
Tyler Gunn720c6642016-03-22 09:02:47 -07002722 * For more information on external calls, see {@link Connection#PROPERTY_IS_EXTERNAL_CALL}.
Tyler Gunn876dbfb2016-03-14 15:18:07 -07002723 */
2724 public void onPullExternalCall() {}
2725
2726 /**
2727 * Notifies this Connection of a {@link Call} event initiated from an {@link InCallService}.
2728 * <p>
2729 * The {@link InCallService} issues a Call event via {@link Call#sendCallEvent(String, Bundle)}.
2730 * <p>
Tyler Gunn9c0eb0b2016-06-29 11:23:25 -07002731 * Where possible, the Connection should make an attempt to handle {@link Call} events which
2732 * are part of the {@code android.telecom.*} namespace. The Connection should ignore any events
2733 * it does not wish to handle. Unexpected events should be handled gracefully, as it is
2734 * possible that a {@link InCallService} has defined its own Call events which a Connection is
2735 * not aware of.
2736 * <p>
Tyler Gunn876dbfb2016-03-14 15:18:07 -07002737 * See also {@link Call#sendCallEvent(String, Bundle)}.
2738 *
2739 * @param event The call event.
2740 * @param extras Extras associated with the call event.
2741 */
2742 public void onCallEvent(String event, Bundle extras) {}
2743
Tyler Gunndee56a82016-03-23 16:06:34 -07002744 /**
2745 * Notifies this {@link Connection} of a change to the extras made outside the
2746 * {@link ConnectionService}.
2747 * <p>
2748 * These extras changes can originate from Telecom itself, or from an {@link InCallService} via
2749 * the {@link android.telecom.Call#putExtras(Bundle)} and
2750 * {@link Call#removeExtras(List)}.
2751 *
2752 * @param extras The new extras bundle.
2753 */
2754 public void onExtrasChanged(Bundle extras) {}
2755
Tyler Gunnf5035432017-01-09 09:43:12 -08002756 /**
2757 * Notifies this {@link Connection} that its {@link ConnectionService} is responsible for
2758 * displaying its incoming call user interface for the {@link Connection}.
2759 * <p>
2760 * Will only be called for incoming calls added via a self-managed {@link ConnectionService}
2761 * (see {@link PhoneAccount#CAPABILITY_SELF_MANAGED}), where the {@link ConnectionService}
2762 * should show its own incoming call user interface.
2763 * <p>
2764 * Where there are ongoing calls in other self-managed {@link ConnectionService}s, or in a
2765 * regular {@link ConnectionService}, the Telecom framework will display its own incoming call
2766 * user interface to allow the user to choose whether to answer the new incoming call and
2767 * disconnect other ongoing calls, or to reject the new incoming call.
Tyler Gunn159f35c2017-03-02 09:28:37 -08002768 * <p>
2769 * You should trigger the display of the incoming call user interface for your application by
2770 * showing a {@link Notification} with a full-screen {@link Intent} specified.
2771 * For example:
2772 * <pre><code>
2773 * // Create an intent which triggers your fullscreen incoming call user interface.
2774 * Intent intent = new Intent(Intent.ACTION_MAIN, null);
2775 * intent.setFlags(Intent.FLAG_ACTIVITY_NO_USER_ACTION | Intent.FLAG_ACTIVITY_NEW_TASK);
2776 * intent.setClass(context, YourIncomingCallActivity.class);
2777 * PendingIntent pendingIntent = PendingIntent.getActivity(context, 1, intent, 0);
2778 *
2779 * // Build the notification as an ongoing high priority item; this ensures it will show as
2780 * // a heads up notification which slides down over top of the current content.
2781 * final Notification.Builder builder = new Notification.Builder(context);
2782 * builder.setOngoing(true);
2783 * builder.setPriority(Notification.PRIORITY_HIGH);
2784 *
2785 * // Set notification content intent to take user to fullscreen UI if user taps on the
2786 * // notification body.
2787 * builder.setContentIntent(pendingIntent);
2788 * // Set full screen intent to trigger display of the fullscreen UI when the notification
2789 * // manager deems it appropriate.
2790 * builder.setFullScreenIntent(pendingIntent, true);
2791 *
2792 * // Setup notification content.
2793 * builder.setSmallIcon( yourIconResourceId );
2794 * builder.setContentTitle("Your notification title");
2795 * builder.setContentText("Your notification content.");
2796 *
2797 * // Use builder.addAction(..) to add buttons to answer or reject the call.
2798 *
2799 * NotificationManager notificationManager = mContext.getSystemService(
2800 * NotificationManager.class);
2801 * notificationManager.notify(YOUR_TAG, YOUR_ID, builder.build());
2802 * </code></pre>
Tyler Gunnf5035432017-01-09 09:43:12 -08002803 */
2804 public void onShowIncomingCallUi() {}
2805
Hall Liub64ac4c2017-02-06 10:49:48 -08002806 /**
2807 * Notifies this {@link Connection} that the user has requested an RTT session.
2808 * The connection service should call {@link #sendRttInitiationSuccess} or
2809 * {@link #sendRttInitiationFailure} to inform Telecom of the success or failure of the
2810 * request, respectively.
2811 * @param rttTextStream The object that should be used to send text to or receive text from
2812 * the in-call app.
2813 * @hide
2814 */
Hall Liuffa4a812017-03-02 16:11:00 -08002815 @TestApi
Hall Liub64ac4c2017-02-06 10:49:48 -08002816 public void onStartRtt(@NonNull RttTextStream rttTextStream) {}
2817
2818 /**
2819 * Notifies this {@link Connection} that it should terminate any existing RTT communication
2820 * channel. No response to Telecom is needed for this method.
2821 * @hide
2822 */
Hall Liuffa4a812017-03-02 16:11:00 -08002823 @TestApi
Hall Liub64ac4c2017-02-06 10:49:48 -08002824 public void onStopRtt() {}
2825
2826 /**
2827 * Notifies this connection of a response to a previous remotely-initiated RTT upgrade
2828 * request sent via {@link #sendRemoteRttRequest}. Acceptance of the request is
2829 * indicated by the supplied {@link RttTextStream} being non-null, and rejection is
2830 * indicated by {@code rttTextStream} being {@code null}
2831 * @hide
2832 * @param rttTextStream The object that should be used to send text to or receive text from
2833 * the in-call app.
2834 */
Hall Liuffa4a812017-03-02 16:11:00 -08002835 @TestApi
Hall Liub64ac4c2017-02-06 10:49:48 -08002836 public void handleRttUpgradeResponse(@Nullable RttTextStream rttTextStream) {}
2837
Hall Liuffa4a812017-03-02 16:11:00 -08002838 /**
2839 * Internal method to set {@link #PROPERTY_IS_RTT}.
2840 * @hide
2841 */
2842 void setRttProperty() {
2843 setConnectionProperties(getConnectionProperties() | PROPERTY_IS_RTT);
2844 }
2845
2846 /**
2847 * Internal method to un-set {@link #PROPERTY_IS_RTT}.
2848 * @hide
2849 */
2850 void unsetRttProperty() {
2851 setConnectionProperties(getConnectionProperties() & (~PROPERTY_IS_RTT));
2852 }
2853
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002854 static String toLogSafePhoneNumber(String number) {
2855 // For unknown number, log empty string.
2856 if (number == null) {
2857 return "";
2858 }
2859
2860 if (PII_DEBUG) {
2861 // When PII_DEBUG is true we emit PII.
2862 return number;
2863 }
2864
2865 // Do exactly same thing as Uri#toSafeString() does, which will enable us to compare
2866 // sanitized phone numbers.
2867 StringBuilder builder = new StringBuilder();
2868 for (int i = 0; i < number.length(); i++) {
2869 char c = number.charAt(i);
2870 if (c == '-' || c == '@' || c == '.') {
2871 builder.append(c);
2872 } else {
2873 builder.append('x');
2874 }
2875 }
2876 return builder.toString();
2877 }
2878
Ihab Awad542e0ea2014-05-16 10:22:16 -07002879 private void setState(int state) {
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002880 checkImmutable();
Ihab Awad6107bab2014-08-18 09:23:25 -07002881 if (mState == STATE_DISCONNECTED && mState != state) {
2882 Log.d(this, "Connection already DISCONNECTED; cannot transition out of this state.");
Evan Charltonbf11f982014-07-20 22:06:28 -07002883 return;
Sailesh Nepal400cc482014-06-26 12:04:00 -07002884 }
Evan Charltonbf11f982014-07-20 22:06:28 -07002885 if (mState != state) {
2886 Log.d(this, "setState: %s", stateToString(state));
2887 mState = state;
Nancy Chen354b2bd2014-09-08 18:27:26 -07002888 onStateChanged(state);
Evan Charltonbf11f982014-07-20 22:06:28 -07002889 for (Listener l : mListeners) {
2890 l.onStateChanged(this, state);
2891 }
Evan Charltonbf11f982014-07-20 22:06:28 -07002892 }
2893 }
2894
Sailesh Nepalcf7020b2014-08-20 10:07:19 -07002895 private static class FailureSignalingConnection extends Connection {
Ihab Awad90e34e32014-12-01 16:23:17 -08002896 private boolean mImmutable = false;
Andrew Lee7f3d41f2014-09-11 17:33:16 -07002897 public FailureSignalingConnection(DisconnectCause disconnectCause) {
2898 setDisconnected(disconnectCause);
Ihab Awad90e34e32014-12-01 16:23:17 -08002899 mImmutable = true;
Ihab Awad6107bab2014-08-18 09:23:25 -07002900 }
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002901
2902 public void checkImmutable() {
Ihab Awad90e34e32014-12-01 16:23:17 -08002903 if (mImmutable) {
2904 throw new UnsupportedOperationException("Connection is immutable");
2905 }
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002906 }
Ihab Awad6107bab2014-08-18 09:23:25 -07002907 }
2908
Evan Charltonbf11f982014-07-20 22:06:28 -07002909 /**
Ihab Awad6107bab2014-08-18 09:23:25 -07002910 * Return a {@code Connection} which represents a failed connection attempt. The returned
Andrew Lee7f3d41f2014-09-11 17:33:16 -07002911 * {@code Connection} will have a {@link android.telecom.DisconnectCause} and as specified,
2912 * and a {@link #getState()} of {@link #STATE_DISCONNECTED}.
Ihab Awad6107bab2014-08-18 09:23:25 -07002913 * <p>
2914 * The returned {@code Connection} can be assumed to {@link #destroy()} itself when appropriate,
2915 * so users of this method need not maintain a reference to its return value to destroy it.
Evan Charltonbf11f982014-07-20 22:06:28 -07002916 *
Andrew Lee7f3d41f2014-09-11 17:33:16 -07002917 * @param disconnectCause The disconnect cause, ({@see android.telecomm.DisconnectCause}).
Ihab Awad6107bab2014-08-18 09:23:25 -07002918 * @return A {@code Connection} which indicates failure.
Evan Charltonbf11f982014-07-20 22:06:28 -07002919 */
Andrew Lee7f3d41f2014-09-11 17:33:16 -07002920 public static Connection createFailedConnection(DisconnectCause disconnectCause) {
2921 return new FailureSignalingConnection(disconnectCause);
Evan Charltonbf11f982014-07-20 22:06:28 -07002922 }
2923
Evan Charltonbf11f982014-07-20 22:06:28 -07002924 /**
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002925 * Override to throw an {@link UnsupportedOperationException} if this {@code Connection} is
2926 * not intended to be mutated, e.g., if it is a marker for failure. Only for framework use;
2927 * this should never be un-@hide-den.
2928 *
2929 * @hide
2930 */
2931 public void checkImmutable() {}
2932
2933 /**
Ihab Awad6107bab2014-08-18 09:23:25 -07002934 * Return a {@code Connection} which represents a canceled connection attempt. The returned
2935 * {@code Connection} will have state {@link #STATE_DISCONNECTED}, and cannot be moved out of
2936 * that state. This connection should not be used for anything, and no other
2937 * {@code Connection}s should be attempted.
2938 * <p>
Ihab Awad6107bab2014-08-18 09:23:25 -07002939 * so users of this method need not maintain a reference to its return value to destroy it.
Evan Charltonbf11f982014-07-20 22:06:28 -07002940 *
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002941 * @return A {@code Connection} which indicates that the underlying connection should
2942 * be canceled.
Evan Charltonbf11f982014-07-20 22:06:28 -07002943 */
Ihab Awadb19a0bc2014-08-07 19:46:01 -07002944 public static Connection createCanceledConnection() {
Andrew Lee7f3d41f2014-09-11 17:33:16 -07002945 return new FailureSignalingConnection(new DisconnectCause(DisconnectCause.CANCELED));
Ihab Awad542e0ea2014-05-16 10:22:16 -07002946 }
Santos Cordon7c7bc7f2014-07-28 18:15:48 -07002947
Ihab Awad5c9c86e2014-11-12 13:41:16 -08002948 private final void fireOnConferenceableConnectionsChanged() {
Santos Cordon7c7bc7f2014-07-28 18:15:48 -07002949 for (Listener l : mListeners) {
Tyler Gunn6d76ca02014-11-17 15:49:51 -08002950 l.onConferenceablesChanged(this, getConferenceables());
Santos Cordon7c7bc7f2014-07-28 18:15:48 -07002951 }
2952 }
2953
Santos Cordon823fd3c2014-08-07 18:35:18 -07002954 private final void fireConferenceChanged() {
2955 for (Listener l : mListeners) {
2956 l.onConferenceChanged(this, mConference);
2957 }
2958 }
2959
Santos Cordon7c7bc7f2014-07-28 18:15:48 -07002960 private final void clearConferenceableList() {
Tyler Gunndf2cbc82015-04-20 09:13:01 -07002961 for (Conferenceable c : mConferenceables) {
Tyler Gunn6d76ca02014-11-17 15:49:51 -08002962 if (c instanceof Connection) {
2963 Connection connection = (Connection) c;
2964 connection.removeConnectionListener(mConnectionDeathListener);
2965 } else if (c instanceof Conference) {
2966 Conference conference = (Conference) c;
2967 conference.removeListener(mConferenceDeathListener);
2968 }
Santos Cordon7c7bc7f2014-07-28 18:15:48 -07002969 }
Tyler Gunn6d76ca02014-11-17 15:49:51 -08002970 mConferenceables.clear();
Santos Cordon7c7bc7f2014-07-28 18:15:48 -07002971 }
Tyler Gunn3bffcf72014-10-28 13:51:27 -07002972
2973 /**
Tyler Gunndee56a82016-03-23 16:06:34 -07002974 * Handles a change to extras received from Telecom.
2975 *
2976 * @param extras The new extras.
2977 * @hide
2978 */
2979 final void handleExtrasChanged(Bundle extras) {
Brad Ebinger4fa6a012016-06-14 17:04:01 -07002980 Bundle b = null;
2981 synchronized (mExtrasLock) {
2982 mExtras = extras;
2983 if (mExtras != null) {
2984 b = new Bundle(mExtras);
2985 }
2986 }
2987 onExtrasChanged(b);
Tyler Gunndee56a82016-03-23 16:06:34 -07002988 }
2989
2990 /**
Anthony Lee17455a32015-04-24 15:25:29 -07002991 * Notifies listeners that the merge request failed.
2992 *
2993 * @hide
2994 */
2995 protected final void notifyConferenceMergeFailed() {
2996 for (Listener l : mListeners) {
2997 l.onConferenceMergeFailed(this);
2998 }
2999 }
3000
3001 /**
Tyler Gunnab4650c2014-11-06 20:06:23 -08003002 * Notifies listeners of a change to conference participant(s).
Tyler Gunn3bffcf72014-10-28 13:51:27 -07003003 *
Tyler Gunnab4650c2014-11-06 20:06:23 -08003004 * @param conferenceParticipants The participants.
Tyler Gunn3bffcf72014-10-28 13:51:27 -07003005 * @hide
3006 */
Tyler Gunnab4650c2014-11-06 20:06:23 -08003007 protected final void updateConferenceParticipants(
3008 List<ConferenceParticipant> conferenceParticipants) {
Tyler Gunn3bffcf72014-10-28 13:51:27 -07003009 for (Listener l : mListeners) {
Tyler Gunnab4650c2014-11-06 20:06:23 -08003010 l.onConferenceParticipantsChanged(this, conferenceParticipants);
Tyler Gunn3bffcf72014-10-28 13:51:27 -07003011 }
3012 }
Tyler Gunn8a2b1192015-01-29 11:47:24 -08003013
3014 /**
3015 * Notifies listeners that a conference call has been started.
Jay Shrauner55b97522015-04-09 15:15:43 -07003016 * @hide
Tyler Gunn8a2b1192015-01-29 11:47:24 -08003017 */
3018 protected void notifyConferenceStarted() {
3019 for (Listener l : mListeners) {
3020 l.onConferenceStarted();
3021 }
3022 }
Tyler Gunnbd1eb1f2016-02-16 14:36:20 -08003023
3024 /**
Tyler Gunn7d633d32016-06-24 07:30:10 -07003025 * Notifies listeners when a change has occurred to the Connection which impacts its ability to
3026 * be a part of a conference call.
3027 * @param isConferenceSupported {@code true} if the connection supports being part of a
3028 * conference call, {@code false} otherwise.
3029 * @hide
3030 */
3031 protected void notifyConferenceSupportedChanged(boolean isConferenceSupported) {
3032 for (Listener l : mListeners) {
3033 l.onConferenceSupportedChanged(this, isConferenceSupported);
3034 }
3035 }
3036
3037 /**
Srikanth Chintala732b7fb2017-05-04 20:58:34 +05303038 * Notifies listeners when phone account is changed. For example, when the PhoneAccount is
3039 * changed due to an emergency call being redialed.
3040 * @param pHandle The new PhoneAccountHandle for this connection.
3041 * @hide
3042 */
3043 public void notifyPhoneAccountChanged(PhoneAccountHandle pHandle) {
3044 for (Listener l : mListeners) {
3045 l.onPhoneAccountChanged(this, pHandle);
3046 }
3047 }
3048
3049 /**
Tyler Gunn9c0eb0b2016-06-29 11:23:25 -07003050 * Sends an event associated with this {@code Connection} with associated event extras to the
3051 * {@link InCallService}.
3052 * <p>
3053 * Connection events are used to communicate point in time information from a
3054 * {@link ConnectionService} to a {@link InCallService} implementations. An example of a
3055 * custom connection event includes notifying the UI when a WIFI call has been handed over to
3056 * LTE, which the InCall UI might use to inform the user that billing charges may apply. The
3057 * Android Telephony framework will send the {@link #EVENT_CALL_MERGE_FAILED} connection event
3058 * when a call to {@link Call#mergeConference()} has failed to complete successfully. A
3059 * connection event could also be used to trigger UI in the {@link InCallService} which prompts
3060 * the user to make a choice (e.g. whether they want to incur roaming costs for making a call),
3061 * which is communicated back via {@link Call#sendCallEvent(String, Bundle)}.
3062 * <p>
3063 * Events are exposed to {@link InCallService} implementations via
3064 * {@link Call.Callback#onConnectionEvent(Call, String, Bundle)}.
3065 * <p>
Tyler Gunn876dbfb2016-03-14 15:18:07 -07003066 * No assumptions should be made as to how an In-Call UI or service will handle these events.
Tyler Gunn9c0eb0b2016-06-29 11:23:25 -07003067 * The {@link ConnectionService} must assume that the In-Call UI could even chose to ignore
3068 * some events altogether.
3069 * <p>
3070 * Events should be fully qualified (e.g. {@code com.example.event.MY_EVENT}) to avoid
3071 * conflicts between {@link ConnectionService} implementations. Further, custom
3072 * {@link ConnectionService} implementations shall not re-purpose events in the
3073 * {@code android.*} namespace, nor shall they define new event types in this namespace. When
3074 * defining a custom event type, ensure the contents of the extras {@link Bundle} is clearly
3075 * defined. Extra keys for this bundle should be named similar to the event type (e.g.
3076 * {@code com.example.extra.MY_EXTRA}).
3077 * <p>
3078 * When defining events and the associated extras, it is important to keep their behavior
3079 * consistent when the associated {@link ConnectionService} is updated. Support for deprecated
3080 * events/extras should me maintained to ensure backwards compatibility with older
3081 * {@link InCallService} implementations which were built to support the older behavior.
Tyler Gunnbd1eb1f2016-02-16 14:36:20 -08003082 *
3083 * @param event The connection event.
Tyler Gunn9c0eb0b2016-06-29 11:23:25 -07003084 * @param extras Optional bundle containing extra information associated with the event.
Tyler Gunnbd1eb1f2016-02-16 14:36:20 -08003085 */
Tyler Gunn876dbfb2016-03-14 15:18:07 -07003086 public void sendConnectionEvent(String event, Bundle extras) {
Tyler Gunnbd1eb1f2016-02-16 14:36:20 -08003087 for (Listener l : mListeners) {
Tyler Gunna8fb8ab2016-03-29 10:24:22 -07003088 l.onConnectionEvent(this, event, extras);
Tyler Gunnbd1eb1f2016-02-16 14:36:20 -08003089 }
3090 }
Ihab Awad542e0ea2014-05-16 10:22:16 -07003091}