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 | |
Gabriel Peal | b95f169 | 2014-08-19 14:24:18 -0700 | [diff] [blame] | 19 | import android.annotation.SystemApi; |
Tyler Gunn | 2ac4010 | 2014-08-18 16:23:10 -0700 | [diff] [blame] | 20 | import android.annotation.SdkConstant; |
Santos Cordon | 2f42b11 | 2014-07-19 13:19:37 -0700 | [diff] [blame] | 21 | import android.app.Service; |
| 22 | import android.content.Intent; |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 23 | import android.os.Handler; |
| 24 | import android.os.IBinder; |
| 25 | import android.os.Looper; |
| 26 | import android.os.Message; |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 27 | import android.view.Surface; |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 28 | |
Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 29 | import com.android.internal.os.SomeArgs; |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 30 | import com.android.internal.telecom.IInCallAdapter; |
| 31 | import com.android.internal.telecom.IInCallService; |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 32 | |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 33 | import java.lang.String; |
| 34 | |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 35 | /** |
| 36 | * 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] | 37 | * 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] | 38 | * and uses it to notify the in-call app of any live and and recently disconnected calls. |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 39 | * |
| 40 | * {@hide} |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 41 | */ |
Gabriel Peal | b95f169 | 2014-08-19 14:24:18 -0700 | [diff] [blame] | 42 | @SystemApi |
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)); |
| 70 | onPhoneCreated(mPhone); |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 71 | break; |
| 72 | case MSG_ADD_CALL: |
Santos Cordon | 88b771d | 2014-07-19 13:10:40 -0700 | [diff] [blame] | 73 | mPhone.internalAddCall((ParcelableCall) msg.obj); |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 74 | break; |
Sailesh Nepal | 6043793 | 2014-04-05 16:44:55 -0700 | [diff] [blame] | 75 | case MSG_UPDATE_CALL: |
Santos Cordon | 88b771d | 2014-07-19 13:10:40 -0700 | [diff] [blame] | 76 | mPhone.internalUpdateCall((ParcelableCall) msg.obj); |
Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 77 | break; |
Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 78 | case MSG_SET_POST_DIAL_WAIT: { |
| 79 | SomeArgs args = (SomeArgs) msg.obj; |
| 80 | try { |
| 81 | String callId = (String) args.arg1; |
| 82 | String remaining = (String) args.arg2; |
Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 83 | mPhone.internalSetPostDialWait(callId, remaining); |
Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 84 | } finally { |
| 85 | args.recycle(); |
| 86 | } |
| 87 | break; |
| 88 | } |
Sailesh Nepal | 4cff392 | 2014-03-19 10:15:37 -0700 | [diff] [blame] | 89 | case MSG_ON_AUDIO_STATE_CHANGED: |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 90 | mPhone.internalAudioStateChanged((AudioState) msg.obj); |
Sailesh Nepal | b632e5b | 2014-04-03 12:54:33 -0700 | [diff] [blame] | 91 | break; |
Santos Cordon | 3534ede | 2014-05-29 13:07:10 -0700 | [diff] [blame] | 92 | case MSG_BRING_TO_FOREGROUND: |
Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 93 | mPhone.internalBringToForeground(msg.arg1 == 1); |
Santos Cordon | 3534ede | 2014-05-29 13:07:10 -0700 | [diff] [blame] | 94 | break; |
Santos Cordon | 6c912b7 | 2014-11-07 16:05:09 -0800 | [diff] [blame] | 95 | case MSG_ON_CAN_ADD_CALL_CHANGED: |
| 96 | mPhone.internalSetCanAddCall(msg.arg1 == 1); |
| 97 | break; |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 98 | default: |
| 99 | break; |
| 100 | } |
| 101 | } |
| 102 | }; |
| 103 | |
| 104 | /** Manages the binder calls so that the implementor does not need to deal with it. */ |
| 105 | private final class InCallServiceBinder extends IInCallService.Stub { |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 106 | @Override |
| 107 | public void setInCallAdapter(IInCallAdapter inCallAdapter) { |
| 108 | mHandler.obtainMessage(MSG_SET_IN_CALL_ADAPTER, inCallAdapter).sendToTarget(); |
| 109 | } |
| 110 | |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 111 | @Override |
Santos Cordon | 88b771d | 2014-07-19 13:10:40 -0700 | [diff] [blame] | 112 | public void addCall(ParcelableCall call) { |
Sailesh Nepal | 6043793 | 2014-04-05 16:44:55 -0700 | [diff] [blame] | 113 | mHandler.obtainMessage(MSG_ADD_CALL, call).sendToTarget(); |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 114 | } |
| 115 | |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 116 | @Override |
Santos Cordon | 88b771d | 2014-07-19 13:10:40 -0700 | [diff] [blame] | 117 | public void updateCall(ParcelableCall call) { |
Sailesh Nepal | 6043793 | 2014-04-05 16:44:55 -0700 | [diff] [blame] | 118 | mHandler.obtainMessage(MSG_UPDATE_CALL, call).sendToTarget(); |
Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | @Override |
| 122 | public void setPostDial(String callId, String remaining) { |
Ihab Awad | 5d0410f | 2014-07-30 10:07:40 -0700 | [diff] [blame] | 123 | // TODO: Unused |
Ihab Awad | 2f23664 | 2014-03-10 15:33:45 -0700 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | @Override |
| 127 | public void setPostDialWait(String callId, String remaining) { |
| 128 | SomeArgs args = SomeArgs.obtain(); |
| 129 | args.arg1 = callId; |
| 130 | args.arg2 = remaining; |
| 131 | mHandler.obtainMessage(MSG_SET_POST_DIAL_WAIT, args).sendToTarget(); |
| 132 | } |
Sailesh Nepal | b632e5b | 2014-04-03 12:54:33 -0700 | [diff] [blame] | 133 | |
| 134 | @Override |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 135 | public void onAudioStateChanged(AudioState audioState) { |
Sailesh Nepal | 6043793 | 2014-04-05 16:44:55 -0700 | [diff] [blame] | 136 | mHandler.obtainMessage(MSG_ON_AUDIO_STATE_CHANGED, audioState).sendToTarget(); |
Sailesh Nepal | b632e5b | 2014-04-03 12:54:33 -0700 | [diff] [blame] | 137 | } |
Santos Cordon | 3534ede | 2014-05-29 13:07:10 -0700 | [diff] [blame] | 138 | |
Santos Cordon | 3534ede | 2014-05-29 13:07:10 -0700 | [diff] [blame] | 139 | @Override |
| 140 | public void bringToForeground(boolean showDialpad) { |
| 141 | mHandler.obtainMessage(MSG_BRING_TO_FOREGROUND, showDialpad ? 1 : 0, 0).sendToTarget(); |
| 142 | } |
Santos Cordon | 6c912b7 | 2014-11-07 16:05:09 -0800 | [diff] [blame] | 143 | |
| 144 | @Override |
| 145 | public void onCanAddCallChanged(boolean canAddCall) { |
| 146 | mHandler.obtainMessage(MSG_ON_CAN_ADD_CALL_CHANGED, canAddCall ? 1 : 0, 0) |
| 147 | .sendToTarget(); |
| 148 | } |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 149 | } |
| 150 | |
Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 151 | private Phone mPhone; |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 152 | |
Santos Cordon | 2f42b11 | 2014-07-19 13:19:37 -0700 | [diff] [blame] | 153 | public InCallService() { |
| 154 | } |
Evan Charlton | 924748f | 2014-04-03 08:36:38 -0700 | [diff] [blame] | 155 | |
Santos Cordon | 2f42b11 | 2014-07-19 13:19:37 -0700 | [diff] [blame] | 156 | @Override |
| 157 | public IBinder onBind(Intent intent) { |
Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 158 | return new InCallServiceBinder(); |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 159 | } |
| 160 | |
Santos Cordon | f30d7e9 | 2014-08-26 09:54:33 -0700 | [diff] [blame] | 161 | @Override |
| 162 | public boolean onUnbind(Intent intent) { |
Santos Cordon | 619b3c0 | 2014-09-02 17:13:45 -0700 | [diff] [blame] | 163 | if (mPhone != null) { |
| 164 | Phone oldPhone = mPhone; |
| 165 | mPhone = null; |
Santos Cordon | f30d7e9 | 2014-08-26 09:54:33 -0700 | [diff] [blame] | 166 | |
Santos Cordon | 619b3c0 | 2014-09-02 17:13:45 -0700 | [diff] [blame] | 167 | oldPhone.destroy(); |
| 168 | onPhoneDestroyed(oldPhone); |
| 169 | } |
Santos Cordon | f30d7e9 | 2014-08-26 09:54:33 -0700 | [diff] [blame] | 170 | return false; |
| 171 | } |
| 172 | |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 173 | /** |
Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 174 | * Obtain the {@code Phone} associated with this {@code InCallService}. |
| 175 | * |
| 176 | * @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] | 177 | * if the {@code InCallService} is not in a state where it has an associated |
| 178 | * {@code Phone}. |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 179 | */ |
Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 180 | public Phone getPhone() { |
| 181 | return mPhone; |
Evan Charlton | 924748f | 2014-04-03 08:36:38 -0700 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | /** |
Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 185 | * Invoked when the {@code Phone} has been created. This is a signal to the in-call experience |
| 186 | * 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] | 187 | * will have only one {@code Phone}, and this method will be called exactly once in the lifetime |
| 188 | * of the {@code InCallService}. |
Evan Charlton | 924748f | 2014-04-03 08:36:38 -0700 | [diff] [blame] | 189 | * |
Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 190 | * @param phone The {@code Phone} object associated with this {@code InCallService}. |
Evan Charlton | 924748f | 2014-04-03 08:36:38 -0700 | [diff] [blame] | 191 | */ |
Santos Cordon | 2f42b11 | 2014-07-19 13:19:37 -0700 | [diff] [blame] | 192 | public void onPhoneCreated(Phone phone) { |
| 193 | } |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 194 | |
| 195 | /** |
Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 196 | * Invoked when a {@code Phone} has been destroyed. This is a signal to the in-call experience |
| 197 | * to stop displaying in-call information to the user. This method will be called exactly once |
| 198 | * in the lifetime of the {@code InCallService}, and it will always be called after a previous |
| 199 | * call to {@link #onPhoneCreated(Phone)}. |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 200 | * |
Ihab Awad | e63fadb | 2014-07-09 21:52:04 -0700 | [diff] [blame] | 201 | * @param phone The {@code Phone} object associated with this {@code InCallService}. |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 202 | */ |
Santos Cordon | 2f42b11 | 2014-07-19 13:19:37 -0700 | [diff] [blame] | 203 | public void onPhoneDestroyed(Phone phone) { |
| 204 | } |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 205 | |
| 206 | /** |
| 207 | * Class to invoke functionality related to video calls. |
Tyler Gunn | 75537ae | 2014-08-22 11:33:13 -0700 | [diff] [blame] | 208 | * @hide |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 209 | */ |
| 210 | public static abstract class VideoCall { |
| 211 | |
| 212 | /** |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 213 | * Sets a listener to invoke callback methods in the InCallUI after performing video |
| 214 | * telephony actions. |
| 215 | * |
| 216 | * @param videoCallListener The call video client. |
| 217 | */ |
| 218 | public abstract void setVideoCallListener(VideoCall.Listener videoCallListener); |
| 219 | |
| 220 | /** |
| 221 | * Sets the camera to be used for video recording in a video call. |
| 222 | * |
| 223 | * @param cameraId The id of the camera. |
| 224 | */ |
| 225 | public abstract void setCamera(String cameraId); |
| 226 | |
| 227 | /** |
| 228 | * Sets the surface to be used for displaying a preview of what the user's camera is |
| 229 | * currently capturing. When video transmission is enabled, this is the video signal which |
| 230 | * is sent to the remote device. |
| 231 | * |
| 232 | * @param surface The surface. |
| 233 | */ |
| 234 | public abstract void setPreviewSurface(Surface surface); |
| 235 | |
| 236 | /** |
| 237 | * Sets the surface to be used for displaying the video received from the remote device. |
| 238 | * |
| 239 | * @param surface The surface. |
| 240 | */ |
| 241 | public abstract void setDisplaySurface(Surface surface); |
| 242 | |
| 243 | /** |
| 244 | * Sets the device orientation, in degrees. Assumes that a standard portrait orientation of |
| 245 | * the device is 0 degrees. |
| 246 | * |
| 247 | * @param rotation The device orientation, in degrees. |
| 248 | */ |
| 249 | public abstract void setDeviceOrientation(int rotation); |
| 250 | |
| 251 | /** |
| 252 | * Sets camera zoom ratio. |
| 253 | * |
| 254 | * @param value The camera zoom ratio. |
| 255 | */ |
| 256 | public abstract void setZoom(float value); |
| 257 | |
| 258 | /** |
| 259 | * Issues a request to modify the properties of the current session. The request is sent to |
| 260 | * the remote device where it it handled by |
| 261 | * {@link VideoCall.Listener#onSessionModifyRequestReceived}. |
| 262 | * Some examples of session modification requests: upgrade call from audio to video, |
| 263 | * downgrade call from video to audio, pause video. |
| 264 | * |
| 265 | * @param requestProfile The requested call video properties. |
| 266 | */ |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 267 | public abstract void sendSessionModifyRequest(VideoProfile requestProfile); |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 268 | |
| 269 | /** |
| 270 | * Provides a response to a request to change the current call session video |
| 271 | * properties. |
| 272 | * This is in response to a request the InCall UI has received via |
| 273 | * {@link VideoCall.Listener#onSessionModifyRequestReceived}. |
| 274 | * The response is handled on the remove device by |
| 275 | * {@link VideoCall.Listener#onSessionModifyResponseReceived}. |
| 276 | * |
| 277 | * @param responseProfile The response call video properties. |
| 278 | */ |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 279 | public abstract void sendSessionModifyResponse(VideoProfile responseProfile); |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 280 | |
| 281 | /** |
| 282 | * Issues a request to the video provider to retrieve the camera capabilities. |
| 283 | * Camera capabilities are reported back to the caller via |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 284 | * {@link VideoCall.Listener#onCameraCapabilitiesChanged(CameraCapabilities)}. |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 285 | */ |
| 286 | public abstract void requestCameraCapabilities(); |
| 287 | |
| 288 | /** |
| 289 | * Issues a request to the video telephony framework to retrieve the cumulative data usage for |
| 290 | * the current call. Data usage is reported back to the caller via |
| 291 | * {@link VideoCall.Listener#onCallDataUsageChanged}. |
| 292 | */ |
| 293 | public abstract void requestCallDataUsage(); |
| 294 | |
| 295 | /** |
| 296 | * Provides the video telephony framework with the URI of an image to be displayed to remote |
| 297 | * devices when the video signal is paused. |
| 298 | * |
| 299 | * @param uri URI of image to display. |
| 300 | */ |
| 301 | public abstract void setPauseImage(String uri); |
| 302 | |
| 303 | /** |
| 304 | * Listener class which invokes callbacks after video call actions occur. |
Tyler Gunn | 75537ae | 2014-08-22 11:33:13 -0700 | [diff] [blame] | 305 | * @hide |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 306 | */ |
| 307 | public static abstract class Listener { |
| 308 | /** |
| 309 | * Called when a session modification request is received from the remote device. |
Andrew Lee | 1418576 | 2014-07-25 09:41:56 -0700 | [diff] [blame] | 310 | * The remote request is sent via |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 311 | * {@link Connection.VideoProvider#onSendSessionModifyRequest}. The InCall UI |
Andrew Lee | 1418576 | 2014-07-25 09:41:56 -0700 | [diff] [blame] | 312 | * is responsible for potentially prompting the user whether they wish to accept the new |
| 313 | * call profile (e.g. prompt user if they wish to accept an upgrade from an audio to a |
| 314 | * video call) and should call |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 315 | * {@link Connection.VideoProvider#onSendSessionModifyResponse} to indicate |
Andrew Lee | 1418576 | 2014-07-25 09:41:56 -0700 | [diff] [blame] | 316 | * the video settings the user has agreed to. |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 317 | * |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 318 | * @param videoProfile The requested video call profile. |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 319 | */ |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 320 | public abstract void onSessionModifyRequestReceived(VideoProfile videoProfile); |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 321 | |
| 322 | /** |
| 323 | * Called when a response to a session modification request is received from the remote |
| 324 | * device. The remote InCall UI sends the response using |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 325 | * {@link Connection.VideoProvider#onSendSessionModifyResponse}. |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 326 | * |
| 327 | * @param status Status of the session modify request. Valid values are |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 328 | * {@link Connection.VideoProvider#SESSION_MODIFY_REQUEST_SUCCESS}, |
| 329 | * {@link Connection.VideoProvider#SESSION_MODIFY_REQUEST_FAIL}, |
| 330 | * {@link Connection.VideoProvider#SESSION_MODIFY_REQUEST_INVALID} |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 331 | * @param requestedProfile The original request which was sent to the remote device. |
| 332 | * @param responseProfile The actual profile changes made by the remote device. |
| 333 | */ |
| 334 | public abstract void onSessionModifyResponseReceived(int status, |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 335 | VideoProfile requestedProfile, VideoProfile responseProfile); |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 336 | |
| 337 | /** |
| 338 | * Handles events related to the current session which the client may wish to handle. |
| 339 | * These are separate from requested changes to the session due to the underlying |
| 340 | * protocol or connection. |
| 341 | * |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 342 | * Valid values are: |
| 343 | * {@link Connection.VideoProvider#SESSION_EVENT_RX_PAUSE}, |
| 344 | * {@link Connection.VideoProvider#SESSION_EVENT_RX_RESUME}, |
| 345 | * {@link Connection.VideoProvider#SESSION_EVENT_TX_START}, |
| 346 | * {@link Connection.VideoProvider#SESSION_EVENT_TX_STOP}, |
| 347 | * {@link Connection.VideoProvider#SESSION_EVENT_CAMERA_FAILURE}, |
| 348 | * {@link Connection.VideoProvider#SESSION_EVENT_CAMERA_READY} |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 349 | * |
| 350 | * @param event The event. |
| 351 | */ |
| 352 | public abstract void onCallSessionEvent(int event); |
| 353 | |
| 354 | /** |
| 355 | * Handles a change to the video dimensions from the remote caller (peer). This could |
| 356 | * happen if, for example, the peer changes orientation of their device. |
| 357 | * |
| 358 | * @param width The updated peer video width. |
| 359 | * @param height The updated peer video height. |
| 360 | */ |
| 361 | public abstract void onPeerDimensionsChanged(int width, int height); |
| 362 | |
| 363 | /** |
Rekha Kumar | 0736681 | 2015-03-24 16:42:31 -0700 | [diff] [blame^] | 364 | * Handles a change to the video quality. |
| 365 | * |
| 366 | * @param videoQuality The updated peer video quality. |
| 367 | */ |
| 368 | public abstract void onVideoQualityChanged(int videoQuality); |
| 369 | |
| 370 | /** |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 371 | * Handles an update to the total data used for the current session. |
| 372 | * |
| 373 | * @param dataUsage The updated data usage. |
| 374 | */ |
Rekha Kumar | 0736681 | 2015-03-24 16:42:31 -0700 | [diff] [blame^] | 375 | public abstract void onCallDataUsageChanged(long dataUsage); |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 376 | |
| 377 | /** |
| 378 | * Handles a change in camera capabilities. |
| 379 | * |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 380 | * @param cameraCapabilities The changed camera capabilities. |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 381 | */ |
| 382 | public abstract void onCameraCapabilitiesChanged( |
Ihab Awad | b19a0bc | 2014-08-07 19:46:01 -0700 | [diff] [blame] | 383 | CameraCapabilities cameraCapabilities); |
Andrew Lee | 50aca23 | 2014-07-22 16:41:54 -0700 | [diff] [blame] | 384 | } |
| 385 | } |
Sailesh Nepal | ab5d282 | 2014-03-08 18:01:06 -0800 | [diff] [blame] | 386 | } |