| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -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 | |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 17 | package android.telecom; |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 18 | |
| Tyler Gunn | 2ac4010 | 2014-08-18 16:23:10 -0700 | [diff] [blame] | 19 | import android.annotation.SdkConstant; |
| Santos Cordon | a249281 | 2015-04-15 11:05:16 -0700 | [diff] [blame] | 20 | import android.annotation.SystemApi; |
| Santos Cordon | 2f42b11 | 2014-07-19 13:19:37 -0700 | [diff] [blame] | 21 | import android.app.Service; |
| 22 | import android.content.Intent; |
| Yorke Lee | 32f2473 | 2015-05-12 16:18:03 -0700 | [diff] [blame^] | 23 | import android.net.Uri; |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 24 | import android.os.Handler; |
| 25 | import android.os.IBinder; |
| 26 | import android.os.Looper; |
| 27 | import android.os.Message; |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 28 | import android.view.Surface; |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 29 | |
| Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 30 | import com.android.internal.os.SomeArgs; |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 31 | import com.android.internal.telecom.IInCallAdapter; |
| 32 | import com.android.internal.telecom.IInCallService; |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 33 | |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 34 | import java.lang.String; |
| Santos Cordon | a249281 | 2015-04-15 11:05:16 -0700 | [diff] [blame] | 35 | import java.util.Collections; |
| 36 | import java.util.List; |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 37 | |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 38 | /** |
| 39 | * This service is implemented by any app that wishes to provide the user-interface for managing |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 40 | * phone calls. Telecom binds to this service while there exists a live (active or incoming) call, |
| Santos Cordon | 2f42b11 | 2014-07-19 13:19:37 -0700 | [diff] [blame] | 41 | * and uses it to notify the in-call app of any live and and recently disconnected calls. |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 42 | */ |
| Santos Cordon | 2f42b11 | 2014-07-19 13:19:37 -0700 | [diff] [blame] | 43 | public abstract class InCallService extends Service { |
| Tyler Gunn | 2ac4010 | 2014-08-18 16:23:10 -0700 | [diff] [blame] | 44 | |
| 45 | /** |
| 46 | * The {@link Intent} that must be declared as handled by the service. |
| 47 | */ |
| 48 | @SdkConstant(SdkConstant.SdkConstantType.SERVICE_ACTION) |
| Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 49 | public static final String SERVICE_INTERFACE = "android.telecom.InCallService"; |
| Tyler Gunn | 2ac4010 | 2014-08-18 16:23:10 -0700 | [diff] [blame] | 50 | |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 51 | private static final int MSG_SET_IN_CALL_ADAPTER = 1; |
| 52 | private static final int MSG_ADD_CALL = 2; |
| Sailesh Nepal | 6043793 | 2014-04-05 16:44:55 -0700 | [diff] [blame] | 53 | private static final int MSG_UPDATE_CALL = 3; |
| Ihab Awad | 5d0410f | 2014-07-30 10:07:40 -0700 | [diff] [blame] | 54 | private static final int MSG_SET_POST_DIAL_WAIT = 4; |
| 55 | private static final int MSG_ON_AUDIO_STATE_CHANGED = 5; |
| 56 | private static final int MSG_BRING_TO_FOREGROUND = 6; |
| Santos Cordon | 6c912b7 | 2014-11-07 16:05:09 -0800 | [diff] [blame] | 57 | private static final int MSG_ON_CAN_ADD_CALL_CHANGED = 7; |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 58 | |
| 59 | /** Default Handler used to consolidate binder method calls onto a single thread. */ |
| 60 | private final Handler mHandler = new Handler(Looper.getMainLooper()) { |
| 61 | @Override |
| 62 | public void handleMessage(Message msg) { |
| Jay Shrauner | 5e6162d | 2014-09-22 20:47:45 -0700 | [diff] [blame] | 63 | if (mPhone == null && msg.what != MSG_SET_IN_CALL_ADAPTER) { |
| 64 | return; |
| 65 | } |
| 66 | |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 67 | switch (msg.what) { |
| 68 | case MSG_SET_IN_CALL_ADAPTER: |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 69 | mPhone = new Phone(new InCallAdapter((IInCallAdapter) msg.obj)); |
| Santos Cordon | a249281 | 2015-04-15 11:05:16 -0700 | [diff] [blame] | 70 | mPhone.addListener(mPhoneListener); |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 71 | onPhoneCreated(mPhone); |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 72 | break; |
| 73 | case MSG_ADD_CALL: |
| Santos Cordon | 88b771d | 2014-07-19 13:10:40 -0700 | [diff] [blame] | 74 | mPhone.internalAddCall((ParcelableCall) msg.obj); |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 75 | break; |
| Sailesh Nepal | 6043793 | 2014-04-05 16:44:55 -0700 | [diff] [blame] | 76 | case MSG_UPDATE_CALL: |
| Santos Cordon | 88b771d | 2014-07-19 13:10:40 -0700 | [diff] [blame] | 77 | mPhone.internalUpdateCall((ParcelableCall) msg.obj); |
| Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 78 | break; |
| Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 79 | case MSG_SET_POST_DIAL_WAIT: { |
| 80 | SomeArgs args = (SomeArgs) msg.obj; |
| 81 | try { |
| 82 | String callId = (String) args.arg1; |
| 83 | String remaining = (String) args.arg2; |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 84 | mPhone.internalSetPostDialWait(callId, remaining); |
| Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 85 | } finally { |
| 86 | args.recycle(); |
| 87 | } |
| 88 | break; |
| 89 | } |
| Sailesh Nepal | 4cff392 | 2014-03-19 10:15:37 -0700 | [diff] [blame] | 90 | case MSG_ON_AUDIO_STATE_CHANGED: |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 91 | mPhone.internalAudioStateChanged((AudioState) msg.obj); |
| Sailesh Nepal | b632e5b | 2014-04-03 12:54:33 -0700 | [diff] [blame] | 92 | break; |
| Santos Cordon | 3534ede | 2014-05-29 13:07:10 -0700 | [diff] [blame] | 93 | case MSG_BRING_TO_FOREGROUND: |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 94 | mPhone.internalBringToForeground(msg.arg1 == 1); |
| Santos Cordon | 3534ede | 2014-05-29 13:07:10 -0700 | [diff] [blame] | 95 | break; |
| Santos Cordon | 6c912b7 | 2014-11-07 16:05:09 -0800 | [diff] [blame] | 96 | case MSG_ON_CAN_ADD_CALL_CHANGED: |
| 97 | mPhone.internalSetCanAddCall(msg.arg1 == 1); |
| 98 | break; |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 99 | default: |
| 100 | break; |
| 101 | } |
| 102 | } |
| 103 | }; |
| 104 | |
| 105 | /** Manages the binder calls so that the implementor does not need to deal with it. */ |
| 106 | private final class InCallServiceBinder extends IInCallService.Stub { |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 107 | @Override |
| 108 | public void setInCallAdapter(IInCallAdapter inCallAdapter) { |
| 109 | mHandler.obtainMessage(MSG_SET_IN_CALL_ADAPTER, inCallAdapter).sendToTarget(); |
| 110 | } |
| 111 | |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 112 | @Override |
| Santos Cordon | 88b771d | 2014-07-19 13:10:40 -0700 | [diff] [blame] | 113 | public void addCall(ParcelableCall call) { |
| Sailesh Nepal | 6043793 | 2014-04-05 16:44:55 -0700 | [diff] [blame] | 114 | mHandler.obtainMessage(MSG_ADD_CALL, call).sendToTarget(); |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 115 | } |
| 116 | |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 117 | @Override |
| Santos Cordon | 88b771d | 2014-07-19 13:10:40 -0700 | [diff] [blame] | 118 | public void updateCall(ParcelableCall call) { |
| Sailesh Nepal | 6043793 | 2014-04-05 16:44:55 -0700 | [diff] [blame] | 119 | mHandler.obtainMessage(MSG_UPDATE_CALL, call).sendToTarget(); |
| Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | @Override |
| 123 | public void setPostDial(String callId, String remaining) { |
| Ihab Awad | 5d0410f | 2014-07-30 10:07:40 -0700 | [diff] [blame] | 124 | // TODO: Unused |
| Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | @Override |
| 128 | public void setPostDialWait(String callId, String remaining) { |
| 129 | SomeArgs args = SomeArgs.obtain(); |
| 130 | args.arg1 = callId; |
| 131 | args.arg2 = remaining; |
| 132 | mHandler.obtainMessage(MSG_SET_POST_DIAL_WAIT, args).sendToTarget(); |
| 133 | } |
| Sailesh Nepal | b632e5b | 2014-04-03 12:54:33 -0700 | [diff] [blame] | 134 | |
| 135 | @Override |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 136 | public void onAudioStateChanged(AudioState audioState) { |
| Sailesh Nepal | 6043793 | 2014-04-05 16:44:55 -0700 | [diff] [blame] | 137 | mHandler.obtainMessage(MSG_ON_AUDIO_STATE_CHANGED, audioState).sendToTarget(); |
| Sailesh Nepal | b632e5b | 2014-04-03 12:54:33 -0700 | [diff] [blame] | 138 | } |
| Santos Cordon | 3534ede | 2014-05-29 13:07:10 -0700 | [diff] [blame] | 139 | |
| Santos Cordon | 3534ede | 2014-05-29 13:07:10 -0700 | [diff] [blame] | 140 | @Override |
| 141 | public void bringToForeground(boolean showDialpad) { |
| 142 | mHandler.obtainMessage(MSG_BRING_TO_FOREGROUND, showDialpad ? 1 : 0, 0).sendToTarget(); |
| 143 | } |
| Santos Cordon | 6c912b7 | 2014-11-07 16:05:09 -0800 | [diff] [blame] | 144 | |
| 145 | @Override |
| 146 | public void onCanAddCallChanged(boolean canAddCall) { |
| 147 | mHandler.obtainMessage(MSG_ON_CAN_ADD_CALL_CHANGED, canAddCall ? 1 : 0, 0) |
| 148 | .sendToTarget(); |
| 149 | } |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 150 | } |
| 151 | |
| Santos Cordon | a249281 | 2015-04-15 11:05:16 -0700 | [diff] [blame] | 152 | private Phone.Listener mPhoneListener = new Phone.Listener() { |
| 153 | /** ${inheritDoc} */ |
| 154 | @Override |
| 155 | public void onAudioStateChanged(Phone phone, AudioState audioState) { |
| 156 | InCallService.this.onAudioStateChanged(audioState); |
| 157 | } |
| 158 | |
| 159 | /** ${inheritDoc} */ |
| 160 | @Override |
| 161 | public void onBringToForeground(Phone phone, boolean showDialpad) { |
| 162 | InCallService.this.onBringToForeground(showDialpad); |
| 163 | } |
| 164 | |
| 165 | /** ${inheritDoc} */ |
| 166 | @Override |
| 167 | public void onCallAdded(Phone phone, Call call) { |
| 168 | InCallService.this.onCallAdded(call); |
| 169 | } |
| 170 | |
| 171 | /** ${inheritDoc} */ |
| 172 | @Override |
| 173 | public void onCallRemoved(Phone phone, Call call) { |
| 174 | InCallService.this.onCallRemoved(call); |
| 175 | } |
| 176 | |
| 177 | /** ${inheritDoc} */ |
| 178 | @Override |
| 179 | public void onCanAddCallChanged(Phone phone, boolean canAddCall) { |
| 180 | InCallService.this.onCanAddCallChanged(canAddCall); |
| 181 | } |
| 182 | |
| 183 | }; |
| 184 | |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 185 | private Phone mPhone; |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 186 | |
| Santos Cordon | 2f42b11 | 2014-07-19 13:19:37 -0700 | [diff] [blame] | 187 | public InCallService() { |
| 188 | } |
| Evan Charlton | 924748f | 2014-04-03 08:36:38 -0700 | [diff] [blame] | 189 | |
| Santos Cordon | 2f42b11 | 2014-07-19 13:19:37 -0700 | [diff] [blame] | 190 | @Override |
| 191 | public IBinder onBind(Intent intent) { |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 192 | return new InCallServiceBinder(); |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 193 | } |
| 194 | |
| Santos Cordon | f30d7e9 | 2014-08-26 09:54:33 -0700 | [diff] [blame] | 195 | @Override |
| 196 | public boolean onUnbind(Intent intent) { |
| Santos Cordon | 619b3c0 | 2014-09-02 17:13:45 -0700 | [diff] [blame] | 197 | if (mPhone != null) { |
| 198 | Phone oldPhone = mPhone; |
| 199 | mPhone = null; |
| Santos Cordon | f30d7e9 | 2014-08-26 09:54:33 -0700 | [diff] [blame] | 200 | |
| Santos Cordon | 619b3c0 | 2014-09-02 17:13:45 -0700 | [diff] [blame] | 201 | oldPhone.destroy(); |
| Santos Cordon | a249281 | 2015-04-15 11:05:16 -0700 | [diff] [blame] | 202 | // destroy sets all the calls to disconnected if any live ones still exist. Therefore, |
| 203 | // it is important to remove the Listener *after* the call to destroy so that |
| 204 | // InCallService.on* callbacks are appropriately called. |
| 205 | oldPhone.removeListener(mPhoneListener); |
| 206 | |
| Santos Cordon | 619b3c0 | 2014-09-02 17:13:45 -0700 | [diff] [blame] | 207 | onPhoneDestroyed(oldPhone); |
| 208 | } |
| Santos Cordon | a249281 | 2015-04-15 11:05:16 -0700 | [diff] [blame] | 209 | |
| Santos Cordon | f30d7e9 | 2014-08-26 09:54:33 -0700 | [diff] [blame] | 210 | return false; |
| 211 | } |
| 212 | |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 213 | /** |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 214 | * Obtain the {@code Phone} associated with this {@code InCallService}. |
| 215 | * |
| 216 | * @return The {@code Phone} object associated with this {@code InCallService}, or {@code null} |
| Santos Cordon | 2f42b11 | 2014-07-19 13:19:37 -0700 | [diff] [blame] | 217 | * if the {@code InCallService} is not in a state where it has an associated |
| 218 | * {@code Phone}. |
| Santos Cordon | a249281 | 2015-04-15 11:05:16 -0700 | [diff] [blame] | 219 | * @hide |
| Santos Cordon | 29886d8 | 2015-04-16 15:34:07 -0700 | [diff] [blame] | 220 | * @deprecated Use direct methods on InCallService instead of {@link Phone}. |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 221 | */ |
| Santos Cordon | a249281 | 2015-04-15 11:05:16 -0700 | [diff] [blame] | 222 | @SystemApi |
| Santos Cordon | 29886d8 | 2015-04-16 15:34:07 -0700 | [diff] [blame] | 223 | @Deprecated |
| 224 | public Phone getPhone() { |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 225 | return mPhone; |
| Evan Charlton | 924748f | 2014-04-03 08:36:38 -0700 | [diff] [blame] | 226 | } |
| 227 | |
| 228 | /** |
| Santos Cordon | a249281 | 2015-04-15 11:05:16 -0700 | [diff] [blame] | 229 | * Obtains the current list of {@code Call}s to be displayed by this in-call experience. |
| 230 | * |
| 231 | * @return A list of the relevant {@code Call}s. |
| 232 | */ |
| 233 | public final List<Call> getCalls() { |
| 234 | return mPhone == null ? Collections.<Call>emptyList() : mPhone.getCalls(); |
| 235 | } |
| 236 | |
| 237 | /** |
| 238 | * Returns if the device can support additional calls. |
| 239 | * |
| 240 | * @return Whether the phone supports adding more calls. |
| 241 | */ |
| 242 | public final boolean canAddCall() { |
| 243 | return mPhone == null ? false : mPhone.canAddCall(); |
| 244 | } |
| 245 | |
| 246 | /** |
| 247 | * Obtains the current phone call audio state. |
| 248 | * |
| 249 | * @return An object encapsulating the audio state. Returns null if the service is not |
| 250 | * fully initialized. |
| 251 | */ |
| 252 | public final AudioState getAudioState() { |
| 253 | return mPhone == null ? null : mPhone.getAudioState(); |
| 254 | } |
| 255 | |
| 256 | /** |
| 257 | * Sets the microphone mute state. When this request is honored, there will be change to |
| 258 | * the {@link #getAudioState()}. |
| 259 | * |
| 260 | * @param state {@code true} if the microphone should be muted; {@code false} otherwise. |
| 261 | */ |
| 262 | public final void setMuted(boolean state) { |
| 263 | if (mPhone != null) { |
| 264 | mPhone.setMuted(state); |
| 265 | } |
| 266 | } |
| 267 | |
| 268 | /** |
| 269 | * Sets the audio route (speaker, bluetooth, etc...). When this request is honored, there will |
| 270 | * be change to the {@link #getAudioState()}. |
| 271 | * |
| 272 | * @param route The audio route to use. |
| 273 | */ |
| 274 | public final void setAudioRoute(int route) { |
| 275 | if (mPhone != null) { |
| 276 | mPhone.setAudioRoute(route); |
| 277 | } |
| 278 | } |
| 279 | |
| 280 | /** |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 281 | * Invoked when the {@code Phone} has been created. This is a signal to the in-call experience |
| 282 | * to start displaying in-call information to the user. Each instance of {@code InCallService} |
| Santos Cordon | 2f42b11 | 2014-07-19 13:19:37 -0700 | [diff] [blame] | 283 | * will have only one {@code Phone}, and this method will be called exactly once in the lifetime |
| 284 | * of the {@code InCallService}. |
| Evan Charlton | 924748f | 2014-04-03 08:36:38 -0700 | [diff] [blame] | 285 | * |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 286 | * @param phone The {@code Phone} object associated with this {@code InCallService}. |
| Santos Cordon | a249281 | 2015-04-15 11:05:16 -0700 | [diff] [blame] | 287 | * @hide |
| Santos Cordon | 29886d8 | 2015-04-16 15:34:07 -0700 | [diff] [blame] | 288 | * @deprecated Use direct methods on InCallService instead of {@link Phone}. |
| Evan Charlton | 924748f | 2014-04-03 08:36:38 -0700 | [diff] [blame] | 289 | */ |
| Santos Cordon | a249281 | 2015-04-15 11:05:16 -0700 | [diff] [blame] | 290 | @SystemApi |
| Santos Cordon | 29886d8 | 2015-04-16 15:34:07 -0700 | [diff] [blame] | 291 | @Deprecated |
| Santos Cordon | 2f42b11 | 2014-07-19 13:19:37 -0700 | [diff] [blame] | 292 | public void onPhoneCreated(Phone phone) { |
| 293 | } |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 294 | |
| 295 | /** |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 296 | * Invoked when a {@code Phone} has been destroyed. This is a signal to the in-call experience |
| 297 | * to stop displaying in-call information to the user. This method will be called exactly once |
| 298 | * in the lifetime of the {@code InCallService}, and it will always be called after a previous |
| 299 | * call to {@link #onPhoneCreated(Phone)}. |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 300 | * |
| Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 301 | * @param phone The {@code Phone} object associated with this {@code InCallService}. |
| Santos Cordon | a249281 | 2015-04-15 11:05:16 -0700 | [diff] [blame] | 302 | * @hide |
| Santos Cordon | 29886d8 | 2015-04-16 15:34:07 -0700 | [diff] [blame] | 303 | * @deprecated Use direct methods on InCallService instead of {@link Phone}. |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 304 | */ |
| Santos Cordon | a249281 | 2015-04-15 11:05:16 -0700 | [diff] [blame] | 305 | @SystemApi |
| Santos Cordon | 29886d8 | 2015-04-16 15:34:07 -0700 | [diff] [blame] | 306 | @Deprecated |
| Santos Cordon | 2f42b11 | 2014-07-19 13:19:37 -0700 | [diff] [blame] | 307 | public void onPhoneDestroyed(Phone phone) { |
| 308 | } |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 309 | |
| 310 | /** |
| Santos Cordon | a249281 | 2015-04-15 11:05:16 -0700 | [diff] [blame] | 311 | * Called when the audio state changes. |
| 312 | * |
| 313 | * @param audioState The new {@link AudioState}. |
| 314 | */ |
| 315 | public void onAudioStateChanged(AudioState audioState) { |
| 316 | } |
| 317 | |
| 318 | /** |
| 319 | * Called to bring the in-call screen to the foreground. The in-call experience should |
| 320 | * respond immediately by coming to the foreground to inform the user of the state of |
| 321 | * ongoing {@code Call}s. |
| 322 | * |
| 323 | * @param showDialpad If true, put up the dialpad when the screen is shown. |
| 324 | */ |
| 325 | public void onBringToForeground(boolean showDialpad) { |
| 326 | } |
| 327 | |
| 328 | /** |
| 329 | * Called when a {@code Call} has been added to this in-call session. The in-call user |
| 330 | * experience should add necessary state listeners to the specified {@code Call} and |
| 331 | * immediately start to show the user information about the existence |
| 332 | * and nature of this {@code Call}. Subsequent invocations of {@link #getCalls()} will |
| 333 | * include this {@code Call}. |
| 334 | * |
| 335 | * @param call A newly added {@code Call}. |
| 336 | */ |
| 337 | public void onCallAdded(Call call) { |
| 338 | } |
| 339 | |
| 340 | /** |
| 341 | * Called when a {@code Call} has been removed from this in-call session. The in-call user |
| 342 | * experience should remove any state listeners from the specified {@code Call} and |
| 343 | * immediately stop displaying any information about this {@code Call}. |
| 344 | * Subsequent invocations of {@link #getCalls()} will no longer include this {@code Call}. |
| 345 | * |
| 346 | * @param call A newly removed {@code Call}. |
| 347 | */ |
| 348 | public void onCallRemoved(Call call) { |
| 349 | } |
| 350 | |
| 351 | /** |
| 352 | * Called when the ability to add more calls changes. If the phone cannot |
| 353 | * support more calls then {@code canAddCall} is set to {@code false}. If it can, then it |
| 354 | * is set to {@code true}. This can be used to control the visibility of UI to add more calls. |
| 355 | * |
| 356 | * @param canAddCall Indicates whether an additional call can be added. |
| 357 | */ |
| 358 | public void onCanAddCallChanged(boolean canAddCall) { |
| 359 | } |
| 360 | |
| 361 | /** |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 362 | * Class to invoke functionality related to video calls. |
| 363 | */ |
| 364 | public static abstract class VideoCall { |
| 365 | |
| Andrew Lee | 011728f | 2015-04-23 15:47:06 -0700 | [diff] [blame] | 366 | /** @hide */ |
| 367 | public abstract void destroy(); |
| 368 | |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 369 | /** |
| Andrew Lee | 7c9ee2b | 2015-04-16 15:26:08 -0700 | [diff] [blame] | 370 | * Registers a callback to receive commands and state changes for video calls. |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 371 | * |
| Andrew Lee | 7c9ee2b | 2015-04-16 15:26:08 -0700 | [diff] [blame] | 372 | * @param callback The video call callback. |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 373 | */ |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 374 | public abstract void registerCallback(VideoCall.Callback callback); |
| 375 | |
| 376 | /** |
| Andrew Lee | 011728f | 2015-04-23 15:47:06 -0700 | [diff] [blame] | 377 | * Registers a callback to receive commands and state changes for video calls. |
| 378 | * |
| 379 | * @param callback The video call callback. |
| 380 | * @param handler A handler which commands and status changes will be delivered to. |
| 381 | */ |
| 382 | public abstract void registerCallback(VideoCall.Callback callback, Handler handler); |
| 383 | |
| 384 | /** |
| Etan Cohen | 912270e | 2015-04-24 18:43:41 -0700 | [diff] [blame] | 385 | * Clears the video call listener set via {@link #registerCallback}. |
| Tyler Gunn | 7595842 | 2015-04-15 14:23:42 -0700 | [diff] [blame] | 386 | */ |
| Andrew Lee | 011728f | 2015-04-23 15:47:06 -0700 | [diff] [blame] | 387 | public abstract void unregisterCallback(VideoCall.Callback callback); |
| Tyler Gunn | 7595842 | 2015-04-15 14:23:42 -0700 | [diff] [blame] | 388 | |
| 389 | /** |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 390 | * Sets the camera to be used for video recording in a video call. |
| 391 | * |
| 392 | * @param cameraId The id of the camera. |
| 393 | */ |
| 394 | public abstract void setCamera(String cameraId); |
| 395 | |
| 396 | /** |
| 397 | * Sets the surface to be used for displaying a preview of what the user's camera is |
| 398 | * currently capturing. When video transmission is enabled, this is the video signal which |
| 399 | * is sent to the remote device. |
| 400 | * |
| 401 | * @param surface The surface. |
| 402 | */ |
| 403 | public abstract void setPreviewSurface(Surface surface); |
| 404 | |
| 405 | /** |
| 406 | * Sets the surface to be used for displaying the video received from the remote device. |
| 407 | * |
| 408 | * @param surface The surface. |
| 409 | */ |
| 410 | public abstract void setDisplaySurface(Surface surface); |
| 411 | |
| 412 | /** |
| 413 | * Sets the device orientation, in degrees. Assumes that a standard portrait orientation of |
| 414 | * the device is 0 degrees. |
| 415 | * |
| 416 | * @param rotation The device orientation, in degrees. |
| 417 | */ |
| 418 | public abstract void setDeviceOrientation(int rotation); |
| 419 | |
| 420 | /** |
| 421 | * Sets camera zoom ratio. |
| 422 | * |
| 423 | * @param value The camera zoom ratio. |
| 424 | */ |
| 425 | public abstract void setZoom(float value); |
| 426 | |
| 427 | /** |
| 428 | * Issues a request to modify the properties of the current session. The request is sent to |
| 429 | * the remote device where it it handled by |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 430 | * {@link VideoCall.Callback#onSessionModifyRequestReceived}. |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 431 | * Some examples of session modification requests: upgrade call from audio to video, |
| 432 | * downgrade call from video to audio, pause video. |
| 433 | * |
| 434 | * @param requestProfile The requested call video properties. |
| 435 | */ |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 436 | public abstract void sendSessionModifyRequest(VideoProfile requestProfile); |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 437 | |
| 438 | /** |
| 439 | * Provides a response to a request to change the current call session video |
| 440 | * properties. |
| 441 | * This is in response to a request the InCall UI has received via |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 442 | * {@link VideoCall.Callback#onSessionModifyRequestReceived}. |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 443 | * The response is handled on the remove device by |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 444 | * {@link VideoCall.Callback#onSessionModifyResponseReceived}. |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 445 | * |
| 446 | * @param responseProfile The response call video properties. |
| 447 | */ |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 448 | public abstract void sendSessionModifyResponse(VideoProfile responseProfile); |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 449 | |
| 450 | /** |
| 451 | * Issues a request to the video provider to retrieve the camera capabilities. |
| 452 | * Camera capabilities are reported back to the caller via |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 453 | * {@link VideoCall.Callback#onCameraCapabilitiesChanged(CameraCapabilities)}. |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 454 | */ |
| 455 | public abstract void requestCameraCapabilities(); |
| 456 | |
| 457 | /** |
| 458 | * Issues a request to the video telephony framework to retrieve the cumulative data usage for |
| 459 | * the current call. Data usage is reported back to the caller via |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 460 | * {@link VideoCall.Callback#onCallDataUsageChanged}. |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 461 | */ |
| 462 | public abstract void requestCallDataUsage(); |
| 463 | |
| 464 | /** |
| 465 | * Provides the video telephony framework with the URI of an image to be displayed to remote |
| 466 | * devices when the video signal is paused. |
| 467 | * |
| 468 | * @param uri URI of image to display. |
| 469 | */ |
| Yorke Lee | 32f2473 | 2015-05-12 16:18:03 -0700 | [diff] [blame^] | 470 | public abstract void setPauseImage(Uri uri); |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 471 | |
| 472 | /** |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 473 | * Callback class which invokes callbacks after video call actions occur. |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 474 | */ |
| Andrew Lee | da80c87 | 2015-04-15 14:09:50 -0700 | [diff] [blame] | 475 | public static abstract class Callback { |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 476 | /** |
| 477 | * Called when a session modification request is received from the remote device. |
| Andrew Lee | 1418576 | 2014-07-25 09:41:56 -0700 | [diff] [blame] | 478 | * The remote request is sent via |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 479 | * {@link Connection.VideoProvider#onSendSessionModifyRequest}. The InCall UI |
| Andrew Lee | 1418576 | 2014-07-25 09:41:56 -0700 | [diff] [blame] | 480 | * is responsible for potentially prompting the user whether they wish to accept the new |
| 481 | * call profile (e.g. prompt user if they wish to accept an upgrade from an audio to a |
| 482 | * video call) and should call |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 483 | * {@link Connection.VideoProvider#onSendSessionModifyResponse} to indicate |
| Andrew Lee | 1418576 | 2014-07-25 09:41:56 -0700 | [diff] [blame] | 484 | * the video settings the user has agreed to. |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 485 | * |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 486 | * @param videoProfile The requested video call profile. |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 487 | */ |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 488 | public abstract void onSessionModifyRequestReceived(VideoProfile videoProfile); |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 489 | |
| 490 | /** |
| 491 | * Called when a response to a session modification request is received from the remote |
| 492 | * device. The remote InCall UI sends the response using |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 493 | * {@link Connection.VideoProvider#onSendSessionModifyResponse}. |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 494 | * |
| 495 | * @param status Status of the session modify request. Valid values are |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 496 | * {@link Connection.VideoProvider#SESSION_MODIFY_REQUEST_SUCCESS}, |
| 497 | * {@link Connection.VideoProvider#SESSION_MODIFY_REQUEST_FAIL}, |
| 498 | * {@link Connection.VideoProvider#SESSION_MODIFY_REQUEST_INVALID} |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 499 | * @param requestedProfile The original request which was sent to the remote device. |
| 500 | * @param responseProfile The actual profile changes made by the remote device. |
| 501 | */ |
| 502 | public abstract void onSessionModifyResponseReceived(int status, |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 503 | VideoProfile requestedProfile, VideoProfile responseProfile); |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 504 | |
| 505 | /** |
| 506 | * Handles events related to the current session which the client may wish to handle. |
| 507 | * These are separate from requested changes to the session due to the underlying |
| 508 | * protocol or connection. |
| 509 | * |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 510 | * Valid values are: |
| 511 | * {@link Connection.VideoProvider#SESSION_EVENT_RX_PAUSE}, |
| 512 | * {@link Connection.VideoProvider#SESSION_EVENT_RX_RESUME}, |
| 513 | * {@link Connection.VideoProvider#SESSION_EVENT_TX_START}, |
| 514 | * {@link Connection.VideoProvider#SESSION_EVENT_TX_STOP}, |
| 515 | * {@link Connection.VideoProvider#SESSION_EVENT_CAMERA_FAILURE}, |
| 516 | * {@link Connection.VideoProvider#SESSION_EVENT_CAMERA_READY} |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 517 | * |
| 518 | * @param event The event. |
| 519 | */ |
| 520 | public abstract void onCallSessionEvent(int event); |
| 521 | |
| 522 | /** |
| 523 | * Handles a change to the video dimensions from the remote caller (peer). This could |
| 524 | * happen if, for example, the peer changes orientation of their device. |
| 525 | * |
| 526 | * @param width The updated peer video width. |
| 527 | * @param height The updated peer video height. |
| 528 | */ |
| 529 | public abstract void onPeerDimensionsChanged(int width, int height); |
| 530 | |
| 531 | /** |
| Rekha Kumar | 0736681 | 2015-03-24 16:42:31 -0700 | [diff] [blame] | 532 | * Handles a change to the video quality. |
| 533 | * |
| 534 | * @param videoQuality The updated peer video quality. |
| 535 | */ |
| 536 | public abstract void onVideoQualityChanged(int videoQuality); |
| 537 | |
| 538 | /** |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 539 | * Handles an update to the total data used for the current session. |
| 540 | * |
| 541 | * @param dataUsage The updated data usage. |
| 542 | */ |
| Rekha Kumar | 0736681 | 2015-03-24 16:42:31 -0700 | [diff] [blame] | 543 | public abstract void onCallDataUsageChanged(long dataUsage); |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 544 | |
| 545 | /** |
| 546 | * Handles a change in camera capabilities. |
| 547 | * |
| Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 548 | * @param cameraCapabilities The changed camera capabilities. |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 549 | */ |
| Yorke Lee | 400470f | 2015-05-12 13:31:25 -0700 | [diff] [blame] | 550 | public abstract void onCameraCapabilitiesChanged( |
| 551 | VideoProfile.CameraCapabilities cameraCapabilities); |
| Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 552 | } |
| 553 | } |
| Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 554 | } |