Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2014, 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 | |
| 17 | package com.android.telecomm; |
| 18 | |
Evan Charlton | a05805b | 2014-03-05 08:21:46 -0800 | [diff] [blame] | 19 | import android.os.Bundle; |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 20 | import android.os.IBinder; |
| 21 | import android.os.RemoteException; |
| 22 | import android.telecomm.CallInfo; |
Evan Charlton | a05805b | 2014-03-05 08:21:46 -0800 | [diff] [blame] | 23 | import android.telecomm.CallService; |
Ben Gilad | c5b2269 | 2014-02-18 20:03:22 -0800 | [diff] [blame] | 24 | import android.telecomm.CallServiceDescriptor; |
Sailesh Nepal | 83cfe7c | 2014-03-11 19:54:22 -0700 | [diff] [blame] | 25 | import android.telecomm.TelecommConstants; |
Sailesh Nepal | a439e1b | 2014-03-11 18:19:58 -0700 | [diff] [blame] | 26 | |
| 27 | import com.android.internal.telecomm.ICallService; |
| 28 | import com.android.internal.telecomm.ICallServiceAdapter; |
| 29 | import com.android.internal.telecomm.ICallServiceProvider; |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 30 | |
| 31 | /** |
| 32 | * Wrapper for {@link ICallService}s, handles binding to {@link ICallService} and keeps track of |
| 33 | * when the object can safely be unbound. Other classes should not use {@link ICallService} directly |
| 34 | * and instead should use this class to invoke methods of {@link ICallService}. |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 35 | */ |
Ben Gilad | 6192561 | 2014-03-11 19:06:36 -0700 | [diff] [blame] | 36 | final class CallServiceWrapper extends ServiceBinder<ICallService> { |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 37 | |
Santos Cordon | c195e36 | 2014-02-11 17:05:31 -0800 | [diff] [blame] | 38 | /** The descriptor of this call service as supplied by the call-service provider. */ |
Ben Gilad | c5b2269 | 2014-02-18 20:03:22 -0800 | [diff] [blame] | 39 | private final CallServiceDescriptor mDescriptor; |
Santos Cordon | c195e36 | 2014-02-11 17:05:31 -0800 | [diff] [blame] | 40 | |
| 41 | /** |
| 42 | * The adapter used by the underlying call-service implementation to communicate with Telecomm. |
| 43 | */ |
| 44 | private final CallServiceAdapter mAdapter; |
| 45 | |
| 46 | /** The actual service implementation. */ |
| 47 | private ICallService mServiceInterface; |
| 48 | |
Ben Gilad | 6192561 | 2014-03-11 19:06:36 -0700 | [diff] [blame] | 49 | private Binder mBinder = new Binder(); |
| 50 | |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 51 | /** |
| 52 | * Creates a call-service provider for the specified component. |
Santos Cordon | c195e36 | 2014-02-11 17:05:31 -0800 | [diff] [blame] | 53 | * |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 54 | * @param descriptor The call-service descriptor from |
| 55 | * {@link ICallServiceProvider#lookupCallServices}. |
Santos Cordon | c195e36 | 2014-02-11 17:05:31 -0800 | [diff] [blame] | 56 | * @param adapter The call-service adapter. |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 57 | */ |
Ben Gilad | 6192561 | 2014-03-11 19:06:36 -0700 | [diff] [blame] | 58 | CallServiceWrapper(CallServiceDescriptor descriptor, CallServiceAdapter adapter) { |
Sailesh Nepal | a439e1b | 2014-03-11 18:19:58 -0700 | [diff] [blame] | 59 | super(TelecommConstants.ACTION_CALL_SERVICE, descriptor.getServiceComponent()); |
Ben Gilad | c5b2269 | 2014-02-18 20:03:22 -0800 | [diff] [blame] | 60 | mDescriptor = descriptor; |
Santos Cordon | c195e36 | 2014-02-11 17:05:31 -0800 | [diff] [blame] | 61 | mAdapter = adapter; |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 62 | } |
| 63 | |
Ben Gilad | 6192561 | 2014-03-11 19:06:36 -0700 | [diff] [blame] | 64 | CallServiceDescriptor getDescriptor() { |
Ben Gilad | c5b2269 | 2014-02-18 20:03:22 -0800 | [diff] [blame] | 65 | return mDescriptor; |
Santos Cordon | c195e36 | 2014-02-11 17:05:31 -0800 | [diff] [blame] | 66 | } |
| 67 | |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 68 | /** See {@link ICallService#setCallServiceAdapter}. */ |
Ben Gilad | 6192561 | 2014-03-11 19:06:36 -0700 | [diff] [blame] | 69 | void setCallServiceAdapter(ICallServiceAdapter callServiceAdapter) { |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 70 | if (isServiceValid("setCallServiceAdapter")) { |
| 71 | try { |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 72 | mServiceInterface.setCallServiceAdapter(callServiceAdapter); |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 73 | } catch (RemoteException e) { |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 74 | Log.e(this, e, "Failed to setCallServiceAdapter."); |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 75 | } |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 76 | } |
| 77 | } |
| 78 | |
Ben Gilad | 6192561 | 2014-03-11 19:06:36 -0700 | [diff] [blame] | 79 | /** |
| 80 | * Checks whether or not the specified call is compatible with this call-service implementation, |
| 81 | * see {@link ICallService#isCompatibleWith}. Upon failure, the specified error callback is |
| 82 | * invoked. Can be invoked even when the call service is unbound. |
| 83 | * |
| 84 | * @param callInfo The details of the call. |
| 85 | * @param errorCallback The callback to invoke upon failure. |
| 86 | */ |
| 87 | void isCompatibleWith(final CallInfo callInfo, final Runnable errorCallback) { |
| 88 | BindCallback callback = new BindCallback() { |
| 89 | @Override public void onSuccess() { |
| 90 | if (isServiceValid("isCompatibleWith")) { |
| 91 | try { |
Yorke Lee | adee12d | 2014-03-13 12:08:30 -0700 | [diff] [blame] | 92 | mAdapter.addPendingOutgoingCallId(callInfo.getId()); |
Ben Gilad | 6192561 | 2014-03-11 19:06:36 -0700 | [diff] [blame] | 93 | mServiceInterface.isCompatibleWith(callInfo); |
| 94 | } catch (RemoteException e) { |
Yorke Lee | adee12d | 2014-03-13 12:08:30 -0700 | [diff] [blame] | 95 | mAdapter.removePendingOutgoingCallId(callInfo.getId()); |
Ben Gilad | 6192561 | 2014-03-11 19:06:36 -0700 | [diff] [blame] | 96 | Log.e(CallServiceWrapper.this, e, "Failed checking isCompatibleWith."); |
| 97 | } |
| 98 | } |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 99 | } |
Ben Gilad | 6192561 | 2014-03-11 19:06:36 -0700 | [diff] [blame] | 100 | @Override public void onFailure() { |
| 101 | errorCallback.run(); |
| 102 | } |
| 103 | }; |
| 104 | |
| 105 | mBinder.bind(callback); |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 106 | } |
| 107 | |
Ben Gilad | 6192561 | 2014-03-11 19:06:36 -0700 | [diff] [blame] | 108 | /** |
| 109 | * Attempts to place the specified call, see {@link ICallService#call}. Upon failure, the |
| 110 | * specified error callback is invoked. Can be invoked even when the call service is unbound. |
| 111 | * |
| 112 | * @param callInfo The details of the call. |
| 113 | * @param errorCallback The callback to invoke upon failure. |
| 114 | */ |
| 115 | void call(final CallInfo callInfo, final Runnable errorCallback) { |
| 116 | BindCallback callback = new BindCallback() { |
| 117 | @Override public void onSuccess() { |
| 118 | String callId = callInfo.getId(); |
| 119 | if (isServiceValid("call")) { |
| 120 | try { |
| 121 | mServiceInterface.call(callInfo); |
Ben Gilad | 6192561 | 2014-03-11 19:06:36 -0700 | [diff] [blame] | 122 | } catch (RemoteException e) { |
| 123 | Log.e(CallServiceWrapper.this, e, "Failed to place call %s", callId); |
| 124 | } |
| 125 | } |
Ben Gilad | 28e8ad6 | 2014-03-06 17:01:54 -0800 | [diff] [blame] | 126 | } |
Ben Gilad | 6192561 | 2014-03-11 19:06:36 -0700 | [diff] [blame] | 127 | @Override public void onFailure() { |
| 128 | errorCallback.run(); |
| 129 | } |
| 130 | }; |
| 131 | |
| 132 | mBinder.bind(callback); |
Ben Gilad | 28e8ad6 | 2014-03-06 17:01:54 -0800 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | /** See {@link ICallService#abort}. */ |
Ben Gilad | 6192561 | 2014-03-11 19:06:36 -0700 | [diff] [blame] | 136 | void abort(String callId) { |
Ben Gilad | 28e8ad6 | 2014-03-06 17:01:54 -0800 | [diff] [blame] | 137 | mAdapter.removePendingOutgoingCallId(callId); |
| 138 | if (isServiceValid("abort")) { |
| 139 | try { |
| 140 | mServiceInterface.abort(callId); |
| 141 | } catch (RemoteException e) { |
| 142 | Log.e(this, e, "Failed to abort call %s", callId); |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 143 | } |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 144 | } |
| 145 | } |
| 146 | |
Ben Gilad | 6192561 | 2014-03-11 19:06:36 -0700 | [diff] [blame] | 147 | /** |
| 148 | * Starts retrieval of details for an incoming call. Details are returned through the |
| 149 | * call-service adapter using the specified call ID. Upon failure, the specified error callback |
| 150 | * is invoked. Can be invoked even when the call service is unbound. |
| 151 | * See {@link ICallService#setIncomingCallId}. |
| 152 | * |
| 153 | * @param callId The call ID used for the incoming call. |
| 154 | * @param extras The {@link CallService}-provided extras which need to be sent back. |
| 155 | * @param errorCallback The callback to invoke upon failure. |
| 156 | */ |
| 157 | void setIncomingCallId( |
| 158 | final String callId, |
| 159 | final Bundle extras, |
| 160 | final Runnable errorCallback) { |
| 161 | |
| 162 | BindCallback callback = new BindCallback() { |
| 163 | @Override public void onSuccess() { |
| 164 | if (isServiceValid("setIncomingCallId")) { |
| 165 | mAdapter.addPendingIncomingCallId(callId); |
| 166 | try { |
| 167 | mServiceInterface.setIncomingCallId(callId, extras); |
| 168 | } catch (RemoteException e) { |
| 169 | Log.e(CallServiceWrapper.this, e, |
| 170 | "Failed to setIncomingCallId for call %s", callId); |
| 171 | mAdapter.removePendingIncomingCallId(callId); |
| 172 | } |
| 173 | } |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 174 | } |
Ben Gilad | 6192561 | 2014-03-11 19:06:36 -0700 | [diff] [blame] | 175 | @Override public void onFailure() { |
| 176 | errorCallback.run(); |
| 177 | } |
| 178 | }; |
| 179 | |
| 180 | mBinder.bind(callback); |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 181 | } |
| 182 | |
| 183 | /** See {@link ICallService#disconnect}. */ |
Ben Gilad | 6192561 | 2014-03-11 19:06:36 -0700 | [diff] [blame] | 184 | void disconnect(String callId) { |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 185 | if (isServiceValid("disconnect")) { |
| 186 | try { |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 187 | mServiceInterface.disconnect(callId); |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 188 | } catch (RemoteException e) { |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 189 | Log.e(this, e, "Failed to disconnect call %s", callId); |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 190 | } |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 191 | } |
| 192 | } |
Santos Cordon | 5c12c6e | 2014-02-13 14:35:31 -0800 | [diff] [blame] | 193 | |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 194 | /** See {@link ICallService#answer}. */ |
Ben Gilad | 6192561 | 2014-03-11 19:06:36 -0700 | [diff] [blame] | 195 | void answer(String callId) { |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 196 | if (isServiceValid("answer")) { |
| 197 | try { |
| 198 | mServiceInterface.answer(callId); |
| 199 | } catch (RemoteException e) { |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 200 | Log.e(this, e, "Failed to answer call %s", callId); |
Santos Cordon | 7917d38 | 2014-02-14 02:31:18 -0800 | [diff] [blame] | 201 | } |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 202 | } |
| 203 | } |
| 204 | |
| 205 | /** See {@link ICallService#reject}. */ |
Ben Gilad | 6192561 | 2014-03-11 19:06:36 -0700 | [diff] [blame] | 206 | void reject(String callId) { |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 207 | if (isServiceValid("reject")) { |
| 208 | try { |
| 209 | mServiceInterface.reject(callId); |
| 210 | } catch (RemoteException e) { |
Sailesh Nepal | f1c191d | 2014-03-07 18:17:39 -0800 | [diff] [blame] | 211 | Log.e(this, e, "Failed to reject call %s"); |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 212 | } |
Santos Cordon | 7917d38 | 2014-02-14 02:31:18 -0800 | [diff] [blame] | 213 | } |
| 214 | } |
| 215 | |
| 216 | /** |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 217 | * Cancels the incoming call for the specified call ID. |
| 218 | * TODO(santoscordon): This method should be called by IncomingCallsManager when the incoming |
| 219 | * call has failed. |
Santos Cordon | 7917d38 | 2014-02-14 02:31:18 -0800 | [diff] [blame] | 220 | * |
| 221 | * @param callId The ID of the call. |
| 222 | */ |
| 223 | void cancelIncomingCall(String callId) { |
Santos Cordon | 61d0f70 | 2014-02-19 02:52:23 -0800 | [diff] [blame] | 224 | mAdapter.removePendingIncomingCallId(callId); |
Santos Cordon | 7917d38 | 2014-02-14 02:31:18 -0800 | [diff] [blame] | 225 | } |
| 226 | |
Yorke Lee | adee12d | 2014-03-13 12:08:30 -0700 | [diff] [blame] | 227 | /** |
| 228 | * Cancels the outgoing call for the specified call ID. |
| 229 | * |
| 230 | * @param callId The ID of the call. |
| 231 | */ |
| 232 | void cancelOutgoingCall(String callId) { |
| 233 | mAdapter.removePendingOutgoingCallId(callId); |
| 234 | } |
| 235 | |
Santos Cordon | 5c12c6e | 2014-02-13 14:35:31 -0800 | [diff] [blame] | 236 | /** {@inheritDoc} */ |
| 237 | @Override protected void setServiceInterface(IBinder binder) { |
| 238 | mServiceInterface = ICallService.Stub.asInterface(binder); |
| 239 | setCallServiceAdapter(mAdapter); |
| 240 | } |
Santos Cordon | 63aeb16 | 2014-02-10 09:20:40 -0800 | [diff] [blame] | 241 | } |