| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2013 The Android Open Source Project | 
|  | 3 | * | 
|  | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 5 | * you may not use this file except in compliance with the License. | 
|  | 6 | * You may obtain a copy of the License at | 
|  | 7 | * | 
|  | 8 | *      http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 9 | * | 
|  | 10 | * Unless required by applicable law or agreed to in writing, software | 
|  | 11 | * distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 13 | * See the License for the specific language governing permissions and | 
|  | 14 | * limitations under the License. | 
|  | 15 | */ | 
|  | 16 |  | 
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 17 | package android.telecom; | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 18 |  | 
| Santos Cordon | 29886d8 | 2015-04-16 15:34:07 -0700 | [diff] [blame] | 19 | import android.annotation.SystemApi; | 
| Tyler Gunn | 876dbfb | 2016-03-14 15:18:07 -0700 | [diff] [blame^] | 20 | import android.os.Bundle; | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 21 | import android.util.ArrayMap; | 
|  | 22 |  | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 23 | import java.util.Collections; | 
|  | 24 | import java.util.List; | 
|  | 25 | import java.util.Map; | 
|  | 26 | import java.util.Objects; | 
| Jay Shrauner | 229e382 | 2014-08-15 09:23:07 -0700 | [diff] [blame] | 27 | import java.util.concurrent.CopyOnWriteArrayList; | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 28 |  | 
|  | 29 | /** | 
|  | 30 | * A unified virtual device providing a means of voice (and other) communication on a device. | 
| Santos Cordon | 29886d8 | 2015-04-16 15:34:07 -0700 | [diff] [blame] | 31 | * | 
|  | 32 | * @hide | 
|  | 33 | * @deprecated Use {@link InCallService} directly instead of using this class. | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 34 | */ | 
| Santos Cordon | 29886d8 | 2015-04-16 15:34:07 -0700 | [diff] [blame] | 35 | @SystemApi | 
|  | 36 | @Deprecated | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 37 | public final class Phone { | 
|  | 38 |  | 
|  | 39 | public abstract static class Listener { | 
|  | 40 | /** | 
|  | 41 | * Called when the audio state changes. | 
|  | 42 | * | 
|  | 43 | * @param phone The {@code Phone} calling this method. | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 44 | * @param audioState The new {@link AudioState}. | 
| Yorke Lee | 4af5935 | 2015-05-13 14:14:54 -0700 | [diff] [blame] | 45 | * | 
|  | 46 | * @deprecated Use {@link #onCallAudioStateChanged(Phone, CallAudioState)} instead. | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 47 | */ | 
| Yorke Lee | 4af5935 | 2015-05-13 14:14:54 -0700 | [diff] [blame] | 48 | @Deprecated | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 49 | public void onAudioStateChanged(Phone phone, AudioState audioState) { } | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 50 |  | 
|  | 51 | /** | 
| Yorke Lee | 4af5935 | 2015-05-13 14:14:54 -0700 | [diff] [blame] | 52 | * Called when the audio state changes. | 
|  | 53 | * | 
|  | 54 | * @param phone The {@code Phone} calling this method. | 
|  | 55 | * @param callAudioState The new {@link CallAudioState}. | 
|  | 56 | */ | 
|  | 57 | public void onCallAudioStateChanged(Phone phone, CallAudioState callAudioState) { } | 
|  | 58 |  | 
|  | 59 | /** | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 60 | * Called to bring the in-call screen to the foreground. The in-call experience should | 
|  | 61 | * respond immediately by coming to the foreground to inform the user of the state of | 
|  | 62 | * ongoing {@code Call}s. | 
|  | 63 | * | 
|  | 64 | * @param phone The {@code Phone} calling this method. | 
|  | 65 | * @param showDialpad If true, put up the dialpad when the screen is shown. | 
|  | 66 | */ | 
|  | 67 | public void onBringToForeground(Phone phone, boolean showDialpad) { } | 
|  | 68 |  | 
|  | 69 | /** | 
|  | 70 | * Called when a {@code Call} has been added to this in-call session. The in-call user | 
|  | 71 | * experience should add necessary state listeners to the specified {@code Call} and | 
|  | 72 | * immediately start to show the user information about the existence | 
|  | 73 | * and nature of this {@code Call}. Subsequent invocations of {@link #getCalls()} will | 
|  | 74 | * include this {@code Call}. | 
|  | 75 | * | 
|  | 76 | * @param phone The {@code Phone} calling this method. | 
|  | 77 | * @param call A newly added {@code Call}. | 
|  | 78 | */ | 
|  | 79 | public void onCallAdded(Phone phone, Call call) { } | 
|  | 80 |  | 
|  | 81 | /** | 
|  | 82 | * Called when a {@code Call} has been removed from this in-call session. The in-call user | 
|  | 83 | * experience should remove any state listeners from the specified {@code Call} and | 
|  | 84 | * immediately stop displaying any information about this {@code Call}. | 
|  | 85 | * Subsequent invocations of {@link #getCalls()} will no longer include this {@code Call}. | 
|  | 86 | * | 
|  | 87 | * @param phone The {@code Phone} calling this method. | 
|  | 88 | * @param call A newly removed {@code Call}. | 
|  | 89 | */ | 
|  | 90 | public void onCallRemoved(Phone phone, Call call) { } | 
| Santos Cordon | 6c912b7 | 2014-11-07 16:05:09 -0800 | [diff] [blame] | 91 |  | 
|  | 92 | /** | 
|  | 93 | * Called when the {@code Phone} ability to add more calls changes.  If the phone cannot | 
|  | 94 | * support more calls then {@code canAddCall} is set to {@code false}.  If it can, then it | 
|  | 95 | * is set to {@code true}. | 
|  | 96 | * | 
|  | 97 | * @param phone The {@code Phone} calling this method. | 
|  | 98 | * @param canAddCall Indicates whether an additional call can be added. | 
|  | 99 | */ | 
|  | 100 | public void onCanAddCallChanged(Phone phone, boolean canAddCall) { } | 
| Sailesh Nepal | 9c2618b | 2016-01-23 16:28:22 -0800 | [diff] [blame] | 101 |  | 
|  | 102 | /** | 
|  | 103 | * Called to silence the ringer if a ringing call exists. | 
|  | 104 | * | 
|  | 105 | * @param phone The {@code Phone} calling this method. | 
|  | 106 | */ | 
|  | 107 | public void onSilenceRinger(Phone phone) { } | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 108 | } | 
|  | 109 |  | 
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 110 | // A Map allows us to track each Call by its Telecom-specified call ID | 
|  | 111 | private final Map<String, Call> mCallByTelecomCallId = new ArrayMap<>(); | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 112 |  | 
|  | 113 | // A List allows us to keep the Calls in a stable iteration order so that casually developed | 
|  | 114 | // user interface components do not incur any spurious jank | 
| Santos Cordon | f30d7e9 | 2014-08-26 09:54:33 -0700 | [diff] [blame] | 115 | private final List<Call> mCalls = new CopyOnWriteArrayList<>(); | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 116 |  | 
|  | 117 | // An unmodifiable view of the above List can be safely shared with subclass implementations | 
|  | 118 | private final List<Call> mUnmodifiableCalls = Collections.unmodifiableList(mCalls); | 
|  | 119 |  | 
|  | 120 | private final InCallAdapter mInCallAdapter; | 
|  | 121 |  | 
| Yorke Lee | 4af5935 | 2015-05-13 14:14:54 -0700 | [diff] [blame] | 122 | private CallAudioState mCallAudioState; | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 123 |  | 
| Jay Shrauner | 229e382 | 2014-08-15 09:23:07 -0700 | [diff] [blame] | 124 | private final List<Listener> mListeners = new CopyOnWriteArrayList<>(); | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 125 |  | 
| Santos Cordon | 6c912b7 | 2014-11-07 16:05:09 -0800 | [diff] [blame] | 126 | private boolean mCanAddCall = true; | 
|  | 127 |  | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 128 | Phone(InCallAdapter adapter) { | 
|  | 129 | mInCallAdapter = adapter; | 
|  | 130 | } | 
|  | 131 |  | 
| Santos Cordon | 88b771d | 2014-07-19 13:10:40 -0700 | [diff] [blame] | 132 | final void internalAddCall(ParcelableCall parcelableCall) { | 
| Shriram Ganesh | ddf570e | 2015-05-31 09:18:48 -0700 | [diff] [blame] | 133 | Call call = new Call(this, parcelableCall.getId(), mInCallAdapter, | 
|  | 134 | parcelableCall.getState()); | 
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 135 | mCallByTelecomCallId.put(parcelableCall.getId(), call); | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 136 | mCalls.add(call); | 
| Santos Cordon | 88b771d | 2014-07-19 13:10:40 -0700 | [diff] [blame] | 137 | checkCallTree(parcelableCall); | 
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 138 | call.internalUpdate(parcelableCall, mCallByTelecomCallId); | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 139 | fireCallAdded(call); | 
|  | 140 | } | 
|  | 141 |  | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 142 | final void internalRemoveCall(Call call) { | 
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 143 | mCallByTelecomCallId.remove(call.internalGetCallId()); | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 144 | mCalls.remove(call); | 
| Tyler Gunn | 7595842 | 2015-04-15 14:23:42 -0700 | [diff] [blame] | 145 |  | 
|  | 146 | InCallService.VideoCall videoCall = call.getVideoCall(); | 
|  | 147 | if (videoCall != null) { | 
| Andrew Lee | 011728f | 2015-04-23 15:47:06 -0700 | [diff] [blame] | 148 | videoCall.destroy(); | 
| Tyler Gunn | 7595842 | 2015-04-15 14:23:42 -0700 | [diff] [blame] | 149 | } | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 150 | fireCallRemoved(call); | 
|  | 151 | } | 
|  | 152 |  | 
| Santos Cordon | 88b771d | 2014-07-19 13:10:40 -0700 | [diff] [blame] | 153 | final void internalUpdateCall(ParcelableCall parcelableCall) { | 
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 154 | Call call = mCallByTelecomCallId.get(parcelableCall.getId()); | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 155 | if (call != null) { | 
| Santos Cordon | 88b771d | 2014-07-19 13:10:40 -0700 | [diff] [blame] | 156 | checkCallTree(parcelableCall); | 
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 157 | call.internalUpdate(parcelableCall, mCallByTelecomCallId); | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 158 | } | 
|  | 159 | } | 
|  | 160 |  | 
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 161 | final void internalSetPostDialWait(String telecomId, String remaining) { | 
|  | 162 | Call call = mCallByTelecomCallId.get(telecomId); | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 163 | if (call != null) { | 
|  | 164 | call.internalSetPostDialWait(remaining); | 
|  | 165 | } | 
|  | 166 | } | 
|  | 167 |  | 
| Yorke Lee | 4af5935 | 2015-05-13 14:14:54 -0700 | [diff] [blame] | 168 | final void internalCallAudioStateChanged(CallAudioState callAudioState) { | 
|  | 169 | if (!Objects.equals(mCallAudioState, callAudioState)) { | 
|  | 170 | mCallAudioState = callAudioState; | 
|  | 171 | fireCallAudioStateChanged(callAudioState); | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 172 | } | 
|  | 173 | } | 
|  | 174 |  | 
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 175 | final Call internalGetCallByTelecomId(String telecomId) { | 
|  | 176 | return mCallByTelecomCallId.get(telecomId); | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 177 | } | 
|  | 178 |  | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 179 | final void internalBringToForeground(boolean showDialpad) { | 
|  | 180 | fireBringToForeground(showDialpad); | 
|  | 181 | } | 
|  | 182 |  | 
| Santos Cordon | 6c912b7 | 2014-11-07 16:05:09 -0800 | [diff] [blame] | 183 | final void internalSetCanAddCall(boolean canAddCall) { | 
|  | 184 | if (mCanAddCall != canAddCall) { | 
|  | 185 | mCanAddCall = canAddCall; | 
|  | 186 | fireCanAddCallChanged(canAddCall); | 
|  | 187 | } | 
|  | 188 | } | 
|  | 189 |  | 
| Sailesh Nepal | 9c2618b | 2016-01-23 16:28:22 -0800 | [diff] [blame] | 190 | final void internalSilenceRinger() { | 
|  | 191 | fireSilenceRinger(); | 
|  | 192 | } | 
|  | 193 |  | 
| Tyler Gunn | 876dbfb | 2016-03-14 15:18:07 -0700 | [diff] [blame^] | 194 | final void internalOnConnectionEvent(String telecomId, String event, Bundle extras) { | 
|  | 195 | Call call = mCallByTelecomCallId.get(telecomId); | 
|  | 196 | if (call != null) { | 
|  | 197 | call.internalOnConnectionEvent(event, extras); | 
|  | 198 | } | 
|  | 199 | } | 
|  | 200 |  | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 201 | /** | 
| Santos Cordon | f30d7e9 | 2014-08-26 09:54:33 -0700 | [diff] [blame] | 202 | * Called to destroy the phone and cleanup any lingering calls. | 
| Santos Cordon | f30d7e9 | 2014-08-26 09:54:33 -0700 | [diff] [blame] | 203 | */ | 
|  | 204 | final void destroy() { | 
|  | 205 | for (Call call : mCalls) { | 
| Tyler Gunn | 7595842 | 2015-04-15 14:23:42 -0700 | [diff] [blame] | 206 | InCallService.VideoCall videoCall = call.getVideoCall(); | 
|  | 207 | if (videoCall != null) { | 
| Andrew Lee | 011728f | 2015-04-23 15:47:06 -0700 | [diff] [blame] | 208 | videoCall.destroy(); | 
| Tyler Gunn | 7595842 | 2015-04-15 14:23:42 -0700 | [diff] [blame] | 209 | } | 
| Santos Cordon | f30d7e9 | 2014-08-26 09:54:33 -0700 | [diff] [blame] | 210 | if (call.getState() != Call.STATE_DISCONNECTED) { | 
|  | 211 | call.internalSetDisconnected(); | 
|  | 212 | } | 
|  | 213 | } | 
|  | 214 | } | 
|  | 215 |  | 
|  | 216 | /** | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 217 | * Adds a listener to this {@code Phone}. | 
|  | 218 | * | 
|  | 219 | * @param listener A {@code Listener} object. | 
|  | 220 | */ | 
|  | 221 | public final void addListener(Listener listener) { | 
|  | 222 | mListeners.add(listener); | 
|  | 223 | } | 
|  | 224 |  | 
|  | 225 | /** | 
|  | 226 | * Removes a listener from this {@code Phone}. | 
|  | 227 | * | 
|  | 228 | * @param listener A {@code Listener} object. | 
|  | 229 | */ | 
|  | 230 | public final void removeListener(Listener listener) { | 
| Jay Shrauner | 229e382 | 2014-08-15 09:23:07 -0700 | [diff] [blame] | 231 | if (listener != null) { | 
|  | 232 | mListeners.remove(listener); | 
|  | 233 | } | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 234 | } | 
|  | 235 |  | 
|  | 236 | /** | 
|  | 237 | * Obtains the current list of {@code Call}s to be displayed by this in-call experience. | 
|  | 238 | * | 
|  | 239 | * @return A list of the relevant {@code Call}s. | 
|  | 240 | */ | 
|  | 241 | public final List<Call> getCalls() { | 
|  | 242 | return mUnmodifiableCalls; | 
|  | 243 | } | 
|  | 244 |  | 
|  | 245 | /** | 
| Santos Cordon | 6c912b7 | 2014-11-07 16:05:09 -0800 | [diff] [blame] | 246 | * Returns if the {@code Phone} can support additional calls. | 
|  | 247 | * | 
|  | 248 | * @return Whether the phone supports adding more calls. | 
|  | 249 | */ | 
|  | 250 | public final boolean canAddCall() { | 
|  | 251 | return mCanAddCall; | 
|  | 252 | } | 
|  | 253 |  | 
|  | 254 | /** | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 255 | * Sets the microphone mute state. When this request is honored, there will be change to | 
|  | 256 | * the {@link #getAudioState()}. | 
|  | 257 | * | 
|  | 258 | * @param state {@code true} if the microphone should be muted; {@code false} otherwise. | 
|  | 259 | */ | 
|  | 260 | public final void setMuted(boolean state) { | 
|  | 261 | mInCallAdapter.mute(state); | 
|  | 262 | } | 
|  | 263 |  | 
|  | 264 | /** | 
|  | 265 | * Sets the audio route (speaker, bluetooth, etc...).  When this request is honored, there will | 
|  | 266 | * be change to the {@link #getAudioState()}. | 
|  | 267 | * | 
|  | 268 | * @param route The audio route to use. | 
|  | 269 | */ | 
|  | 270 | public final void setAudioRoute(int route) { | 
|  | 271 | mInCallAdapter.setAudioRoute(route); | 
|  | 272 | } | 
|  | 273 |  | 
|  | 274 | /** | 
| Yorke Lee | 0d6ea71 | 2014-07-28 14:39:23 -0700 | [diff] [blame] | 275 | * Turns the proximity sensor on. When this request is made, the proximity sensor will | 
|  | 276 | * become active, and the touch screen and display will be turned off when the user's face | 
|  | 277 | * is detected to be in close proximity to the screen. This operation is a no-op on devices | 
|  | 278 | * that do not have a proximity sensor. | 
| Yorke Lee | 22244d0 | 2015-04-14 12:34:28 -0700 | [diff] [blame] | 279 | * | 
|  | 280 | * @hide | 
| Yorke Lee | 0d6ea71 | 2014-07-28 14:39:23 -0700 | [diff] [blame] | 281 | */ | 
|  | 282 | public final void setProximitySensorOn() { | 
|  | 283 | mInCallAdapter.turnProximitySensorOn(); | 
|  | 284 | } | 
|  | 285 |  | 
|  | 286 | /** | 
|  | 287 | * Turns the proximity sensor off. When this request is made, the proximity sensor will | 
|  | 288 | * become inactive, and no longer affect the touch screen and display. This operation is a | 
|  | 289 | * no-op on devices that do not have a proximity sensor. | 
|  | 290 | * | 
|  | 291 | * @param screenOnImmediately If true, the screen will be turned on immediately if it was | 
|  | 292 | * previously off. Otherwise, the screen will only be turned on after the proximity sensor | 
|  | 293 | * is no longer triggered. | 
| Yorke Lee | 22244d0 | 2015-04-14 12:34:28 -0700 | [diff] [blame] | 294 | * | 
|  | 295 | * @hide | 
| Yorke Lee | 0d6ea71 | 2014-07-28 14:39:23 -0700 | [diff] [blame] | 296 | */ | 
|  | 297 | public final void setProximitySensorOff(boolean screenOnImmediately) { | 
|  | 298 | mInCallAdapter.turnProximitySensorOff(screenOnImmediately); | 
|  | 299 | } | 
|  | 300 |  | 
|  | 301 | /** | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 302 | * Obtains the current phone call audio state of the {@code Phone}. | 
|  | 303 | * | 
|  | 304 | * @return An object encapsulating the audio state. | 
| Yorke Lee | 4af5935 | 2015-05-13 14:14:54 -0700 | [diff] [blame] | 305 | * @deprecated Use {@link #getCallAudioState()} instead. | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 306 | */ | 
| Yorke Lee | 4af5935 | 2015-05-13 14:14:54 -0700 | [diff] [blame] | 307 | @Deprecated | 
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 308 | public final AudioState getAudioState() { | 
| Yorke Lee | 4af5935 | 2015-05-13 14:14:54 -0700 | [diff] [blame] | 309 | return new AudioState(mCallAudioState); | 
|  | 310 | } | 
|  | 311 |  | 
|  | 312 | /** | 
|  | 313 | * Obtains the current phone call audio state of the {@code Phone}. | 
|  | 314 | * | 
|  | 315 | * @return An object encapsulating the audio state. | 
|  | 316 | */ | 
|  | 317 | public final CallAudioState getCallAudioState() { | 
|  | 318 | return mCallAudioState; | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 319 | } | 
|  | 320 |  | 
|  | 321 | private void fireCallAdded(Call call) { | 
| Jay Shrauner | 229e382 | 2014-08-15 09:23:07 -0700 | [diff] [blame] | 322 | for (Listener listener : mListeners) { | 
|  | 323 | listener.onCallAdded(this, call); | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 324 | } | 
|  | 325 | } | 
|  | 326 |  | 
|  | 327 | private void fireCallRemoved(Call call) { | 
| Jay Shrauner | 229e382 | 2014-08-15 09:23:07 -0700 | [diff] [blame] | 328 | for (Listener listener : mListeners) { | 
|  | 329 | listener.onCallRemoved(this, call); | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 330 | } | 
|  | 331 | } | 
|  | 332 |  | 
| Yorke Lee | 4af5935 | 2015-05-13 14:14:54 -0700 | [diff] [blame] | 333 | private void fireCallAudioStateChanged(CallAudioState audioState) { | 
| Jay Shrauner | 229e382 | 2014-08-15 09:23:07 -0700 | [diff] [blame] | 334 | for (Listener listener : mListeners) { | 
| Yorke Lee | 4af5935 | 2015-05-13 14:14:54 -0700 | [diff] [blame] | 335 | listener.onCallAudioStateChanged(this, audioState); | 
|  | 336 | listener.onAudioStateChanged(this, new AudioState(audioState)); | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 337 | } | 
|  | 338 | } | 
|  | 339 |  | 
|  | 340 | private void fireBringToForeground(boolean showDialpad) { | 
| Jay Shrauner | 229e382 | 2014-08-15 09:23:07 -0700 | [diff] [blame] | 341 | for (Listener listener : mListeners) { | 
|  | 342 | listener.onBringToForeground(this, showDialpad); | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 343 | } | 
|  | 344 | } | 
|  | 345 |  | 
| Santos Cordon | 6c912b7 | 2014-11-07 16:05:09 -0800 | [diff] [blame] | 346 | private void fireCanAddCallChanged(boolean canAddCall) { | 
|  | 347 | for (Listener listener : mListeners) { | 
|  | 348 | listener.onCanAddCallChanged(this, canAddCall); | 
|  | 349 | } | 
|  | 350 | } | 
|  | 351 |  | 
| Sailesh Nepal | 9c2618b | 2016-01-23 16:28:22 -0800 | [diff] [blame] | 352 | private void fireSilenceRinger() { | 
|  | 353 | for (Listener listener : mListeners) { | 
|  | 354 | listener.onSilenceRinger(this); | 
|  | 355 | } | 
|  | 356 | } | 
|  | 357 |  | 
| Santos Cordon | 88b771d | 2014-07-19 13:10:40 -0700 | [diff] [blame] | 358 | private void checkCallTree(ParcelableCall parcelableCall) { | 
| Santos Cordon | 88b771d | 2014-07-19 13:10:40 -0700 | [diff] [blame] | 359 | if (parcelableCall.getChildCallIds() != null) { | 
|  | 360 | for (int i = 0; i < parcelableCall.getChildCallIds().size(); i++) { | 
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 361 | if (!mCallByTelecomCallId.containsKey(parcelableCall.getChildCallIds().get(i))) { | 
| Santos Cordon | 88b771d | 2014-07-19 13:10:40 -0700 | [diff] [blame] | 362 | Log.wtf(this, "ParcelableCall %s has nonexistent child %s", | 
|  | 363 | parcelableCall.getId(), parcelableCall.getChildCallIds().get(i)); | 
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 364 | } | 
|  | 365 | } | 
|  | 366 | } | 
|  | 367 | } | 
|  | 368 | } |