1235 lines
46 KiB
Java
1235 lines
46 KiB
Java
/*
|
|
* Copyright (C) 2014 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package android.telecom;
|
|
|
|
import static android.Manifest.permission.MODIFY_PHONE_STATE;
|
|
|
|
import android.annotation.ElapsedRealtimeLong;
|
|
import android.annotation.IntRange;
|
|
import android.annotation.NonNull;
|
|
import android.annotation.Nullable;
|
|
import android.annotation.RequiresPermission;
|
|
import android.annotation.SystemApi;
|
|
import android.net.Uri;
|
|
import android.os.Bundle;
|
|
import android.os.SystemClock;
|
|
import android.telecom.Connection.VideoProvider;
|
|
import android.util.ArraySet;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
import java.util.Locale;
|
|
import java.util.Set;
|
|
import java.util.concurrent.CopyOnWriteArrayList;
|
|
import java.util.concurrent.CopyOnWriteArraySet;
|
|
|
|
/**
|
|
* Represents a conference call which can contain any number of {@link Connection} objects.
|
|
*/
|
|
public abstract class Conference extends Conferenceable {
|
|
|
|
/**
|
|
* Used to indicate that the conference connection time is not specified. If not specified,
|
|
* Telecom will set the connect time.
|
|
*/
|
|
public static final long CONNECT_TIME_NOT_SPECIFIED = 0;
|
|
|
|
/** @hide */
|
|
abstract static class Listener {
|
|
public void onStateChanged(Conference conference, int oldState, int newState) {}
|
|
public void onDisconnected(Conference conference, DisconnectCause disconnectCause) {}
|
|
public void onConnectionAdded(Conference conference, Connection connection) {}
|
|
public void onConnectionRemoved(Conference conference, Connection connection) {}
|
|
public void onConferenceableConnectionsChanged(
|
|
Conference conference, List<Connection> conferenceableConnections) {}
|
|
public void onDestroyed(Conference conference) {}
|
|
public void onConnectionCapabilitiesChanged(
|
|
Conference conference, int connectionCapabilities) {}
|
|
public void onConnectionPropertiesChanged(
|
|
Conference conference, int connectionProperties) {}
|
|
public void onVideoStateChanged(Conference c, int videoState) { }
|
|
public void onVideoProviderChanged(Conference c, Connection.VideoProvider videoProvider) {}
|
|
public void onStatusHintsChanged(Conference conference, StatusHints statusHints) {}
|
|
public void onExtrasChanged(Conference c, Bundle extras) {}
|
|
public void onExtrasRemoved(Conference c, List<String> keys) {}
|
|
public void onConferenceStateChanged(Conference c, boolean isConference) {}
|
|
public void onAddressChanged(Conference c, Uri newAddress, int presentation) {}
|
|
public void onConnectionEvent(Conference c, String event, Bundle extras) {}
|
|
public void onCallerDisplayNameChanged(
|
|
Conference c, String callerDisplayName, int presentation) {}
|
|
public void onCallDirectionChanged(Conference c, int callDirection) {}
|
|
public void onRingbackRequested(Conference c, boolean ringback) {}
|
|
}
|
|
|
|
private final Set<Listener> mListeners = new CopyOnWriteArraySet<>();
|
|
private final List<Connection> mChildConnections = new CopyOnWriteArrayList<>();
|
|
private final List<Connection> mUnmodifiableChildConnections =
|
|
Collections.unmodifiableList(mChildConnections);
|
|
private final List<Connection> mConferenceableConnections = new ArrayList<>();
|
|
private final List<Connection> mUnmodifiableConferenceableConnections =
|
|
Collections.unmodifiableList(mConferenceableConnections);
|
|
|
|
private String mTelecomCallId;
|
|
private PhoneAccountHandle mPhoneAccount;
|
|
private CallAudioState mCallAudioState;
|
|
private int mState = Connection.STATE_NEW;
|
|
private DisconnectCause mDisconnectCause;
|
|
private int mConnectionCapabilities;
|
|
private int mConnectionProperties;
|
|
private String mDisconnectMessage;
|
|
private long mConnectTimeMillis = CONNECT_TIME_NOT_SPECIFIED;
|
|
private long mConnectionStartElapsedRealTime = CONNECT_TIME_NOT_SPECIFIED;
|
|
private StatusHints mStatusHints;
|
|
private Bundle mExtras;
|
|
private Set<String> mPreviousExtraKeys;
|
|
private final Object mExtrasLock = new Object();
|
|
private Uri mAddress;
|
|
private int mAddressPresentation;
|
|
private String mCallerDisplayName;
|
|
private int mCallerDisplayNamePresentation;
|
|
private int mCallDirection;
|
|
private boolean mRingbackRequested = false;
|
|
private boolean mIsMultiparty = true;
|
|
|
|
private final Connection.Listener mConnectionDeathListener = new Connection.Listener() {
|
|
@Override
|
|
public void onDestroyed(Connection c) {
|
|
if (mConferenceableConnections.remove(c)) {
|
|
fireOnConferenceableConnectionsChanged();
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Constructs a new Conference with a mandatory {@link PhoneAccountHandle}
|
|
*
|
|
* @param phoneAccount The {@code PhoneAccountHandle} associated with the conference.
|
|
*/
|
|
public Conference(PhoneAccountHandle phoneAccount) {
|
|
mPhoneAccount = phoneAccount;
|
|
}
|
|
|
|
/**
|
|
* Returns the telecom internal call ID associated with this conference.
|
|
* <p>
|
|
* Note: This is ONLY used for debugging purposes so that the Telephony stack can better
|
|
* associate logs in Telephony with those in Telecom.
|
|
* The ID returned should not be used for any other purpose.
|
|
*
|
|
* @return The telecom call ID.
|
|
* @hide
|
|
*/
|
|
@SystemApi
|
|
public final @NonNull String getTelecomCallId() {
|
|
return mTelecomCallId;
|
|
}
|
|
|
|
/**
|
|
* Sets the telecom internal call ID associated with this conference.
|
|
*
|
|
* @param telecomCallId The telecom call ID.
|
|
* @hide
|
|
*/
|
|
public final void setTelecomCallId(String telecomCallId) {
|
|
mTelecomCallId = telecomCallId;
|
|
}
|
|
|
|
/**
|
|
* Returns the {@link PhoneAccountHandle} the conference call is being placed through.
|
|
*
|
|
* @return A {@code PhoneAccountHandle} object representing the PhoneAccount of the conference.
|
|
*/
|
|
public final PhoneAccountHandle getPhoneAccountHandle() {
|
|
return mPhoneAccount;
|
|
}
|
|
|
|
/**
|
|
* Returns the list of connections currently associated with the conference call.
|
|
*
|
|
* @return A list of {@code Connection} objects which represent the children of the conference.
|
|
*/
|
|
public final List<Connection> getConnections() {
|
|
return mUnmodifiableChildConnections;
|
|
}
|
|
|
|
/**
|
|
* Gets the state of the conference call. See {@link Connection} for valid values.
|
|
*
|
|
* @return A constant representing the state the conference call is currently in.
|
|
*/
|
|
public final int getState() {
|
|
return mState;
|
|
}
|
|
|
|
/**
|
|
* Returns whether this conference is requesting that the system play a ringback tone
|
|
* on its behalf. A ringback tone may be played when an outgoing conference is in the process of
|
|
* connecting to give the user an audible indication of that process.
|
|
*/
|
|
public final boolean isRingbackRequested() {
|
|
return mRingbackRequested;
|
|
}
|
|
|
|
/**
|
|
* Returns the capabilities of the conference. See {@code CAPABILITY_*} constants in class
|
|
* {@link Connection} for valid values.
|
|
*
|
|
* @return A bitmask of the capabilities of the conference call.
|
|
*/
|
|
public final int getConnectionCapabilities() {
|
|
return mConnectionCapabilities;
|
|
}
|
|
|
|
/**
|
|
* Returns the properties of the conference. See {@code PROPERTY_*} constants in class
|
|
* {@link Connection} for valid values.
|
|
*
|
|
* @return A bitmask of the properties of the conference call.
|
|
*/
|
|
public final int getConnectionProperties() {
|
|
return mConnectionProperties;
|
|
}
|
|
|
|
/**
|
|
* @return The audio state of the conference, describing how its audio is currently
|
|
* being routed by the system. This is {@code null} if this Conference
|
|
* does not directly know about its audio state.
|
|
* @deprecated Use {@link #getCallAudioState()} instead.
|
|
* @hide
|
|
*/
|
|
@Deprecated
|
|
@SystemApi
|
|
public final AudioState getAudioState() {
|
|
return new AudioState(mCallAudioState);
|
|
}
|
|
|
|
/**
|
|
* @return The audio state of the conference, describing how its audio is currently
|
|
* being routed by the system. This is {@code null} if this Conference
|
|
* does not directly know about its audio state.
|
|
*/
|
|
public final CallAudioState getCallAudioState() {
|
|
return mCallAudioState;
|
|
}
|
|
|
|
/**
|
|
* Returns VideoProvider of the primary call. This can be null.
|
|
*/
|
|
public VideoProvider getVideoProvider() {
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Returns video state of the primary call.
|
|
*/
|
|
public int getVideoState() {
|
|
return VideoProfile.STATE_AUDIO_ONLY;
|
|
}
|
|
|
|
/**
|
|
* Notifies the {@link Conference} when the Conference and all it's {@link Connection}s should
|
|
* be disconnected.
|
|
*/
|
|
public void onDisconnect() {}
|
|
|
|
/**
|
|
* Notifies the {@link Conference} when the specified {@link Connection} should be separated
|
|
* from the conference call.
|
|
*
|
|
* @param connection The connection to separate.
|
|
*/
|
|
public void onSeparate(Connection connection) {}
|
|
|
|
/**
|
|
* Notifies the {@link Conference} when the specified {@link Connection} should merged with the
|
|
* conference call.
|
|
*
|
|
* @param connection The {@code Connection} to merge.
|
|
*/
|
|
public void onMerge(Connection connection) {}
|
|
|
|
/**
|
|
* Notifies the {@link Conference} when it should be put on hold.
|
|
*/
|
|
public void onHold() {}
|
|
|
|
/**
|
|
* Notifies the {@link Conference} when it should be moved from a held to active state.
|
|
*/
|
|
public void onUnhold() {}
|
|
|
|
/**
|
|
* Notifies the {@link Conference} when the child calls should be merged. Only invoked if the
|
|
* conference contains the capability {@link Connection#CAPABILITY_MERGE_CONFERENCE}.
|
|
*/
|
|
public void onMerge() {}
|
|
|
|
/**
|
|
* Notifies the {@link Conference} when the child calls should be swapped. Only invoked if the
|
|
* conference contains the capability {@link Connection#CAPABILITY_SWAP_CONFERENCE}.
|
|
*/
|
|
public void onSwap() {}
|
|
|
|
/**
|
|
* Notifies the {@link Conference} of a request to play a DTMF tone.
|
|
*
|
|
* @param c A DTMF character.
|
|
*/
|
|
public void onPlayDtmfTone(char c) {}
|
|
|
|
/**
|
|
* Notifies the {@link Conference} of a request to stop any currently playing DTMF tones.
|
|
*/
|
|
public void onStopDtmfTone() {}
|
|
|
|
/**
|
|
* Notifies the {@link Conference} that the {@link #getAudioState()} property has a new value.
|
|
*
|
|
* @param state The new call audio state.
|
|
* @deprecated Use {@link #onCallAudioStateChanged(CallAudioState)} instead.
|
|
* @hide
|
|
*/
|
|
@SystemApi
|
|
@Deprecated
|
|
public void onAudioStateChanged(AudioState state) {}
|
|
|
|
/**
|
|
* Notifies the {@link Conference} that the {@link #getCallAudioState()} property has a new
|
|
* value.
|
|
*
|
|
* @param state The new call audio state.
|
|
*/
|
|
public void onCallAudioStateChanged(CallAudioState state) {}
|
|
|
|
/**
|
|
* Notifies the {@link Conference} that a {@link Connection} has been added to it.
|
|
*
|
|
* @param connection The newly added connection.
|
|
*/
|
|
public void onConnectionAdded(Connection connection) {}
|
|
|
|
/**
|
|
* Notifies the {@link Conference} of a request to add a new participants to the conference call
|
|
* @param participants that will be added to this conference call
|
|
*/
|
|
public void onAddConferenceParticipants(@NonNull List<Uri> participants) {}
|
|
|
|
/**
|
|
* Notifies this Conference, which is in {@code STATE_RINGING}, of
|
|
* a request to accept.
|
|
* For managed {@link ConnectionService}s, this will be called when the user answers a call via
|
|
* the default dialer's {@link InCallService}.
|
|
*
|
|
* @param videoState The video state in which to answer the connection.
|
|
*/
|
|
public void onAnswer(@VideoProfile.VideoState int videoState) {}
|
|
|
|
/**
|
|
* Notifies this Conference, which is in {@code STATE_RINGING}, of
|
|
* a request to accept.
|
|
* For managed {@link ConnectionService}s, this will be called when the user answers a call via
|
|
* the default dialer's {@link InCallService}.
|
|
* @hide
|
|
*/
|
|
public final void onAnswer() {
|
|
onAnswer(VideoProfile.STATE_AUDIO_ONLY);
|
|
}
|
|
|
|
/**
|
|
* Notifies this Conference, which is in {@code STATE_RINGING}, of
|
|
* a request to reject.
|
|
* For managed {@link ConnectionService}s, this will be called when the user rejects a call via
|
|
* the default dialer's {@link InCallService}.
|
|
*/
|
|
public void onReject() {}
|
|
|
|
/**
|
|
* Sets state to be on hold.
|
|
*/
|
|
public final void setOnHold() {
|
|
setState(Connection.STATE_HOLDING);
|
|
}
|
|
|
|
/**
|
|
* Sets state to be dialing.
|
|
*/
|
|
public final void setDialing() {
|
|
setState(Connection.STATE_DIALING);
|
|
}
|
|
|
|
/**
|
|
* Sets state to be ringing.
|
|
*/
|
|
public final void setRinging() {
|
|
setState(Connection.STATE_RINGING);
|
|
}
|
|
|
|
/**
|
|
* Sets state to be active.
|
|
*/
|
|
public final void setActive() {
|
|
setRingbackRequested(false);
|
|
setState(Connection.STATE_ACTIVE);
|
|
}
|
|
|
|
/**
|
|
* Sets state to disconnected.
|
|
*
|
|
* @param disconnectCause The reason for the disconnection, as described by
|
|
* {@link android.telecom.DisconnectCause}.
|
|
*/
|
|
public final void setDisconnected(DisconnectCause disconnectCause) {
|
|
mDisconnectCause = disconnectCause;;
|
|
setState(Connection.STATE_DISCONNECTED);
|
|
for (Listener l : mListeners) {
|
|
l.onDisconnected(this, mDisconnectCause);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return The {@link DisconnectCause} for this connection.
|
|
*/
|
|
public final DisconnectCause getDisconnectCause() {
|
|
return mDisconnectCause;
|
|
}
|
|
|
|
/**
|
|
* Sets the capabilities of a conference. See {@code CAPABILITY_*} constants of class
|
|
* {@link Connection} for valid values.
|
|
*
|
|
* @param connectionCapabilities A bitmask of the {@code Capabilities} of the conference call.
|
|
*/
|
|
public final void setConnectionCapabilities(int connectionCapabilities) {
|
|
if (connectionCapabilities != mConnectionCapabilities) {
|
|
mConnectionCapabilities = connectionCapabilities;
|
|
|
|
for (Listener l : mListeners) {
|
|
l.onConnectionCapabilitiesChanged(this, mConnectionCapabilities);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Sets the properties of a conference. See {@code PROPERTY_*} constants of class
|
|
* {@link Connection} for valid values.
|
|
*
|
|
* @param connectionProperties A bitmask of the {@code Properties} of the conference call.
|
|
*/
|
|
public final void setConnectionProperties(int connectionProperties) {
|
|
if (connectionProperties != mConnectionProperties) {
|
|
mConnectionProperties = connectionProperties;
|
|
|
|
for (Listener l : mListeners) {
|
|
l.onConnectionPropertiesChanged(this, mConnectionProperties);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Adds the specified connection as a child of this conference.
|
|
*
|
|
* @param connection The connection to add.
|
|
* @return True if the connection was successfully added.
|
|
*/
|
|
public final boolean addConnection(Connection connection) {
|
|
Log.d(this, "Connection=%s, connection=", connection);
|
|
if (connection != null && !mChildConnections.contains(connection)) {
|
|
if (connection.setConference(this)) {
|
|
mChildConnections.add(connection);
|
|
onConnectionAdded(connection);
|
|
for (Listener l : mListeners) {
|
|
l.onConnectionAdded(this, connection);
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Removes the specified connection as a child of this conference.
|
|
*
|
|
* @param connection The connection to remove.
|
|
*/
|
|
public final void removeConnection(Connection connection) {
|
|
Log.d(this, "removing %s from %s", connection, mChildConnections);
|
|
if (connection != null && mChildConnections.remove(connection)) {
|
|
connection.resetConference();
|
|
for (Listener l : mListeners) {
|
|
l.onConnectionRemoved(this, connection);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Sets the connections with which this connection can be conferenced.
|
|
*
|
|
* @param conferenceableConnections The set of connections this connection can conference with.
|
|
*/
|
|
public final void setConferenceableConnections(List<Connection> conferenceableConnections) {
|
|
clearConferenceableList();
|
|
for (Connection c : conferenceableConnections) {
|
|
// If statement checks for duplicates in input. It makes it N^2 but we're dealing with a
|
|
// small amount of items here.
|
|
if (!mConferenceableConnections.contains(c)) {
|
|
c.addConnectionListener(mConnectionDeathListener);
|
|
mConferenceableConnections.add(c);
|
|
}
|
|
}
|
|
fireOnConferenceableConnectionsChanged();
|
|
}
|
|
|
|
/**
|
|
* Requests that the framework play a ringback tone. This is to be invoked by implementations
|
|
* that do not play a ringback tone themselves in the conference's audio stream.
|
|
*
|
|
* @param ringback Whether the ringback tone is to be played.
|
|
*/
|
|
public final void setRingbackRequested(boolean ringback) {
|
|
if (mRingbackRequested != ringback) {
|
|
mRingbackRequested = ringback;
|
|
for (Listener l : mListeners) {
|
|
l.onRingbackRequested(this, ringback);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Set the video state for the conference.
|
|
* Valid values: {@link VideoProfile#STATE_AUDIO_ONLY},
|
|
* {@link VideoProfile#STATE_BIDIRECTIONAL},
|
|
* {@link VideoProfile#STATE_TX_ENABLED},
|
|
* {@link VideoProfile#STATE_RX_ENABLED}.
|
|
*
|
|
* @param videoState The new video state.
|
|
*/
|
|
public final void setVideoState(Connection c, int videoState) {
|
|
Log.d(this, "setVideoState Conference: %s Connection: %s VideoState: %s",
|
|
this, c, videoState);
|
|
for (Listener l : mListeners) {
|
|
l.onVideoStateChanged(this, videoState);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Sets the video connection provider.
|
|
*
|
|
* @param videoProvider The video provider.
|
|
*/
|
|
public final void setVideoProvider(Connection c, Connection.VideoProvider videoProvider) {
|
|
Log.d(this, "setVideoProvider Conference: %s Connection: %s VideoState: %s",
|
|
this, c, videoProvider);
|
|
for (Listener l : mListeners) {
|
|
l.onVideoProviderChanged(this, videoProvider);
|
|
}
|
|
}
|
|
|
|
private final void fireOnConferenceableConnectionsChanged() {
|
|
for (Listener l : mListeners) {
|
|
l.onConferenceableConnectionsChanged(this, getConferenceableConnections());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns the connections with which this connection can be conferenced.
|
|
*/
|
|
public final List<Connection> getConferenceableConnections() {
|
|
return mUnmodifiableConferenceableConnections;
|
|
}
|
|
|
|
/**
|
|
* Tears down the conference object and any of its current connections.
|
|
*/
|
|
public final void destroy() {
|
|
Log.d(this, "destroying conference : %s", this);
|
|
// Tear down the children.
|
|
for (Connection connection : mChildConnections) {
|
|
Log.d(this, "removing connection %s", connection);
|
|
removeConnection(connection);
|
|
}
|
|
|
|
// If not yet disconnected, set the conference call as disconnected first.
|
|
if (mState != Connection.STATE_DISCONNECTED) {
|
|
Log.d(this, "setting to disconnected");
|
|
setDisconnected(new DisconnectCause(DisconnectCause.LOCAL));
|
|
}
|
|
|
|
// ...and notify.
|
|
for (Listener l : mListeners) {
|
|
l.onDestroyed(this);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Add a listener to be notified of a state change.
|
|
*
|
|
* @param listener The new listener.
|
|
* @return This conference.
|
|
* @hide
|
|
*/
|
|
final Conference addListener(Listener listener) {
|
|
mListeners.add(listener);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Removes the specified listener.
|
|
*
|
|
* @param listener The listener to remove.
|
|
* @return This conference.
|
|
* @hide
|
|
*/
|
|
final Conference removeListener(Listener listener) {
|
|
mListeners.remove(listener);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Retrieves the primary connection associated with the conference. The primary connection is
|
|
* the connection from which the conference will retrieve its current state.
|
|
*
|
|
* @return The primary connection.
|
|
* @hide
|
|
*/
|
|
@SystemApi
|
|
public Connection getPrimaryConnection() {
|
|
if (mUnmodifiableChildConnections == null || mUnmodifiableChildConnections.isEmpty()) {
|
|
return null;
|
|
}
|
|
return mUnmodifiableChildConnections.get(0);
|
|
}
|
|
|
|
/**
|
|
* @hide
|
|
* @deprecated Use {@link #setConnectionTime}.
|
|
*/
|
|
@Deprecated
|
|
@SystemApi
|
|
public final void setConnectTimeMillis(long connectTimeMillis) {
|
|
setConnectionTime(connectTimeMillis);
|
|
}
|
|
|
|
/**
|
|
* Sets the connection start time of the {@code Conference}. This is used in the call log to
|
|
* indicate the date and time when the conference took place.
|
|
* <p>
|
|
* Should be specified in wall-clock time returned by {@link System#currentTimeMillis()}.
|
|
* <p>
|
|
* When setting the connection time, you should always set the connection elapsed time via
|
|
* {@link #setConnectionStartElapsedRealtimeMillis(long)} to ensure the duration is reflected.
|
|
*
|
|
* @param connectionTimeMillis The connection time, in milliseconds, as returned by
|
|
* {@link System#currentTimeMillis()}.
|
|
*/
|
|
public final void setConnectionTime(@IntRange(from = 0) long connectionTimeMillis) {
|
|
mConnectTimeMillis = connectionTimeMillis;
|
|
}
|
|
|
|
/**
|
|
* Sets the start time of the {@link Conference} which is the basis for the determining the
|
|
* duration of the {@link Conference}.
|
|
* <p>
|
|
* You should use a value returned by {@link SystemClock#elapsedRealtime()} to ensure that time
|
|
* zone changes do not impact the conference duration.
|
|
* <p>
|
|
* When setting this, you should also set the connection time via
|
|
* {@link #setConnectionTime(long)}.
|
|
*
|
|
* @param connectionStartElapsedRealTime The connection time, as measured by
|
|
* {@link SystemClock#elapsedRealtime()}.
|
|
* @deprecated use {@link #setConnectionStartElapsedRealtimeMillis(long)} instead.
|
|
*/
|
|
@Deprecated
|
|
public final void setConnectionStartElapsedRealTime(long connectionStartElapsedRealTime) {
|
|
setConnectionStartElapsedRealtimeMillis(connectionStartElapsedRealTime);
|
|
}
|
|
|
|
/**
|
|
* Sets the start time of the {@link Conference} which is the basis for the determining the
|
|
* duration of the {@link Conference}.
|
|
* <p>
|
|
* You should use a value returned by {@link SystemClock#elapsedRealtime()} to ensure that time
|
|
* zone changes do not impact the conference duration.
|
|
* <p>
|
|
* When setting this, you should also set the connection time via
|
|
* {@link #setConnectionTime(long)}.
|
|
*
|
|
* @param connectionStartElapsedRealTime The connection time, as measured by
|
|
* {@link SystemClock#elapsedRealtime()}.
|
|
*/
|
|
public final void setConnectionStartElapsedRealtimeMillis(
|
|
@ElapsedRealtimeLong long connectionStartElapsedRealTime) {
|
|
mConnectionStartElapsedRealTime = connectionStartElapsedRealTime;
|
|
}
|
|
|
|
/**
|
|
* @hide
|
|
* @deprecated Use {@link #getConnectionTime}.
|
|
*/
|
|
@Deprecated
|
|
@SystemApi
|
|
public final long getConnectTimeMillis() {
|
|
return getConnectionTime();
|
|
}
|
|
|
|
/**
|
|
* Retrieves the connection start time of the {@code Conference}, if specified. A value of
|
|
* {@link #CONNECT_TIME_NOT_SPECIFIED} indicates that Telecom should determine the start time
|
|
* of the conference.
|
|
*
|
|
* @return The time at which the {@code Conference} was connected.
|
|
*/
|
|
public final @IntRange(from = 0) long getConnectionTime() {
|
|
return mConnectTimeMillis;
|
|
}
|
|
|
|
/**
|
|
* Retrieves the connection start time of the {@link Conference}, if specified. A value of
|
|
* {@link #CONNECT_TIME_NOT_SPECIFIED} indicates that Telecom should determine the start time
|
|
* of the conference.
|
|
* <p>
|
|
* This is based on the value of {@link SystemClock#elapsedRealtime()} to ensure that it is not
|
|
* impacted by wall clock changes (user initiated, network initiated, time zone change, etc).
|
|
* <p>
|
|
* Note: This is only exposed for use by the Telephony framework which needs it to copy
|
|
* conference start times among conference participants. It is exposed as a system API since it
|
|
* has no general use other than to the Telephony framework.
|
|
*
|
|
* @return The elapsed time at which the {@link Conference} was connected.
|
|
*/
|
|
public final @ElapsedRealtimeLong long getConnectionStartElapsedRealtimeMillis() {
|
|
return mConnectionStartElapsedRealTime;
|
|
}
|
|
|
|
/**
|
|
* Inform this Conference that the state of its audio output has been changed externally.
|
|
*
|
|
* @param state The new audio state.
|
|
* @hide
|
|
*/
|
|
final void setCallAudioState(CallAudioState state) {
|
|
Log.d(this, "setCallAudioState %s", state);
|
|
mCallAudioState = state;
|
|
onAudioStateChanged(getAudioState());
|
|
onCallAudioStateChanged(state);
|
|
}
|
|
|
|
private void setState(int newState) {
|
|
if (mState != newState) {
|
|
int oldState = mState;
|
|
mState = newState;
|
|
for (Listener l : mListeners) {
|
|
l.onStateChanged(this, oldState, newState);
|
|
}
|
|
}
|
|
}
|
|
|
|
private static class FailureSignalingConference extends Conference {
|
|
private boolean mImmutable = false;
|
|
public FailureSignalingConference(DisconnectCause disconnectCause,
|
|
PhoneAccountHandle phoneAccount) {
|
|
super(phoneAccount);
|
|
setDisconnected(disconnectCause);
|
|
mImmutable = true;
|
|
}
|
|
public void checkImmutable() {
|
|
if (mImmutable) {
|
|
throw new UnsupportedOperationException("Conference is immutable");
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Return a {@code Conference} which represents a failed conference attempt. The returned
|
|
* {@code Conference} will have a {@link android.telecom.DisconnectCause} and as specified,
|
|
* and a {@link #getState()} of {@code STATE_DISCONNECTED}.
|
|
* <p>
|
|
* The returned {@code Conference} can be assumed to {@link #destroy()} itself when appropriate,
|
|
* so users of this method need not maintain a reference to its return value to destroy it.
|
|
*
|
|
* @param disconnectCause The disconnect cause, ({@see android.telecomm.DisconnectCause}).
|
|
* @return A {@code Conference} which indicates failure.
|
|
*/
|
|
public @NonNull static Conference createFailedConference(
|
|
@NonNull DisconnectCause disconnectCause, @NonNull PhoneAccountHandle phoneAccount) {
|
|
return new FailureSignalingConference(disconnectCause, phoneAccount);
|
|
}
|
|
|
|
private final void clearConferenceableList() {
|
|
for (Connection c : mConferenceableConnections) {
|
|
c.removeConnectionListener(mConnectionDeathListener);
|
|
}
|
|
mConferenceableConnections.clear();
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return String.format(Locale.US,
|
|
"[State: %s,Capabilites: %s, VideoState: %s, VideoProvider: %s,"
|
|
+ "isRingbackRequested: %s, ThisObject %s]",
|
|
Connection.stateToString(mState),
|
|
Call.Details.capabilitiesToString(mConnectionCapabilities),
|
|
getVideoState(),
|
|
getVideoProvider(),
|
|
isRingbackRequested() ? "Y" : "N",
|
|
super.toString());
|
|
}
|
|
|
|
/**
|
|
* Sets the label and icon status to display in the InCall UI.
|
|
*
|
|
* @param statusHints The status label and icon to set.
|
|
*/
|
|
public final void setStatusHints(StatusHints statusHints) {
|
|
mStatusHints = statusHints;
|
|
for (Listener l : mListeners) {
|
|
l.onStatusHintsChanged(this, statusHints);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return The status hints for this conference.
|
|
*/
|
|
public final StatusHints getStatusHints() {
|
|
return mStatusHints;
|
|
}
|
|
|
|
/**
|
|
* Replaces all the extras associated with this {@code Conference}.
|
|
* <p>
|
|
* New or existing keys are replaced in the {@code Conference} extras. Keys which are no longer
|
|
* in the new extras, but were present the last time {@code setExtras} was called are removed.
|
|
* <p>
|
|
* Alternatively you may use the {@link #putExtras(Bundle)}, and
|
|
* {@link #removeExtras(String...)} methods to modify the extras.
|
|
* <p>
|
|
* No assumptions should be made as to how an In-Call UI or service will handle these extras.
|
|
* Keys should be fully qualified (e.g., com.example.extras.MY_EXTRA) to avoid conflicts.
|
|
*
|
|
* @param extras The extras associated with this {@code Conference}.
|
|
*/
|
|
public final void setExtras(@Nullable Bundle extras) {
|
|
// Keeping putExtras and removeExtras in the same lock so that this operation happens as a
|
|
// block instead of letting other threads put/remove while this method is running.
|
|
synchronized (mExtrasLock) {
|
|
// Add/replace any new or changed extras values.
|
|
putExtras(extras);
|
|
// If we have used "setExtras" in the past, compare the key set from the last invocation
|
|
// to the current one and remove any keys that went away.
|
|
if (mPreviousExtraKeys != null) {
|
|
List<String> toRemove = new ArrayList<String>();
|
|
for (String oldKey : mPreviousExtraKeys) {
|
|
if (extras == null || !extras.containsKey(oldKey)) {
|
|
toRemove.add(oldKey);
|
|
}
|
|
}
|
|
|
|
if (!toRemove.isEmpty()) {
|
|
removeExtras(toRemove);
|
|
}
|
|
}
|
|
|
|
// Track the keys the last time set called setExtras. This way, the next time setExtras
|
|
// is called we can see if the caller has removed any extras values.
|
|
if (mPreviousExtraKeys == null) {
|
|
mPreviousExtraKeys = new ArraySet<String>();
|
|
}
|
|
mPreviousExtraKeys.clear();
|
|
if (extras != null) {
|
|
mPreviousExtraKeys.addAll(extras.keySet());
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Adds some extras to this {@link Conference}. Existing keys are replaced and new ones are
|
|
* added.
|
|
* <p>
|
|
* No assumptions should be made as to how an In-Call UI or service will handle these extras.
|
|
* Keys should be fully qualified (e.g., com.example.MY_EXTRA) to avoid conflicts.
|
|
*
|
|
* @param extras The extras to add.
|
|
*/
|
|
public final void putExtras(@NonNull Bundle extras) {
|
|
if (extras == null) {
|
|
return;
|
|
}
|
|
|
|
// Creating a Bundle clone so we don't have to synchronize on mExtrasLock while calling
|
|
// onExtrasChanged.
|
|
Bundle listenersBundle;
|
|
synchronized (mExtrasLock) {
|
|
if (mExtras == null) {
|
|
mExtras = new Bundle();
|
|
}
|
|
mExtras.putAll(extras);
|
|
listenersBundle = new Bundle(mExtras);
|
|
}
|
|
|
|
for (Listener l : mListeners) {
|
|
l.onExtrasChanged(this, new Bundle(listenersBundle));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Adds a boolean extra to this {@link Conference}.
|
|
*
|
|
* @param key The extra key.
|
|
* @param value The value.
|
|
* @hide
|
|
*/
|
|
public final void putExtra(String key, boolean value) {
|
|
Bundle newExtras = new Bundle();
|
|
newExtras.putBoolean(key, value);
|
|
putExtras(newExtras);
|
|
}
|
|
|
|
/**
|
|
* Adds an integer extra to this {@link Conference}.
|
|
*
|
|
* @param key The extra key.
|
|
* @param value The value.
|
|
* @hide
|
|
*/
|
|
public final void putExtra(String key, int value) {
|
|
Bundle newExtras = new Bundle();
|
|
newExtras.putInt(key, value);
|
|
putExtras(newExtras);
|
|
}
|
|
|
|
/**
|
|
* Adds a string extra to this {@link Conference}.
|
|
*
|
|
* @param key The extra key.
|
|
* @param value The value.
|
|
* @hide
|
|
*/
|
|
public final void putExtra(String key, String value) {
|
|
Bundle newExtras = new Bundle();
|
|
newExtras.putString(key, value);
|
|
putExtras(newExtras);
|
|
}
|
|
|
|
/**
|
|
* Removes extras from this {@link Conference}.
|
|
*
|
|
* @param keys The keys of the extras to remove.
|
|
*/
|
|
public final void removeExtras(List<String> keys) {
|
|
if (keys == null || keys.isEmpty()) {
|
|
return;
|
|
}
|
|
|
|
synchronized (mExtrasLock) {
|
|
if (mExtras != null) {
|
|
for (String key : keys) {
|
|
mExtras.remove(key);
|
|
}
|
|
}
|
|
}
|
|
|
|
List<String> unmodifiableKeys = Collections.unmodifiableList(keys);
|
|
for (Listener l : mListeners) {
|
|
l.onExtrasRemoved(this, unmodifiableKeys);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Removes extras from this {@link Conference}.
|
|
*
|
|
* @param keys The keys of the extras to remove.
|
|
*/
|
|
public final void removeExtras(String ... keys) {
|
|
removeExtras(Arrays.asList(keys));
|
|
}
|
|
|
|
/**
|
|
* Returns the extras associated with this conference.
|
|
* <p>
|
|
* Extras should be updated using {@link #putExtras(Bundle)} and {@link #removeExtras(List)}.
|
|
* <p>
|
|
* Telecom or an {@link InCallService} can also update the extras via
|
|
* {@link android.telecom.Call#putExtras(Bundle)}, and
|
|
* {@link Call#removeExtras(List)}.
|
|
* <p>
|
|
* The conference is notified of changes to the extras made by Telecom or an
|
|
* {@link InCallService} by {@link #onExtrasChanged(Bundle)}.
|
|
*
|
|
* @return The extras associated with this connection.
|
|
*/
|
|
public final Bundle getExtras() {
|
|
return mExtras;
|
|
}
|
|
|
|
/**
|
|
* Notifies this {@link Conference} of a change to the extras made outside the
|
|
* {@link ConnectionService}.
|
|
* <p>
|
|
* These extras changes can originate from Telecom itself, or from an {@link InCallService} via
|
|
* {@link android.telecom.Call#putExtras(Bundle)}, and
|
|
* {@link Call#removeExtras(List)}.
|
|
*
|
|
* @param extras The new extras bundle.
|
|
*/
|
|
public void onExtrasChanged(Bundle extras) {}
|
|
|
|
/**
|
|
* Set whether Telecom should treat this {@link Conference} as a multiparty conference call or
|
|
* if it should treat it as a single-party call.
|
|
* This method is used as part of a workaround regarding IMS conference calls and user
|
|
* expectation. In IMS, once a conference is formed, the UE is connected to an IMS conference
|
|
* server. If all participants of the conference drop out of the conference except for one, the
|
|
* UE is still connected to the IMS conference server. At this point, the user logically
|
|
* assumes they're no longer in a conference, yet the underlying network actually is.
|
|
* To help provide a better user experiece, IMS conference calls can pretend to actually be a
|
|
* single-party call when the participant count drops to 1. Although the dialer/phone app
|
|
* could perform this trickery, it makes sense to do this in Telephony since a fix there will
|
|
* ensure that bluetooth head units, auto and wearable apps all behave consistently.
|
|
* <p>
|
|
* This API is intended for use by the platform Telephony stack only.
|
|
*
|
|
* @param isConference {@code true} if this {@link Conference} should be treated like a
|
|
* conference call, {@code false} if it should be treated like a single-party call.
|
|
* @hide
|
|
*/
|
|
@SystemApi
|
|
@RequiresPermission(MODIFY_PHONE_STATE)
|
|
public void setConferenceState(boolean isConference) {
|
|
mIsMultiparty = isConference;
|
|
for (Listener l : mListeners) {
|
|
l.onConferenceStateChanged(this, isConference);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Sets the call direction of this {@link Conference}. By default, all {@link Conference}s have
|
|
* a direction of {@link android.telecom.Call.Details.CallDirection#DIRECTION_UNKNOWN}. The
|
|
* direction of a {@link Conference} is only applicable to the case where
|
|
* {@link #setConferenceState(boolean)} has been set to {@code false}, otherwise the direction
|
|
* will be ignored.
|
|
* @param callDirection The direction of the conference.
|
|
* @hide
|
|
*/
|
|
@RequiresPermission(MODIFY_PHONE_STATE)
|
|
public final void setCallDirection(@Call.Details.CallDirection int callDirection) {
|
|
Log.d(this, "setDirection %d", callDirection);
|
|
mCallDirection = callDirection;
|
|
for (Listener l : mListeners) {
|
|
l.onCallDirectionChanged(this, callDirection);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Determines if the {@link Conference} is considered "multiparty" or not. By default all
|
|
* conferences are considered multiparty. A multiparty conference is one where there are
|
|
* multiple conference participants (other than the host) in the conference.
|
|
* This is tied to {@link #setConferenceState(boolean)}, which is used for some use cases to
|
|
* have a conference appear as if it is a standalone call, in which case the conference will
|
|
* no longer be multiparty.
|
|
* @return {@code true} if conference is treated as a conference (i.e. it is multiparty),
|
|
* {@code false} if it should emulate a standalone call (i.e. not multiparty).
|
|
* @hide
|
|
*/
|
|
public boolean isMultiparty() {
|
|
return mIsMultiparty;
|
|
}
|
|
|
|
/**
|
|
* Sets the address of this {@link Conference}. Used when {@link #setConferenceState(boolean)}
|
|
* is called to mark a conference temporarily as NOT a conference.
|
|
* <p>
|
|
* Note: This is a Telephony-specific implementation detail related to IMS conferences. It is
|
|
* not intended for use outside of the Telephony stack.
|
|
*
|
|
* @param address The new address.
|
|
* @param presentation The presentation requirements for the address.
|
|
* See {@link TelecomManager} for valid values.
|
|
* @hide
|
|
*/
|
|
@SystemApi
|
|
@RequiresPermission(MODIFY_PHONE_STATE)
|
|
public final void setAddress(@NonNull Uri address,
|
|
@TelecomManager.Presentation int presentation) {
|
|
Log.d(this, "setAddress %s", address);
|
|
mAddress = address;
|
|
mAddressPresentation = presentation;
|
|
for (Listener l : mListeners) {
|
|
l.onAddressChanged(this, address, presentation);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns the "address" associated with the conference. This is applicable in two cases:
|
|
* <ol>
|
|
* <li>When {@link #setConferenceState(boolean)} is used to mark a conference as
|
|
* temporarily "not a conference"; we need to present the correct address in the in-call
|
|
* UI.</li>
|
|
* <li>When the conference is not hosted on the current device, we need to know the address
|
|
* information for the purpose of showing the original address to the user, as well as for
|
|
* logging to the call log.</li>
|
|
* </ol>
|
|
* @return The address of the conference, or {@code null} if not applicable.
|
|
* @hide
|
|
*/
|
|
public final Uri getAddress() {
|
|
return mAddress;
|
|
}
|
|
|
|
/**
|
|
* Returns the address presentation associated with the conference.
|
|
* <p>
|
|
* This is applicable in two cases:
|
|
* <ol>
|
|
* <li>When {@link #setConferenceState(boolean)} is used to mark a conference as
|
|
* temporarily "not a conference"; we need to present the correct address presentation in
|
|
* the in-call UI.</li>
|
|
* <li>When the conference is not hosted on the current device, we need to know the address
|
|
* presentation information for the purpose of showing the original address to the user, as
|
|
* well as for logging to the call log.</li>
|
|
* </ol>
|
|
* @return The address presentation of the conference.
|
|
* @hide
|
|
*/
|
|
public final @TelecomManager.Presentation int getAddressPresentation() {
|
|
return mAddressPresentation;
|
|
}
|
|
|
|
/**
|
|
* @return The caller display name (CNAP).
|
|
* @hide
|
|
*/
|
|
public final String getCallerDisplayName() {
|
|
return mCallerDisplayName;
|
|
}
|
|
|
|
/**
|
|
* @return The presentation requirements for the handle.
|
|
* See {@link TelecomManager} for valid values.
|
|
* @hide
|
|
*/
|
|
public final int getCallerDisplayNamePresentation() {
|
|
return mCallerDisplayNamePresentation;
|
|
}
|
|
|
|
/**
|
|
* @return The call direction of this conference. Only applicable when
|
|
* {@link #setConferenceState(boolean)} is set to false.
|
|
* @hide
|
|
*/
|
|
public final @Call.Details.CallDirection int getCallDirection() {
|
|
return mCallDirection;
|
|
}
|
|
|
|
/**
|
|
* Sets the caller display name (CNAP) of this {@link Conference}. Used when
|
|
* {@link #setConferenceState(boolean)} is called to mark a conference temporarily as NOT a
|
|
* conference.
|
|
* <p>
|
|
* Note: This is a Telephony-specific implementation detail related to IMS conferences. It is
|
|
* not intended for use outside of the Telephony stack.
|
|
*
|
|
* @param callerDisplayName The new display name.
|
|
* @param presentation The presentation requirements for the handle.
|
|
* See {@link TelecomManager} for valid values.
|
|
* @hide
|
|
*/
|
|
@SystemApi
|
|
public final void setCallerDisplayName(@NonNull String callerDisplayName,
|
|
@TelecomManager.Presentation int presentation) {
|
|
Log.d(this, "setCallerDisplayName %s", callerDisplayName);
|
|
mCallerDisplayName = callerDisplayName;
|
|
mCallerDisplayNamePresentation = presentation;
|
|
for (Listener l : mListeners) {
|
|
l.onCallerDisplayNameChanged(this, callerDisplayName, presentation);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Handles a change to extras received from Telecom.
|
|
*
|
|
* @param extras The new extras.
|
|
* @hide
|
|
*/
|
|
final void handleExtrasChanged(Bundle extras) {
|
|
Bundle b = null;
|
|
synchronized (mExtrasLock) {
|
|
mExtras = extras;
|
|
if (mExtras != null) {
|
|
b = new Bundle(mExtras);
|
|
}
|
|
}
|
|
onExtrasChanged(b);
|
|
}
|
|
|
|
/**
|
|
* Sends an event associated with this {@link Conference} with associated event extras to the
|
|
* {@link InCallService}.
|
|
* <p>
|
|
* Connection events are used to communicate point in time information from a
|
|
* {@link ConnectionService} to an {@link InCallService} implementation. An example of a
|
|
* custom connection event includes notifying the UI when a WIFI call has been handed over to
|
|
* LTE, which the InCall UI might use to inform the user that billing charges may apply. The
|
|
* Android Telephony framework will send the {@link Connection#EVENT_MERGE_COMPLETE}
|
|
* connection event when a call to {@link Call#mergeConference()} has completed successfully.
|
|
* <p>
|
|
* Events are exposed to {@link InCallService} implementations via
|
|
* {@link Call.Callback#onConnectionEvent(Call, String, Bundle)}.
|
|
* <p>
|
|
* No assumptions should be made as to how an In-Call UI or service will handle these events.
|
|
* The {@link ConnectionService} must assume that the In-Call UI could even chose to ignore
|
|
* some events altogether.
|
|
* <p>
|
|
* Events should be fully qualified (e.g. {@code com.example.event.MY_EVENT}) to avoid
|
|
* conflicts between {@link ConnectionService} implementations. Further, custom
|
|
* {@link ConnectionService} implementations shall not re-purpose events in the
|
|
* {@code android.*} namespace, nor shall they define new event types in this namespace. When
|
|
* defining a custom event type, ensure the contents of the extras {@link Bundle} is clearly
|
|
* defined. Extra keys for this bundle should be named similar to the event type (e.g.
|
|
* {@code com.example.extra.MY_EXTRA}).
|
|
* <p>
|
|
* When defining events and the associated extras, it is important to keep their behavior
|
|
* consistent when the associated {@link ConnectionService} is updated. Support for deprecated
|
|
* events/extras should me maintained to ensure backwards compatibility with older
|
|
* {@link InCallService} implementations which were built to support the older behavior.
|
|
* <p>
|
|
* Expected connection events from the Telephony stack are:
|
|
* <p>
|
|
* <ul>
|
|
* <li>{@link Connection#EVENT_CALL_HOLD_FAILED} with {@code null} {@code extras} when the
|
|
* {@link Conference} could not be held.</li>
|
|
* <li>{@link Connection#EVENT_MERGE_START} with {@code null} {@code extras} when a new
|
|
* call is being merged into the conference.</li>
|
|
* <li>{@link Connection#EVENT_MERGE_COMPLETE} with {@code null} {@code extras} a new call
|
|
* has completed being merged into the conference.</li>
|
|
* <li>{@link Connection#EVENT_CALL_MERGE_FAILED} with {@code null} {@code extras} a new
|
|
* call has failed to merge into the conference (the dialer app can determine which call
|
|
* failed to merge based on the fact that the call still exists outside of the conference
|
|
* at the end of the merge process).</li>
|
|
* </ul>
|
|
*
|
|
* @param event The conference event.
|
|
* @param extras Optional bundle containing extra information associated with the event.
|
|
*/
|
|
public void sendConferenceEvent(@NonNull String event, @Nullable Bundle extras) {
|
|
for (Listener l : mListeners) {
|
|
l.onConnectionEvent(this, event, extras);
|
|
}
|
|
}
|
|
}
|