Santos Cordon | 8e8b8d2 | 2013-12-19 14:14:05 -0800 | [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 | |
Ben Gilad | 9f2bed3 | 2013-12-12 17:43:26 -0800 | [diff] [blame] | 17 | package com.android.telecomm; |
| 18 | |
Sailesh Nepal | 1cecc7c | 2014-03-10 17:03:08 -0700 | [diff] [blame] | 19 | import android.content.Context; |
Sailesh Nepal | ce704b9 | 2014-03-17 18:31:43 -0700 | [diff] [blame] | 20 | import android.net.Uri; |
Evan Charlton | a05805b | 2014-03-05 08:21:46 -0800 | [diff] [blame] | 21 | import android.os.Bundle; |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 22 | import android.telecomm.CallInfo; |
Ben Gilad | c5b2269 | 2014-02-18 20:03:22 -0800 | [diff] [blame] | 23 | import android.telecomm.CallServiceDescriptor; |
Santos Cordon | 681663d | 2014-01-30 04:32:15 -0800 | [diff] [blame] | 24 | import android.telecomm.CallState; |
Santos Cordon | 8e8b8d2 | 2013-12-19 14:14:05 -0800 | [diff] [blame] | 25 | |
Sailesh Nepal | a439e1b | 2014-03-11 18:19:58 -0700 | [diff] [blame] | 26 | import com.android.internal.telecomm.ICallService; |
Santos Cordon | 681663d | 2014-01-30 04:32:15 -0800 | [diff] [blame] | 27 | import com.google.common.base.Preconditions; |
| 28 | import com.google.common.base.Strings; |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 29 | import com.google.common.collect.ImmutableCollection; |
| 30 | import com.google.common.collect.ImmutableList; |
Santos Cordon | 8e8b8d2 | 2013-12-19 14:14:05 -0800 | [diff] [blame] | 31 | import com.google.common.collect.Lists; |
Santos Cordon | 681663d | 2014-01-30 04:32:15 -0800 | [diff] [blame] | 32 | import com.google.common.collect.Maps; |
Ben Gilad | 9f2bed3 | 2013-12-12 17:43:26 -0800 | [diff] [blame] | 33 | |
Ben Gilad | 9f2bed3 | 2013-12-12 17:43:26 -0800 | [diff] [blame] | 34 | import java.util.List; |
Santos Cordon | 681663d | 2014-01-30 04:32:15 -0800 | [diff] [blame] | 35 | import java.util.Map; |
Ben Gilad | 9f2bed3 | 2013-12-12 17:43:26 -0800 | [diff] [blame] | 36 | |
Ben Gilad | dd8c608 | 2013-12-30 14:44:08 -0800 | [diff] [blame] | 37 | /** |
| 38 | * Singleton. |
| 39 | * |
| 40 | * NOTE(gilad): by design most APIs are package private, use the relevant adapter/s to allow |
| 41 | * access from other packages specifically refraining from passing the CallsManager instance |
| 42 | * beyond the com.android.telecomm package boundary. |
| 43 | */ |
Santos Cordon | 8e8b8d2 | 2013-12-19 14:14:05 -0800 | [diff] [blame] | 44 | public final class CallsManager { |
Ben Gilad | a0d9f75 | 2014-02-26 11:49:03 -0800 | [diff] [blame] | 45 | |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 46 | interface CallsManagerListener { |
| 47 | void onCallAdded(Call call); |
| 48 | void onCallRemoved(Call call); |
| 49 | void onCallStateChanged(Call call, CallState oldState, CallState newState); |
| 50 | void onIncomingCallAnswered(Call call); |
| 51 | void onIncomingCallRejected(Call call); |
| 52 | void onForegroundCallChanged(Call oldForegroundCall, Call newForegroundCall); |
| 53 | } |
| 54 | |
Santos Cordon | 8e8b8d2 | 2013-12-19 14:14:05 -0800 | [diff] [blame] | 55 | private static final CallsManager INSTANCE = new CallsManager(); |
Ben Gilad | 9f2bed3 | 2013-12-12 17:43:26 -0800 | [diff] [blame] | 56 | |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 57 | private final Switchboard mSwitchboard; |
| 58 | |
Santos Cordon | 8e8b8d2 | 2013-12-19 14:14:05 -0800 | [diff] [blame] | 59 | /** |
Santos Cordon | 681663d | 2014-01-30 04:32:15 -0800 | [diff] [blame] | 60 | * The main call repository. Keeps an instance of all live calls keyed by call ID. New incoming |
| 61 | * and outgoing calls are added to the map and removed when the calls move to the disconnected |
| 62 | * state. |
| 63 | * TODO(santoscordon): Add new CallId class and use it in place of String. |
| 64 | */ |
| 65 | private final Map<String, Call> mCalls = Maps.newHashMap(); |
| 66 | |
| 67 | /** |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 68 | * The call the user is currently interacting with. This is the call that should have audio |
| 69 | * focus and be visible in the in-call UI. |
Santos Cordon | 4e9fffe | 2014-03-04 18:13:41 -0800 | [diff] [blame] | 70 | */ |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 71 | private Call mForegroundCall; |
Santos Cordon | 4e9fffe | 2014-03-04 18:13:41 -0800 | [diff] [blame] | 72 | |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 73 | private final CallsManagerListener mCallLogManager; |
Ben Gilad | 9f2bed3 | 2013-12-12 17:43:26 -0800 | [diff] [blame] | 74 | |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 75 | private final CallsManagerListener mPhoneStateBroadcaster; |
Ben Gilad | 9f2bed3 | 2013-12-12 17:43:26 -0800 | [diff] [blame] | 76 | |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 77 | private final CallsManagerListener mCallAudioManager; |
| 78 | |
| 79 | private final CallsManagerListener mInCallController; |
| 80 | |
| 81 | private final CallsManagerListener mRinger; |
Ben Gilad | 9f2bed3 | 2013-12-12 17:43:26 -0800 | [diff] [blame] | 82 | |
Santos Cordon | 8e8b8d2 | 2013-12-19 14:14:05 -0800 | [diff] [blame] | 83 | private VoicemailManager mVoicemailManager; |
Ben Gilad | 9f2bed3 | 2013-12-12 17:43:26 -0800 | [diff] [blame] | 84 | |
Evan Charlton | f02e988 | 2014-03-06 12:54:52 -0800 | [diff] [blame] | 85 | private final List<OutgoingCallValidator> mOutgoingCallValidators = Lists.newArrayList(); |
Ben Gilad | 9f2bed3 | 2013-12-12 17:43:26 -0800 | [diff] [blame] | 86 | |
Evan Charlton | f02e988 | 2014-03-06 12:54:52 -0800 | [diff] [blame] | 87 | private final List<IncomingCallValidator> mIncomingCallValidators = Lists.newArrayList(); |
Ben Gilad | 9f2bed3 | 2013-12-12 17:43:26 -0800 | [diff] [blame] | 88 | |
Santos Cordon | 8e8b8d2 | 2013-12-19 14:14:05 -0800 | [diff] [blame] | 89 | /** |
Ben Gilad | 8bdaa46 | 2014-02-05 12:53:19 -0800 | [diff] [blame] | 90 | * Initializes the required Telecomm components. |
Santos Cordon | 8e8b8d2 | 2013-12-19 14:14:05 -0800 | [diff] [blame] | 91 | */ |
| 92 | private CallsManager() { |
Santos Cordon | 6242b13 | 2014-02-07 16:24:42 -0800 | [diff] [blame] | 93 | mSwitchboard = new Switchboard(this); |
Yorke Lee | f98fb57 | 2014-03-05 10:56:55 -0800 | [diff] [blame] | 94 | mCallLogManager = new CallLogManager(TelecommApp.getInstance()); |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 95 | mPhoneStateBroadcaster = new PhoneStateBroadcaster(); |
| 96 | mCallAudioManager = new CallAudioManager(); |
| 97 | mInCallController = new InCallController(); |
| 98 | mRinger = new Ringer(); |
Santos Cordon | 8e8b8d2 | 2013-12-19 14:14:05 -0800 | [diff] [blame] | 99 | } |
| 100 | |
Ben Gilad | a0d9f75 | 2014-02-26 11:49:03 -0800 | [diff] [blame] | 101 | static CallsManager getInstance() { |
| 102 | return INSTANCE; |
| 103 | } |
| 104 | |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 105 | ImmutableCollection<Call> getCalls() { |
| 106 | return ImmutableList.copyOf(mCalls.values()); |
| 107 | } |
| 108 | |
| 109 | Call getForegroundCall() { |
| 110 | return mForegroundCall; |
| 111 | } |
| 112 | |
Santos Cordon | 8e8b8d2 | 2013-12-19 14:14:05 -0800 | [diff] [blame] | 113 | /** |
Santos Cordon | 493e8f2 | 2014-02-19 03:15:12 -0800 | [diff] [blame] | 114 | * Starts the incoming call sequence by having switchboard gather more information about the |
| 115 | * specified call; using the specified call service descriptor. Upon success, execution returns |
| 116 | * to {@link #handleSuccessfulIncomingCall} to start the in-call UI. |
Santos Cordon | 80d9bdc | 2014-02-13 18:28:46 -0800 | [diff] [blame] | 117 | * |
Ben Gilad | c5b2269 | 2014-02-18 20:03:22 -0800 | [diff] [blame] | 118 | * @param descriptor The descriptor of the call service to use for this incoming call. |
Evan Charlton | a05805b | 2014-03-05 08:21:46 -0800 | [diff] [blame] | 119 | * @param extras The optional extras Bundle passed with the intent used for the incoming call. |
Santos Cordon | 80d9bdc | 2014-02-13 18:28:46 -0800 | [diff] [blame] | 120 | */ |
Evan Charlton | a05805b | 2014-03-05 08:21:46 -0800 | [diff] [blame] | 121 | void processIncomingCallIntent(CallServiceDescriptor descriptor, Bundle extras) { |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 122 | Log.d(this, "processIncomingCallIntent"); |
Santos Cordon | 80d9bdc | 2014-02-13 18:28:46 -0800 | [diff] [blame] | 123 | // Create a call with no handle. Eventually, switchboard will update the call with |
| 124 | // additional information from the call service, but for now we just need one to pass around |
| 125 | // with a unique call ID. |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 126 | Call call = new Call(true /* isIncoming */); |
Santos Cordon | 80d9bdc | 2014-02-13 18:28:46 -0800 | [diff] [blame] | 127 | |
Evan Charlton | a05805b | 2014-03-05 08:21:46 -0800 | [diff] [blame] | 128 | mSwitchboard.retrieveIncomingCall(call, descriptor, extras); |
Santos Cordon | 80d9bdc | 2014-02-13 18:28:46 -0800 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | /** |
Ben Gilad | a0d9f75 | 2014-02-26 11:49:03 -0800 | [diff] [blame] | 132 | * Validates the specified call and, upon no objection to connect it, adds the new call to the |
| 133 | * list of live calls. Also notifies the in-call app so the user can answer or reject the call. |
| 134 | * |
| 135 | * @param call The new incoming call. |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 136 | * @param callInfo The details of the call. |
Ben Gilad | a0d9f75 | 2014-02-26 11:49:03 -0800 | [diff] [blame] | 137 | */ |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 138 | void handleSuccessfulIncomingCall(Call call, CallInfo callInfo) { |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 139 | Log.d(this, "handleSuccessfulIncomingCall"); |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 140 | Preconditions.checkState(callInfo.getState() == CallState.RINGING); |
Ben Gilad | a0d9f75 | 2014-02-26 11:49:03 -0800 | [diff] [blame] | 141 | |
Sailesh Nepal | ce704b9 | 2014-03-17 18:31:43 -0700 | [diff] [blame] | 142 | Uri handle = call.getHandle(); |
Ben Gilad | a0d9f75 | 2014-02-26 11:49:03 -0800 | [diff] [blame] | 143 | ContactInfo contactInfo = call.getContactInfo(); |
| 144 | for (IncomingCallValidator validator : mIncomingCallValidators) { |
| 145 | if (!validator.isValid(handle, contactInfo)) { |
| 146 | // TODO(gilad): Consider displaying an error message. |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 147 | Log.i(this, "Dropping restricted incoming call"); |
Ben Gilad | a0d9f75 | 2014-02-26 11:49:03 -0800 | [diff] [blame] | 148 | return; |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | // No objection to accept the incoming call, proceed with potentially connecting it (based |
| 153 | // on the user's action, or lack thereof). |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 154 | call.setHandle(callInfo.getHandle()); |
| 155 | setCallState(call, callInfo.getState()); |
Ben Gilad | a0d9f75 | 2014-02-26 11:49:03 -0800 | [diff] [blame] | 156 | addCall(call); |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 157 | } |
Santos Cordon | 4e9fffe | 2014-03-04 18:13:41 -0800 | [diff] [blame] | 158 | |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 159 | /** |
| 160 | * Called when an incoming call was not connected. |
| 161 | * |
| 162 | * @param call The incoming call. |
| 163 | */ |
| 164 | void handleUnsuccessfulIncomingCall(Call call) { |
| 165 | setCallState(call, CallState.DISCONNECTED); |
Ben Gilad | a0d9f75 | 2014-02-26 11:49:03 -0800 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | /** |
Santos Cordon | 8e8b8d2 | 2013-12-19 14:14:05 -0800 | [diff] [blame] | 169 | * Attempts to issue/connect the specified call. From an (arbitrary) application standpoint, |
| 170 | * all that is required to initiate this flow is to fire either of the CALL, CALL_PRIVILEGED, |
| 171 | * and CALL_EMERGENCY intents. These are listened to by CallActivity.java which then invokes |
| 172 | * this method. |
| 173 | * |
| 174 | * @param handle The handle to dial. |
| 175 | * @param contactInfo Information about the entity being called. |
Santos Cordon | 8e8b8d2 | 2013-12-19 14:14:05 -0800 | [diff] [blame] | 176 | */ |
Sailesh Nepal | ce704b9 | 2014-03-17 18:31:43 -0700 | [diff] [blame] | 177 | void processOutgoingCallIntent(Uri handle, ContactInfo contactInfo) { |
Ben Gilad | 8bdaa46 | 2014-02-05 12:53:19 -0800 | [diff] [blame] | 178 | for (OutgoingCallValidator validator : mOutgoingCallValidators) { |
Ben Gilad | a0d9f75 | 2014-02-26 11:49:03 -0800 | [diff] [blame] | 179 | if (!validator.isValid(handle, contactInfo)) { |
| 180 | // TODO(gilad): Display an error message. |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 181 | Log.i(this, "Dropping restricted outgoing call."); |
Ben Gilad | a0d9f75 | 2014-02-26 11:49:03 -0800 | [diff] [blame] | 182 | return; |
| 183 | } |
Santos Cordon | 8e8b8d2 | 2013-12-19 14:14:05 -0800 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | // No objection to issue the call, proceed with trying to put it through. |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 187 | Call call = new Call(handle, contactInfo, false /* isIncoming */); |
| 188 | setCallState(call, CallState.DIALING); |
| 189 | addCall(call); |
Santos Cordon | c195e36 | 2014-02-11 17:05:31 -0800 | [diff] [blame] | 190 | mSwitchboard.placeOutgoingCall(call); |
Santos Cordon | 8e8b8d2 | 2013-12-19 14:14:05 -0800 | [diff] [blame] | 191 | } |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 192 | |
| 193 | /** |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 194 | * Called when a call service acknowledges that it can place a call. |
Santos Cordon | 681663d | 2014-01-30 04:32:15 -0800 | [diff] [blame] | 195 | * |
| 196 | * @param call The new outgoing call. |
| 197 | */ |
| 198 | void handleSuccessfulOutgoingCall(Call call) { |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 199 | Log.v(this, "handleSuccessfulOutgoingCall, %s", call); |
Santos Cordon | 681663d | 2014-01-30 04:32:15 -0800 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | /** |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 203 | * Called when an outgoing call was not placed. |
Yorke Lee | f98fb57 | 2014-03-05 10:56:55 -0800 | [diff] [blame] | 204 | * |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 205 | * @param call The outgoing call. |
| 206 | * @param isAborted True if the call was unsuccessful because it was aborted. |
Yorke Lee | f98fb57 | 2014-03-05 10:56:55 -0800 | [diff] [blame] | 207 | */ |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 208 | void handleUnsuccessfulOutgoingCall(Call call, boolean isAborted) { |
| 209 | Log.v(this, "handleAbortedOutgoingCall, call: %s, isAborted: %b", call, isAborted); |
| 210 | if (isAborted) { |
| 211 | call.abort(); |
| 212 | setCallState(call, CallState.ABORTED); |
| 213 | } else { |
| 214 | setCallState(call, CallState.DISCONNECTED); |
| 215 | } |
| 216 | removeCall(call); |
Yorke Lee | f98fb57 | 2014-03-05 10:56:55 -0800 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | /** |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 220 | * Instructs Telecomm to answer the specified call. Intended to be invoked by the in-call |
| 221 | * app through {@link InCallAdapter} after Telecomm notifies it of an incoming call followed by |
| 222 | * the user opting to answer said call. |
| 223 | * |
| 224 | * @param callId The ID of the call. |
| 225 | */ |
| 226 | void answerCall(String callId) { |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 227 | Call call = mCalls.get(callId); |
| 228 | if (call == null) { |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 229 | Log.i(this, "Request to answer a non-existent call %s", callId); |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 230 | } else { |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 231 | mCallLogManager.onIncomingCallAnswered(call); |
| 232 | mPhoneStateBroadcaster.onIncomingCallAnswered(call); |
| 233 | mCallAudioManager.onIncomingCallAnswered(call); |
| 234 | mInCallController.onIncomingCallAnswered(call); |
| 235 | mRinger.onIncomingCallAnswered(call); |
Santos Cordon | 4e9fffe | 2014-03-04 18:13:41 -0800 | [diff] [blame] | 236 | |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 237 | // We do not update the UI until we get confirmation of the answer() through |
| 238 | // {@link #markCallAsActive}. However, if we ever change that to look more responsive, |
| 239 | // then we need to make sure we add a timeout for the answer() in case the call never |
| 240 | // comes out of RINGING. |
| 241 | call.answer(); |
| 242 | } |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | /** |
| 246 | * Instructs Telecomm to reject the specified call. Intended to be invoked by the in-call |
| 247 | * app through {@link InCallAdapter} after Telecomm notifies it of an incoming call followed by |
| 248 | * the user opting to reject said call. |
| 249 | * |
| 250 | * @param callId The ID of the call. |
| 251 | */ |
| 252 | void rejectCall(String callId) { |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 253 | Call call = mCalls.get(callId); |
| 254 | if (call == null) { |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 255 | Log.i(this, "Request to reject a non-existent call %s", callId); |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 256 | } else { |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 257 | mCallLogManager.onIncomingCallRejected(call); |
| 258 | mPhoneStateBroadcaster.onIncomingCallRejected(call); |
| 259 | mCallAudioManager.onIncomingCallRejected(call); |
| 260 | mInCallController.onIncomingCallRejected(call); |
| 261 | mRinger.onIncomingCallRejected(call); |
| 262 | |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 263 | call.reject(); |
| 264 | } |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | /** |
| 268 | * Instructs Telecomm to disconnect the specified call. Intended to be invoked by the |
| 269 | * in-call app through {@link InCallAdapter} for an ongoing call. This is usually triggered by |
| 270 | * the user hitting the end-call button. |
| 271 | * |
| 272 | * @param callId The ID of the call. |
| 273 | */ |
| 274 | void disconnectCall(String callId) { |
Santos Cordon | 049b7b6 | 2014-01-30 05:34:26 -0800 | [diff] [blame] | 275 | Call call = mCalls.get(callId); |
| 276 | if (call == null) { |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 277 | Log.w(this, "Unknown call (%s) asked to disconnect", callId); |
Santos Cordon | 049b7b6 | 2014-01-30 05:34:26 -0800 | [diff] [blame] | 278 | } else { |
| 279 | call.disconnect(); |
| 280 | } |
Santos Cordon | e3d76ab | 2014-01-28 17:25:20 -0800 | [diff] [blame] | 281 | } |
Santos Cordon | 681663d | 2014-01-30 04:32:15 -0800 | [diff] [blame] | 282 | |
Yorke Lee | cdf3ebd | 2014-03-12 18:31:41 -0700 | [diff] [blame] | 283 | /** |
| 284 | * Instructs Telecomm to put the specified call on hold. Intended to be invoked by the |
| 285 | * in-call app through {@link InCallAdapter} for an ongoing call. This is usually triggered by |
| 286 | * the user hitting the hold button during an active call. |
| 287 | * |
| 288 | * @param callId The ID of the call. |
| 289 | */ |
| 290 | void holdCall(String callId) { |
| 291 | Call call = mCalls.get(callId); |
| 292 | if (call == null) { |
| 293 | Log.w(this, "Unknown call (%s) asked to be put on hold", callId); |
| 294 | } else { |
| 295 | Log.d(this, "Putting call on hold: (%s)", callId); |
| 296 | call.hold(); |
| 297 | } |
| 298 | } |
| 299 | |
| 300 | /** |
| 301 | * Instructs Telecomm to release the specified call from hold. Intended to be invoked by |
| 302 | * the in-call app through {@link InCallAdapter} for an ongoing call. This is usually triggered |
| 303 | * by the user hitting the hold button during a held call. |
| 304 | * |
| 305 | * @param callId The ID of the call |
| 306 | */ |
| 307 | void unholdCall(String callId) { |
| 308 | Call call = mCalls.get(callId); |
| 309 | if (call == null) { |
| 310 | Log.w(this, "Unknown call (%s) asked to be removed from hold", callId); |
| 311 | } else { |
| 312 | Log.d(this, "Removing call from hold: (%s)", callId); |
| 313 | call.unhold(); |
| 314 | } |
| 315 | } |
| 316 | |
Santos Cordon | 681663d | 2014-01-30 04:32:15 -0800 | [diff] [blame] | 317 | void markCallAsRinging(String callId) { |
| 318 | setCallState(callId, CallState.RINGING); |
| 319 | } |
| 320 | |
| 321 | void markCallAsDialing(String callId) { |
| 322 | setCallState(callId, CallState.DIALING); |
| 323 | } |
| 324 | |
| 325 | void markCallAsActive(String callId) { |
| 326 | setCallState(callId, CallState.ACTIVE); |
| 327 | } |
| 328 | |
Yorke Lee | cdf3ebd | 2014-03-12 18:31:41 -0700 | [diff] [blame] | 329 | void markCallAsOnHold(String callId) { |
| 330 | setCallState(callId, CallState.ON_HOLD); |
Yorke Lee | cdf3ebd | 2014-03-12 18:31:41 -0700 | [diff] [blame] | 331 | } |
| 332 | |
Santos Cordon | 049b7b6 | 2014-01-30 05:34:26 -0800 | [diff] [blame] | 333 | /** |
| 334 | * Marks the specified call as DISCONNECTED and notifies the in-call app. If this was the last |
| 335 | * live call, then also disconnect from the in-call controller. |
| 336 | * |
| 337 | * @param callId The ID of the call. |
| 338 | */ |
Santos Cordon | 681663d | 2014-01-30 04:32:15 -0800 | [diff] [blame] | 339 | void markCallAsDisconnected(String callId) { |
| 340 | setCallState(callId, CallState.DISCONNECTED); |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 341 | removeCall(mCalls.remove(callId)); |
Ben Gilad | a0d9f75 | 2014-02-26 11:49:03 -0800 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | /** |
| 345 | * Adds the specified call to the main list of live calls. |
| 346 | * |
| 347 | * @param call The call to add. |
| 348 | */ |
| 349 | private void addCall(Call call) { |
| 350 | mCalls.put(call.getId(), call); |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 351 | |
| 352 | mCallLogManager.onCallAdded(call); |
| 353 | mPhoneStateBroadcaster.onCallAdded(call); |
| 354 | mCallAudioManager.onCallAdded(call); |
| 355 | mInCallController.onCallAdded(call); |
| 356 | mRinger.onCallAdded(call); |
| 357 | updateForegroundCall(); |
Ben Gilad | a0d9f75 | 2014-02-26 11:49:03 -0800 | [diff] [blame] | 358 | } |
| 359 | |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 360 | private void removeCall(Call call) { |
| 361 | call.clearCallService(); |
| 362 | |
| 363 | mCallLogManager.onCallRemoved(call); |
| 364 | mPhoneStateBroadcaster.onCallRemoved(call); |
| 365 | mCallAudioManager.onCallRemoved(call); |
| 366 | mInCallController.onCallRemoved(call); |
| 367 | mRinger.onCallRemoved(call); |
| 368 | updateForegroundCall(); |
Ben Gilad | a0d9f75 | 2014-02-26 11:49:03 -0800 | [diff] [blame] | 369 | } |
| 370 | |
| 371 | /** |
Santos Cordon | 4e9fffe | 2014-03-04 18:13:41 -0800 | [diff] [blame] | 372 | * Sets the specified state on the specified call. Updates the ringer if the call is exiting |
| 373 | * the RINGING state. |
Santos Cordon | 681663d | 2014-01-30 04:32:15 -0800 | [diff] [blame] | 374 | * |
| 375 | * @param callId The ID of the call to update. |
Santos Cordon | 4e9fffe | 2014-03-04 18:13:41 -0800 | [diff] [blame] | 376 | * @param newState The new state of the call. |
Santos Cordon | 681663d | 2014-01-30 04:32:15 -0800 | [diff] [blame] | 377 | */ |
Santos Cordon | 4e9fffe | 2014-03-04 18:13:41 -0800 | [diff] [blame] | 378 | private void setCallState(String callId, CallState newState) { |
Santos Cordon | 681663d | 2014-01-30 04:32:15 -0800 | [diff] [blame] | 379 | Preconditions.checkState(!Strings.isNullOrEmpty(callId)); |
Santos Cordon | 4e9fffe | 2014-03-04 18:13:41 -0800 | [diff] [blame] | 380 | Preconditions.checkNotNull(newState); |
Santos Cordon | 681663d | 2014-01-30 04:32:15 -0800 | [diff] [blame] | 381 | |
| 382 | Call call = mCalls.get(callId); |
| 383 | if (call == null) { |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 384 | Log.w(this, "Call %s was not found while attempting to update the state to %s.", |
| 385 | callId, newState ); |
Santos Cordon | 681663d | 2014-01-30 04:32:15 -0800 | [diff] [blame] | 386 | } else { |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 387 | setCallState(call, newState); |
| 388 | } |
| 389 | } |
Evan Charlton | 5c670a9 | 2014-03-06 14:58:20 -0800 | [diff] [blame] | 390 | |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 391 | /** |
| 392 | * Sets the specified state on the specified call. Updates the ringer if the call is exiting |
| 393 | * the RINGING state. |
| 394 | * |
| 395 | * @param call The call. |
| 396 | * @param newState The new state of the call. |
| 397 | */ |
| 398 | private void setCallState(Call call, CallState newState) { |
| 399 | CallState oldState = call.getState(); |
| 400 | if (newState != oldState) { |
| 401 | // Unfortunately, in the telephony world the radio is king. So if the call notifies |
| 402 | // us that the call is in a particular state, we allow it even if it doesn't make |
| 403 | // sense (e.g., ACTIVE -> RINGING). |
| 404 | // TODO(santoscordon): Consider putting a stop to the above and turning CallState |
| 405 | // into a well-defined state machine. |
| 406 | // TODO(santoscordon): Define expected state transitions here, and log when an |
| 407 | // unexpected transition occurs. |
| 408 | call.setState(newState); |
| 409 | |
| 410 | // Only broadcast state change for calls that are being tracked. |
| 411 | if (mCalls.containsKey(call.getId())) { |
| 412 | mCallLogManager.onCallStateChanged(call, oldState, newState); |
| 413 | mPhoneStateBroadcaster.onCallStateChanged(call, oldState, newState); |
| 414 | mCallAudioManager.onCallStateChanged(call, oldState, newState); |
| 415 | mInCallController.onCallStateChanged(call, oldState, newState); |
| 416 | mRinger.onCallStateChanged(call, oldState, newState); |
| 417 | updateForegroundCall(); |
Santos Cordon | 4e9fffe | 2014-03-04 18:13:41 -0800 | [diff] [blame] | 418 | } |
| 419 | } |
| 420 | } |
| 421 | |
| 422 | /** |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 423 | * Checks which call should be visible to the user and have audio focus. |
Evan Charlton | 5c670a9 | 2014-03-06 14:58:20 -0800 | [diff] [blame] | 424 | */ |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 425 | private void updateForegroundCall() { |
| 426 | Call newForegroundCall = null; |
| 427 | for (Call call : mCalls.values()) { |
| 428 | // Incoming ringing calls have priority. |
| 429 | if (call.getState() == CallState.RINGING) { |
| 430 | newForegroundCall = call; |
Evan Charlton | 5c670a9 | 2014-03-06 14:58:20 -0800 | [diff] [blame] | 431 | break; |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 432 | } |
| 433 | if (call.getState() == CallState.ACTIVE) { |
| 434 | newForegroundCall = call; |
| 435 | // Don't break in case there's a ringing call that has priority. |
Santos Cordon | 4e9fffe | 2014-03-04 18:13:41 -0800 | [diff] [blame] | 436 | } |
| 437 | } |
Santos Cordon | 4e9fffe | 2014-03-04 18:13:41 -0800 | [diff] [blame] | 438 | |
Sailesh Nepal | 810735e | 2014-03-18 18:15:46 -0700 | [diff] [blame^] | 439 | if (newForegroundCall != mForegroundCall) { |
| 440 | Call oldForegroundCall = mForegroundCall; |
| 441 | mForegroundCall = newForegroundCall; |
| 442 | |
| 443 | mCallLogManager.onForegroundCallChanged(oldForegroundCall, mForegroundCall); |
| 444 | mPhoneStateBroadcaster.onForegroundCallChanged(oldForegroundCall, mForegroundCall); |
| 445 | mCallAudioManager.onForegroundCallChanged(oldForegroundCall, mForegroundCall); |
| 446 | mInCallController.onForegroundCallChanged(oldForegroundCall, mForegroundCall); |
| 447 | mRinger.onForegroundCallChanged(oldForegroundCall, mForegroundCall); |
Santos Cordon | 681663d | 2014-01-30 04:32:15 -0800 | [diff] [blame] | 448 | } |
| 449 | } |
Ben Gilad | 9f2bed3 | 2013-12-12 17:43:26 -0800 | [diff] [blame] | 450 | } |